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 => '9,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 => '9,Connection Type',
52 sort => '9,Type of Channel',
53 wwv => '0,Want WWV,yesno',
54 talk => '0,Want Talk,yesno',
55 ann => '0,Want Announce,yesno',
56 here => '0,Here?,yesno',
57 confmode => '0,In Conference?,yesno',
58 dx => '0,DX Spots,yesno',
59 redirect => '0,Redirect messages to',
62 # create a new channel object [$obj = DXChannel->new($call, $msg_conn_obj, $user_obj)]
65 my ($pkg, $call, $conn, $user) = @_;
68 die "trying to create a duplicate channel for $call" if $channels{$call};
69 $self->{call} = $call;
70 $self->{conn} = $conn if defined $conn; # if this isn't defined then it must be a list
71 $self->{user} = $user if defined $user;
72 $self->{startt} = $self->{t} = time;
74 $self->{oldstate} = 0;
76 return $channels{$call} = $self;
79 # obtain a channel object by callsign [$obj = DXChannel->get($call)]
82 my ($pkg, $call) = @_;
83 return $channels{$call};
86 # obtain all the channel objects
90 return values(%channels);
93 # obtain a channel object by searching for its connection reference
96 my ($pkg, $conn) = @_;
99 foreach $self (values(%channels)) {
100 return $self if ($self->{conn} == $conn);
105 # get rid of a channel object [$obj->del()]
109 delete $channels{$self->{call}};
112 # is it an ak1a cluster ?
116 return $self->{sort} eq 'A';
123 return $self->{sort} eq 'U';
126 # handle out going messages, immediately without waiting for the select to drop
127 # this could, in theory, block
131 my $conn = $self->{conn};
133 my $call = $self->{call};
138 dbg('chan', "-> $sort $call $line\n") if $conn;
139 $conn->send_now("$sort$call|$line") if $conn;
145 # the normal output routine
147 sub send # this is always later and always data
150 my $conn = $self->{conn};
151 my $call = $self->{call};
156 dbg('chan', "-> D $call $line\n") if $conn;
157 $conn->send_later("D$call|$line") if $conn;
162 # send a file (always later)
165 my ($self, $fn) = @_;
166 my $call = $self->{call};
167 my $conn = $self->{conn};
170 open(F, $fn) or die "can't open $fn for sending file ($!)";
176 # just a shortcut for $dxchan->send(msg(...));
180 $self->send(DXM::msg(@_));
183 # change the state of the channel - lots of scope for debugging here :-)
187 $self->{oldstate} = $self->{state};
188 $self->{state} = shift;
189 dbg('state', "$self->{call} channel state $self->{oldstate} -> $self->{state}\n");
192 # disconnect this channel
196 my $user = $self->{user};
197 my $conn = $self->{conn};
199 $user->close() if defined $user;
200 $conn->disconnect() if defined $conn;
204 # various access routines
207 # return a list of valid elements
216 # return a prompt for a field
221 my ($self, $ele) = @_;
229 my $name = $AUTOLOAD;
230 return if $name =~ /::DESTROY$/;
233 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
234 @_ ? $self->{$name} = shift : $self->{$name} ;