7f94937a3fe38fdd4b841b23332742fdec1e6a0e
[spider.git] / perl / Thingy / Rt.pm
1 #
2 # Route Thingy handling
3 #
4 # Note that this is a generator of pc(16|17|19|21)n and pc(16|17)u
5 # and a consumer of the fpc versions of the above
6 #
7 # $Id$
8 #
9 # Copyright (c) 2005 Dirk Koopman G1TLH
10 #
11
12 use strict;
13
14 package Thingy::Rt;
15
16 use vars qw($VERSION $BRANCH);
17
18 main::mkver($VERSION = q$Revision$);
19
20 use DXChannel;
21 use DXDebug;
22 use DXUtil;
23 use Thingy;
24 use Thingy::RouteFilter;
25 use Spot;
26
27 use vars qw(@ISA);
28 @ISA = qw(Thingy Thingy::RouteFilter);
29
30 sub gen_Aranea
31 {
32         my $thing = shift;
33         unless ($thing->{Aranea}) {
34                 my $ref;
35                 if ($ref = $thing->{anodes}) {
36                         $thing->{a} = join(':', map {"$_->{flags}$_->{call}"} @$ref);
37                 }
38                 if ($ref = $thing->{anodes}) {
39                         $thing->{n} = join(':', map {"$_->{flags}$_->{call}"} @$ref);
40                 }
41                 if ($ref = $thing->{ausers}) {
42                         $thing->{u} = join(':', map {"$_->{flags}$_->{call}"} @$ref);
43                 }
44                 $thing->{Aranea} = Aranea::genmsg($thing, [qw(s a n u)]);
45         }
46         return $thing->{Aranea};
47 }
48
49 sub from_Aranea
50 {
51         my $thing = shift;
52         return unless $thing;
53         return $thing;
54 }
55
56 sub handle
57 {
58         my $thing = shift;
59         my $dxchan = shift;
60
61         if ($thing->{'s'}) {
62                 my $sub = "handle_$thing->{s}";
63                 if ($thing->can($sub)) {
64                         no strict 'refs';
65                         $thing = $thing->$sub($dxchan);
66                 }
67
68                 $thing->broadcast($dxchan) if $thing;
69         }
70 }
71
72 # this handles the standard local configuration, it 
73 # will reset all the config, make / break links and
74 # will generate pc sentences as required for nodes and users
75 sub handle_cf
76 {
77         my $thing = shift;
78         my $dxchan = shift;
79         my $origin = $thing->{user} || $thing->{origin};
80         my $chan_call = $dxchan->{call};
81         
82         my $parent = Route::Node::get($origin);
83         unless ($parent) {
84                 dbg("Thingy::Rt::cf: received from $thing->{origin}/$origin on $chan_call unknown") if isdbg('chanerr');
85                 return;
86         }
87
88         # do nodes
89         my ($del, $add);
90         my %in;
91         if ($thing->{n}) {
92                 %in = (map {my ($here, $call) = unpack("A1 A*", $_); ($call, $here)} split /:/, $thing->{n});
93                 my ($tdel, $tadd) = $parent->diff_nodes(keys %in);
94                 $add = $tadd;
95                 $del = $tdel;
96         }
97         if ($thing->{a}) {
98                 %in = (map {my ($here, $call) = unpack("A1 A*", $_); ($call, $here)} split /:/, $thing->{a});
99                 my ($tdel, $tadd) = $parent->diff_nodes(keys %in);
100                 push @$add, @$tadd;
101                 push @$del, @$tdel;
102         }
103         if (@$add || @$del) {
104                 my $call;
105
106                 my @pc21;
107                 foreach $call (@$del) {
108                         RouteDB::delete($call, $chan_call);
109                         my $ref = Route::Node::get($call);
110                         push @pc21, $ref->del($parent) if $ref;
111                 }
112                 $thing->{pc21n} = \@pc21 if @pc21;
113                 
114                 my @pc19;
115                 foreach $call (@$add) {
116                         RouteDB::update($call, $chan_call);
117                         my $ref = Route::Node::get($call);
118                         push @pc19, $parent->add($call, 0, $in{$call}) unless $ref;
119                 }
120                 $thing->{pc19n} = \@pc19 if @pc19;
121         }
122         
123         # now users
124         if ($thing->{u}) {
125                 %in = (map {my ($here, $call) = unpack "A1 A*", $_; ($call, $here)} split /:/, $thing->{u});
126                 ($del, $add) = $parent->diff_users(keys %in);
127
128                 my $call;
129
130                 my @pc17;
131                 foreach $call (@$del) {
132                         RouteDB::delete($call, $chan_call);
133                         my $ref = Route::User::get($call);
134                         if ($ref) {
135                                 $parent->del_user($ref);
136                                 push @pc17, $ref;
137                         } else {
138                                 dbg("Thingy::Rt::lcf: del user $call not known, ignored") if isdbg('chanerr');
139                                 next;
140                         }
141                 }
142                 if (@pc17) {
143                         $thing->{pc17n} = $parent;
144                         $thing->{pc17u} = \@pc17;
145                 }
146         
147                 my @pc16;
148                 foreach $call (@$add) {
149                         RouteDB::update($call, $chan_call);
150                         push @pc16, _add_user($parent, $call, $in{$call});
151                 }
152                 if (@pc16) {
153                         $thing->{pc16n} = $parent;
154                         $thing->{pc16u} = \@pc16;
155                 }
156         }
157
158         return $thing;
159 }
160
161
162 # copy out the PC16 data for a node into the
163 # pc16n and u slots if there are any users 
164 #
165 sub copy_pc16_data
166 {
167         my $thing = shift;
168         my $uref = shift;
169         
170         my @u = $uref->users;
171         if (@u) {
172                 $thing->{pc16n} = $uref;
173                 $thing->{pc16u} = [map {Route::User::get($_)} @u];
174                 return scalar @u;
175         }
176         return undef;
177 }
178
179 sub _add_user
180 {
181         my $node = shift;
182         my $user = shift;
183         my $flag = shift;
184         
185         my @out = $node->add_user($user, $flag);
186         my $ur = _upd_user_rec($user, $node);
187         $ur->put;
188         return @out;
189 }
190
191 sub _upd_user_rec
192 {
193         my $call = shift;
194         my $parentcall = shift;
195         
196         # add this station to the user database, if required
197         my $user = DXUser->get_current($call);
198         $user = DXUser->new($call) if !$user;
199         $user->homenode($parentcall) if !$user->homenode;
200         $user->node($parentcall);
201         $user->lastin($main::systime) unless DXChannel::get($call);
202         return $user;
203 }
204
205 #
206 # Generate a configuration for onward broadcast
207
208 # Basically, this creates a thingy with list of nodes and users that
209 # are on this node. This the normal method of spreading this
210 # info whenever a node connects and also periodically.
211 #
212
213 sub new_lcf
214 {
215         my $pkg = shift;
216         my $thing = $pkg->SUPER::new(@_);
217         
218         $thing->{'s'} = 'cf';
219
220         my @anodes;
221         my @pnodes;
222         my @users;
223         
224         foreach my $dxchan (DXChannel::get_all()) {
225                 next if $dxchan == $main::me;
226                 if ($dxchan->is_node) {
227                         my $ref = Route::Node::get($dxchan->{call});
228                         push @pnodes, $ref if $ref;
229                 } elsif ($dxchan->is_aranea) {
230                         my $ref = Route::Node::get($dxchan->{call});
231                         push @anodes, $ref if $ref;
232                 } else {
233                         my $ref = Route::User::get($dxchan->{call});
234                         push @users, $ref if $ref;
235                 }
236         }
237         $thing->{anodes} = \@anodes if @anodes;
238         $thing->{pnodes} = \@pnodes if @pnodes;
239         $thing->{ausers} = \@users if @users;
240         return $thing;
241 }
242
243
244
245
246 1;