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.14 by root, Fri Oct 12 19:13:26 2007 UTC vs.
Revision 1.30 by root, Tue May 4 21:45:42 2010 UTC

20You can freely use \$a .. \$z and \@l and \%l 20You can freely use \$a .. \$z and \@l and \%l
21 21
22Useful commands (note the '&'): 22Useful commands (note the '&'):
23 23
24reload_perl & 24reload_perl &
25reload_sound &
25reload_config & 26reload_config &
26reload_regions & 27reload_regions &
27reload_facedata & 28reload_facedata &
28reload_treasures & 29reload_treasures &
29reload_archetypes & 30reload_archetypes &
31reload_resources &
30ext::help::reload & 32ext::help::reload &
31ext::books::reload & 33ext::books::reload &
32ext::map_tags::reload & 34ext::map_tags::reload &
33ext::map_world::reload & 35ext::map_world::reload &
36# ext::map_scheduler::loadall & # debugging only!
37while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
38({mallinfo})
39({objinfo})
34EOF 40EOF
35 print $fh "\n> "; 41 print $fh "\n> ";
36 42
37 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub { 43 my $iow; $iow = AE::io $fh, 0, sub {
38 if (defined (my $cmd = <$fh>)) { 44 if (defined (my $cmd = <$fh>)) {
39 $cmd =~ s/\s+$//; 45 $cmd =~ s/\s+$//;
40 46
41 if ($cmd =~ /^\s*exit\b/i) { 47 if ($cmd =~ /^\s*exit\b/i) {
42 print $fh "will not exit() server.\n"; 48 print $fh "will not exit() server.\n";
47 } else { 53 } else {
48 my $sub = sub { 54 my $sub = sub {
49 package cf; 55 package cf;
50 select $fh; 56 select $fh;
51 57
52 # compile first, the execute, as Coro does not support switching in eval string 58 # compile first, then execute, as Coro does not support switching in eval string
53 my $cb = eval "sub { $cmd }"; 59 my $cb = eval "sub { $cmd \n}";
54 60
55 my $t1 = Time::HiRes::time; 61 my $t1 = Time::HiRes::time;
56 my @res = $@ ? () : eval { $cb->() }; 62 my @res = $@ ? () : eval { $cb->() };
57 my $t2 = Time::HiRes::time; 63 my $t2 = Time::HiRes::time;
58 64
59 print "\n", 65 print "\n",
60 "command: '$cmd'\n", 66 "command: '$cmd'\n",
61 "execution time: ", $t2 - $t1, "\n"; 67 "execution time: ", $t2 - $t1, "\n";
62 warn "evaluation error: $@" if $@;
63 print "evaluation error: $@\n" if $@; 68 print "evaluation error: $@\n" if $@;
64 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 69 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
65 print "\n> "; 70 print "\n> ";
66 71
67 select STDOUT; 72 select STDOUT;
77 } 82 }
78 } 83 }
79 84
80 print $fh "\n> "; 85 print $fh "\n> ";
81 } else { 86 } else {
82 $_[0]->w->cancel; 87 undef $iow;
83 } 88 }
84 }); 89 };
85} 90}
91
92our $LISTENER;
86 93
87# now a shell listening on a tcp-port - let the firewall decide access rights 94# now a shell listening on a tcp-port - let the firewall decide access rights
88if ($cf::CFG{perl_shell}) { 95if ($cf::CFG{perl_shell}) {
89 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1) { 96 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
90 Event->io (fd => $listen, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub { tcp_serve $listen->accept }); 97 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
91 } 98 }
92} 99}
93 100
94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines