/[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 118 by dpavlin, Sun Apr 1 11:53:22 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( analyzer store writer create index_path ) );
7    
8  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
9  use Lucene;  use Lucene;
10  use Jifty::Util;  use Jifty::Util;
11    
12  my $index_path = Jifty::Util->app_root . '/var/lucene';  my $debug = 0;
13    
14  my ( $analyzer, $store, $writer );  =head1 NAME
15    
16  my $debug = 1;  Grep::Search - full text search
 my $create;  
17    
18  sub create {  =head1 METHODS
19    
20          if (defined( $create )) {  =head2 new
21                  Jifty->log->debug("using previous create $create");  
22                  return $create;    my $search = Grep::Search->new();
23          }  
24    =cut
25    
26    sub log { Jifty->web->log }
27    
28    sub new {
29            my $class = shift;        
30            my $self = $class->SUPER::new(@_);
31    
32            my $index_path = Jifty::Util->app_root . '/var/lucene';
33    
34            $self->index_path( $index_path );
35    
36          if (! -e "$index_path/segments") {          if (! -e "$index_path/segments") {
37                  $create = 1;                  $self->create( 1 );
38                  Jifty->log->debug("create index $index_path");                  $self->log->debug("Creating new index $index_path");
39          } else {          } else {
40                  $create = 0;                  $self->create( 0 );
41                  Jifty->log->debug("open index: $index_path");                  $self->log->debug("Opening index: $index_path");
42          }          }
         return $create;  
 }  
43    
44  sub analyzer {          $self->analyzer( new Lucene::Analysis::Standard::StandardAnalyzer() );
45          my $self = shift;          $self->log->debug($self->analyzer . " created");
         $analyzer ||= new Lucene::Analysis::Standard::StandardAnalyzer();  
         return $analyzer;  
 }  
46    
47  sub store {          $self->store( Lucene::Store::FSDirectory->getDirectory( $index_path, $self->create ) );
48          my $self = shift;          $self->log->debug($self->store, " created");
49    
50          $store ||= Lucene::Store::FSDirectory->getDirectory( $index_path, $self->create );          return $self;
         return $store;  
 }  
   
 sub writer {  
         my $self = shift;  
         $writer ||= new Lucene::Index::IndexWriter( $self->store, $self->analyzer, $self->create );  
         return $writer;  
51  }  }
52    
53  =head2 add  =head2 add
54    
55    Grep::Search->add( $record, $owner_id );    $search->add( $record, $owner_id );
56    
57  =cut  =cut
58    
# Line 115  sub add { Line 115  sub add {
115          $uid ||= Jifty->web->current_user->id;          $uid ||= Jifty->web->current_user->id;
116          $doc->add(Lucene::Document::Field->Keyword( '_owner_id', $uid ));          $doc->add(Lucene::Document::Field->Keyword( '_owner_id', $uid ));
117    
118            if (! defined( $self->writer )) {
119                    $self->writer( new Lucene::Index::IndexWriter( $self->store, $self->analyzer, $self->create ) );
120                    $self->log->debug($self->writer, " created");
121            }
122    
123          $self->writer->addDocument($doc);          $self->writer->addDocument($doc);
124    
125          Jifty->log->debug("added ", $i->id, " for user $uid to index");          $self->log->debug("added ", $i->id, " for user $uid to index");
126  }  }
127    
128  =head2  =head2 collection
129    
130    my $ItemCollection = Grep::Search->collection( 'search query' );    my $ItemCollection = $search->collection( 'search query' );
131    
132  =cut  =cut
133    
# Line 134  sub collection { Line 139  sub collection {
139          return if ( $self->create );          return if ( $self->create );
140    
141          my $searcher = new Lucene::Search::IndexSearcher($self->store);          my $searcher = new Lucene::Search::IndexSearcher($self->store);
142            $self->log->debug("$searcher created");
143          my $parser = new Lucene::QueryParser("content", $self->analyzer);          my $parser = new Lucene::QueryParser("content", $self->analyzer);
144            $self->log->debug("$parser created");
145    
146          my $full_q = "($q) AND _owner_id:" . Jifty->web->current_user->id;          my $full_q = "($q) AND _owner_id:" . Jifty->web->current_user->id;
147    
148          my $query = $parser->parse( $full_q );          my $query = $parser->parse( $full_q );
149    
150          Jifty->log->debug("searching for '$q' using ", $query->toString);          $self->log->debug("searching for '$q' using ", $query->toString);
151    
152          my $hits = $searcher->search($query);          my $hits = $searcher->search($query);
153          my $num_hits = $hits->length();          my $num_hits = $hits->length();
154    
155          Jifty->log->debug("found $num_hits results");          $self->log->debug("found $num_hits results");
156    
157          my $collection = Grep::Model::ItemCollection->new();          my $collection = Grep::Model::ItemCollection->new();
158    
# Line 159  sub collection { Line 166  sub collection {
166                  my $title = $doc->get("title");                  my $title = $doc->get("title");
167                  my $id = $doc->get("id");                  my $id = $doc->get("id");
168    
169                  warn "## $i $score $title\n";                  $self->log->debug("result $i $score $title");
170    
171                  my $item = Grep::Model::Item->new();                  my $item = Grep::Model::Item->new();
172                  my ($ok,$msg) = $item->load_by_cols( id => $id );                  my ($ok,$msg) = $item->load_by_cols( id => $id );
# Line 177  sub collection { Line 184  sub collection {
184          undef $parser;          undef $parser;
185          undef $searcher;          undef $searcher;
186    
187            $self->log->debug("finished Lucene search");
188    
189          return $collection;          return $collection;
190  }  }
191    
192  =head2 finish  =head2 finish
193    
194    Grep::Search->finish    $search->finish
195    
196  =cut  =cut
197    
198  sub finish {  sub finish {
199          my $self = shift;          my $self = shift;
200          if ($writer) {          if ($self->writer) {
201                  warn "closing index\n";                  $self->log->debug("closing index");
202                  $writer->close;                  $self->writer->close;
203          }          }
204          undef $writer;  
205          undef $create;          $self->log->debug("finish");
206    
207            undef $self;
208    
209          return;          return;
210  }  }
# Line 217  $SIG{'QUIT'} = \&_signal; Line 228  $SIG{'QUIT'} = \&_signal;
228    
229    my $short = $self->snippet( 50, $text );    my $short = $self->snippet( 50, $text );
230    
   
231  =cut  =cut
232    
233  sub snippet {  sub snippet {

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

  ViewVC Help
Powered by ViewVC 1.1.26