started to flesh some of it out.
[spider.git] / perl / cluster.pl
1 #!/usr/bin/perl
2 #
3 # A thing that implements dxcluster 'protocol'
4 #
5 # This is a perl module/program that sits on the end of a dxcluster
6 # 'protocol' connection and deals with anything that might come along.
7 #
8 # this program is called by ax25d and gets raw ax25 text on its input
9 #
10 # Copyright (c) 1998 Dirk Koopman G1TLH
11 #
12 # $Id$
13
14
15 use Msg;
16 use DXVars;
17 use DXUtil;
18 use DXChannel;
19 use DXUser;
20 use DXM;
21
22 package main;
23
24 @inqueue = ();                # the main input queue, an array of hashes 
25
26 # handle disconnections
27 sub disconnect
28 {
29   my $dxchan = shift;
30   return if !defined $dxchan;
31   my ($user) = $dxchan->{user};
32   my ($conn) = $dxchan->{conn};
33   $user->close() if defined $user;
34   $conn->disconnect() if defined $conn;
35   $dxchan->del();
36 }
37
38 # handle incoming messages
39 sub rec
40 {
41   my ($conn, $msg, $err) = @_;
42   my $dxchan = DXChannel->get_by_cnum($conn);      # get the dxconnnect object for this message
43   
44   if (defined $err && $err) {
45     disconnect($dxchan) if defined $dxchan;
46         return;
47   }
48   
49   # set up the basic channel info
50   if (!defined $dxchan) {
51      my $user = DXUser->get($call);
52          $user = DXUser->new($call) if !defined $user;
53      $dxchan = DXChannel->new($call, $conn, $user);  
54   }
55   
56   # queue the message and the channel object for later processing
57   if (defined $msg) {
58     my $self = bless {}, "inqueue";
59     $self->{dxchan} = $dxchan;
60     $self->{data} = $msg;
61         push @inqueue, $self;
62   }
63 }
64
65 sub login
66 {
67   return \&rec;
68 }
69
70 # cease running this program, close down all the connections nicely
71 sub cease
72 {
73   my $dxchan;
74   foreach $dxchan (DXChannel->get_all()) {
75     disconnect($dxchan);
76   }
77 }
78
79 # this is where the input queue is dealt with and things are dispatched off to other parts of
80 # the cluster
81 sub process_inqueue
82 {
83   my $self = shift @inqueue;
84   return if !$self;
85   
86   my $data = $self->{data};
87   my $dxchan = $self->{dxchan};
88   my ($sort, $call, $line) = $data =~ /^(\w)(\S+)|(.*)$/;
89   
90   # do the really sexy console interface bit! (Who is going to do the TK interface then?)
91   print DEBUG atime, " < $sort $call $line\n" if defined DEBUG;
92   print "< $sort $call $line\n";
93   
94   # handle A records
95   if ($sort eq 'A') {
96     my $user = $dxchan->{user};
97         $user->{sort} = 'U' if !defined $user->{sort};
98     if ($user->{sort} eq 'U') {
99           $dxchan->send_later('D', m('l2', $call, $mycall, $myqth));
100           $dxchan->send_file($motd) if (-e $motd);
101         }
102   } elsif (sort eq 'D') {
103     ;
104   } elsif ($sort eq 'Z') {
105     disconnect($dxchan);
106   }
107 }
108
109 #############################################################
110 #
111 # The start of the main line of code 
112 #
113 #############################################################
114
115 # open the debug file, set various FHs to be unbuffered
116 open(DEBUG, ">>$debugfn") or die "can't open $debugfn($!)\n";
117 select DEBUG; $| = 1;
118 select STDOUT; $| = 1;
119
120 # initialise User file system
121 DXUser->init($userfn);
122
123 # start listening for incoming messages/connects
124 Msg->new_server("$clusteraddr", $clusterport, \&login);
125
126 # prime some signals
127 $SIG{'INT'} = \&cease;
128 $SIG{'TERM'} = \&cease;
129 $SIG{'HUP'} = 'IGNORE';
130
131 # this, such as it is, is the main loop!
132 for (;;) {
133   Msg->event_loop(1, 0.001);
134   process_inqueue();
135 }
136