From c59e6497c9717e7585fb87c7c9ce9aee0d62a373 Mon Sep 17 00:00:00 2001 From: minima Date: Fri, 25 Feb 2005 13:01:57 +0000 Subject: [PATCH] more sopt dupe changes --- perl/DXDupe.pm | 8 ++++---- perl/Spot.pm | 21 ++++++++------------- 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/perl/DXDupe.pm b/perl/DXDupe.pm index 63fdcb2b..b7d2618a 100644 --- a/perl/DXDupe.pm +++ b/perl/DXDupe.pm @@ -46,9 +46,9 @@ sub finish sub check { - my ($s, $t) = @_; + my $s = shift; return 1 if find($s); - add($s, $t); + add($s, shift); return 0; } @@ -59,8 +59,8 @@ sub find sub add { - my ($s, $t) = @_; - $t = $main::systime + $default unless $t; + my $s = shift; + my $t = shift || $main::systime + $default; $d{$s} = $t; } diff --git a/perl/Spot.pm b/perl/Spot.pm index d49136b7..61bc1a25 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -27,7 +27,7 @@ $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0)) $main::build += $VERSION; $main::branch += $BRANCH; -use vars qw($fp $statp $maxspots $defaultspots $maxdays $dirprefix $duplth $dupage $filterdef $totalspots $hfspots $vhfspots ); +use vars qw($fp $statp $maxspots $defaultspots $maxdays $dirprefix $duplth $dupage $filterdef $totalspots $hfspots $vhfspots $maxcalllth); $fp = undef; $statp = undef; @@ -37,6 +37,7 @@ $maxdays = 100; # normal maximum no of days to go back $dirprefix = "spots"; $duplth = 20; # the length of text to use in the deduping $dupage = 3*3600; # the length of time to hold spot dups +$maxcalllth = 12; # the max length of call to take into account for dupes $filterdef = bless ([ # tag, sort, field, priv, special parser ['freq', 'r', 0, 0, \&decodefreq], @@ -328,26 +329,20 @@ sub dup $d *= 60; $freq = sprintf "%.1f", $freq; # normalise frequency - $call = substr($call, 0, 12) if length $call > 12; + $call = substr($call, 0, $maxcalllth) if length $call > $maxcalllth; chomp $text; $text =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg; + $text = unpad($text); $text = substr($text, 0, $duplth) if length $text > $duplth; - unpad($text); $text = pack("C*", map {$_ & 127} unpack("C*", $text)); $text =~ s/[^a-zA-Z0-9]//g; - my $ldupkey = "X$freq|$call|\L$text"; + my $ldupkey = "X$freq|$call|" . uc $text; my $sdupkey = "X$freq|$call|$by"; my $t = DXDupe::find($ldupkey); - if ($t) { - my $dt = $main::systime + $dupage - $t; - return 1 if $dt < 300; - } - $t = DXDupe::find($sdupkey); - if ($t) { - my $dt = $main::systime + $dupage - $t; - return 1 if $dt < 300; - } + return 1 if $t && $t - $main::systime > 0; + $t = DXDupe::find($sdupkey); + return 1 if $t && $t - $main::systime > 0; DXDupe::add($ldupkey, $main::systime+$dupage); DXDupe::add($sdupkey, $main::systime+$dupage); return 0; -- 2.34.1