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

Legend:
Removed from v.109  
changed lines
  Added in v.144

  ViewVC Help
Powered by ViewVC 1.1.26