bde0a74476ac51819a4a27817d43db39ab41a852
[spider.git] / perl / Route / Node.pm
1 #
2 # Node routing routines
3 #
4 # Copyright (c) 2001 Dirk Koopman G1TLH
5 #
6 # $Id$
7
8
9 package Route::Node;
10
11 use DXDebug;
12 use Route;
13 use Route::User;
14 use DXUtil;
15
16 use strict;
17
18 use vars qw($VERSION $BRANCH);
19 ($VERSION, $BRANCH) = dxver( q$Revision$);
20
21 use vars qw(%list %valid @ISA $max $filterdef);
22 @ISA = qw(Route);
23
24 %valid = (
25                   parent => '0,Parent Calls,parray',
26                   nodes => '0,Nodes,parray',
27                   users => '0,Users,parray',
28                   usercount => '0,User Count',
29                   version => '0,Version',
30                   handle_xml => '0,Using XML,yesno',
31                   lastmsg => '0,Last Route Msg,atime',
32                   lastid => '0,Last Route MsgID',
33                   do_pc92 => '0,Uses pc92,yesno',
34 );
35
36 $filterdef = $Route::filterdef;
37 %list = ();
38 $max = 0;
39
40 sub count
41 {
42         my $n = scalar (keys %list);
43         $max = $n if $n > $max;
44         return $n;
45 }
46
47 sub max
48 {
49         count();
50         return $max;
51 }
52
53 #
54 # this routine handles the possible adding of an entry in the routing
55 # table. It will only add an entry if it is new. It may have all sorts of
56 # other side effects which may include fixing up other links.
57 #
58 # It will return a node object if (and only if) it is a completely new
59 # object with that callsign. The upper layers are expected to do something
60 # sensible with this!
61 #
62 # called as $parent->add(call, dxchan, version, flags) 
63 #
64
65 sub add
66 {
67         my $parent = shift;
68         my $call = uc shift;
69         confess "Route::add trying to add $call to myself" if $call eq $parent->{call};
70         my $self = get($call);
71         if ($self) {
72                 $self->_addparent($parent);
73                 $parent->_addnode($self);
74                 return undef;
75         }
76         $self = $parent->new($call, @_);
77         $parent->_addnode($self);
78         return $self;
79 }
80
81 #
82 # this routine is the opposite of 'add' above.
83 #
84 # It will return an object if (and only if) this 'del' will remove
85 # this object completely
86 #
87
88 sub del
89 {
90         my $self = shift;
91         my $pref = shift;
92
93         # delete parent from this call's parent list
94         $pref->_delnode($self);
95     $self->_delparent($pref);
96         my @nodes;
97         my $ncall = $self->{call};
98         
99         # is this the last connection, I have no parents anymore?
100         unless (@{$self->{parent}}) {
101                 foreach my $rcall (@{$self->{nodes}}) {
102                         next if grep $rcall eq $_, @_;
103                         my $r = Route::Node::get($rcall);
104                         push @nodes, $r->del($self, $ncall, @_) if $r;
105                 }
106                 $self->_del_users;
107                 delete $list{$self->{call}};
108                 push @nodes, $self;
109         }
110         return @nodes;
111 }
112
113 sub del_nodes
114 {
115         my $parent = shift;
116         my @out;
117         foreach my $rcall (@{$parent->{nodes}}) {
118                 my $r = get($rcall);
119                 push @out, $r->del($parent, $parent->{call}, @_) if $r;
120         }
121         return @out;
122 }
123
124 sub _del_users
125 {
126         my $self = shift;
127         for (@{$self->{users}}) {
128                 my $ref = Route::User::get($_);
129                 $ref->del($self) if $ref;
130         }
131         $self->{users} = [];
132 }
133
134 # add a user to this node
135 sub add_user
136 {
137         my $self = shift;
138         my $ucall = shift;
139
140         confess "Trying to add NULL User call to routing tables" unless $ucall;
141
142         my $uref = Route::User::get($ucall);
143         my @out;
144         if ($uref) {
145                 @out = $uref->addparent($self);
146         } else {
147                 $uref = Route::User->new($ucall, $self->{call}, @_);
148                 @out = $uref;
149         }
150         $self->_adduser($uref);
151         $self->{usercount} = scalar @{$self->{users}};
152
153         return @out;
154 }
155
156 # delete a user from this node
157 sub del_user
158 {
159         my $self = shift;
160         my $ref = shift;
161         my @out;
162         
163         if ($ref) {
164                 @out = $self->_deluser($ref);
165                 $ref->del($self);
166         } else {
167                 confess "tried to delete non-existant $ref->{call} from $self->{call}";
168         }
169         $self->{usercount} = scalar @{$self->{users}};
170         return @out;
171 }
172
173 sub usercount
174 {
175         my $self = shift;
176         if (@_ && @{$self->{users}} == 0) {
177                 $self->{usercount} = shift;
178         }
179         return $self->{usercount};
180 }
181
182 sub users
183 {
184         my $self = shift;
185         return @{$self->{users}};
186 }
187
188 sub nodes
189 {
190         my $self = shift;
191         return @{$self->{nodes}};
192 }
193
194 sub parents
195 {
196         my $self = shift;
197         return @{$self->{parent}};
198 }
199
200 sub rnodes
201 {
202         my $self = shift;
203         my @out;
204         foreach my $call (@{$self->{nodes}}) {
205                 next if grep $call eq $_, @_;
206                 push @out, $call;
207                 my $r = get($call);
208                 push @out, $r->rnodes($call, @_) if $r;
209         }
210         return @out;
211 }
212
213 # this takes in a list of node and user calls (not references) from 
214 # a config type update for a node and returns
215 # the differences as lists of things that have gone away
216 # and things that have been added. 
217 sub calc_config_changes
218 {
219         my $self = shift;
220         my %nodes = map {$_ => 1} @{$self->{nodes}};
221         my %users = map {$_ => 1} @{$self->{users}};
222         my $cnodes = shift;
223         my $cusers = shift;
224         my (@dnodes, @dusers, @nnodes, @nusers);
225         push @nnodes, map {my @r = $nodes{$_} ? () : $_; delete $nodes{$_}; @r} @$cnodes;
226         push @dnodes, keys %nodes;
227         push @nusers, map {my @r = $users{$_} ? () : $_; delete $users{$_}; @r} @$cusers;
228         push @dusers, keys %users;
229         return (\@dnodes, \@dusers, \@nnodes, \@nusers);
230 }
231
232 sub new
233 {
234         my $pkg = shift;
235         my $call = uc shift;
236         
237         confess "already have $call in $pkg" if $list{$call};
238         
239         my $self = $pkg->SUPER::new($call);
240         $self->{parent} = ref $pkg ? [ $pkg->{call} ] : [ ];
241         $self->{version} = shift || 5000;
242         $self->{flags} = shift || Route::here(1);
243         $self->{users} = [];
244         $self->{nodes} = [];
245         $self->{lastid} = {};
246         
247         $list{$call} = $self;
248         
249         return $self;
250 }
251
252 sub get
253 {
254         my $call = shift;
255         $call = shift if ref $call;
256         my $ref = $list{uc $call};
257         dbg("Failed to get Node $call" ) if !$ref && isdbg('routerr');
258         return $ref;
259 }
260
261 sub get_all
262 {
263         return values %list;
264 }
265
266 sub _addparent
267 {
268         my $self = shift;
269     return $self->_addlist('parent', @_);
270 }
271
272 sub _delparent
273 {
274         my $self = shift;
275     return $self->_dellist('parent', @_);
276 }
277
278
279 sub _addnode
280 {
281         my $self = shift;
282     return $self->_addlist('nodes', @_);
283 }
284
285 sub _delnode
286 {
287         my $self = shift;
288     return $self->_dellist('nodes', @_);
289 }
290
291
292 sub _adduser
293 {
294         my $self = shift;
295     return $self->_addlist('users', @_);
296 }
297
298 sub _deluser
299 {
300         my $self = shift;
301     return $self->_dellist('users', @_);
302 }
303
304 sub DESTROY
305 {
306         my $self = shift;
307         my $pkg = ref $self;
308         my $call = $self->{call} || "Unknown";
309         
310         dbg("destroying $pkg with $call") if isdbg('routelow');
311 }
312
313 #
314 # generic AUTOLOAD for accessors
315 #
316
317 sub AUTOLOAD
318 {
319         no strict;
320         my $name = $AUTOLOAD;
321         return if $name =~ /::DESTROY$/;
322         $name =~ s/^.*:://o;
323   
324         confess "Non-existant field '$AUTOLOAD'" unless $valid{$name} || $Route::valid{$name};
325
326         # this clever line of code creates a subroutine which takes over from autoload
327         # from OO Perl - Conway
328         *$AUTOLOAD = sub {$_[0]->{$name} = $_[1] if @_ > 1; return $_[0]->{$name}};
329         goto &$AUTOLOAD;
330 }
331
332 1;
333