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