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.23 by root, Sun Jun 28 16:46:50 2009 UTC vs.
Revision 1.31 by root, Thu May 6 21:58:06 2010 UTC

19Remember that everything entered here will be in the main coro context within cf::! 19Remember that everything entered here will be in the main coro context within cf::!
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_exp &
24reload_perl & 25reload_perl &
26reload_sound &
25reload_config & 27reload_config &
26reload_regions & 28reload_regions &
27reload_facedata & 29reload_facedata &
28reload_treasures & 30reload_treasures &
29reload_archetypes & 31reload_archetypes &
32reload_resources &
30ext::help::reload & 33ext::help::reload &
31ext::books::reload & 34ext::books::reload &
32ext::map_tags::reload & 35ext::map_tags::reload &
33ext::map_world::reload & 36ext::map_world::reload &
37# ext::map_scheduler::loadall & # debugging only!
34while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } & 38while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
35({cf::mallinfo}) 39({mallinfo})
40({objinfo})
36EOF 41EOF
37 print $fh "\n> "; 42 print $fh "\n> ";
38 43
39 my $iow; $iow = EV::io $fh, EV::READ, sub { 44 my $iow; $iow = AE::io $fh, 0, sub {
40 if (defined (my $cmd = <$fh>)) { 45 if (defined (my $cmd = <$fh>)) {
41 $cmd =~ s/\s+$//; 46 $cmd =~ s/\s+$//;
42 47
43 if ($cmd =~ /^\s*exit\b/i) { 48 if ($cmd =~ /^\s*exit\b/i) {
44 print $fh "will not exit() server.\n"; 49 print $fh "will not exit() server.\n";
59 my $t2 = Time::HiRes::time; 64 my $t2 = Time::HiRes::time;
60 65
61 print "\n", 66 print "\n",
62 "command: '$cmd'\n", 67 "command: '$cmd'\n",
63 "execution time: ", $t2 - $t1, "\n"; 68 "execution time: ", $t2 - $t1, "\n";
64 warn "evaluation error: $@" if $@;
65 print "evaluation error: $@\n" if $@; 69 print "evaluation error: $@\n" if $@;
66 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 70 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
67 print "\n> "; 71 print "\n> ";
68 72
69 select STDOUT; 73 select STDOUT;
89our $LISTENER; 93our $LISTENER;
90 94
91# now a shell listening on a tcp-port - let the firewall decide access rights 95# now a shell listening on a tcp-port - let the firewall decide access rights
92if ($cf::CFG{perl_shell}) { 96if ($cf::CFG{perl_shell}) {
93 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 97 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
94 $LISTENER = EV::io $listen, EV::READ, sub { tcp_serve $listen->accept }; 98 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
95 } 99 }
96} 100}
97 101
98

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines