send out periodic pc92 C records
[spider.git] / perl / DXProt.pm
index ccb183c3691b89a41f05bed5e36f7b7200a0c4e7..6591c511a7e5cc8fd81dd3f3e965b31814f59541 100644 (file)
@@ -50,6 +50,7 @@ use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restim
                        $investigation_int $pc19_version $myprot_version
                        %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
                        $allowzero $decode_dk0wcy $send_opernam @checklist
+                       $eph_pc15_restime $pc92_update_period $last_pc92_update
                   );
 
 $pc11_max_age = 1*3600;                        # the maximum age for an incoming 'real-time' pc11
@@ -70,6 +71,7 @@ $ann_to_talk = 1;
 $rspfcheck = 1;
 $eph_restime = 180;
 $eph_info_restime = 60*60;
+$eph_pc15_restime = 6*60;
 $eph_pc34_restime = 30;
 $pingint = 5*60;
 $obscount = 2;
@@ -77,6 +79,9 @@ $chatdupeage = 20 * 60 * 60;
 $chatimportfn = "$main::root/chat_import";
 $investigation_int = 12*60*60; # time between checks to see if we can see this node
 $pc19_version = 5466;                  # the visible version no for outgoing PC19s generated from pc59
+$pc92_update_period = 60*60;   # the period between PC92 C updates
+$last_pc92_update = time;              # the last time a PC92 config update
+
 
 @checklist = 
 (
@@ -427,8 +432,12 @@ sub process
 
                eph_clean();
                import_chat();
-               
 
+               if ($main::systime >= $last_pc92_update + $pc92_update_period) {
+                       send_pc92_update();
+                       $last_pc92_update = $main::systime;
+               }
+               
                $last10 = $t;
        }
        
@@ -776,6 +785,20 @@ sub send_pc92_config
 #      push @localnodes, map { my $r = Route::Node::get($_->{call}); $r ? $r : () } DXChannel::get_all_users();
        $self->send_route_pc92($main::mycall, \&pc92c, (scalar @localnodes)+1, $main::routeroot, @localnodes);
 
+       # send out the configuration of all the PC92 nodes with current configuration
+       # but with the dates that the last config came in with.
+       @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && $_->{do_pc92} } DXChannel::get_all_nodes();
+       @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan;
+       foreach $node (@localnodes) {
+               if ($node && $node->lastid->{92}) {
+                       my @rout = map {my $r = Route::get($_); $r ? ($r) : ()} $node->nodes, $node->users;
+                       my $line = gen_pc29_with_time($node->call, 'C', $node->lastid->{92}, @rout);
+                       $self->send($line);
+               } else {
+                       dbg("sent a null value") if isdbg('chanerr');
+               }
+       }
+
        # send the configuration of all the 'external' nodes that don't handle PC92
        # out with the 'external' marker on the first node.
        @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && !$_->{do_pc92} } DXChannel::get_all_nodes();
@@ -790,6 +813,38 @@ sub send_pc92_config
        }
 } 
 
+sub send_pc92_update
+{
+       my $self = shift;
+       my $node;
+       my @lines;
+       
+       dbg('DXProt::send_pc92_update') if isdbg('trace');
+
+       # send 'my' configuration for all users and pc92 capable nodes
+       my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all();
+       my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan;
+#      push @localnodes, map { my $r = Route::Node::get($_->{call}); $r ? $r : () } DXChannel::get_all_users();
+       push @lines, pc92c($main::routeroot, @localnodes);
+
+
+       # send the configuration of all the 'external' nodes that don't handle PC92
+       # out with the 'external' marker on the first node.
+       @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && !$_->{do_pc92} } DXChannel::get_all_nodes();
+       @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan;
+       foreach $node (@localnodes) {
+               if ($node) {
+                       my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
+                       push @lines, pc92c($node, @rout);
+               } 
+       }
+
+       # broadcast the lines to all PC92 nodes
+       for (@lines) {
+               $main::me->broadcast_route_pc92('', undef, $_, 0);
+       }
+} 
+
 #
 # route a message down an appropriate interface for a callsign
 #