X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdx.pl;h=2af75e7ce09a21ae897bec57ee75f6424ed1e7c6;hb=d7338541ed3f380b0d10e0676bb5d64e6e5e4d7a;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=07ea293f3919d2da76220b5fbc55b734008ed44c;p=spider.git diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index e69de29b..2af75e7c 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -0,0 +1,150 @@ +# +# show dx (normal) +# +# $Id$ +# + +my ($self, $line) = @_; +my @list = split /\s+/, $line; # split the line up + +my @out; +my $f; +my $call; +my ($from, $to); +my ($fromday, $today); +my @freq; +my @ans; +my $pre; +my $spotter; +my $info; +my $expr; +my ($doqsl, $doiota, $doqra); + +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"; + my @fr = Bands::get_freq($r[0], $r[1]); + if (@fr) { # yup, get rid of extranous param + # print "freq: ", join(',', @fr), "\n"; + shift @list; + push @freq, @fr; # add these to the 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' || lc $f eq 'by') && $list[0]) { + # print "got spotter\n"; + $spotter = uc shift @list; + next; + } + if (lc $f eq 'qsl') { + $doqsl = 1; + next; + } + if (lc $f eq 'iota') { + my ($a, $b); +# $DB::single =1; + + if ($list[0] && (($a, $b) = $list[0] =~ /(AF|AN|NA|SA|EU|AS|OC)-?(\d?\d\d)/oi)) { + $a = uc $a; + $doiota = "\\b$a\[\-\ \]\?$b\\b"; + shift @list; + } + $doiota = '\b(IOTA|(AF|AN|NA|SA|EU|AS|OC)[- ]?\d?\d\d)\b' unless $doiota; + next; + } + if (lc $f eq 'qra') { + $doqra = uc shift @list if $list[0] =~ /[A-Z][A-Z]\d\d/oi; + $doqra = '\b([A-Z][A-Z]\d\d|[A-Z][A-Z]\d\d[A-Z][A-Z])\b' unless $doqra; + next; + } + if (!$pre) { + $pre = uc $f; + } +} + +# first deal with the prefix +if ($pre) { + $pre .= '*' unless $pre =~ /[\*\?\[]/o; + $pre = shellregex($pre); + $expr = "\$f1 =~ m{$pre}o"; +} else { + $expr = "1"; # match anything +} + +# now deal with any frequencies specified +if (@freq) { + $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{(.)}{"\Q$1"}ge; + $expr .= "\$f3 =~ m{$info}io"; +} + +# any spotter +if ($spotter) { + $expr .= " && " if $expr; + $spotter = shellregex($spotter); + $expr .= "\$f4 =~ m{$spotter}o"; +} + +# qsl requests +if ($doqsl) { + $expr .= " && " if $expr; + $expr .= "\$f3 =~ m{(\@|>|QSL|VIA)}io"; +} + +# iota requests +if ($doiota) { + $expr .= " && " if $expr; + $expr .= "\$f3 =~ m{$doiota}io"; +} + +# iota requests +if ($doqra) { + $expr .= " && " if $expr; + $expr .= "\$f3 =~ m{$doqra}io"; +} + +#print "expr: $expr from: $from to: $to fromday: $fromday today: $today\n"; + +# now do the search +my @res = Spot::search($expr, $fromday, $today, $from, $to); +my $ref; +my @dx; +foreach $ref (@res) { + @dx = @$ref; + push @out, Spot::formatl(@dx); +} + +return (1, @out);