2 # module to manage channel lists & data
4 # This is the base class for all channel operations, which is everything to do
5 # with input and output really.
7 # The instance variable in the outside world will be generally be called $dxchann
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.
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)
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 by make it smaller and more efficient, then tough).
22 # Copyright (c) 1998 - Dirk Koopman G1TLH
35 use vars qw(%channels %valid);
41 conn => '9,Msg Conn ref',
42 user => '9,DXUser ref',
43 startt => '0,Start Time,atime',
45 pc50_t => '5,Last PC50 Time,atime',
46 priv => '9,Privilege',
47 state => '0,Current State',
48 oldstate => '5,Last State',
49 list => '9,Dep Chan List',
50 name => '0,User Name',
51 consort => '5,Connection Type',
52 'sort' => '5,Type of Channel',
53 wwv => '0,Want WWV,yesno',
54 wx => '0,Want WX,yesno',
55 talk => '0,Want Talk,yesno',
56 ann => '0,Want Announce,yesno',
57 here => '0,Here?,yesno',
58 confmode => '0,In Conference?,yesno',
59 dx => '0,DX Spots,yesno',
60 redirect => '0,Redirect messages to',
63 loc => '9,Local Vars', # used by func to store local variables in
64 beep => '0,Want Beeps,yesno',
65 lastread => '5,Last Msg Read',
66 outbound => '5,outbound?,yesno',
67 remotecmd => '9,doing rcmd,yesno',
68 pagelth => '0,Page Length',
69 pagedata => '9,Page Data Store',
70 group => '0,Access Group,parray', # used to create a group of users/nodes for some purpose or other
71 isolate => '5,Isolate network,yesno',
72 delayed => '5,Delayed messages,parray',
73 annfilter => '5,Announce Filter',
74 wwvfilter => '5,WWV Filter',
75 spotfilter => '5,Spot Filter',
76 inannfilter => '5,Input Ann Filter',
77 inwwvfilter => '5,Input WWV Filter',
78 inspotfilter => '5,Input Spot Filter',
79 passwd => '9,Passwd List,parray',
80 pingint => '5,Ping Interval ',
81 nopings => '5,Ping Obs Count',
82 lastping => '5,Ping last sent,atime',
83 pingtime => '5,Ping totaltime,parray',
84 pingave => '0,Ping ave time',
85 logininfo => '9,Login info req,yesno',
95 undef $self->{pagedata};
97 undef $self->{delayed};
98 undef $self->{annfilter};
99 undef $self->{wwvfilter};
100 undef $self->{spotfilter};
101 undef $self->{inannfilter};
102 undef $self->{inwwvfilter};
103 undef $self->{inspotfilter};
104 undef $self->{passwd};
107 # create a new channel object [$obj = DXChannel->new($call, $msg_conn_obj, $user_obj)]
110 my ($pkg, $call, $conn, $user) = @_;
113 die "trying to create a duplicate channel for $call" if $channels{$call};
114 $self->{call} = $call;
116 $self->{conn} = $conn if defined $conn; # if this isn't defined then it must be a list
118 $self->{user} = $user;
119 $self->{lang} = $user->lang;
120 $user->new_group() if !$user->group;
121 $self->{group} = $user->group;
123 $self->{startt} = $self->{t} = time;
125 $self->{oldstate} = 0;
126 $self->{lang} = $main::lang if !$self->{lang};
130 $self->{spotfilter} = Filter::read_in('spots', $call, 0);
131 $self->{wwvfilter} = Filter::read_in('wwv', $call, 0);
132 $self->{annfilter} = Filter::read_in('ann', $call, 0);
135 return $channels{$call} = $self;
138 # obtain a channel object by callsign [$obj = DXChannel->get($call)]
141 my ($pkg, $call) = @_;
142 return $channels{$call};
145 # obtain all the channel objects
149 return values(%channels);
153 # gimme all the ak1a nodes
157 my @list = DXChannel->get_all();
160 foreach $ref (@list) {
161 push @out, $ref if $ref->is_ak1a;
166 # return a list of all users
169 my @list = DXChannel->get_all();
172 foreach $ref (@list) {
173 push @out, $ref if $ref->is_user;
178 # return a list of all user callsigns
179 sub get_all_user_calls
181 my @list = DXChannel->get_all();
184 foreach $ref (@list) {
185 push @out, $ref->call if $ref->is_user;
190 # obtain a channel object by searching for its connection reference
193 my ($pkg, $conn) = @_;
196 foreach $self (values(%channels)) {
197 return $self if ($self->{conn} == $conn);
202 # get rid of a channel object [$obj->del()]
207 $self->{group} = undef; # belt and braces
208 delete $channels{$self->{call}};
215 return $self->{'sort'} eq 'B';
218 # is it an ak1a cluster ?
222 return $self->{'sort'} eq 'A';
229 return $self->{'sort'} eq 'U';
232 # is it a connect type
236 return $self->{'sort'} eq 'C';
239 # for perl 5.004's benefit
243 return @_ ? $self->{'sort'} = shift : $self->{'sort'} ;
246 # handle out going messages, immediately without waiting for the select to drop
247 # this could, in theory, block
251 my $conn = $self->{conn};
254 my $call = $self->{call};
258 my @lines = split /\n/;
260 $conn->send_now("$sort$call|$_");
261 dbg('chan', "-> $sort $call $_");
268 # the normal output routine
270 sub send # this is always later and always data
273 my $conn = $self->{conn};
275 my $call = $self->{call};
279 my @lines = split /\n/;
281 $conn->send_later("D$call|$_");
282 dbg('chan', "-> D $call $_");
288 # send a file (always later)
291 my ($self, $fn) = @_;
292 my $call = $self->{call};
293 my $conn = $self->{conn};
296 open(F, $fn) or die "can't open $fn for sending file ($!)";
302 # this will implement language independence (in time)
306 return DXM::msg($self->{lang}, @_);
309 # stick a broadcast on the delayed queue (but only up to 20 items)
315 $self->{delayed} = [] unless $self->{delayed};
316 push @{$self->{delayed}}, $s;
317 if (@{$self->{delayed}} >= 20) {
318 shift @{$self->{delayed}}; # lose oldest one
322 # change the state of the channel - lots of scope for debugging here :-)
327 $self->{oldstate} = $self->{state};
328 $self->{state} = shift;
329 $self->{func} = '' unless defined $self->{func};
330 dbg('state', "$self->{call} channel func $self->{func} state $self->{oldstate} -> $self->{state}\n");
332 # if there is any queued up broadcasts then splurge them out here
333 if ($self->{delayed} && ($self->{state} eq 'prompt' || $self->{state} eq 'convers')) {
334 $self->send (@{$self->{delayed}});
335 delete $self->{delayed};
338 return $self->{state};
341 # disconnect this channel
345 my $user = $self->{user};
346 my $conn = $self->{conn};
347 my $call = $self->{call};
348 my $nopc39 = shift || 0;
350 $self->finish($nopc39);
351 $conn->send_now("Z$call|bye") if $conn; # this will cause 'client' to disconnect
352 $user->close() if defined $user;
353 $conn->disconnect() if $conn;
358 # just close all the socket connections down without any fiddling about, cleaning, being
359 # nice to other processes and otherwise telling them what is going on.
361 # This is for the benefit of forked processes to prepare for starting new programs, they
362 # don't want or need all this baggage.
368 foreach $ref (values %channels) {
369 $ref->{conn}->disconnect() if $ref->{conn};
374 # Tell all the users that we have come in or out (if they want to know)
380 # send info to all logged in thingies
381 my @dxchan = get_all_users();
383 foreach $dxchan (@dxchan) {
384 next if $dxchan == $self;
385 $dxchan->send($dxchan->msg($m, $self->{call})) if $dxchan->{logininfo};
389 # various access routines
392 # return a list of valid elements
401 # return a prompt for a field
406 my ($self, $ele) = @_;
414 my $name = $AUTOLOAD;
415 return if $name =~ /::DESTROY$/;
418 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
419 @_ ? $self->{$name} = shift : $self->{$name} ;