now output more information
[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}} || $thing->find;
102                         if ($ref) {
103                                 my $t = tv_interval($thing->{t}, [ gettimeofday ]);
104                                 if (my $dxc = DXChannel::get($thing->{user} || $thing->{origin})) {
105                                         
106                                         my $tochan = DXChannel::get($thing->{touser} || $thing->{group});
107                                         
108                                         if ($dxc->is_user) {
109                                                 my $s = sprintf "%.2f", $t; 
110                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
111                                                 $dxc->send($dxc->msg('pingi', ($thing->{touser} || $thing->{group}), $s, $ave))
112                                         } elsif ($dxc->is_node) {
113                                                 if ($tochan ) {
114                                                         my $nopings = $tochan->user->nopings || $DXProt::obscount;
115                                                         push @{$tochan->{pingtime}}, $t;
116                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
117                                                         
118                                                         # cope with a missed ping, this means you must set the pingint large enough
119                                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
120                                                                 $t -= $tochan->{pingint};
121                                                         }
122                                                         
123                                                         # calc smoothed RTT a la TCP
124                                                         if (@{$tochan->{pingtime}} == 1) {
125                                                                 $tochan->{pingave} = $t;
126                                                         } else {
127                                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
128                                                         }
129                                                         $tochan->{nopings} = $nopings; # pump up the timer
130                                                 }
131                                         }
132                                 }
133                         }
134                 }
135         } else {
136                 $thing->broadcast($dxchan);
137         }
138 }
139
140 # this just creates a ping for onward transmission
141 # remember it if you want to ping someone from here     
142 sub new_ping
143 {
144         my $pkg = shift;
145         my $thing = $pkg->SUPER::new(@_);
146 }
147
148 # do this for pings we generate ourselves
149 sub remember
150 {
151         my $thing = shift;
152         $thing->{t} = [ gettimeofday ];
153         $thing->{out} = 1;
154         $thing->{id} = ++$id;
155         my $u = DXUser->get_current($thing->{to});
156         if ($u) {
157                 $u->lastping(($thing->{user} || $thing->{group}), $main::systime);
158                 $u->put;
159         }
160         $ping{$id} = $thing;
161 }
162
163 # remove any pings outstanding that we have remembered for this
164 # callsign, return the number of forgotten pings
165 sub forget
166 {
167         my $call = shift;
168         my $count = 0;
169         my @out;        
170         foreach my $thing (values %ping) {
171                 if (($thing->{user} || $thing->{group}) eq $call) {
172                         $count++;
173                         delete $ping{$thing->{id}};
174                 }
175         }
176         return $count;
177 }
178
179 sub find
180 {
181         my $call = shift;
182         foreach my $thing (values %ping) {
183                 if (($thing->{user} || $thing->{origin}) eq $call) {
184                         return $thing;
185                 }
186         }
187         return undef;
188 }
189 1;