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