X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=lib%2FZOOM%2FIRSpy%2FTask%2FSearch.pm;h=25373d77a6f87d6e0122f5ffff8fa5ab8dc453bd;hp=8b09d860bbdf5ecd2d7db9e8a14820349a06f636;hb=b20e3151146e801c6cd8c658d45c65694c9c264b;hpb=a8be7db5305925fc720f3dac7e6afc8fba7b9e60 diff --git a/lib/ZOOM/IRSpy/Task/Search.pm b/lib/ZOOM/IRSpy/Task/Search.pm index 8b09d86..25373d7 100644 --- a/lib/ZOOM/IRSpy/Task/Search.pm +++ b/lib/ZOOM/IRSpy/Task/Search.pm @@ -1,4 +1,4 @@ -# $Id: Search.pm,v 1.1 2006-10-06 11:33:08 mike Exp $ +# $Id: Search.pm,v 1.14 2007-05-01 15:32:06 mike Exp $ package ZOOM::IRSpy::Task::Search; @@ -25,10 +25,14 @@ ZOOM::IRSpy::Task::Search - a searching task for IRSpy sub new { my $class = shift(); - my($query) = shift(); + my $qtype = shift(); + my $qstr = shift(); + die "$class: unrecognised query type '$qtype'" + if !grep { $qtype eq $_ } qw(pqf cql); my $this = $class->SUPER::new(@_); - $this->{query} = $query; + $this->{qtype} = $qtype; + $this->{qstr} = $qstr; $this->{rs} = undef; return $this; } @@ -36,17 +40,42 @@ sub new { sub run { my $this = shift(); + $this->set_options(); + my $conn = $this->conn(); - my $query = $this->{query}; - $this->irspy()->log("irspy_test", $conn->option("host"), - " searching for '$query'"); - $this->{rs} = $conn->search_pqf($query); - # Wow -- that's it. + $conn->connect($conn->option("host")); + + my $qtype = $this->{qtype}; + my $qstr = $this->{qstr}; + $this->irspy()->log("irspy_task", $conn->option("host"), + " searching for '$qtype:$qstr'"); + die "task $this has resultset?!" if defined $this->{rs}; + + my $query; + if ($qtype eq "pqf") { + $query = new ZOOM::Query::Prefix($qstr); + } elsif ($qtype eq "cql") { + $query = new ZOOM::Query::CQL($qstr); + } else { + die "Huh?!"; + } + + ### Note well that when this task runs, it creates a result-set + # object which MUST BE DESTROYED in order to prevent large-scale + # memory leakage. So when creating a Task::Search, it is the + # APPLICATION'S RESPONSIBILITY to ensure that the callback + # invoked on success OR FAILURE makes arrangements for the set + # to be destroyed. + $this->{rs} = $conn->search($query); + warn "no ZOOM-C level events queued by $this" + if $conn->is_idle(); + + $this->set_options(); } sub render { my $this = shift(); - return ref($this) . " " . $this->{query}; + return ref($this) . "(" . $this->{qtype} . ":" . $this->{qstr} . ")"; } use overload '""' => \&render;