fix find
[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);
26 @ISA = qw(Thingy);
27
28 my $id;
29
30 sub gen_Aranea
31 {
32         my $thing = shift;
33         unless ($thing->{Aranea}) {
34                 $thing->{Aranea} = Aranea::genmsg($thing, qw(id out));
35         }
36         return $thing->{Aranea};
37 }
38
39 sub from_Aranea
40 {
41         my $thing = shift;
42         return unless $thing;
43         return $thing;
44 }
45
46 sub gen_DXProt
47 {
48         my $thing = shift;
49         my $dxchan = shift;
50         unless ($thing->{DXProt}) {
51                 # we need to tease out the nodes out of all of this.
52                 # bear in mind that a proxied PC prot node could be in
53                 # {user} as well as a true user and also it may not
54                 # have originated here.
55
56                 my $from = $thing->{user} if Route::Node::get($thing->{user});
57                 $from ||= $thing->{origin};
58                 my $to = $thing->{touser} if Route::Node::get($thing->{touser});
59                 $to ||= $thing->{group};
60                 
61                 $thing->{DXProt} = DXProt::pc51($to, $from, $thing->{out});
62         }
63         return $thing->{DXProt};
64 }
65
66 sub gen_DXCommandmode
67 {
68         my $thing = shift;
69         my $dxchan = shift;
70         my $buf;
71
72         return $buf;
73 }
74
75 sub from_DXProt
76 {
77         my $thing = ref $_[0] ? shift : $_[0]->SUPER::new();
78         
79         while (@_) {
80                 my $k = shift;
81                 $thing->{$k} = shift;
82         }
83         return $thing;
84 }
85
86 sub handle
87 {
88         my $thing = shift;
89         my $dxchan = shift;
90
91         # is it for us?
92         if ($thing->{group} eq $main::mycall) {
93                 if ($thing->{out} == 1) {
94                         my $repthing = $thing->new_reply;
95                         $repthing->{out} = 0;
96                         $repthing->{id} = $thing->{id};
97                         $repthing->send($dxchan) if $repthing;
98                 } else {
99
100                         # it's a reply, look in the ping list for this one
101                         my $ref = $ping{$thing->{id}} if exists $thing->{id};
102                         $ref ||= find($thing->{origin}, $thing->{group});
103                         if ($ref) {
104                                 my $t = tv_interval($ref->{t}, [ gettimeofday ]);
105                                 if (my $dxc = DXChannel::get($ref->{user} || $ref->{origin})) {
106                                         
107                                         my $tochan = DXChannel::get($ref->{touser} || $ref->{group});
108                                         
109                                         if ($dxc->is_user) {
110                                                 my $s = sprintf "%.2f", $t; 
111                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
112                                                 $dxc->send($dxc->msg('pingi', $ref->{user}, $s, $ave))
113                                         } elsif ($dxc->is_node) {
114                                                 if ($tochan ) {
115                                                         my $nopings = $tochan->user->nopings || $DXProt::obscount;
116                                                         push @{$tochan->{pingtime}}, $t;
117                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
118                                                         
119                                                         # cope with a missed ping, this means you must set the pingint large enough
120                                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
121                                                                 $t -= $tochan->{pingint};
122                                                         }
123                                                         
124                                                         # calc smoothed RTT a la TCP
125                                                         if (@{$tochan->{pingtime}} == 1) {
126                                                                 $tochan->{pingave} = $t;
127                                                         } else {
128                                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
129                                                         }
130                                                         $tochan->{nopings} = $nopings; # pump up the timer
131                                                 }
132                                         }
133                                 }
134                         }
135                 }
136         } else {
137                 $thing->broadcast($dxchan);
138         }
139 }
140
141 # this just creates a ping for onward transmission
142 # remember it if you want to ping someone from here     
143 sub new_ping
144 {
145         my $pkg = shift;
146         my $thing = $pkg->SUPER::new(@_);
147 }
148
149 # do this for pings we generate ourselves
150 sub remember
151 {
152         my $thing = shift;
153         $thing->{t} = [ gettimeofday ];
154         $thing->{out} = 1;
155         $thing->{id} = ++$id;
156         my $u = DXUser->get_current($thing->{to});
157         if ($u) {
158                 $u->lastping(($thing->{user} || $thing->{group}), $main::systime);
159                 $u->put;
160         }
161         $ping{$id} = $thing;
162 }
163
164 # remove any pings outstanding that we have remembered for this
165 # callsign, return the number of forgotten pings
166 sub forget
167 {
168         my $call = shift;
169         my $count = 0;
170         my @out;        
171         foreach my $thing (values %ping) {
172                 if (($thing->{user} || $thing->{group}) eq $call) {
173                         $count++;
174                         delete $ping{$thing->{id}};
175                 }
176         }
177         return $count;
178 }
179
180 sub find
181 {
182         my $to = shift;
183         my $from = shift;
184         my $user = shift;
185         
186         foreach my $thing (values %ping) {
187                 if ($thing->{origin} eq $from && $thing->{group} eq $to) {
188                         if ($user) {
189                                 return if $thing->{user} && $thing->{user} eq $user; 
190                         } else {
191                                 return $thing;
192                         }
193                 }
194         }
195         return undef;
196 }
197 1;