handle exists for first_time_indexing
[BackupPC.git] / lib / BackupPC / Search / KinoSearch.pm
index 98b7f2f..dcbb749 100644 (file)
@@ -12,7 +12,22 @@ use Data::Dump qw(dump);
 # my $tokenizer = KinoSearch::Analysis::Tokenizer->new( pattern => '\\w' );
 
 sub new {
-       my ( $class ) = @_;
+       my $class = shift @_;
+       my %Conf = @_;
+
+       my $index_path = $Conf{KinoPath} || die "no KinoPath";
+
+       my $self = bless {
+               index => $index_path,
+               first_time_indexing => ! -d $index_path,
+       }, $class;
+       warn "# ",dump($self);
+       return $self;
+}
+
+sub indexer {
+       my $self = shift;
+       return $self->{_indexer} if defined $self->{_indexer};
 
        my $schema = KinoSearch::Plan::Schema->new;
 
@@ -46,33 +61,37 @@ sub new {
 
 #      $schema->spec_field( name => '_doc', type => $blob_type );
 
-       my $index_path = '/tmp/kinosearch'; # FIXME
-
        my $indexer = KinoSearch::Index::Indexer->new(
                schema => $schema,
-               index  => $index_path,
+               index  => $self->{index},
                create => 1,
        );
 
-       warn "# using $index_path";
+       warn "# created indexer";
 
-       $indexer->commit; # make sure that index exists
+       return $self->{_indexer} = $indexer;
 
-       my $self = bless {
-               indexer => $indexer,
-               searcher => KinoSearch::Search::IndexSearcher->new(
-                       index => $index_path,
-               ),
+};
 
-       }, $class;
-       return $self;
+our $searcher;
+sub searcher {
+       my $self = shift;
+       return $self->{_searcher} if $self->{_searcher};
+       $self->{_searcher} =
+       KinoSearch::Search::IndexSearcher->new( index => $self->{index} )
 }
 
 sub exists {
        my ($self,$row) = @_;
 
+       return 0 if $self->{first_time_indexing};
+
        my $uri = $row->{hname} . ':' . $row->{sname} . '#' . $row->{backupnum} . ' ' . $row->{filepath};
-       my $hits = $self->{searcher}->hits( query => "_uri:$uri" );
+       my $hits = $self->searcher->hits( query => "_uri:$uri" );
+
+
+       $self->{stat}->{exists}->{ $hits->total_hits }++;
+
        return $hits->total_hits;
 }
 
@@ -86,14 +105,48 @@ sub add_doc {
 
        warn "XXX ",dump($row) if $ENV{DEBUG};
 
-       $self->{indexer}->add_doc( $row );
+       $self->{stats}->{add_doc}++;
+
+       $self->indexer->add_doc( $row );
 
 }
 
 sub commit {
        my $self = shift;
-       $self->{indexer}->commit;
-       warn "# commit index";
+       $self->indexer->commit;
+       warn "# commit index ", dump($self->{stats});
+}
+
+sub search {
+       my ( $self, $offset, $on_page, $sort, $q, $shareid, $backup_from, $backup_to, $files_from, $files_to ) = @_;
+
+       warn "# search $offset/$on_page [$q] shareid: $shareid backup: $backup_from - $backup_to files: $files_from - $files_to";
+
+       my $sort_field = (split(/_/,$sort,2))[0];
+
+       my $rules = [ KinoSearch::Search::SortRule->new( type => 'score' ) ];
+       $rules->[0] = KinoSearch::Search::SortRule->new( field => $sort_field, reverse => $sort =~ m/_a$/ ? 0 : 1 ) if $sort_field;
+
+       my $sort_spec = KinoSearch::Search::SortSpec->new( rules => $rules );
+
+#      $q =~ s/(.)/$1 /g;
+       my $hits = $self->searcher->hits(
+               query => $q,
+               sort_spec => $sort_spec,
+       );
+
+
+       warn "# ", $hits->total_hits, " hits for $q\n";
+
+       return (0,[]) if $hits->total_hits == 0;
+
+       my $results;
+       while ( my $hit = $hits->next ) {
+warn "XXX ",dump($hit);
+               push @$results, $hit;
+       }
+
+       return ( $hits->total_hits, $results );
 }
 
 1;