13794ceee70731aeecf088721aa177295048828f
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Task / Search.pm
1 # $Id: Search.pm,v 1.10 2007-03-07 17:59:53 mike Exp $
2
3 package ZOOM::IRSpy::Task::Search;
4
5 use 5.008;
6 use strict;
7 use warnings;
8
9 use ZOOM::IRSpy::Task;
10 our @ISA = qw(ZOOM::IRSpy::Task);
11
12 =head1 NAME
13
14 ZOOM::IRSpy::Task::Search - a searching task for IRSpy
15
16 =head1 SYNOPSIS
17
18  ## to follow
19
20 =head1 DESCRIPTION
21
22  ## to follow
23
24 =cut
25
26 sub new {
27     my $class = shift();
28     my($query) = shift();
29
30     my $this = $class->SUPER::new(@_);
31     $this->{query} = $query;
32     $this->{rs} = undef;
33     return $this;
34 }
35
36 sub run {
37     my $this = shift();
38
39     $this->set_options();
40
41     my $conn = $this->conn();
42     $conn->connect($conn->option("host"));
43
44     my $query = $this->{query};
45     $this->irspy()->log("irspy_task", $conn->option("host"),
46                         " searching for '$query'");
47     $this->{rs} = $conn->search_pqf($query);
48     warn "no ZOOM-C level events queued by $this"
49         if $conn->is_idle();
50
51     $this->set_options();
52 }
53
54 sub render {
55     my $this = shift();
56     return ref($this) . "(" . $this->{query} . ")";
57 }
58
59 use overload '""' => \&render;
60
61
62 =head1 SEE ALSO
63
64 ZOOM::IRSpy
65
66 =head1 AUTHOR
67
68 Mike Taylor, E<lt>mike@indexdata.comE<gt>
69
70 =head1 COPYRIGHT AND LICENSE
71
72 Copyright (C) 2006 by Index Data ApS.
73
74 This library is free software; you can redistribute it and/or modify
75 it under the same terms as Perl itself, either Perl version 5.8.7 or,
76 at your option, any later version of Perl 5 you may have available.
77
78 =cut
79
80 1;