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