4 # This is the new fundamental protocol engine handler
6 # This is where all the new things (and eventually all the old things
11 # Copyright (c) 2004 Dirk Koopman G1TLH
18 use vars qw($VERSION $BRANCH @queue @permin @persec);
20 main::mkver($VERSION = q$Revision$);
22 @queue = (); # the input / processing queue
25 # these are set up using the Thingy->add_second_process($addr, $name)
26 # and Thingy->add_minute_process($addr, $name)
28 # They replace the old cycle in cluster.pl
31 @persec = (); # this replaces the cycle in cluster.pl
32 @permin = (); # this is an extra per minute cycle
40 # we expect all thingies to be subclassed
50 # send it out in the format asked for, if available
58 } elsif ($dxchan->isa('DXChannel')) {
63 if ($thing->can('out_filter')) {
64 return unless $thing->out_filter($dxchan);
67 # generate the line which may (or not) be cached
69 unless ($ref = $thing->{class}) {
71 my $sub = "gen_$class";
72 $ref = $thing->$sub($dxchan) if $thing->can($sub);
74 $dxchan->send(ref $ref ? @$ref : $ref) if $ref;
77 # broadcast to all except @_
81 dbg("Thingy::broadcast: " . $thing->ascii) if isdbg('thing');
83 foreach my $dxchan (DXChannel::get_all()) {
84 next if $dxchan == $main::me;
85 next if grep $dxchan == $_, @_;
86 $thing->send($dxchan);
90 # queue this thing for processing
95 $thing->{dxchan} = $dxchan->call;
100 # this is the main commutator loop. In due course it will
101 # become the *only* commutator loop, This can be called in one
102 # of two ways: either with 2 args or with none.
104 # The two arg form is an immediate "queue and handle" and does
105 # a full cycle, immediately
112 $thing->queue(shift);
115 $thing = shift @queue;
116 my $dxchan = DXChannel->get($thing->{dxchan});
118 if ($thing->can('in_filter')) {
119 next unless $thing->in_filter($dxchan);
122 # remember any useful routes
123 RouteDB::update($thing->{origin}, $dxchan->{call}, $thing->{hopsaway});
124 RouteDB::update($thing->{user}, $dxchan->{call}, $thing->{hopsaway}) if exists $thing->{user};
126 $thing->handle($dxchan);
130 # per second and per minute processing
131 if ($main::systime != $lastsec) {
132 if ($main::systime >= $lastmin+60) {
133 foreach my $r (@permin) {
136 $lastmin = $main::systime;
138 foreach my $r (@persec) {
141 $lastsec = $main::systime;
145 sub add_minute_process
150 dbg('Adding $name to Thingy per minute queue');
151 push @permin, [$addr, $name];
154 sub add_second_process
159 dbg('Adding $name to Thingy per second queue');
160 push @persec, [$addr, $name];
167 my $dd = new Data::Dumper([$thing]);
171 $dd->Quotekeys($] < 5.005 ? 1 : 0);