/[Grep]/lib/Grep/Search.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/Grep/Search.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 64 by dpavlin, Wed Feb 21 20:22:07 2007 UTC revision 145 by dpavlin, Tue May 8 14:28:14 2007 UTC
# Line 2  package Grep::Search; Line 2  package Grep::Search;
2    
3  use strict;  use strict;
4  use warnings;  use warnings;
5    use base qw( Class::Accessor );
6    Grep::Search->mk_accessors( qw( invindexer create index_path hits ) );
7    
8  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
9  use Lucene;  use KinoSearch::InvIndexer;
10    use KinoSearch::Searcher;
11  use Jifty::Util;  use Jifty::Util;
12    
13  my $index_path = Jifty::Util->app_root . '/var/lucene';  my $debug = 0;
14    
15  my ( $analyzer, $store, $writer );  =head1 NAME
16    
17  my $debug = 1;  Grep::Search - full text search using L<KinoSearch>
 my $create;  
18    
19  sub create {  =head1 METHODS
20    
21          if (defined( $create )) {  =head2 new
                 Jifty->log->debug("using previous create $create");  
                 return $create;  
         }  
22    
23          if (! -e "$index_path/segments") {    my $search = Grep::Search->new();
                 $create = 1;  
                 Jifty->log->debug("create index $index_path");  
         } else {  
                 $create = 0;  
                 Jifty->log->debug("open index: $index_path");  
         }  
         return $create;  
 }  
24    
25  sub analyzer {    my $search = Grep::Search->new( create => 1 );
         my $self = shift;  
         $analyzer ||= new Lucene::Analysis::Standard::StandardAnalyzer();  
         return $analyzer;  
 }  
26    
27  sub store {  =head2 invindexer
         my $self = shift;  
28    
29          $store ||= Lucene::Store::FSDirectory->getDirectory( $index_path, $self->create );  Accessor to call any method defined on L<KinoSearch::InvIndexer>
         return $store;  
 }  
