9f0db819a9ee2da8244ac15bf97d1e4a810e5700
[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 $dxchann
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 by make it smaller and more efficient, then tough). 
21 #
22 # Copyright (c) 1998 - Dirk Koopman G1TLH
23 #
24 # $Id$
25 #
26 package DXChannel;
27
28 use Msg;
29 use DXM;
30 use DXUtil;
31 use DXDebug;
32 use Carp;
33
34 use strict;
35 use vars qw(%channels %valid);
36
37 %channels = undef;
38
39 %valid = (
40   call => '0,Callsign',
41   conn => '9,Msg Conn ref',
42   user => '9,DXUser ref',
43   startt => '0,Start Time,atime',
44   t => '9,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',
60   lang => '0,Language',
61   func => '9,Function',
62   loc => '9,Local Vars',     # used by func to store local variables in
63   lastread => '9,Last Msg Read',
64 );
65
66 # create a new channel object [$obj = DXChannel->new($call, $msg_conn_obj, $user_obj)]
67 sub alloc
68 {
69   my ($pkg, $call, $conn, $user) = @_;
70   my $self = {};
71   
72   die "trying to create a duplicate channel for $call" if $channels{$call};
73   $self->{call} = $call;
74   $self->{conn} = $conn if defined $conn;   # if this isn't defined then it must be a list
75   $self->{user} = $user if defined $user; 
76   $self->{startt} = $self->{t} = time;
77   $self->{state} = 0;
78   $self->{oldstate} = 0;
79   bless $self, $pkg; 
80   return $channels{$call} = $self;
81 }
82
83 # obtain a channel object by callsign [$obj = DXChannel->get($call)]
84 sub get
85 {
86   my ($pkg, $call) = @_;
87   return $channels{$call};
88 }
89
90 # obtain all the channel objects
91 sub get_all
92 {
93   my ($pkg) = @_;
94   return values(%channels);
95 }
96
97 # obtain a channel object by searching for its connection reference
98 sub get_by_cnum
99 {
100   my ($pkg, $conn) = @_;
101   my $self;
102   
103   foreach $self (values(%channels)) {
104     return $self if ($self->{conn} == $conn);
105   }
106   return undef;
107 }
108
109 # get rid of a channel object [$obj->del()]
110 sub del
111 {
112   my $self = shift;
113   delete $channels{$self->{call}};
114 }
115
116 # is it an ak1a cluster ?
117 sub is_ak1a
118 {
119   my $self = shift;
120   return $self->{sort} eq 'A';
121 }
122
123 # is it a user?
124 sub is_user
125 {
126   my $self = shift;
127   return $self->{sort} eq 'U';
128 }
129
130 # is it a connect type
131 sub is_connect
132 {
133   my $self = shift;
134   return $self->{sort} eq 'C';
135 }
136
137 # handle out going messages, immediately without waiting for the select to drop
138 # this could, in theory, block
139 sub send_now
140 {
141   my $self = shift;
142   my $conn = $self->{conn};
143   my $sort = shift;
144   my $call = $self->{call};
145   my $line;
146         
147   foreach $line (@_) {
148     chomp $line;
149         dbg('chan', "-> $sort $call $line\n") if $conn;
150         $conn->send_now("$sort$call|$line") if $conn;
151   }
152   $self->{t} = time;
153 }
154
155 #
156 # the normal output routine
157 #
158 sub send              # this is always later and always data
159 {
160   my $self = shift;
161   my $conn = $self->{conn};
162   my $call = $self->{call};
163   my $line;
164
165   foreach $line (@_) {
166     chomp $line;
167         dbg('chan', "-> D $call $line\n") if $conn;
168         $conn->send_later("D$call|$line") if $conn;
169   }
170   $self->{t} = time;
171 }
172
173 # send a file (always later)
174 sub send_file
175 {
176   my ($self, $fn) = @_;
177   my $call = $self->{call};
178   my $conn = $self->{conn};
179   my @buf;
180   
181   open(F, $fn) or die "can't open $fn for sending file ($!)";
182   @buf = <F>;
183   close(F);
184   $self->send(@buf);
185 }
186
187 # this will implement language independence (in time)
188 sub msg
189 {
190   my $self = shift;
191   return DXM::msg(@_);
192 }
193
194 # change the state of the channel - lots of scope for debugging here :-)
195 sub state
196 {
197   my $self = shift;
198   if (@_) {
199     $self->{oldstate} = $self->{state};
200     $self->{state} = shift;
201     dbg('state', "$self->{call} channel func $self->{func} state $self->{oldstate} -> $self->{state}\n");
202   }
203   return $self->{state};
204 }
205
206 # disconnect this channel
207 sub disconnect
208 {
209   my $self = shift;
210   my $user = $self->{user};
211   my $conn = $self->{conn};
212   $self->finish();
213   $user->close() if defined $user;
214   $conn->disconnect() if defined $conn;
215   $self->del();
216 }
217
218 # various access routines
219
220 #
221 # return a list of valid elements 
222
223
224 sub fields
225 {
226   return keys(%valid);
227 }
228
229 #
230 # return a prompt for a field
231 #
232
233 sub field_prompt
234
235   my ($self, $ele) = @_;
236   return $valid{$ele};
237 }
238
239 no strict;
240 sub AUTOLOAD
241 {
242   my $self = shift;
243   my $name = $AUTOLOAD;
244   return if $name =~ /::DESTROY$/;
245   $name =~ s/.*:://o;
246   
247   confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
248   @_ ? $self->{$name} = shift : $self->{$name} ;
249 }
250
251 1;
252 __END__;