6 # Copyright (c) 2005 Dirk Koopman G1TLH
13 use vars qw($VERSION $BRANCH);
15 main::mkver($VERSION = q$Revision$);
22 use Time::HiRes qw(gettimeofday tv_interval);
25 use vars qw(@ISA %ping $ping_ttl);
29 $ping_ttl = 300; # default ping ttl
35 unless ($thing->{Aranea}) {
36 $thing->{Aranea} = Aranea::genmsg($thing, qw(id out o));
38 return $thing->{Aranea};
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.
58 my $from = $thing->{o} if $thing->{out};
59 $from ||= $thing->{user} if Route::Node::get($thing->{user});
60 $from ||= $thing->{origin};
61 my $to = $thing->{o} unless $thing->{out};
62 $to ||= $thing->{touser} unless Route::User::get($thing->{touser});
63 $to ||= $thing->{group};
66 $thing->{DXProt} = DXProt::pc51($to, $from, $thing->{out});
68 return $thing->{DXProt};
76 if ($dxchan->{call} eq $thing->{touser}) {
77 $buf = $dxchan->msg('pingi', ($thing->{user} || $thing->{origin}), $thing->{ft}, $thing->{fave});
82 # called with the dxchan, line and the split out arguments
85 my $thing = ref $_[0] ? shift : $_[0]->SUPER::new(origin=>$main::mycall);
87 $thing->{DXProt} = shift;
89 $thing->{group} = shift; # to call
91 $thing->{out} = shift; # 1 = ping, 0 = pong;
92 $thing->{user} = $dxchan->{call};
93 $thing->{o} = $from unless $from eq $dxchan->{call};
94 $thing->remember if $thing->{out} && $thing->{group} ne $main::mycall;
104 if ($thing->{group} eq $main::mycall) {
105 if ($thing->{out} == 1) {
106 my $repthing = $thing->new_reply;
107 $repthing->{out} = 0;
108 $repthing->{id} = $thing->{id};
109 $repthing->{o} = $thing->{o} if $thing->{o};
110 $repthing->send($dxchan) if $repthing;
113 # it's a reply, look in the ping list for this one
114 my $ref = $ping{$thing->{id}} if exists $thing->{id};
115 $ref ||= find(($thing->{user}||$thing->{origin}), ($thing->{touser}||$thing->{group}));
117 my $t = tv_interval($ref->{t}, [ gettimeofday ]);
118 my $tochan = DXChannel::get($ref->{touser} || $ref->{group});
120 my $nopings = $tochan->user->nopings || $DXProt::obscount;
121 push @{$tochan->{pingtime}}, $t;
122 shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
124 # cope with a missed ping, this means you must set the pingint large enough
125 if ($t > $tochan->{pingint} && $t < 2 * $tochan->{pingint} ) {
126 $t -= $tochan->{pingint};
129 # calc smoothed RTT a la TCP
130 if (@{$tochan->{pingtime}} == 1) {
131 $tochan->{pingave} = $t;
133 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
135 $tochan->{nopings} = $nopings; # pump up the timer
137 if (my $dxc = DXChannel::get($ref->{user} || $ref->{origin})) {
138 $thing->{ft} = sprintf "%.2f", $t;
139 $thing->{fave} = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
142 delete $ping{$ref->{id}};
146 $thing->broadcast($dxchan);
150 # this just creates a ping for onward transmission
151 # remember it if you want to ping someone from here
155 my $thing = $pkg->SUPER::new(@_);
158 # do this for pings we generate ourselves
162 $thing->{t} = [ gettimeofday ];
164 $thing->{id} = ++$id;
165 my $u = DXUser->get_current($thing->{to});
167 $u->lastping(($thing->{user} || $thing->{group}), $main::systime);
173 # remove any pings outstanding that we have remembered for this
174 # callsign, return the number of forgotten pings
180 foreach my $thing (values %ping) {
181 if (($thing->{user} || $thing->{group}) eq $call) {
183 delete $ping{$thing->{id}};
195 foreach my $thing (values %ping) {
196 if ($thing->{origin} eq $from && $thing->{group} eq $to) {
198 return if $thing->{user} && $thing->{user} eq $user;