30    
31  sub writer {    $search->invindexer->delete_by_term( 'id', 42 );
32          my $self = shift;  
33          $writer ||= new Lucene::Index::IndexWriter( $self->store, $self->analyzer, $self->create );  =cut
34          return $writer;  
35    sub log { Jifty->web->log }
36    
37    sub new {
38            my $class = shift;        
39            my $self = $class->SUPER::new(@_);
40    
41            my $index_path = Jifty::Util->app_root . '/var/invindex';
42    
43            $self->index_path( $index_path );
44    
45            if ( ! -e "$index_path" || $self->create ) {
46                    $self->log->debug("Creating new index $index_path");
47                    $self->invindexer( KinoSearch::InvIndexer->new( invindex => Grep::Search::Schema->clobber( $index_path ) ) );
48            } else {
49                    $self->log->debug("Opening index: $index_path");
50                    $self->invindexer( KinoSearch::InvIndexer->new( invindex => Grep::Search::Schema->open( $index_path ) ) );
51            }
52    
53            return $self;
54  }  }
55    
56  =head2 add  =head2 add
57    
58    Grep::Search->add( $record, $owner_id );    $search->add( $record, $owner_id );
59    
60  =cut  =cut
61    
# Line 66  sub add { Line 69  sub add {
69    
70          my $pk = { $i->primary_keys };          my $pk = { $i->primary_keys };
71    
72          my $doc = new Lucene::Document;          my $doc;
73    
74          my @columns = map { $_->name } $i->columns;          my @columns = map { $_->name } $i->columns;
75    
# Line 82  sub add { Line 85  sub add {
85                                          my $col = $c . '_' . $f_c;                                          my $col = $c . '_' . $f_c;
86                                          if ( $f_v ) {                                          if ( $f_v ) {
87                                                  warn "  # $col = $f_v\n" if ($debug);                                                  warn "  # $col = $f_v\n" if ($debug);
88                                                  $doc->add(Lucene::Document::Field->Text( $col, $f_v ));                                                  $doc->{ $col } = $f_v;
89                                          } else {                                          } else {
90                                                  warn "  . $col is NULL\n" if ($debug);                                                  warn "  . $col is NULL\n" if ($debug);
91                                          }                                          }
# Line 91  sub add { Line 94  sub add {
94    
95                          if ($v->isa('Jifty::DateTime')) {                          if ($v->isa('Jifty::DateTime')) {
96                                  warn "  d $c = $v\n" if ($debug);                                  warn "  d $c = $v\n" if ($debug);
97                                  $doc->add(Lucene::Document::Field->Keyword( $c, "$v" ));                                  $doc->{$c} = $v;
98                          } else {                          } else {
99                                  warn "  s $c = $v [",ref($v),"]\n" if ($debug);                                  warn "  s $c = $v [",ref($v),"]\n" if ($debug);
100                          }                          }
# Line 103  sub add { Line 106  sub add {
106                  $v =~ s/<[^>]+>/ /gs;                  $v =~ s/<[^>]+>/ /gs;
107    
108                  if ( defined( $pk->{$c} ) ) {                  if ( defined( $pk->{$c} ) ) {
109                          $doc->add(Lucene::Document::Field->Keyword( $c, $v ));                          $doc->{ $c } = $v;
110                          warn "  * $c = $v\n" if ($debug);                          warn "  * $c = $v\n" if ($debug);
111                  } else {                  } else {
112                          $doc->add(Lucene::Document::Field->Text( $c, $v ));                          $doc->{ $c } = $v;
113                          warn "  + $c = ", $self->snippet( 50, $v ), "\n" if ($debug);                          warn "  + $c = ", $self->snippet( 50, $v ), "\n" if ($debug);
114                  }                  }
115          }          }
116    
117          # add _owner_id to speed up filtering of search results          # add _owner_id to speed up filtering of search results
118          $uid ||= Jifty->web->current_user->id;          $uid ||= Jifty->web->current_user->id;
119          $doc->add(Lucene::Document::Field->Keyword( '_owner_id', $uid ));          $doc->{ '_owner_id' } = $uid;
120    
121          $self->writer->addDocument($doc);          $self->invindexer->add_doc( $doc );
122    
123          Jifty->log->debug("added ", $i->id, " for user $uid to index");          $self->log->debug("added ", $i->id, " for user $uid to index");
124  }  }
125    
126  =head2  =head2 collection
127    
128    Return C<Grep::Model::ItemCollection> which is result of C<search query>
129    
130      my $ItemCollection = $search->collection( 'search query' );
131    
132    =head2 hits
133    
134    Return number of results from last C<collection> call
135    
136    my $ItemCollection = Grep::Search->collection( 'search query' );    my $num_results = $search->hits;
137    
138  =cut  =cut
139    
# Line 131  sub collection { Line 142  sub collection {
142    
143          my $q = shift or die "no q?";          my $q = shift or die "no q?";
144    
145          return if ( $self->create );          my $searcher = KinoSearch::Searcher->new(
146                    invindex => Grep::Search::Schema->open( $self->index_path ), );
147          my $searcher = new Lucene::Search::IndexSearcher($self->store);          $self->log->debug("$searcher created");
         my $parser = new Lucene::QueryParser("content", $self->analyzer);  
148    
149          my $full_q = "($q) AND _owner_id:" . Jifty->web->current_user->id;          my $full_q = "($q) AND _owner_id:" . Jifty->web->current_user->id;
150    
151          my $query = $parser->parse( $full_q );          $self->log->debug("searching for '$q' using $full_q");
152            my $hits = $searcher->search(
153          Jifty->log->debug("searching for '$q' using ", $query->toString);                  query           => $full_q,
154    #               offset          => $offset,
155    #               num_wanted      => $hits_per_page,
156            );
157    
158          my $hits = $searcher->search($query);          $self->hits( $hits->total_hits );
         my $num_hits = $hits->length();  
