e13fb03493dea1093bb0c1e2844005fad9ed7078
[spider.git] / perl / cluster.pl
1 #!/usr/bin/env 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 #
11 #
12
13 package main;
14
15 require 5.10.1;
16 use warnings;
17
18 use vars qw($root $is_win $systime $lockfn @inqueue $starttime $lockfn @outstanding_connects
19                         $zombies @listeners $lang $myalias @debug $userfn $clusteraddr
20                         $clusterport $mycall $decease $routeroot $me $reqreg $bumpexisting
21                         $allowdxby $dbh $dsn $dbuser $dbpass $do_xml $systime_days $systime_daystart
22                         $can_encode $maxconnect_user $maxconnect_node $idle_interval $log_flush_interval
23                         $broadcast_debug 
24                    );
25
26 $lang = 'en';                                   # default language
27 $clusteraddr = '127.0.0.1';             # cluster tcp host address - used for things like console.pl
28 $clusterport = 27754;                   # cluster tcp port
29 $yes = 'Yes';                                   # visual representation of yes
30 $no = 'No';                                             # ditto for no
31 $user_interval = 11*60;                 # the interval between unsolicited prompts if no traffic
32
33 # make sure that modules are searched in the order local then perl
34 BEGIN {
35         umask 002;
36
37         # take into account any local::lib that might be present
38         eval {
39                 require local::lib;
40         };
41         import local::lib unless ($@);
42
43         # root of directory tree for this system
44         $root = "/spider";
45         $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
46
47         unshift @INC, "$root/perl";     # this IS the right way round!
48         unshift @INC, "$root/local";
49
50         # do some validation of the input
51         die "The directory $root doesn't exist, please RTFM" unless -d $root;
52         die "$root/local doesn't exist, please RTFM" unless -d "$root/local";
53         die "$root/local/DXVars.pm doesn't exist, please RTFM" unless -e "$root/local/DXVars.pm";
54
55         # create some directories
56         mkdir "$root/local_cmd", 02774 unless -d "$root/local_cmd";
57
58         # locally stored data lives here
59         my $local_data = "$root/local_data";
60         mkdir $local_data, 02774 unless -d $local_data;
61
62         # try to create and lock a lockfile (this isn't atomic but
63         # should do for now
64         $lockfn = "$root/local_data/cluster.lck";       # lock file name
65         if (-w $lockfn) {
66                 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
67                 my $pid = <CLLOCK>;
68                 if ($pid) {
69                         chomp $pid;
70                         if (kill 0, $pid) {
71                                 warn "Lockfile ($lockfn) and process $pid exist, another cluster running?\n";
72                                 exit 1;
73                         }
74                 }
75                 unlink $lockfn;
76                 close CLLOCK;
77         }
78         open(CLLOCK, ">$lockfn") or die "Can't open Lockfile ($lockfn) $!";
79         print CLLOCK "$$\n";
80         close CLLOCK;
81
82         $is_win = ($^O =~ /^MS/ || $^O =~ /^OS-2/) ? 1 : 0; # is it Windows?
83         $systime = time;
84         
85 }
86
87 use DXVars;
88 use SysVar;
89
90 use strict;
91
92 # order here is important - DXDebug snarfs Carp et al so that Mojo errors go into the debug log
93 use DXDebug;
94
95 use Mojolicious 7.26;
96 use Mojo::IOLoop;
97
98 use Msg;
99 use IntMsg;
100 use Internet;
101 use Listeners;
102 use ExtMsg;
103 use AGWConnect;
104 use AGWMsg;
105 use DXLog;
106 use DXLogPrint;
107 use DXUtil;
108 use DXChannel;
109 use DXUser;
110 use DXM;
111 use DXCommandmode;
112 use DXProtVars;
113 use DXProtout;
114 use DXProt;
115 use DXMsg;
116 use DXCron;
117 use DXConnect;
118 use DXBearing;
119 use DXDb;
120 use DXHash;
121 use DXDupe;
122 use Script;
123 use Prefix;
124 use Spot;
125 use Bands;
126 use Keps;
127 use Minimuf;
128 use Sun;
129 use Geomag;
130 use CmdAlias;
131 use Filter;
132 use AnnTalk;
133 use BBS;
134 use WCY;
135 use BadWords;
136 use Timer;
137 use Route;
138 use Route::Node;
139 use Route::User;
140 use Editable;
141 use Mrtg;
142 use USDB;
143 use UDPMsg;
144 use QSL;
145 use DXXml;
146 use DXSql;
147 use IsoTime;
148 use BPQMsg;
149
150
151
152 use Data::Dumper;
153 use IO::File;
154 use Fcntl ':flock';
155 use POSIX ":sys_wait_h";
156 use Web;
157
158 use vars qw($version $build $gitversion $gitbranch);
159
160 use Local;
161
162
163 @inqueue = ();                                  # the main input queue, an array of hashes
164 $systime = 0;                                   # the time now (in seconds)
165 $starttime = 0;                 # the starting time of the cluster
166 @outstanding_connects = ();     # list of outstanding connects
167 @listeners = ();                                # list of listeners
168 $reqreg = 0;                                    # 1 = registration required, 2 = deregister people
169 $bumpexisting = 1;                              # 1 = allow new connection to disconnect old, 0 - don't allow it
170 our $allowmultiple = 0;                         # This is used in conjunction with $bumpexisting, in a rather weird way.
171 our $min_reconnection_rate = 5*60;              # minimum value of seconds between connections per user to allow co-existing users
172 our $max_ssid = 15;                                     # highest ssid to be searched for a spare one on multiple connections
173
174 # If $allowmultiple > 0 and the $reconnection_rate is some value of seconds
175 # based on the average connection time calculated from the $user->conntimel entries / frequency is
176 # less than $reconnection_rate then we assume that there is more than one device (probably HRD) trying
177 # to connect "at once". In which case we probe for a spare SSID for a user callsign to allow up to 
178 # $allowmultiple connections per callsign. 
179
180 $allowdxby = 0;                                 # 1 = allow "dx by <othercall>", 0 - don't allow it
181 $maxconnect_user = 3;                   # the maximum no of concurrent connections a user can have at a time
182 $maxconnect_node = 0;                   # Ditto but for nodes. In either case if a new incoming connection
183                                                                 # takes the no of references in the routing table above these numbers
184                                                                 # then the connection is refused. This only affects INCOMING connections.
185 $idle_interval = 0.500;         # the wait between invocations of the main idle loop processing.
186 $log_flush_interval = 2;                # interval to wait between log flushes
187
188 our $ending;                                    # signal that we are ending;
189 our $broadcast_debug;                   # allow broadcasting of debug info down "enhanced" user connections
190 our $clssecs;                                   # the amount of cpu time the DXSpider process have consumed
191 our $cldsecs;                                   # the amount of cpu time any child processes have consumed
192
193
194 # send a message to call on conn and disconnect
195 sub already_conn
196 {
197         my ($conn, $call, $mess) = @_;
198
199         $conn->disable_read(1);
200         dbg("-> D $call $mess\n") if isdbg('chan');
201         $conn->send_now("D$call|$mess");
202         sleep(2);
203         $conn->disconnect;
204 }
205
206 # handle incoming messages
207 sub new_channel
208 {
209         my ($conn, $msg) = @_;
210         my ($sort, $call, $line) = DXChannel::decode_input(0, $msg);
211         return unless defined $sort;
212
213         my ($dxchan, $user);
214         
215         if (is_webcall($call) && $conn->isa('IntMsg')) {
216                 my $newcall = find_next_webcall();
217                 unless ($newcall) {
218                         already_conn($conn, $call, "Maximum no of web connected connects ($Web::maxssid) exceeded");
219                         return;
220                 }
221                 $call = $newcall;
222                 $user = DXUser::get_current($call);
223                 unless ($user) {
224                         $user = DXUser->new($call);
225                         $user->sort('W');
226                         $user->wantbeep(0);
227                         $user->name('web');
228                         $user->qth('on the web');
229                         $user->homenode($main::mycall);
230                         $user->lat($main::mylatitude);
231                         $user->long($main::mylongitude);
232                         $user->qra($main::mylocator);
233                 }
234                 $user->startt($main::systime);
235                 $conn->conns($call);
236                 $dxchan = Web->new($call, $conn, $user);
237                 $dxchan->enhanced(1);
238                 $dxchan->ve7cc(1);
239                 $msg =~ s/^A#WEB|/A$call|/;
240                 $conn->send_now("C$call");
241         } else {
242                 # "Normal" connections
243                 unless (is_callsign($call)) {
244                         already_conn($conn, $call, DXM::msg($lang, "illcall", $call));
245                         return;
246                 }
247
248                 # is he locked out ?
249                 $user = DXUser::get_current($call);
250                 my $basecall = $call;
251                 $basecall =~ s/-\d+$//; # remember this for later multiple user processing
252                 my $lock;
253                 if ($user) {
254                         # make sure we act on any locked status that the actual incoming call has.
255                         $lock = $user->lockout;
256                 } elsif ($allowmultiple && $call ne $basecall) {
257                     # if we are allowing multiple connections and there is a basecall minus incoming ssid, use the basecall's lock status
258                         $user = DXUser::get_current($basecall);
259                         $lock = $user->lockout if $user;
260                 }
261
262                 # now deal with the lock
263                 if ($lock) {
264                         my $host = $conn->peerhost;
265                         LogDbg('', "$call on $host is locked out, disconnected");
266                         $conn->disconnect;
267                         return;
268                 }
269
270                 # set up the basic channel info for "Normal" Users
271                 # is there one already connected to me - locally?
272
273                 $dxchan = DXChannel::get($call);
274                 my $newcall = $call;
275                 if ($dxchan) {
276                         if ($user && $user->is_node) {
277                                 already_conn($conn, $call, DXM::msg($lang, 'conother', $call, $main::mycall));
278                                 return;
279                         }
280                         if ($allowmultiple && $user->is_user) {
281                                 # determine whether we are a candidate, have we flip-flopped frequently enough?
282                                 my @lastconns = @{$user->connlist} if $user->connlist;
283                                 my $allow = 0;
284                                 if (@lastconns >= $DXUser::maxconnlist) {
285                                         $allow = $lastconns[-1]->[0] - $lastconns[0]->[0] < $min_reconnection_rate;
286                                 } 
287                                 # search for a spare ssid
288                         L1:     for (my $count = $call =~ /-\d+$/?0:1; $allow && $count < $allowmultiple; ) { # remember we have one call already
289                                         my $lastid = 1;
290                                         for (; $lastid < $max_ssid && $count < $allowmultiple; ++$lastid) {
291                                                 my $chan = DXChannel::get("$basecall-$lastid");
292                                                 if ($chan) {
293                                                         ++$count;
294                                                         next;
295                                                 }
296                                                 # we have a free call-ssid, save it
297                                                 $newcall = "$basecall-$lastid";
298                                                 last L1;
299                                         }
300                                 }
301                         }
302
303                         # handle "normal" (non-multiple) connections in the existing way
304                         if ($call eq $newcall) {
305                                 if ($bumpexisting) {
306                                         my $ip = $dxchan->hostname;
307                                         $dxchan->send_now('D', DXM::msg($lang, 'conbump', $call, $ip));
308                                         LogDbg('', "$call bumped off by $ip, disconnected");
309                                         $dxchan->disconnect;
310                                 } else {
311                                         already_conn($conn, $call, DXM::msg($lang, 'conother', $call, $main::mycall));
312                                         return;
313                                 }
314                         }
315
316                         # make sure that the conn has the (possibly) new callsign
317                         $conn->conns($newcall);
318                         $msg =~ s/$call/$newcall/;
319                 }
320
321
322                 # (fairly) politely disconnect people that are connected to too many other places at once
323                 my $r = Route::get($call);
324                 if ($conn->{sort} && $conn->{sort} =~ /^I/ && $r && $user) {
325                         my @n = $r->parents;
326                         my $m = $r->isa('Route::Node') ? $maxconnect_node : $maxconnect_user;
327                         my $c = $user->maxconnect;
328                         my $v;
329                         $v = defined $c ? $c : $m;
330                         if ($v && @n >= $v+$allowmultiple) {
331                                 my $nodes = join ',', @n;
332                                 LogDbg('', "$call has too many connections ($v) at $nodes - disconnected");
333                                 already_conn($conn, $call, DXM::msg($lang, 'contomany', $call, $v, $nodes));
334                                 return;
335                         }
336                 }
337                 
338                 if ($user) {
339                         $user->{lang} = $main::lang if !$user->{lang}; # to autoupdate old systems
340                 } else {
341                         $user = DXUser->new($call);
342                 }
343
344                 # create the channel
345                 # NOTE we are SHARING the same $user if $allowmultiple is > 1
346                 
347                 $user->startt($systime); # mark the start time of this connection
348                 if ($user->is_node) {
349                         $dxchan = DXProt->new($call, $conn, $user);
350                 } elsif ($user->is_user) {
351                         $dxchan = DXCommandmode->new($newcall, $conn, $user);
352                 } else {
353                         die "Invalid sort of user on $call = $sort";
354                 }
355         }
356         
357
358         # set callbacks
359         $conn->set_error(sub {my $err = shift; LogDbg('', "Comms error '$err' received for call $dxchan->{call}"); $dxchan->disconnect(1);});
360         $conn->set_on_eof(sub {$dxchan->disconnect});
361         $conn->set_rproc(sub {my ($conn,$msg) = @_; $dxchan->rec($msg);});
362         if ($sort eq 'W') {
363                 $dxchan->enhanced(1);
364                 $dxchan->sort('W');
365         }
366         $dxchan->rec($msg);
367 }
368
369
370 sub login
371 {
372         return \&new_channel;
373 }
374
375 our $ceasing;
376
377 # cease running this program, close down all the connections nicely
378 sub cease
379 {
380         my $dxchan;
381
382         cluck("ceasing") if $ceasing; 
383         
384         return if $ceasing++;
385         
386         unless ($is_win) {
387                 $SIG{'TERM'} = 'IGNORE';
388                 $SIG{'INT'} = 'IGNORE';
389         }
390
391
392         if (defined &Local::finish) {
393                 eval {
394                         Local::finish();   # end local processing
395                 };
396                 dbg("Local::finish error $@") if $@;
397         }
398
399
400         # disconnect AGW
401         AGWMsg::finish();
402         BPQMsg::finish();
403
404         # disconnect UDP customers
405         UDPMsg::finish();
406
407         # end everything else
408         DXUser::finish();
409         DXDupe::finish();
410
411         # close all databases
412         DXDb::closeall;
413
414         # close all listeners
415         foreach my $l (@listeners) {
416                 $l->close_server;
417         }
418
419         LogDbg('cluster', "DXSpider V$version, build $build (git: $gitbranch/$gitversion) ended");
420         dbg("bye bye everyone - bye bye");
421         dbgclose();
422         Logclose();
423
424         $dbh->finish if $dbh;
425
426         unlink $lockfn;
427 }
428
429 # the reaper of children
430 sub reap
431 {
432         my $cpid;
433         while (($cpid = waitpid(-1, WNOHANG)) > 0) {
434                 dbg("cpid: $cpid") if isdbg('reap');
435 #               Msg->pid_gone($cpid);
436                 $zombies-- if $zombies > 0;
437         }
438         dbg("cpid: $cpid") if isdbg('reap');
439 }
440
441 # this is where the input queue is dealt with and things are dispatched off to other parts of
442 # the cluster
443
444 sub uptime
445 {
446         my $t = $systime - $starttime;
447         my $days = int $t / 86400;
448         $t -= $days * 86400;
449         my $hours = int $t / 3600;
450         $t -= $hours * 3600;
451         my $mins = int $t / 60;
452         return sprintf "%d %02d:%02d", $days, $hours, $mins;
453 }
454
455 sub AGWrestart
456 {
457         AGWMsg::init(\&new_channel);
458 }
459
460
461 sub setup_start
462 {
463
464         #############################################################
465         #
466         # The start of the main line of code
467         #
468         #############################################################
469
470         $starttime = $systime = time;
471         $systime_days = int ($systime / 86400);
472         $systime_daystart = $systime_days * 86400;
473         $lang = 'en' unless $lang;
474
475         unless ($DB::VERSION) {
476                 $SIG{INT} = $SIG{TERM} = \&cease;
477         }
478
479         # open the debug file, set various FHs to be unbuffered
480         dbginit($broadcast_debug ? \&DXCommandmode::broadcast_debug : undef);
481         foreach (@debug) {
482                 dbgadd($_);
483         }
484         STDOUT->autoflush(1);
485
486         
487         # try to load the database
488         if (DXSql::init($dsn)) {
489                 $dbh = DXSql->new($dsn);
490                 $dbh = $dbh->connect($dsn, $dbuser, $dbpass) if $dbh;
491         }
492
493         # try to load Encode and Git
494         {
495                 local $^W = 0;
496                 my $w = $SIG{__DIE__};
497                 $SIG{__DIE__} = 'IGNORE';
498                 eval { require Encode; };
499                 unless ($@) {
500                         import Encode;
501                         $can_encode = 1;
502                 }
503                 $gitbranch = 'none';
504                 $gitversion = 'none';
505                 eval { require Git; };
506                 unless ($@) {
507                         import Git;
508                 
509                         # determine the real version number
510                         my $repo = Git->repository(Directory => "$root/.git");
511                         if ($repo) {
512                                 my $desc = $repo->command_oneline(['describe', '--long'], STDERR => 0);
513                                 if ($desc) {
514                                         my ($v, $s, $b, $g) = $desc =~ /^([\d.]+)(?:\.(\d+))?-(\d+)-g([0-9a-f]+)/;
515                                         $s ||= '';
516                                         dbg("Git: $desc") if isdbg('git');
517                                         dbg("Git: V=$v S=$s B=$b g=$g") if isdbg('git');
518                                         $version = $v;
519                                         $build = $b || 0;
520                                         $gitversion = "$g\[r]";
521                                 }
522                                 my @branch = $repo->command([qw{branch}], STDERR=>0);
523                                 for (@branch) {
524                                         my ($star, $b) = split /\s+/;
525                                         if ($star eq '*') {
526                                                 $gitbranch = $b;
527                                                 last;
528                                         }
529                                 }
530                         }
531                 }
532                 $SIG{__DIE__} = $w;
533         }
534
535         # try to load XML::Simple
536         DXXml::init();
537
538         # banner
539         my ($year) = (gmtime)[5];
540         $year += 1900;
541         LogDbg('cluster', "DXSpider V$version, build $build (git: $gitbranch/$gitversion) started");
542         dbg("Copyright (c) 1998-$year Dirk Koopman G1TLH");
543
544         # load Prefixes
545         dbg("loading prefixes ...");
546         dbg(USDB::init());
547         my $r = Prefix::init();
548         confess $r if $r;
549
550         # load band data
551         dbg("loading band data ...");
552         Bands::load();
553
554         # initialise User file system
555         dbg("loading user file system ...");
556         DXUser::init(4);                        # version 4 == json format
557
558         # look for the sysop and the alias user and complain if they aren't there
559         {
560                 die "\$myalias \& \$mycall are the same ($mycall)!, they must be different (hint: make \$mycall = '${mycall}-2';). Oh and don't forget to rerun create_sysop.pl!" if $mycall eq $myalias;
561                 my $ref = DXUser::get($mycall);
562                 die "$mycall missing, run the create_sysop.pl script and please RTFM" unless $ref && $ref->priv == 9;
563                 my $oldsort = $ref->sort;
564                 if ($oldsort ne 'S') {
565                         $ref->sort('S');
566                         dbg "Resetting node type from $oldsort -> DXSpider ('S')";
567                 }
568                 $ref = DXUser::get($myalias);
569                 die "$myalias missing, run the create_sysop.pl script and please RTFM" unless $ref && $ref->priv == 9;
570                 $oldsort = $ref->sort;
571                 if ($oldsort ne 'U') {
572                         $ref->sort('U');
573                         dbg "Resetting sysop user type from $oldsort -> User ('U')";
574                 }
575         }
576
577         # start listening for incoming messages/connects
578         dbg("starting listeners ...");
579         my $conn = IntMsg->new_server($clusteraddr, $clusterport, \&login);
580         $conn->conns("Server $clusteraddr/$clusterport using IntMsg");
581         push @listeners, $conn;
582         dbg("Internal port: $clusteraddr $clusterport using IntMsg");
583         foreach my $l (@main::listen) {
584                 no strict 'refs';
585                 my $pkg = $l->[2] || 'ExtMsg';
586                 my $login = $l->[3] || 'login';
587
588                 $conn = $pkg->new_server($l->[0], $l->[1], \&{"${pkg}::${login}"});
589                 $conn->conns("Server $l->[0]/$l->[1] using ${pkg}::${login}");
590                 push @listeners, $conn;
591                 dbg("External Port: $l->[0] $l->[1] using ${pkg}::${login}");
592         }
593
594         dbg("AGW Listener") if $AGWMsg::enable;
595         AGWrestart();
596
597         dbg("BPQ Listener") if $BPQMsg::enable;
598         BPQMsg::init(\&new_channel);
599
600         dbg("UDP Listener") if $UDPMsg::enable;
601         UDPMsg::init(\&new_channel);
602
603         # load bad words
604         dbg("load badwords: " . (BadWords::load or "Ok"));
605
606         # prime some signals
607         unless ($DB::VERSION) {
608                 $SIG{INT} = $SIG{TERM} = sub { $ending = 10; };
609         }
610
611         unless ($is_win) {
612                 $SIG{HUP} = 'IGNORE';
613                 $SIG{CHLD} = sub { $zombies++ };
614
615                 $SIG{PIPE} = sub {      dbg("Broken PIPE signal received"); };
616                 $SIG{IO} = sub {        dbg("SIGIO received"); };
617                 $SIG{WINCH} = $SIG{STOP} = $SIG{CONT} = 'IGNORE';
618                 $SIG{KILL} = 'DEFAULT'; # as if it matters....
619
620                 # catch the rest with a hopeful message
621                 for (keys %SIG) {
622                         if (!$SIG{$_}) {
623                                 #               dbg("Catching SIG $_") if isdbg('chan');
624                                 $SIG{$_} = sub { my $sig = shift;       DXDebug::confess("Caught signal $sig");  };
625                         }
626                 }
627         }
628
629         # start dupe system
630         dbg("Starting Dupe system");
631         DXDupe::init();
632
633         # read in system messages
634         dbg("Read in Messages");
635         DXM->init();
636
637         # read in command aliases
638         dbg("Read in Aliases");
639         CmdAlias->init();
640
641         # initialise the Geomagnetic data engine
642         dbg("Start WWV");
643         Geomag->init();
644         dbg("Start WCY");
645         WCY->init();
646
647         # initial the Spot stuff
648         dbg("Starting DX Spot system");
649         Spot->init();
650
651         # initialise the protocol engine
652         dbg("Start Protocol Engines ...");
653         DXProt->init();
654
655         # put in a DXCluster node for us here so we can add users and take them away
656         $routeroot = Route::Node->new($mycall, $version*100+5300, Route::here($main::me->here)|Route::conf($main::me->conf));
657         $routeroot->do_pc9x(1);
658         $routeroot->via_pc92(1);
659
660         # make sure that there is a routing OUTPUT node default file
661         #unless (Filter::read_in('route', 'node_default', 0)) {
662         #       my $dxcc = $main::me->dxcc;
663         #       $Route::filterdef->cmd($main::me, 'route', 'accept', "node_default call $mycall" );
664         #}
665
666         # read in any existing message headers and clean out old crap
667         dbg("reading existing message headers ...");
668         DXMsg->init();
669         DXMsg::clean_old();
670
671         # read in any cron jobs
672         dbg("reading cron jobs ...");
673         DXCron->init();
674
675         # read in database desriptors
676         dbg("reading database descriptors ...");
677         DXDb::load();
678
679         # starting local stuff
680         dbg("doing local initialisation ...");
681         QSL::init(1);
682         if (defined &Local::init) {
683                 eval {
684                         Local::init();
685                 };
686                 dbg("Local::init error $@") if $@;
687         }
688
689
690         # this, such as it is, is the main loop!
691         dbg("orft we jolly well go ...");
692         my $script = new Script "startup";
693         $script->run($main::me) if $script;
694
695         #open(DB::OUT, "|tee /tmp/aa");
696 }
697
698 our $io_disconnected;
699
700 sub idle_loop
701 {
702         BPQMsg::process();
703 #       DXCommandmode::process(); # process ongoing command mode stuff
704 #       DXProt::process();              # process ongoing ak1a pcxx stuff
705
706         if (defined &Local::process) {
707                 eval {
708                         Local::process();       # do any localised processing
709                 };
710                 dbg("Local::process error $@") if $@;
711         }
712
713         while ($ending) {
714                 my $dxchan;
715
716                 dbg("DXSpider Ending $ending");
717
718                 unless ($io_disconnected++) {
719
720                         # disconnect users
721                         foreach $dxchan (DXChannel::get_all_users) {
722                                 $dxchan->disconnect;
723                         }
724
725                         # disconnect nodes
726                         foreach $dxchan (DXChannel::get_all_nodes) {
727                                 next if $dxchan == $main::me;
728                                 $dxchan->disconnect(2);
729                         }
730                         $main::me->disconnect;
731                 }
732
733                 Mojo::IOLoop->stop if --$ending <= 0;
734         }
735 }
736
737 sub per_sec
738 {
739         my $timenow = time;
740
741         reap() if $zombies;
742         $systime = $timenow;
743         my $days = int ($systime / 86400);
744         if ($systime_days != $days) {
745                 $systime_days = $days;
746                 $systime_daystart = $days * 86400;
747         }
748         IsoTime::update($systime);
749         DXCommandmode::process(); # process ongoing command mode stuff
750         DXProt::process();              # process ongoing ak1a pcxx stuff
751         DXCron::process();      # do cron jobs
752         DXXml::process();
753         DXConnect::process();
754         DXMsg::process();
755         DXDb::process();
756         DXUser::process();
757         DXDupe::process();
758         DXCron::process();                      # do cron jobs
759         IsoTime::update($systime);
760         DXConnect::process();
761         DXUser::process();
762         AGWMsg::process();
763         
764         Timer::handler();
765         DXLog::flushall();
766 }
767
768 sub per_10_sec
769 {
770
771 }
772
773
774 sub per_minute
775 {
776
777 }
778
779 sub per_10_minute
780 {
781
782 }
783
784 sub per_hour
785 {
786
787 }
788
789 sub per_day
790 {
791
792 }
793
794 sub start_node
795 {
796         dbg("Before Web::start_node");
797
798         Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
799
800         dbg("After Web::start_node");
801 }
802
803 setup_start();
804
805 my $main_loop = Mojo::IOLoop->recurring($idle_interval => \&idle_loop);
806 my $log_flush_loop = Mojo::IOLoop->recurring($log_flush_interval => \&DXLog::flushall);
807 my $cpusecs_loop = Mojo::IOLoop->recurring(5 => sub {my @t = times; $clssecs = $t[0]+$t[1]; $cldsecs = $t[2]+$t[3]});
808 my $persec =  Mojo::IOLoop->recurring(1 => \&per_sec);
809 my $per10sec =  Mojo::IOLoop->recurring(10 => \&per_10_sec);
810 my $permin =  Mojo::IOLoop->recurring(60 => \&per_minute);
811 my $per10min =  Mojo::IOLoop->recurring(600 => \&per_10_minute);
812 my $perhour =  Mojo::IOLoop->recurring(3600 => \&per_hour);
813 my $perday =  Mojo::IOLoop->recurring(86400 => \&per_day);
814
815 start_node();
816
817 cease(0);
818
819 exit(0);
820