ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/dm-support.ext
Revision: 1.5
Committed: Thu Aug 24 14:04:18 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.4: +34 -9 lines
Log Message:
removed dmshell code, added shell running on a tcp port

File Contents

# User Rev Content
1 elmex 1.1 #! perl
2    
3 root 1.5 use IO::Socket;
4 root 1.2 use Storable qw/nfreeze thaw/;
5 elmex 1.1
6 root 1.2 my %global; # for use by eval'ed commands
7    
8 root 1.5 sub tcp_serve($) {
9     my ($fh) = @_;
10 root 1.2
11 root 1.5 binmode $fh, ":raw:perlio:utf8";
12 root 1.2
13 root 1.5 my $buf;
14     my ($a,$b,$c,$d,%l,@l); # for use by shell users
15 root 1.2
16 root 1.5 print $fh "Welcome\n> ";
17    
18     Event->io (fd => $fh, poll => 'r', cb => sub {
19     if (defined (my $cmd = <$fh>)) {
20     my $old_fh = select $fh;
21    
22     if ($cmd =~ /^\s*exit\b/i) {
23     print "will not exit() server.\n";
24     } else {
25     {
26     package cf;
27     eval $cmd;
28     }
29     print $@ if $@;
30     }
31    
32     print "> ";
33     select $old_fh;
34     } else {
35     $_[0]->w->cancel;
36     }
37     });
38     }
39    
40     # now a shell listening on a tcp-port - let the firewall decide access rights
41     if (my $listen = new IO::Socket::INET LocalAddr => "127.0.0.1:13322", Listen => 1, ReuseAddr => 1) {
42     Event->io (fd => $listen, poll => 'r', cb => sub { tcp_serve $listen->accept });
43     }