159    
160          Jifty->log->debug("found $num_hits results");          $self->log->debug("found ", $self->hits, " results");
161    
162          my $collection = Grep::Model::ItemCollection->new();          my $collection = Grep::Model::ItemCollection->new();
163    
164          my @results;          my @results;
165    
166          for ( my $i = 0; $i < $num_hits; $i++ ) {          my $i = 0;
167            while ( my $hit = $hits->fetch_hit_hashref ) {
                 my $doc = $hits->doc( $i );  
168    
169                  my $score = $hits->score($i);                  my $score = $hit->{score};
170                  my $title = $doc->get("title");                  my $title = $hit->{title};
171                  my $id = $doc->get("id");                  my $id = $hit->{id};
172    
173                  warn "## $i $score $title\n";                  $self->log->debug("result $i [$id] $title $score");
174    
175                  my $item = Grep::Model::Item->new();                  my $item = Grep::Model::Item->new();
176                  my ($ok,$msg) = $item->load_by_cols( id => $id );                  my ($ok,$msg) = $item->load_by_cols( id => $id );
# Line 172  sub collection { Line 183  sub collection {
183    
184          }          }
185    
186          undef $hits;          $self->log->debug("finished search");
         undef $query;  
         undef $parser;  
         undef $searcher;  
187    
188          return $collection;          return $collection;
189  }  }
190    
191  =head2 finish  =head2 finish
192    
193    Grep::Search->finish    $search->finish
194    
195  =cut  =cut
196    
197  sub finish {  sub finish {
198          my $self = shift;          my $self = shift;
199          if ($writer) {          if ($self->invindexer) {
200                  warn "closing index\n";                  $self->log->debug("closing index");
201                  $writer->close;                  $self->invindexer->finish;
202          }          }
         undef $writer;  
         undef $create;  
203    
204          return;          $self->log->debug("finish");
 }  
205    
206  =for TODO          undef $self;
207    
208  sub _signal {          return;
         my $s = shift;  
         warn "catched SIG $s\n";  
         finish();  
         exit(0);  
209  }  }
210    
 $SIG{'__DIE__'} = \&_signal;  
 $SIG{'INT'} = \&_signal;  
 $SIG{'QUIT'} = \&_signal;  
   
 =cut  
   
211  =head2 snippet  =head2 snippet
212    
213    my $short = $self->snippet( 50, $text );    my $short = $self->snippet( 50, $text );
214    
   
215  =cut  =cut
216    
217  sub snippet {  sub snippet {
# Line 235  sub snippet { Line 229  sub snippet {
229          }          }
230  }  }
231    
232    package Grep::Search::KeywordField;
233    use base qw( KinoSearch::Schema::FieldSpec );
234    sub analyzed { 0 }
235    
236    package Grep::Search::Schema;
237    
238    =head1 NAME
239    
240    Grep::Search::Schema - schema definition for full-text search
241    
242    =cut
243    
244    use base 'KinoSearch::Schema';
245    use KinoSearch::Analysis::PolyAnalyzer;
246    
247    our %fields = (
248            id                              => 'Grep::Search::KeywordField',
249    
250            in_feed_id              => 'Grep::Search::KeywordField',
251            in_feed_url             => 'Grep::Search::KeywordField',
252            in_feed_title   => 'KinoSearch::Schema::FieldSpec',
253            in_feed_owner   => 'Grep::Search::KeywordField',
254            in_feed_created_on      => 'Grep::Search::KeywordField',
255    
256            title                   => 'KinoSearch::Schema::FieldSpec',
257            link                    => 'Grep::Search::KeywordField',
258            content                 => 'KinoSearch::Schema::FieldSpec',
259            summary                 => 'KinoSearch::Schema::FieldSpec',
260            category                => 'KinoSearch::Schema::FieldSpec',
261            author                  => 'KinoSearch::Schema::FieldSpec',
262            issued                  => 'Grep::Search::KeywordField',
263            modified                => 'Grep::Search::KeywordField',
264    
265            _owner_id               => 'Grep::Search::KeywordField',
266    );
267    
268    sub analyzer {
269            return KinoSearch::Analysis::PolyAnalyzer->new( language => 'en' );
270    }
271    
272  1;  1;

Legend:
Removed from v.64  
changed lines
  Added in v.145

  ViewVC Help
Powered by ViewVC 1.1.26