use Data::Dumper;
use QSL;
use DXSql;
-use Julian;
+use Time::HiRes qw(gettimeofday tv_interval);
+
use strict;
# initialise the cache if required
if ($spotcachedays) {
+ my $t0 = [gettimeofday];
$spotcachedays = 2 if $spotcachedays < 2;
- my $now = $today->sub($spotcachedays);
- while ($now->cmp($today) >= 0) {
+ dbg "Spot::init - reading in $spotcachedays days of spots into cache";
+ for (my $i = 0; $i < $spotcachedays; ++$i) {
+ my $now = $today->sub($i);
my $fh = $fp->open($now);
if ($fh) {
my @in;
- while (<$fh>) {
+ my $rec;
+ for ($rec = 0; <$fh>; ++$rec) {
chomp;
my @s = split /\^/;
if (@s < 14) {
push @s, @a[0,1], @b[0,1] if @s < 12;
push @s, $a[2], $b[2] if @s < 14;
}
- push @in, \@s;
+ unshift @in, \@s;
}
$fh->close;
- $spotcache{"$now->[0]|$now->[1]"} = \@in;
+ dbg("Spot::init read $rec spots from " . _cachek($now));
+ $spotcache{_cachek($now)} = \@in;
}
$now->add(1);
}
+ dbg("Spot::init $spotcachedays files of spots read into cache in " . _diffms($t0) . "mS")
}
}
$fp->writeunix($_[2], $buf);
if ($spotcachedays) {
my $now = Julian::Day->new($_[2]);
- my $day = "$now->[0]|$now->[1]";
- my $r = exists $spotcache{$day} ? $spotcache{$day} : $spotcache{$day} = [];
- unshift @$r, @_;
+ my $day = _cachek($now);
+ my $r = (exists $spotcache{$day}) ? $spotcache{$day} : ($spotcache{$day} = []);
+ unshift @$r, \@_;
# remove old days
while (keys %spotcache > $spotcachedays+1) {
for ($i = $count = 0; $count < $to && $i < $maxdays; ++$i) { # look thru $maxdays worth of files only
last if $now->cmp($todate) <= 0;
- if ($spotcachedays) {
-
- }
- my $fn = $fp->fn($now->sub($i));
- if ($readback) {
- dbg("Spot::search search using tac fn: $fn $i") if isdbg('search');
- $fh = IO::File->new("$readback $fn |");
- }
- else {
- dbg("Spot::search search fn: $fp->{fn} $i") if isdbg('search');
- $fh = $fp->open($now->sub($i)); # get the next file
- }
- if ($fh) {
- my $rec = 0;
- my $in;
- while (<$fh>) {
- chomp;
- my @r = split /\^/;
+
+ my $this = $now->sub($i);
+ my $fn = $fp->fn($this);
+ my $cachekey = _cachek($this);
+ my $rec = 0;
+
+ if ($spotcachedays && $spotcache{$cachekey}) {
+ foreach my $r (@{$spotcache{$cachekey}}) {
++$rec;
if ($dofilter && $dxchan && $dxchan->{spotsfilter}) {
- my ($gotone, undef) = $dxchan->{spotsfilter}->it(@r);
+ my ($gotone, undef) = $dxchan->{spotsfilter}->it(@$r);
next unless $gotone;
}
- if (&$ecode(\@r)) {
+ if (&$ecode($r)) {
++$count;
next if $count < $from;
- if ($readback) {
- push @out, \@r;
- last if $count >= $to;
- } else {
- push @out, \@r;
- shift @out if $count >= $to;
+ push @out, $r;
+ last if $count >= $to;
+ }
+ }
+ dbg("Spot::search cache recs read: $rec") if isdbg('search');
+ } else {
+ if ($readback) {
+ dbg("Spot::search search using tac fn: $fn $i") if isdbg('search');
+ $fh = IO::File->new("$readback $fn |");
+ }
+ else {
+ dbg("Spot::search search fn: $fp->{fn} $i") if isdbg('search');
+ $fh = $fp->open($now->sub($i)); # get the next file
+ }
+ if ($fh) {
+ my $in;
+ while (<$fh>) {
+ chomp;
+ my @r = split /\^/;
+ ++$rec;
+ if ($dofilter && $dxchan && $dxchan->{spotsfilter}) {
+ my ($gotone, undef) = $dxchan->{spotsfilter}->it(@r);
+ next unless $gotone;
+ }
+ if (&$ecode(\@r)) {
+ ++$count;
+ next if $count < $from;
+ if ($readback) {
+ push @out, \@r;
+ last if $count >= $to;
+ } else {
+ push @out, \@r;
+ shift @out if $count >= $to;
+ }
}
}
+ dbg("Spot::search file recs read: $rec") if isdbg('search');
+ last if $count >= $to; # stop after to
}
- dbg("Spot::search recs read: $rec") if isdbg('search');
- last if $count >= $to; # stop after to
-
- return ("Spot search error", $@) if $@;
}
}
+ return ("Spot search error", $@) if $@;
+
@out = sort {$b->[2] <=> $a->[2]} @out if @out;
return @out;
}
my $date = Julian::Day->new($main::systime)->sub(1);
genstats($date) unless checkstats($date);
}
+
+sub _cachek
+{
+ return "$_[0]->[0]|$_[0]->[1]";
+}
1;
dbg("Start Protocol Engines ...");
DXProt->init();
+ # read startup script
+ my $script = new Script "startup";
+ $script->run($main::me) if $script;
+
+ # put in a DXCluster node for us here so we can add users and take them away
+ $routeroot = Route::Node->new($mycall, $version*100+5300, Route::here($main::me->here)|Route::conf($main::me->conf));
+ $routeroot->do_pc9x(1);
+ $routeroot->via_pc92(1);
+
# make sure that there is a routing OUTPUT node default file
#unless (Filter::read_in('route', 'node_default', 0)) {
# my $dxcc = $main::me->dxcc;
# $Route::filterdef->cmd($main::me, 'route', 'accept', "node_default call $mycall" );
#}
- my $script = new Script "startup";
- $script->run($main::me) if $script;
-
# initial the Spot stuff
dbg("Starting DX Spot system");
- Spot->init(); #
-
+ Spot->init();
+
+ # read in any existing message headers and clean out old crap
dbg("reading existing message headers ...");
DXMsg->init();
DXMsg::clean_old();