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

Legend:
Removed from v.47  
changed lines
  Added in v.141

  ViewVC Help
Powered by ViewVC 1.1.26