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.
6 # Hence the name of 'spider' (although it may become 'dxspider')
8 # Copyright (c) 1998 Dirk Koopman G1TLH
15 # make sure that modules are searched in the order local then perl
19 # root of directory tree for this system
21 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
23 unshift @INC, "$root/perl"; # this IS the right way round!
24 unshift @INC, "$root/local";
26 # try to create and lock a lockfile (this isn't atomic but
28 $lockfn = "$root/perl/cluster.lock"; # lock file name
30 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
33 die "Lockfile ($lockfn) and process $pid exist, another cluster running?" if kill 0, $pid;
36 open(CLLOCK, ">$lockfn") or die "Can't open Lockfile ($lockfn) $!";
68 @inqueue = (); # the main input queue, an array of hashes
69 $systime = 0; # the time now (in seconds)
70 $version = "1.31"; # the version no of the software
71 $starttime = 0; # the starting time of the cluster
72 $lockfn = "cluster.lock"; # lock file name
74 # handle disconnections
78 return if !defined $dxchan;
79 $dxchan->disconnect();
82 # send a message to call on conn and disconnect
85 my ($conn, $call, $mess) = @_;
87 dbg('chan', "-> D $call $mess\n");
88 $conn->send_now("D$call|$mess");
90 dbg('chan', "-> Z $call bye\n");
91 $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
96 # handle incoming messages
99 my ($conn, $msg, $err) = @_;
100 my $dxchan = DXChannel->get_by_cnum($conn); # get the dxconnnect object for this message
102 if (defined $err && $err) {
103 disconnect($dxchan) if defined $dxchan;
107 # set up the basic channel info - this needs a bit more thought - there is duplication here
108 if (!defined $dxchan) {
109 my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
111 # is there one already connected to me ?
112 my $user = DXUser->get($call);
113 if (DXChannel->get($call)) {
114 my $mess = DXM::msg($lang, $user->sort eq 'A' ? 'concluster' : 'conother', $call);
115 already_conn($conn, $call, $mess);
119 # is there one already connected elsewhere in the cluster (and not a cluster)
121 if (($user->sort eq 'A' || $call eq $myalias) && !DXCluster->get_exact($call)) {
124 if (DXCluster->get($call) || DXChannel->get($call)) {
125 my $mess = DXM::msg($lang, $user->sort eq 'A' ? 'concluster' : 'conother', $call);
126 already_conn($conn, $call, $mess);
130 $user->{lang} = $main::lang if !$user->{lang}; # to autoupdate old systems
132 if (DXCluster->get($call)) {
133 my $mess = DXM::msg($lang, 'conother', $call);
134 already_conn($conn, $call, $mess);
137 $user = DXUser->new($call);
141 if ($user->lockout) {
142 Log('DXCommand', "$call is locked out, disconnected");
143 $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
148 $dxchan = DXCommandmode->new($call, $conn, $user) if ($user->sort eq 'U');
149 $dxchan = DXProt->new($call, $conn, $user) if ($user->sort eq 'A');
150 die "Invalid sort of user on $call = $sort" if !$dxchan;
153 # queue the message and the channel object for later processing
155 my $self = bless {}, "inqueue";
156 $self->{dxchan} = $dxchan;
157 $self->{data} = $msg;
158 push @inqueue, $self;
167 # cease running this program, close down all the connections nicely
172 $SIG{'TERM'} = 'IGNORE';
173 $SIG{'INT'} = 'IGNORE';
176 Local::finish(); # end local processing
178 dbg('local', "Local::finish error $@") if $@;
181 foreach $dxchan (DXChannel->get_all()) {
182 next if $dxchan->is_ak1a;
183 disconnect($dxchan) unless $dxchan == $DXProt::me;
185 Msg->event_loop(1, 0.05);
186 Msg->event_loop(1, 0.05);
187 Msg->event_loop(1, 0.05);
188 Msg->event_loop(1, 0.05);
189 Msg->event_loop(1, 0.05);
190 Msg->event_loop(1, 0.05);
193 foreach $dxchan (DXChannel->get_all()) {
194 next unless $dxchan->is_ak1a;
195 disconnect($dxchan) unless $dxchan == $DXProt::me;
197 Msg->event_loop(1, 0.05);
198 Msg->event_loop(1, 0.05);
199 Msg->event_loop(1, 0.05);
200 Msg->event_loop(1, 0.05);
201 Msg->event_loop(1, 0.05);
202 Msg->event_loop(1, 0.05);
203 Msg->event_loop(1, 0.05);
204 Msg->event_loop(1, 0.05);
205 Msg->event_loop(1, 0.05);
206 Msg->event_loop(1, 0.05);
207 Msg->event_loop(1, 0.05);
208 Msg->event_loop(1, 0.05);
210 dbg('chan', "DXSpider version $version ended");
211 Log('cluster', "DXSpider V$version stopped");
215 # $SIG{__WARN__} = $SIG{__DIE__} = sub {my $a = shift; cluck($a); };
219 # the reaper of children
222 $SIG{'CHLD'} = \&reap;
226 # this is where the input queue is dealt with and things are dispatched off to other parts of
230 my $self = shift @inqueue;
233 my $data = $self->{data};
234 my $dxchan = $self->{dxchan};
235 my ($sort, $call, $line) = $data =~ /^(\w)([A-Z0-9\-]+)\|(.*)$/;
237 # the above regexp must work
238 return unless ($sort && $call && $line);
240 # translate any crappy characters into hex characters
241 if ($line =~ /[\x00-\x06\x08\x0a-\x1f\x7f-\xff]/o) {
242 $line =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg;
243 # dbg('chan', "<- $sort $call **CRAP**: $line");
247 # do the really sexy console interface bit! (Who is going to do the TK interface then?)
248 dbg('chan', "<- $sort $call $line\n") unless $sort eq 'D';
251 my $user = $dxchan->user;
252 if ($sort eq 'A' || $sort eq 'O') {
253 $dxchan->start($line, $sort);
254 } elsif ($sort eq 'I') {
255 die "\$user not defined for $call" if !defined $user;
258 $dxchan->normal($line);
260 disconnect($dxchan) if ($dxchan->{state} eq 'bye');
261 } elsif ($sort eq 'Z') {
263 } elsif ($sort eq 'D') {
264 ; # ignored (an echo)
266 print STDERR atime, " Unknown command letter ($sort) received from $call\n";
272 my $t = $systime - $starttime;
273 my $days = int $t / 86400;
275 my $hours = int $t / 3600;
277 my $mins = int $t / 60;
278 return sprintf "%d %02d:%02d", $days, $hours, $mins;
280 #############################################################
282 # The start of the main line of code
284 #############################################################
286 $starttime = $systime = time;
288 # open the debug file, set various FHs to be unbuffered
293 STDOUT->autoflush(1);
295 Log('cluster', "DXSpider V$version started");
298 print "DXSpider DX Cluster Version $version\nCopyright (c) 1998 Dirk Koopman G1TLH\n";
301 print "loading prefixes ...\n";
305 print "loading band data ...\n";
308 # initialise User file system
309 print "loading user file system ...\n";
310 DXUser->init($userfn, 1);
312 # start listening for incoming messages/connects
313 print "starting listener ...\n";
314 Msg->new_server("$clusteraddr", $clusterport, \&login);
317 $SIG{'INT'} = \&cease;
318 $SIG{'TERM'} = \&cease;
319 $SIG{'HUP'} = 'IGNORE';
320 $SIG{'CHLD'} = \&reap;
322 # read in system messages
325 # read in command aliases
328 # initialise the Geomagnetic data engine
331 # initial the Spot stuff
334 # initialise the protocol engine
335 print "reading in duplicate spot and WWV info ...\n";
339 # put in a DXCluster node for us here so we can add users and take them away
340 DXNode->new(0, $mycall, 0, 1, $DXProt::myprot_version);
342 # read in any existing message headers and clean out old crap
343 print "reading existing message headers ...\n";
347 # read in any cron jobs
348 print "reading cron jobs ...\n";
351 # starting local stuff
352 print "doing local initialisation ...\n";
356 dbg('local', "Local::init error $@") if $@;
358 # print various flags
359 #print "useful info - \$^D: $^D \$^W: $^W \$^S: $^S \$^P: $^P\n";
361 # this, such as it is, is the main loop!
362 print "orft we jolly well go ...\n";
363 dbg('chan', "DXSpider version $version started...");
366 Msg->event_loop(1, 0.001);
368 process_inqueue(); # read in lines from the input queue and despatch them
370 # do timed stuff, ongoing processing happens one a second
371 if ($timenow != $systime) {
375 DXCron::process(); # do cron jobs
376 DXCommandmode::process(); # process ongoing command mode stuff
377 DXProt::process(); # process ongoing ak1a pcxx stuff
378 DXConnect::process();
381 Local::process(); # do any localised processing
383 dbg('local', "Local::process error $@") if $@;
386 last if --$decease <= 0;