#
my ($self, $line) = @_;
-my @list = split /\s+/, $line; # split the line up
+my @list = split /\s+/, $line; # split the line up
my @out;
my $f;
my $info;
my $expr;
-while ($f = shift @list) { # next field
-# print "f: $f list: ", join(',', @list), "\n";
- if (!$from && !$to) {
- ($from, $to) = $f =~ /^(\d+)-(\d+)$/o; # is it a from -> to count?
- next if $from && $to > $from;
- }
- if (!$to) {
- ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count?
- next if $to;
- }
- if (lc $f eq 'on' && $list[0]) { # is it freq range?
-# print "yup freq\n";
- my @r = split '/', $list[0];
-# print "r0: $r[0] r1: $r[1]\n";
- @freq = Bands::get_freq($r[0], $r[1]);
- if (@freq) { # yup, get rid of extranous param
-# print "freq: ", join(',', @freq), "\n";
- shift @list;
- next;
+while ($f = shift @list) { # next field
+ # print "f: $f list: ", join(',', @list), "\n";
+ if (!$from && !$to) {
+ ($from, $to) = $f =~ /^(\d+)-(\d+)$/o; # is it a from -> to count?
+ next if $from && $to > $from;
+ }
+ if (!$to) {
+ ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count?
+ next if $to;
+ }
+ if (lc $f eq 'on' && $list[0]) { # is it freq range?
+ # print "yup freq\n";
+ my @r = split '/', $list[0];
+ # print "r0: $r[0] r1: $r[1]\n";
+ @freq = Bands::get_freq($r[0], $r[1]);
+ if (@freq) { # yup, get rid of extranous param
+ # print "freq: ", join(',', @freq), "\n";
+ shift @list;
+ next;
+ }
+ }
+ if (lc $f eq 'day' && $list[0]) {
+ # print "got day\n";
+ ($fromday, $today) = split '-', shift(@list);
+ next;
+ }
+ if (lc $f eq 'info' && $list[0]) {
+ # print "got info\n";
+ $info = shift @list;
+ next;
+ }
+ if (lc $f eq 'spotter' && $list[0]) {
+ # print "got spotter\n";
+ $spotter = uc shift @list;
+ next;
+ }
+ if (!$pre) {
+ $pre = uc $f;
}
- }
- if (lc $f eq 'day' && $list[0]) {
-# print "got day\n";
- ($fromday, $today) = split '-', shift(@list);
- next;
- }
- if (lc $f eq 'info' && $list[0]) {
-# print "got info\n";
- $info = shift @list;
- next;
- }
- if (lc $f eq 'spotter' && $list[0]) {
-# print "got spotter\n";
- $spotter = uc shift @list;
- next;
- }
- if (!$pre) {
- $pre = uc $f;
- }
}
# first deal with the prefix
if ($pre) {
- $expr = "\$f1 =~ /";
- $pre =~ s|/|\\/|; # change the slashes to \/
- if ($pre =~ /^\*/o) {
- $pre =~ s/^\*//;;
- $expr .= "$pre\$/o";
- } else {
- $expr .= "^$pre/o";
- }
+ $expr = "\$f1 =~ /";
+ $pre =~ s|/|\\/|; # change the slashes to \/
+ if ($pre =~ /^\*/o) {
+ $pre =~ s/^\*//;;
+ $expr .= "$pre\$/o";
+ } else {
+ $expr .= "^$pre/o";
+ }
} else {
- $expr = "1"; # match anything
+ $expr = "1"; # match anything
}
# now deal with any frequencies specified
if (@freq) {
- $expr .= ($expr) ? " && (" : "(";
- my $i;
- for ($i; $i < @freq; $i += 2) {
- $expr .= "(\$f0 >= $freq[$i] && \$f0 <= $freq[$i+1]) ||";
- }
- chop $expr;
- chop $expr;
- $expr .= ")";
+ $expr .= ($expr) ? " && (" : "(";
+ my $i;
+ for ($i = 0; $i < @freq; $i += 2) {
+ $expr .= "(\$f0 >= $freq[$i] && \$f0 <= $freq[$i+1]) ||";
+ }
+ chop $expr;
+ chop $expr;
+ $expr .= ")";
}
# any info
if ($info) {
- $expr .= " && " if $expr;
- $info =~ s|/|\\/|;
- $expr .= "\$f3 =~ /$info/io";
+ $expr .= " && " if $expr;
+ $info =~ s|/|\\/|;
+ $expr .= "\$f3 =~ /$info/io";
}
# any spotter
if ($spotter) {
- $expr .= " && " if $expr;
- $spotter =~ s|/|\\/|;
- $expr .= "\$f4 =~ /$spotter/o";
+ $expr .= " && " if $expr;
+ $spotter =~ s|/|\\/|;
+ $expr .= "\$f4 =~ /$spotter/o";
}
#print "expr: $expr from: $from to: $to fromday: $fromday today: $today\n";
my $ref;
my @dx;
foreach $ref (@res) {
- @dx = @$ref;
- push @out, Spot::formatl(@dx);
+ @dx = @$ref;
+ push @out, Spot::formatl(@dx);
}
return (1, @out);
my @today = Julian::unixtoj(time);
my @fromdate;
my @todate;
-
- if ($dayfrom > 0) {
- @fromdate = Julian::sub(@today, $dayfrom);
- } else {
- @fromdate = @today;
- $dayfrom = 0;
- }
- if ($dayto > 0) {
- @todate = Julian::sub(@fromdate, $dayto);
- } else {
- @todate = Julian::sub(@fromdate, $maxdays);
- }
- if ($from || $to) {
- $to = $from + $maxspots if $to - $from > $maxspots || $to - $from <= 0;
- } else {
- $from = 0;
- $to = $defaultspots;
- }
+
+ $dayfrom = 0 if !$dayfrom;
+ $dayto = $maxdays if !$dayto;
+ @fromdate = Julian::sub(@today, $dayfrom);
+ @todate = Julian::sub(@fromdate, $dayto);
+ $from = 0 unless $from;
+ $to = $defaultspots unless $to;
+
+ $to = $from + $maxspots if $to - $from > $maxspots || $to - $from <= 0;
$expr =~ s/\$f(\d)/\$ref->[$1]/g; # swap the letter n for the correct field name
# $expr =~ s/\$f(\d)/\$spots[$1]/g; # swap the letter n for the correct field name
$eval = qq(
my \$c;
my \$ref;
- for (\$c = \$ #spots; \$c >= 0; \$c--) {
+ for (\$c = \$#spots; \$c >= 0; \$c--) {
\$ref = \$spots[\$c];
if ($expr) {
\$count++;
next if \$count < \$from; # wait until from
push(\@out, \$ref);
- last LOOP if \$count >= \$to; # stop after to
+ last if \$count >= \$to; # stop after to
}
}
);
push @spots, [ split '\^' ];
}
eval $eval; # do the search on this file
+ last if $count >= $to; # stop after to
return ("Spot search error", $@) if $@;
}
}