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.19 by root, Sun Jan 13 08:56:23 2008 UTC vs.
Revision 1.32 by root, Thu May 6 22:35:41 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 &
29reload_exp_table &
30reload_materials &
28reload_treasures & 31reload_treasures &
29reload_archetypes & 32reload_archetypes &
33reload_resources &
30ext::help::reload & 34ext::help::reload &
31ext::books::reload & 35ext::books::reload &
32ext::map_tags::reload & 36ext::map_tags::reload &
33ext::map_world::reload & 37ext::map_world::reload &
34print JSON::XS->new->pretty->encode({cf::mallinfo}) 38# ext::map_scheduler::loadall & # debugging only!
39while (EV::TIMEOUT & Coro::EV::timed_io_once \$fh, EV::READ, 1) { Coro::Debug::command "ps" } &
40({mallinfo})
41({objinfo})
35EOF 42EOF
36 print $fh "\n> "; 43 print $fh "\n> ";
37 44
38 my $iow; $iow = EV::io $fh, EV::READ, sub { 45 my $iow; $iow = AE::io $fh, 0, sub {
39 if (defined (my $cmd = <$fh>)) { 46 if (defined (my $cmd = <$fh>)) {
40 $cmd =~ s/\s+$//; 47 $cmd =~ s/\s+$//;
41 48
42 if ($cmd =~ /^\s*exit\b/i) { 49 if ($cmd =~ /^\s*exit\b/i) {
43 print $fh "will not exit() server.\n"; 50 print $fh "will not exit() server.\n";
58 my $t2 = Time::HiRes::time; 65 my $t2 = Time::HiRes::time;
59 66
60 print "\n", 67 print "\n",
61 "command: '$cmd'\n", 68 "command: '$cmd'\n",
62 "execution time: ", $t2 - $t1, "\n"; 69 "execution time: ", $t2 - $t1, "\n";
63 warn "evaluation error: $@" if $@;
64 print "evaluation error: $@\n" if $@; 70 print "evaluation error: $@\n" if $@;
65 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 71 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
66 print "\n> "; 72 print "\n> ";
67 73
68 select STDOUT; 74 select STDOUT;
88our $LISTENER; 94our $LISTENER;
89 95
90# now a shell listening on a tcp-port - let the firewall decide access rights 96# now a shell listening on a tcp-port - let the firewall decide access rights
91if ($cf::CFG{perl_shell}) { 97if ($cf::CFG{perl_shell}) {
92 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) { 98 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1, Blocking => 0) {
93 $LISTENER = EV::io $listen, EV::READ, sub { tcp_serve $listen->accept }; 99 $LISTENER = AE::io $listen, 0, sub { tcp_serve $listen->accept };
94 } 100 }
95} 101}
96 102
97

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines