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
46 $thing->{origin} ||= $main::mycall;
52 # send it out in the format asked for, if available
62 } elsif ($dxchan->isa('DXChannel')) {
70 if ($thing->can('out_filter')) {
71 return unless $thing->out_filter($dxchan);
74 # before send (and line generation) things
75 # function must return true to make the send happen
76 $sub = "before_send_$class";
77 if ($thing->can($sub)) {
78 return $thing->$sub($dxchan);
81 # generate the protocol line which may (or not) be cached
83 unless ($ref = $thing->{class}) {
85 $ref = $thing->$sub($dxchan) if $thing->can($sub);
87 $dxchan->send(ref $ref ? @$ref : $ref) if $ref;
90 if ($thing->can('after_send_all')) {
91 $thing->after_send_all($dxchan);
93 $sub = "after_send_$class";
94 $thing->$sub($dxchan) if $thing->can($sub);
98 # broadcast to all except @_
102 dbg("Thingy::broadcast: " . $thing->ascii) if isdbg('thing');
104 foreach my $dxchan (DXChannel::get_all()) {
105 next if $dxchan == $main::me;
106 next if grep $dxchan == $_, @_;
107 next if $dxchan->{call} eq $thing->{origin};
108 next if $thing->{user} && !$dxchan->is_user && $dxchan->{call} eq $thing->{user};
110 dbg("Thingy::broadcast: sending to $dxchan->{call}") if isdbg('thing');
111 $thing->send($dxchan);
115 # queue this thing for processing
120 $thing->{dxchan} = $dxchan->call;
125 # this is the main commutator loop. In due course it will
126 # become the *only* commutator loop, This can be called in one
127 # of two ways: either with 2 args or with none.
129 # The two arg form is an immediate "queue and handle" and does
130 # a full cycle, immediately
137 $thing->queue(shift);
140 $thing = shift @queue;
141 my $dxchan = DXChannel::get($thing->{dxchan});
143 if ($thing->can('in_filter')) {
144 next unless $thing->in_filter($dxchan);
147 # remember any useful routes
148 RouteDB::update($thing->{origin}, $dxchan->{call}, $thing->{hopsaway});
149 RouteDB::update($thing->{user}, $dxchan->{call}, $thing->{hopsaway}) if exists $thing->{user};
151 $thing->handle($dxchan);
155 # per second and per minute processing
156 if ($main::systime != $lastsec) {
157 if ($main::systime >= $lastmin+60) {
158 foreach my $r (@permin) {
161 $lastmin = $main::systime;
163 foreach my $r (@persec) {
166 $lastsec = $main::systime;
170 sub add_minute_process
175 dbg('Adding $name to Thingy per minute queue');
176 push @permin, [$addr, $name];
179 sub add_second_process
184 dbg('Adding $name to Thingy per second queue');
185 push @persec, [$addr, $name];
192 my $dd = new Data::Dumper([$thing]);
196 $dd->Quotekeys($] < 5.005 ? 1 : 0);
203 my $s = $thing->{'s'} = sprintf "%X", int(rand() * 100000000);
204 my $auth = Verify->new("DXSp,$main::mycall,$s,$thing->{v},$thing->{b}");
205 $thing->{auth} = $auth->challenge($main::me->user->passphrase);