/[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 127 by dpavlin, Sun Apr 29 00:16:05 2007 UTC revision 151 by dpavlin, Sat Jun 9 10:27:03 2007 UTC
# Line 3  package Grep::Search; Line 3  package Grep::Search;
3  use strict;  use strict;
4  use warnings;  use warnings;
5  use base qw( Class::Accessor );  use base qw( Class::Accessor );
6  Grep::Search->mk_accessors( qw( invindexer 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 KinoSearch::InvIndexer;  use KinoSearch::InvIndexer;
# Line 22  Grep::Search - full text search using L< Line 22  Grep::Search - full text search using L<
22    
23    my $search = Grep::Search->new();    my $search = Grep::Search->new();
24    
25      my $search = Grep::Search->new( create => 1 );
26    
27    =head2 invindexer
28    
29    Accessor to call any method defined on L<KinoSearch::InvIndexer>
30    
31      $search->invindexer->delete_by_term( 'id', 42 );
32    
33  =cut  =cut
34    
35  sub log { Jifty->web->log }  sub log { Jifty->web->log }
# Line 34  sub new { Line 42  sub new {
42    
43          $self->index_path( $index_path );          $self->index_path( $index_path );
44    
45          if (! -e "$index_path") {          if ( ! -e "$index_path" || $self->create ) {
46                  $self->log->debug("Creating new index $index_path");                  $self->log->debug("Creating new index $index_path");
47                  $self->invindexer( KinoSearch::InvIndexer->new( invindex => Grep::Search::Schema->clobber( $index_path ) ) );                  $self->invindexer( KinoSearch::InvIndexer->new( invindex => Grep::Search::Schema->clobber( $index_path ) ) );
48          } else {          } else {
# Line 113  sub add { Line 121  sub add {
121          $self->invindexer->add_doc( $doc );          $self->invindexer->add_doc( $doc );
122    
123          $self->log->debug("added ", $i->id, " for user $uid to index");          $self->log->debug("added ", $i->id, " for user $uid to index");
124    
125            return 1;
126  }  }
127    
128  =head2 collection  =head2 collection
129    
130    Return C<Grep::Model::ItemCollection> which is result of C<search query>
131    
132    my $ItemCollection = $search->collection( 'search query' );    my $ItemCollection = $search->collection( 'search query' );
133    
134    =head2 hits
135    
136    Return number of results from last C<collection> call
137    
138      my $num_results = $search->hits;
139    
140  =cut  =cut
141    
142  sub collection {  sub collection {
# Line 130  sub collection { Line 148  sub collection {
148                  invindex => Grep::Search::Schema->open( $self->index_path ), );                  invindex => Grep::Search::Schema->open( $self->index_path ), );
149          $self->log->debug("$searcher created");          $self->log->debug("$searcher created");
150    
151          my $full_q = "($q) AND _owner_id:" . Jifty->web->current_user->id;          my $full_q = "($q)";
152    
153            my $uid = Jifty->web->current_user->id;
154            $full_q .= ' AND _owner_id:' . $uid if ($uid);
155    
156          $self->log->debug("searching for '$q' using $full_q");          $self->log->debug("searching for '$q' using $full_q");
157          my $hits = $searcher->search(          my $hits = $searcher->search(
# Line 139  sub collection { Line 160  sub collection {
160  #               num_wanted      => $hits_per_page,  #               num_wanted      => $hits_per_page,
161          );          );
162    
163          my $num_hits = $hits->total_hits;          $self->hits( $hits->total_hits );
164    
165          $self->log->debug("found $num_hits results");          $self->log->debug("found ", $self->hits, " results");
166    
167          my $collection = Grep::Model::ItemCollection->new();          my $collection = Grep::Model::ItemCollection->new();
168    
# Line 154  sub collection { Line 175  sub collection {
175                  my $title = $hit->{title};                  my $title = $hit->{title};
176                  my $id = $hit->{id};                  my $id = $hit->{id};
177    
178                  $self->log->debug("result $i $score $title");                  $self->log->debug("result $i [$id] $title $score");
179    
180                  my $item = Grep::Model::Item->new();                  my $item = Grep::Model::Item->new();
181                  my ($ok,$msg) = $item->load_by_cols( id => $id );                  my ($ok,$msg) = $item->load_by_cols( id => $id );
# Line 189  sub finish { Line 210  sub finish {
210    
211          undef $self;          undef $self;
212    
213          return;          return 1;
214  }  }
215    
 =cut  
   
216  =head2 snippet  =head2 snippet
217    
218    my $short = $self->snippet( 50, $text );    my $short = $self->snippet( 50, $text );
# Line 223  package Grep::Search::Schema; Line 242  package Grep::Search::Schema;
242    
243  =head1 NAME  =head1 NAME
244    
245  Grep::Search::Schema - data definition  Grep::Search::Schema - schema definition for full-text search
246    
247  =cut  =cut
248    
249  use base 'KinoSearch::Schema';  use base 'KinoSearch::Schema';
250  use KinoSearch::Analysis::PolyAnalyzer;  use KinoSearch::Analysis::PolyAnalyzer;
251    
252  our %FIELDS = (  our %fields = (
253          id                              => 'Grep::Search::KeywordField',          id                              => 'Grep::Search::KeywordField',
254    
255          in_feed_id              => 'Grep::Search::KeywordField',          in_feed_id              => 'Grep::Search::KeywordField',

Legend:
Removed from v.127  
changed lines
  Added in v.151

  ViewVC Help
Powered by ViewVC 1.1.26