X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FConnection.pm;h=0a9afa72eac461771c1f2cc28975a28fecca20cb;hp=8d77f5fb63de6b7b28698c35535fc081db91526d;hb=e3c566f5dd0b8c5975f5c9513bf90ef024010149;hpb=9a26de6de61feb7e4e7850b3ded54bc1501d34ed diff --git a/lib/ZOOM/IRSpy/Connection.pm b/lib/ZOOM/IRSpy/Connection.pm index 8d77f5f..0a9afa7 100644 --- a/lib/ZOOM/IRSpy/Connection.pm +++ b/lib/ZOOM/IRSpy/Connection.pm @@ -1,4 +1,4 @@ -# $Id: Connection.pm,v 1.14 2007-05-01 15:32:51 mike Exp $ +# $Id: Connection.pm,v 1.17 2007-12-12 10:45:07 mike Exp $ package ZOOM::IRSpy::Connection; @@ -50,6 +50,10 @@ sub create { my $rs = $irspy->{conn}->search(new ZOOM::Query::CQL($query)); my $n = $rs->size(); $this->log("irspy", "query '$query' found $n records"); + ### More than 1 hit is always an error and indicates duplicate + # records in the database; no hits is fine for a new target + # being probed for the first time, but not if the connection is + # being created as part of an "all known targets" scan. my $zeerex; $zeerex = render_record($rs, 0, "zeerex") if $n > 0; $this->{record} = new ZOOM::IRSpy::Record($this, $target, $zeerex); @@ -136,13 +140,14 @@ sub irspy_search { my $this = shift(); my($qtype, $qstr, $udata, $options, %cb) = @_; + #warn "calling $this->irspy_search(", join(", ", @_), ")\n"; $this->add_task(new ZOOM::IRSpy::Task::Search ($qtype, $qstr, $this, $udata, $options, %cb)); } # Wrapper for backwards compatibility -sub irspy_search_cql { +sub irspy_search_pqf { my $this = shift(); return $this->irspy_search("pqf", @_); }