ec9ce73d1b5b6b208abaea184b2fe3925aecd04c
[spider.git] / perl / Thingy / Ping.pm
1 #
2 # Ping Thingy handling
3 #
4 # $Id$
5 #
6 # Copyright (c) 2005 Dirk Koopman G1TLH
7 #
8
9 use strict;
10
11 package Thingy::Ping;
12
13 use vars qw($VERSION $BRANCH);
14
15 main::mkver($VERSION = q$Revision$);
16
17 use DXChannel;
18 use DXDebug;
19 use DXUtil;
20 use Thingy;
21 use Spot;
22 use Time::HiRes qw(gettimeofday tv_interval);
23
24
25 use vars qw(@ISA %ping $ping_ttl);
26 @ISA = qw(Thingy);
27
28 my $id;
29 $ping_ttl = 300;                                # default ping ttl
30
31
32 sub gen_Aranea
33 {
34         my $thing = shift;
35         unless ($thing->{Aranea}) {
36                 $thing->{Aranea} = Aranea::genmsg($thing, qw(id out o));
37         }
38         return $thing->{Aranea};
39 }
40
41 sub from_Aranea
42 {
43         my $thing = shift;
44         return unless $thing;
45         return $thing;
46 }
47
48 sub gen_DXProt
49 {
50         my $thing = shift;
51         my $dxchan = shift;
52         unless ($thing->{DXProt}) {
53                 # we need to tease out the nodes out of all of this.
54                 # bear in mind that a proxied PC prot node could be in
55                 # {user} as well as a true user and also it may not
56                 # have originated here.
57
58                 my ($from, $to);
59                 if ($thing->{out}) {
60                         $from = $thing->{o};
61                         $from ||= $thing->{user} unless Route::User::get($thing->{user});
62                         $from ||= $thing->{origin};
63                         $to = $thing->{touser} unless Route::User::get($thing->{touser});
64                         $to ||= $thing->{group};
65                 } else {
66                         $from ||= $thing->{user} unless Route::User::get($thing->{user});
67                         $from ||= $thing->{origin};
68                         $to = $thing->{o};
69                         $to ||= $thing->{touser} unless Route::User::get($thing->{touser});
70                         $to ||= $thing->{group};
71                 }
72                 $thing->{DXProt} = DXProt::pc51($to, $from, $thing->{out});
73         }
74         return $thing->{DXProt};
75 }
76
77 sub gen_DXCommandmode
78 {
79         my $thing = shift;
80         my $dxchan = shift;
81         my $buf;
82         if ($dxchan->{call} eq $thing->{touser}) {
83                 $buf = $dxchan->msg('pingi', ($thing->{user} || $thing->{origin}), $thing->{ft}, $thing->{fave});
84         }
85         return $buf;
86 }
87
88 # called with the dxchan, line and the split out arguments
89 sub from_DXProt
90 {
91         my $thing = ref $_[0] ? shift : $_[0]->SUPER::new(origin=>$main::mycall);
92         my $dxchan = shift;
93         $thing->{DXProt} = shift;
94         shift;                                          # PC51
95         $thing->{group} = shift;        # to call
96         my $from = shift;
97         $thing->{out} = shift;          # 1 = ping, 0 = pong;
98         $thing->{user} = $dxchan->{call};
99         $thing->{o} = $from unless $from eq $dxchan->{call};
100         $thing->remember if $thing->{out} && $thing->{group} ne $main::mycall;
101         return $thing;
102 }
103
104 sub handle
105 {
106         my $thing = shift;
107         my $dxchan = shift;
108
109         # is it for us?
110         if ($thing->{group} eq $main::mycall) {
111                 if ($thing->{out} == 1) {
112                         my $repthing = $thing->new_reply;
113                         $repthing->{out} = 0;
114                         $repthing->{id} = $thing->{id};
115                         $repthing->{o} = $thing->{o} if $thing->{o};
116                         $repthing->send($dxchan) if $repthing;
117                 } else {
118
119                         # it's a reply, look in the ping list for this one
120                         my $ref = $ping{$thing->{id}} if exists $thing->{id};
121                         $ref = find(($thing->{user}||$thing->{origin}), ($thing->{touser}||$thing->{group})) unless $ref;
122                         if ($ref) {
123                                 my $t = tv_interval($ref->{t}, [ gettimeofday ]);
124                                 my $tochan = DXChannel::get($ref->{touser} || $ref->{group});
125                                 if ($tochan) {
126                                         my $nopings = $tochan->user->nopings || $DXProt::obscount;
127                                         push @{$tochan->{pingtime}}, $t;
128                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
129                                         
130                                         # cope with a missed ping, this means you must set the pingint large enough
131                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
132                                                 $t -= $tochan->{pingint};
133                                         }
134                                         
135                                         # calc smoothed RTT a la TCP
136                                         if (@{$tochan->{pingtime}} == 1) {
137                                                 $tochan->{pingave} = $t;
138                                         } else {
139                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
140                                         }
141                                         $tochan->{nopings} = $nopings; # pump up the timer
142                                 }
143                                 if (my $dxc = DXChannel::get($ref->{user} || $ref->{origin})) {
144                                         $thing->{ft} = sprintf "%.2f", $t;
145                                         $thing->{fave} = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
146                                         $thing->send($dxc);
147                                 }
148                                 delete $ping{$ref->{id}};
149                         }
150                 }
151         } else {
152                 $thing->broadcast($dxchan);
153         }
154 }
155
156 # this just creates a ping for onward transmission
157 # remember it if you want to ping someone from here     
158 sub new_ping
159 {
160         my $pkg = shift;
161         my $thing = $pkg->SUPER::new(@_);
162 }
163
164 # do this for pings we generate ourselves
165 sub remember
166 {
167         my $thing = shift;
168         $thing->{t} = [ gettimeofday ];
169         $thing->{out} = 1;
170         $thing->{id} = ++$id;
171         my $u = DXUser->get_current($thing->{to});
172         if ($u) {
173                 $u->lastping(($thing->{user} || $thing->{group}), $main::systime);
174                 $u->put;
175         }
176         $ping{$id} = $thing;
177 }
178
179 # remove any pings outstanding that we have remembered for this
180 # callsign, return the number of forgotten pings
181 sub forget
182 {
183         my $call = shift;
184         my $count = 0;
185         my @out;        
186         foreach my $thing (values %ping) {
187                 if (($thing->{user} || $thing->{group}) eq $call) {
188                         $count++;
189                         delete $ping{$thing->{id}};
190                 }
191         }
192         return $count;
193 }
194
195 sub find
196 {
197         my $to = shift;
198         my $from = shift;
199         my $user = shift;
200         
201         foreach my $thing (values %ping) {
202                 if ($thing->{origin} eq $from && $thing->{group} eq $to) {
203                         if ($user) {
204                                 return if $thing->{user} && $thing->{user} eq $user; 
205                         } else {
206                                 return $thing;
207                         }
208                 }
209         }
210         return undef;
211 }
212 1;