add more routing code together with associated commands
[spider.git] / perl / DXChannel.pm
1 #
2 # module to manage channel lists & data
3 #
4 # This is the base class for all channel operations, which is everything to do 
5 # with input and output really.
6 #
7 # The instance variable in the outside world will be generally be called $dxchan
8 #
9 # This class is 'inherited' (if that is the goobledegook for what I am doing)
10 # by various other modules. The point to understand is that the 'instance variable'
11 # is in fact what normal people would call the state vector and all useful info
12 # about a connection goes in there.
13 #
14 # Another point to note is that a vector may contain a list of other vectors. 
15 # I have simply added another variable to the vector for 'simplicity' (or laziness
16 # as it is more commonly called)
17 #
18 # PLEASE NOTE - I am a C programmer using this as a method of learning perl
19 # firstly and OO about ninthly (if you don't like the design and you can't 
20 # improve it with better OO and thus make it smaller and more efficient, then tough). 
21 #
22 # Copyright (c) 1998-2000 - Dirk Koopman G1TLH
23 #
24 # $Id$
25 #
26 package DXChannel;
27
28 use Msg;
29 use DXM;
30 use DXUtil;
31 use DXVars;
32 use DXDebug;
33 use Filter;
34
35 use strict;
36 use vars qw(%channels %valid @ISA $count);
37
38 %channels = ();
39 $count = 0;
40
41 %valid = (
42                   call => '0,Callsign',
43                   conn => '9,Msg Conn ref',
44                   user => '9,DXUser ref',
45                   startt => '0,Start Time,atime',
46                   t => '9,Time,atime',
47                   pc50_t => '5,Last PC50 Time,atime',
48                   priv => '9,Privilege',
49                   state => '0,Current State',
50                   oldstate => '5,Last State',
51                   list => '9,Dep Chan List',
52                   name => '0,User Name',
53                   consort => '5,Connection Type',
54                   'sort' => '5,Type of Channel',
55                   wwv => '0,Want WWV,yesno',
56                   wcy => '0,Want WCY,yesno',
57                   wx => '0,Want WX,yesno',
58                   talk => '0,Want Talk,yesno',
59                   ann => '0,Want Announce,yesno',
60                   here => '0,Here?,yesno',
61                   confmode => '0,In Conference?,yesno',
62                   dx => '0,DX Spots,yesno',
63                   redirect => '0,Redirect messages to',
64                   lang => '0,Language',
65                   func => '5,Function',
66                   loc => '9,Local Vars', # used by func to store local variables in
67                   beep => '0,Want Beeps,yesno',
68                   lastread => '5,Last Msg Read',
69                   outbound => '5,outbound?,yesno',
70                   remotecmd => '9,doing rcmd,yesno',
71                   pagelth => '0,Page Length',
72                   pagedata => '9,Page Data Store',
73                   group => '0,Access Group,parray',     # used to create a group of users/nodes for some purpose or other
74                   isolate => '5,Isolate network,yesno',
75                   delayed => '5,Delayed messages,parray',
76                   annfilter => '5,Announce Filter',
77                   wwvfilter => '5,WWV Filter',
78                   wcyfilter => '5,WCY Filter',
79                   spotsfilter => '5,Spot Filter',
80                   inannfilter => '5,Input Ann Filter',
81                   inwwvfilter => '5,Input WWV Filter',
82                   inwcyfilter => '5,Input WCY Filter',
83                   inspotsfilter => '5,Input Spot Filter',
84                   passwd => '9,Passwd List,parray',
85                   pingint => '5,Ping Interval ',
86                   nopings => '5,Ping Obs Count',
87                   lastping => '5,Ping last sent,atime',
88                   pingtime => '5,Ping totaltime,parray',
89                   pingave => '0,Ping ave time',
90                   logininfo => '9,Login info req,yesno',
91                   talklist => '0,Talk List,parray',
92                   cluster => '5,Cluster data',
93                   isbasic => '9,Internal Connection', 
94                   errors => '9,Errors',
95                   route => '9,Route Data',
96                  );
97
98 # object destruction
99 sub DESTROY
100 {
101         my $self = shift;
102         for (keys %$self) {
103                 if (ref($self->{$_})) {
104                         delete $self->{$_};
105                 }
106         }
107         dbg('chan', "DXChannel $self->{call} destroyed ($count)");
108         $count--;
109 }
110
111 # create a new channel object [$obj = DXChannel->new($call, $msg_conn_obj, $user_obj)]
112 sub alloc
113 {
114         my ($pkg, $call, $conn, $user) = @_;
115         my $self = {};
116   
117         die "trying to create a duplicate channel for $call" if $channels{$call};
118         $self->{call} = $call;
119         $self->{priv} = 0;
120         $self->{conn} = $conn if defined $conn; # if this isn't defined then it must be a list
121         if (defined $user) {
122                 $self->{user} = $user;
123                 $self->{lang} = $user->lang;
124                 $user->new_group() if !$user->group;
125                 $self->{group} = $user->group;
126                 $self->{sort} = $user->sort;
127         }
128         $self->{startt} = $self->{t} = time;
129         $self->{state} = 0;
130         $self->{oldstate} = 0;
131         $self->{lang} = $main::lang if !$self->{lang};
132         $self->{func} = "";
133
134         $count++;
135         dbg('chan', "DXChannel $self->{call} created ($count)");
136         bless $self, $pkg; 
137         return $channels{$call} = $self;
138 }
139
140 # obtain a channel object by callsign [$obj = DXChannel->get($call)]
141 sub get
142 {
143         my ($pkg, $call) = @_;
144         return $channels{$call};
145 }
146
147 # obtain all the channel objects
148 sub get_all
149 {
150         my ($pkg) = @_;
151         return values(%channels);
152 }
153
154 #
155 # gimme all the ak1a nodes
156 #
157 sub get_all_nodes
158 {
159         my $ref;
160         my @out;
161         foreach $ref (values %channels) {
162                 push @out, $ref if $ref->is_node;
163         }
164         return @out;
165 }
166
167 # return a list of all users
168 sub get_all_users
169 {
170         my $ref;
171         my @out;
172         foreach $ref (values %channels) {
173                 push @out, $ref if $ref->is_user;
174         }
175         return @out;
176 }
177
178 # return a list of all user callsigns
179 sub get_all_user_calls
180 {
181         my $ref;
182         my @out;
183         foreach $ref (values %channels) {
184                 push @out, $ref->{call} if $ref->is_user;
185         }
186         return @out;
187 }
188
189 # obtain a channel object by searching for its connection reference
190 sub get_by_cnum
191 {
192         my ($pkg, $conn) = @_;
193         my $self;
194   
195         foreach $self (values(%channels)) {
196                 return $self if ($self->{conn} == $conn);
197         }
198         return undef;
199 }
200
201 # get rid of a channel object [$obj->del()]
202 sub del
203 {
204         my $self = shift;
205
206         $self->{group} = undef;         # belt and braces
207         delete $channels{$self->{call}};
208 }
209
210 # is it a bbs
211 sub is_bbs
212 {
213         my $self = shift;
214         return $self->{'sort'} eq 'B';
215 }
216
217 sub is_node
218 {
219         my $self = shift;
220         return $self->{'sort'} =~ /[ACRSX]/;
221 }
222 # is it an ak1a node ?
223 sub is_ak1a
224 {
225         my $self = shift;
226         return $self->{'sort'} eq 'A';
227 }
228
229 # is it a user?
230 sub is_user
231 {
232         my $self = shift;
233         return $self->{'sort'} eq 'U';
234 }
235
236 # is it a clx node
237 sub is_clx
238 {
239         my $self = shift;
240         return $self->{'sort'} eq 'C';
241 }
242
243 # is it a spider node
244 sub is_spider
245 {
246         my $self = shift;
247         return $self->{'sort'} eq 'S';
248 }
249
250 # is it a DXNet node
251 sub is_dxnet
252 {
253         my $self = shift;
254         return $self->{'sort'} eq 'X';
255 }
256
257 # is it a ar-cluster node
258 sub is_arcluster
259 {
260         my $self = shift;
261         return $self->{'sort'} eq 'R';
262 }
263
264 # for perl 5.004's benefit
265 sub sort
266 {
267         my $self = shift;
268         return @_ ? $self->{'sort'} = shift : $self->{'sort'} ;
269 }
270
271 # handle out going messages, immediately without waiting for the select to drop
272 # this could, in theory, block
273 sub send_now
274 {
275         my $self = shift;
276         my $conn = $self->{conn};
277         return unless $conn;
278         my $sort = shift;
279         my $call = $self->{call};
280         
281         for (@_) {
282 #               chomp;
283         my @lines = split /\n/;
284                 for (@lines) {
285                         $conn->send_now("$sort$call|$_");
286                         dbg('chan', "-> $sort $call $_");
287                 }
288         }
289         $self->{t} = time;
290 }
291
292 #
293 # the normal output routine
294 #
295 sub send                                                # this is always later and always data
296 {
297         my $self = shift;
298         my $conn = $self->{conn};
299         return unless $conn;
300         my $call = $self->{call};
301
302         for (@_) {
303 #               chomp;
304         my @lines = split /\n/;
305                 for (@lines) {
306                         $conn->send_later("D$call|$_");
307                         dbg('chan', "-> D $call $_");
308                 }
309         }
310         $self->{t} = time;
311 }
312
313 # send a file (always later)
314 sub send_file
315 {
316         my ($self, $fn) = @_;
317         my $call = $self->{call};
318         my $conn = $self->{conn};
319         my @buf;
320   
321         open(F, $fn) or die "can't open $fn for sending file ($!)";
322         @buf = <F>;
323         close(F);
324         $self->send(@buf);
325 }
326
327 # this will implement language independence (in time)
328 sub msg
329 {
330         my $self = shift;
331         return DXM::msg($self->{lang}, @_);
332 }
333
334 # stick a broadcast on the delayed queue (but only up to 20 items)
335 sub delay
336 {
337         my $self = shift;
338         my $s = shift;
339         
340         $self->{delayed} = [] unless $self->{delayed};
341         push @{$self->{delayed}}, $s;
342         if (@{$self->{delayed}} >= 20) {
343                 shift @{$self->{delayed}};   # lose oldest one
344         }
345 }
346
347 # change the state of the channel - lots of scope for debugging here :-)
348 sub state
349 {
350         my $self = shift;
351         if (@_) {
352                 $self->{oldstate} = $self->{state};
353                 $self->{state} = shift;
354                 $self->{func} = '' unless defined $self->{func};
355                 dbg('state', "$self->{call} channel func $self->{func} state $self->{oldstate} -> $self->{state}\n");
356
357                 # if there is any queued up broadcasts then splurge them out here
358                 if ($self->{delayed} && ($self->{state} eq 'prompt' || $self->{state} eq 'talk')) {
359                         $self->send (@{$self->{delayed}});
360                         delete $self->{delayed};
361                 }
362         }
363         return $self->{state};
364 }
365
366 # disconnect this channel
367 sub disconnect
368 {
369         my $self = shift;
370         my $user = $self->{user};
371         
372         $user->close() if defined $user;
373         $self->{conn}->disconnect;
374         $self->del();
375 }
376
377 #
378 # just close all the socket connections down without any fiddling about, cleaning, being
379 # nice to other processes and otherwise telling them what is going on.
380 #
381 # This is for the benefit of forked processes to prepare for starting new programs, they
382 # don't want or need all this baggage.
383 #
384
385 sub closeall
386 {
387         my $ref;
388         foreach $ref (values %channels) {
389                 $ref->{conn}->disconnect() if $ref->{conn};
390         }
391 }
392
393 #
394 # Tell all the users that we have come in or out (if they want to know)
395 #
396 sub tell_login
397 {
398         my ($self, $m) = @_;
399         
400         # send info to all logged in thingies
401         my @dxchan = get_all_users();
402         my $dxchan;
403         foreach $dxchan (@dxchan) {
404                 next if $dxchan == $self;
405                 $dxchan->send($dxchan->msg($m, $self->{call})) if $dxchan->{logininfo};
406         }
407 }
408
409 # various access routines
410
411 #
412 # return a list of valid elements 
413
414
415 sub fields
416 {
417         return keys(%valid);
418 }
419
420 #
421 # return a prompt for a field
422 #
423
424 sub field_prompt
425
426         my ($self, $ele) = @_;
427         return $valid{$ele};
428 }
429
430 # take a standard input message and decode it into its standard parts
431 sub decode_input
432 {
433         my $dxchan = shift;
434         my $data = shift;
435         my ($sort, $call, $line) = $data =~ /^([A-Z])([A-Z0-9\-]{3,9})\|(.*)$/;
436
437         my $chcall = (ref $dxchan) ? $dxchan->call : "UN.KNOWN";
438         
439         # the above regexp must work
440         unless (defined $sort && defined $call && defined $line) {
441 #               $data =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg;
442                 dbg('err', "DUFF Line on $chcall: $data");
443                 return ();
444         }
445
446         if(ref($dxchan) && $call ne $chcall) {
447                 dbg('err', "DUFF Line come in for $call on wrong channel $chcall" );
448                 return();
449         }
450         
451         return ($sort, $call, $line);
452 }
453
454 no strict;
455 sub AUTOLOAD
456 {
457         my $self = shift;
458         my $name = $AUTOLOAD;
459         return if $name =~ /::DESTROY$/;
460         $name =~ s/.*:://o;
461   
462         confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
463
464         # this clever line of code creates a subroutine which takes over from autoload
465         # from OO Perl - Conway
466         *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ;
467     @_ ? $self->{$name} = shift : $self->{$name} ;
468 }
469
470
471 1;
472 __END__;