X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXXml.pm;h=c29620bbb2cf9a239b1fdb7d86e1a3ce3091f676;hb=2d04aeea02a238550f8a7498a826f910e539caf2;hp=cd8abf5965c4025b412c5956bd69356050db7e5b;hpb=3c6694242819ce0ca3586264080342315d420cc8;p=spider.git diff --git a/perl/DXXml.pm b/perl/DXXml.pm index cd8abf59..c29620bb 100644 --- a/perl/DXXml.pm +++ b/perl/DXXml.pm @@ -41,11 +41,16 @@ sub init { return unless $main::do_xml; - eval { require XML::Simple; }; - unless ($@) { + eval { require XML::Simple }; + eval { require XML::Parser } unless $@; + if ($@) { + LogDbg('err', "do_xml was set to 1 and the XML routines failed to load ($@)"); + $main::do_xml = 0; + } else { + $XML::Simple::PREFERRED_PARSER = 'XML::Parser'; import XML::Simple; $DXProt::handle_xml = 1; - $xs = new XML::Simple(); + $xs = new XML::Simple(Cache=>[]); } undef $@; } @@ -90,8 +95,44 @@ sub normal # # note that this a function not a method # + +my $last10; +my $last_hour; + sub process { + my $t = time; + my @dxchan = DXChannel::get_all(); + my $dxchan; + + foreach $dxchan (@dxchan) { + next unless $dxchan->is_node; + next unless $dxchan->handle_xml; + next if $dxchan == $main::me; + + # send a ping out on this channel + if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) { + if ($dxchan->{nopings} <= 0) { + $dxchan->disconnect; + } else { + DXXml::Ping::add($main::me, $dxchan->call); + $dxchan->{nopings} -= 1; + $dxchan->{lastping} = $t; + $dxchan->{lastping} += $dxchan->{pingint} / 2 unless @{$dxchan->{pingtime}}; + } + } + } + + + # every ten seconds + if (!$last10 || $t - $last10 >= 10) { + $last10 = $t; + } + + # every hour + if (!$last_hour || $main::systime - 3600 > $last_hour) { + $last_hour = $main::systime; + } }