ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/dm-support.ext
Revision: 1.6
Committed: Thu May 24 03:33:29 2007 UTC (17 years ago) by root
Branch: MAIN
CVS Tags: rel-2_1
Changes since 1.5: +2 -0 lines
Log Message:
add books from books.pod via some most dire hacks

File Contents

# Content
1 #! perl
2
3 use IO::Socket;
4 use Storable qw/nfreeze thaw/;
5
6 my %global; # for use by eval'ed commands
7
8 sub tcp_serve($) {
9 my ($fh) = @_;
10
11 select $fh;
12
13 binmode $fh, ":raw:perlio:utf8";
14
15 my $buf;
16 my ($a, $b, $c, $d, $e, $f, $g, $h, $i, $j, $k, $l, $m, $n, $o, $p, $q, $r, $s, $t, $u, $v, $w, $x, $y, $z);
17 my (%l, @l); # for use by shell users
18
19 print <<EOF;
20 Welcome!
21 Remember that everything entered here will be in the main coro context within cf::!
22 You can freely use \$a .. \$z and \@l and \%l
23
24 Useful commands (note the '&'):
25
26 reload_perl &
27 reload_regions &
28 reload_facedata &
29 reload_treasures &
30 reload_archetypes &
31 ext::help::reload &
32 ext::books::reload &
33 ext::map_world::reload &
34 EOF
35 print "\n> ";
36
37 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub {
38 if (defined (my $cmd = <$fh>)) {
39 $cmd =~ s/\s+$//;
40
41 if ($cmd =~ /^\s*exit\b/i) {
42 print "will not exit() server.\n";
43 } else {
44 my $sub = sub {
45 package cf;
46 select $fh;
47
48 # compile first, the execute, as Coro does not support switching in eval string
49 my $cb = eval "sub { $cmd }";
50
51 my $t1 = Time::HiRes::time;
52 my @res = $@ ? () : eval { $cb->() };
53 my $t2 = Time::HiRes::time;
54
55 print "\n",
56 "command: '$cmd'\n",
57 "execution time: ", $t2 - $t1, "\n";
58 warn "evaluation error: $@" if $@;
59 print "evaluation error: $@\n" if $@;
60 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
61 print "\n> ";
62 };
63
64 if ($cmd =~ s/\s*&$//) {
65 Coro::async_pool { $sub->() };
66 } else {
67 $sub->();
68 }
69 }
70
71 print "\n> ";
72 } else {
73 $_[0]->w->cancel;
74 }
75 });
76 }
77
78 # now a shell listening on a tcp-port - let the firewall decide access rights
79 if ($cf::CFG{perl_shell}) {
80 if (my $listen = new IO::Socket::INET LocalAddr => $cf::CFG{perl_shell}, Listen => 1, ReuseAddr => 1) {
81 Event->io (fd => $listen, poll => 'r', data => cf::WF_AUTOCANCEL, cb => sub { tcp_serve $listen->accept });
82 }
83 }