added new debugging to daily file logging
[spider.git] / perl / cluster.pl
1 #!/usr/bin/perl
2 #
3 # This is the DX cluster 'daemon'. It sits in the middle of its little
4 # web of client routines sucking and blowing data where it may.
5 #
6 # Hence the name of 'spider' (although it may become 'dxspider')
7 #
8 # Copyright (c) 1998 Dirk Koopman G1TLH
9 #
10 # $Id$
11
12
13 # make sure that modules are searched in the order local then perl
14 BEGIN {
15         # root of directory tree for this system
16         $root = "/spider"; 
17         $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
18         
19         unshift @INC, "$root/perl";     # this IS the right way round!
20         unshift @INC, "$root/local";
21
22 #       require Exporter;
23 #       $Exporter::Verbose = 1;
24 }
25
26 use Msg;
27 use DXVars;
28 use DXDebug;
29 use DXLog;
30 use DXUtil;
31 use DXChannel;
32 use DXUser;
33 use DXM;
34 use DXCommandmode;
35 use DXProt;
36 use DXMsg;
37 use DXCluster;
38 use DXCron;
39 use DXConnect;
40 use Prefix;
41 use Bands;
42 use Geomag;
43 use CmdAlias;
44 use Carp;
45
46 package main;
47
48 @inqueue = ();                                  # the main input queue, an array of hashes
49 $systime = 0;                                   # the time now (in seconds)
50 $version = 1.3;                                 # the version no of the software
51
52 # handle disconnections
53 sub disconnect
54 {
55         my $dxchan = shift;
56         return if !defined $dxchan;
57         $dxchan->disconnect();
58 }
59
60 # handle incoming messages
61 sub rec
62 {
63         my ($conn, $msg, $err) = @_;
64         my $dxchan = DXChannel->get_by_cnum($conn); # get the dxconnnect object for this message
65         
66         if (defined $err && $err) {
67                 disconnect($dxchan) if defined $dxchan;
68                 return;
69         }
70         
71         # set up the basic channel info - this needs a bit more thought - there is duplication here
72         if (!defined $dxchan) {
73                 my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
74                 
75                 # is there one already connected?
76                 if (DXChannel->get($call)) {
77                         my $mess = DXM::msg($lang, 'conother', $call);
78                         dbg('chan', "-> D $call $mess\n"); 
79                         $conn->send_now("D$call|$mess");
80                         sleep(1);
81                         dbg('chan', "-> Z $call bye\n");
82                         $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
83                         return;
84                 }
85                 
86                 # is there one already connected elsewhere in the cluster?
87                 if (DXCluster->get($call)) {
88                         my $mess = DXM::msg($lang, 'concluster', $call);
89                         dbg('chan', "-> D $call $mess\n"); 
90                         $conn->send_now("D$call|$mess");
91                         sleep(1);
92                         dbg('chan', "-> Z $call bye\n");
93                         $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
94                         return;
95                 }
96                 
97                 my $user = DXUser->get($call);
98                 if (!defined $user) {
99                         $user = DXUser->new($call);
100                 } else {
101                         $user->{lang} = $main::lang if !$user->{lang}; # to autoupdate old systems
102                 }
103                 
104                 
105                 # create the channel
106                 $dxchan = DXCommandmode->new($call, $conn, $user) if ($user->sort eq 'U');
107                 $dxchan = DXProt->new($call, $conn, $user) if ($user->sort eq 'A');
108                 die "Invalid sort of user on $call = $sort" if !$dxchan;
109         }
110         
111         # queue the message and the channel object for later processing
112         if (defined $msg) {
113                 my $self = bless {}, "inqueue";
114                 $self->{dxchan} = $dxchan;
115                 $self->{data} = $msg;
116                 push @inqueue, $self;
117         }
118 }
119
120 sub login
121 {
122         return \&rec;
123 }
124
125 # cease running this program, close down all the connections nicely
126 sub cease
127 {
128         my $dxchan;
129         foreach $dxchan (DXChannel->get_all()) {
130                 disconnect($dxchan);
131         }
132         exit(0);
133 }
134
135 # this is where the input queue is dealt with and things are dispatched off to other parts of
136 # the cluster
137 sub process_inqueue
138 {
139         my $self = shift @inqueue;
140         return if !$self;
141         
142         my $data = $self->{data};
143         my $dxchan = $self->{dxchan};
144         my ($sort, $call, $line) = $data =~ /^(\w)(\S+)\|(.*)$/;
145         
146         # do the really sexy console interface bit! (Who is going to do the TK interface then?)
147         dbg('chan', "<- $sort $call $line\n");
148         
149         # handle A records
150         my $user = $dxchan->user;
151         if ($sort eq 'A') {
152                 $dxchan->start($line);  
153         } elsif ($sort eq 'D') {
154                 die "\$user not defined for $call" if !defined $user;
155                 
156                 # normal input
157                 $dxchan->normal($line);
158                 
159                 disconnect($dxchan) if ($dxchan->{state} eq 'bye');
160         } elsif ($sort eq 'Z') {
161                 disconnect($dxchan);
162         } else {
163                 print STDERR atime, " Unknown command letter ($sort) received from $call\n";
164         }
165 }
166
167 #############################################################
168 #
169 # The start of the main line of code 
170 #
171 #############################################################
172
173 # open the debug file, set various FHs to be unbuffered
174 foreach (@debug) {
175         dbgadd($_);
176 }
177 STDOUT->autoflush(1);
178
179 # banner
180 print "DXSpider DX Cluster Version $version\nCopyright (c) 1998 Dirk Koopman G1TLH\n";
181
182 # load Prefixes
183 print "loading prefixes ...\n";
184 Prefix::load();
185
186 # load band data
187 print "loading band data ...\n";
188 Bands::load();
189
190 # initialise User file system
191 print "loading user file system ...\n"; 
192 DXUser->init($userfn);
193
194 # start listening for incoming messages/connects
195 print "starting listener ...\n";
196 Msg->new_server("$clusteraddr", $clusterport, \&login);
197
198 # prime some signals
199 $SIG{'INT'} = \&cease;
200 $SIG{'TERM'} = \&cease;
201 $SIG{'HUP'} = 'IGNORE';
202
203 # read in system messages
204 DXM->init();
205
206 # read in command aliases
207 CmdAlias->init();
208
209 # initialise the protocol engine
210 DXProt->init();
211
212 # initialise the Geomagnetic data engine
213 Geomag->init();
214
215 # initial the Spot stuff
216 Spot->init();
217
218 # put in a DXCluster node for us here so we can add users and take them away
219 DXNode->new(0, $mycall, 0, 1, $DXProt::myprot_version); 
220
221 # read in any existing message headers
222 print "reading existing message headers\n";
223 DXMsg->init();
224
225 # read in any cron jobs
226 print "reading cron jobs\n";
227 DXCron->init();
228
229 # this, such as it is, is the main loop!
230 print "orft we jolly well go ...\n";
231 for (;;) {
232         my $timenow;
233         Msg->event_loop(1, 0.001);
234         $timenow = time;
235         process_inqueue();                      # read in lines from the input queue and despatch them
236         
237         # do timed stuff, ongoing processing happens one a second
238         if ($timenow != $systime) {
239                 $systime = $timenow;
240                 $cldate = &cldate();
241                 $ztime = &ztime();
242                 DXCron::process();      # do cron jobs
243                 DXCommandmode::process(); # process ongoing command mode stuff
244                 DXProt::process();              # process ongoing ak1a pcxx stuff
245                 DXConnect::process();
246         }
247 }
248
249