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.24 by root, Fri Oct 23 03:28:11 2009 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 &
34# ext::map_scheduler::loadall & # debugging only! 36# ext::map_scheduler::loadall & # debugging only!
35while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } & 37while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
36({cf::mallinfo}) 38({mallinfo})
39({objinfo})
37EOF 40EOF
38 print $fh "\n> "; 41 print $fh "\n> ";
39 42
40 my $iow; $iow = EV::io $fh, EV::READ, sub { 43 my $iow; $iow = AE::io $fh, 0, sub {
41 if (defined (my $cmd = <$fh>)) { 44 if (defined (my $cmd = <$fh>)) {
42 $cmd =~ s/\s+$//; 45 $cmd =~ s/\s+$//;
43 46
44 if ($cmd =~ /^\s*exit\b/i) { 47 if ($cmd =~ /^\s*exit\b/i) {
45 print $fh "will not exit() server.\n"; 48 print $fh "will not exit() server.\n";
60 my $t2 = Time::HiRes::time; 63 my $t2 = Time::HiRes::time;
61 64
62 print "\n", 65 print "\n",
63 "command: '$cmd'\n", 66 "command: '$cmd'\n",
64 "execution time: ", $t2 - $t1, "\n"; 67 "execution time: ", $t2 - $t1, "\n";
65 warn "evaluation error: $@" if $@;
66 print "evaluation error: $@\n" if $@; 68 print "evaluation error: $@\n" if $@;
67 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;
68 print "\n> "; 70 print "\n> ";
69 71
70 select STDOUT; 72 select STDOUT;
90our $LISTENER; 92our $LISTENER;
91 93
92# 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
93if ($cf::CFG{perl_shell}) { 95if ($cf::CFG{perl_shell}) {
94 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 96 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
95 $LISTENER = EV::io $listen, EV::READ, sub { tcp_serve $listen->accept }; 97 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
96 } 98 }
97} 99}
98 100
99

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines