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