ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/dm-support.ext
(Generate patch)

Comparing deliantra/server/ext/dm-support.ext (file contents):
Revision 1.13 by root, Mon Oct 1 00:44:43 2007 UTC vs.
Revision 1.27 by root, Mon Apr 12 17:13:36 2010 UTC

1#! perl 1#! perl
2 2
3use Coro::Debug; 3use Coro::Debug;
4use IO::Socket; 4use IO::Socket;
5use Storable qw/nfreeze thaw/;
6 5
7my %global; # for use by eval'ed commands 6my %global; # for use by eval'ed commands
8 7
9sub tcp_serve($) { 8sub tcp_serve($) {
10 my ($fh) = @_; 9 my ($fh) = @_;
30reload_archetypes & 29reload_archetypes &
31ext::help::reload & 30ext::help::reload &
32ext::books::reload & 31ext::books::reload &
33ext::map_tags::reload & 32ext::map_tags::reload &
34ext::map_world::reload & 33ext::map_world::reload &
34# ext::map_scheduler::loadall & # debugging only!
35while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
36({mallinfo})
37({objinfo})
35EOF 38EOF
36 print $fh "\n> "; 39 print $fh "\n> ";
37 40
38 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub { 41 my $iow; $iow = AE::io $fh, 0, sub {
39 if (defined (my $cmd = <$fh>)) { 42 if (defined (my $cmd = <$fh>)) {
40 $cmd =~ s/\s+$//; 43 $cmd =~ s/\s+$//;
41 44
42 if ($cmd =~ /^\s*exit\b/i) { 45 if ($cmd =~ /^\s*exit\b/i) {
43 print $fh "will not exit() server.\n"; 46 print $fh "will not exit() server.\n";
48 } else { 51 } else {
49 my $sub = sub { 52 my $sub = sub {
50 package cf; 53 package cf;
51 select $fh; 54 select $fh;
52 55
53 # compile first, the execute, as Coro does not support switching in eval string 56 # compile first, then execute, as Coro does not support switching in eval string
54 my $cb = eval "sub { $cmd }"; 57 my $cb = eval "sub { $cmd \n}";
55 58
56 my $t1 = Time::HiRes::time; 59 my $t1 = Time::HiRes::time;
57 my @res = $@ ? () : eval { $cb->() }; 60 my @res = $@ ? () : eval { $cb->() };
58 my $t2 = Time::HiRes::time; 61 my $t2 = Time::HiRes::time;
59 62
78 } 81 }
79 } 82 }
80 83
81 print $fh "\n> "; 84 print $fh "\n> ";
82 } else { 85 } else {
83 $_[0]->w->cancel; 86 undef $iow;
84 } 87 }
85 }); 88 };
86} 89}
90
91our $LISTENER;
87 92
88# now a shell listening on a tcp-port - let the firewall decide access rights 93# now a shell listening on a tcp-port - let the firewall decide access rights
89if ($cf::CFG{perl_shell}) { 94if ($cf::CFG{perl_shell}) {
90 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1) { 95 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
91 Event->io (fd => $listen, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub { tcp_serve $listen->accept }); 96 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
92 } 97 }
93} 98}
94 99
95 100

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines