package KinoSearch::Index::SegTermEnum; use strict; use warnings; use KinoSearch::Util::ToolSet; use base qw( KinoSearch::Util::Class ); use KinoSearch::Index::Term; use KinoSearch::Index::TermInfo; use KinoSearch::Index::TermBuffer; our %instance_vars = __PACKAGE__->init_instance_vars( # constructor params finfos => undef, instream => undef, is_index => 0, ); sub new { # verify params my $ignore = shift; my %args = ( %instance_vars, @_ ); verify_args( \%instance_vars, %args ); # get a TermBuffer helper object my $term_buffer = KinoSearch::Index::TermBuffer->new( finfos => $args{finfos}, ); return _new( @args{ 'instream', 'is_index', 'finfos', }, $term_buffer ); } sub clone_enum { my $self = shift; # dupe instream and seek it to the start of the file, so init works right my $instream = $self->_get_instream; my $new_stream = $instream->clone_stream; $new_stream->seek(0); # create a new object and seek it to the right term/terminfo my $evil_twin = __PACKAGE__->new( finfos => $self->_get_finfos, instream => $new_stream, is_index => $self->is_index, ); $evil_twin->seek( $instream->tell, $self->_get_position, $self->get_termstring, $self->get_term_info ); return $evil_twin; } # Locate the Enum to a particular spot. sub seek { my ( $self, $pointer, $position, $termstring, $tinfo ) = @_; # seek the filehandle my $instream = $self->_get_instream; $instream->seek($pointer); # set values as if we'd scanned here from the start of the Enum $self->_set_position($position); $self->_set_termstring($termstring); $self->_set_term_info($tinfo); } sub close { my $instream = $_[0]->get_instream; $instream->close; } 1; __END__ __XS__ MODULE = KinoSearch PACKAGE = KinoSearch::Index::SegTermEnum =for comment _new() is a helper sub for the Perl method new(). =cut SegTermEnum* _new(instream_sv, is_index, finfos_sv, term_buffer_sv) SV *instream_sv; I32 is_index; SV *finfos_sv SV *term_buffer_sv; PREINIT: I32 format; InStream *instream; SegTermEnum *obj; char *ptr; STRLEN len; CODE: { /* allocate space */ Kino_New(0, obj, 1, SegTermEnum); obj->tinfo = Kino_TInfo_new(); /* flag these so they don't get freed unless they get filled later */ obj->tinfos_cache = NULL; obj->termstring_ptr_cache = NULL; obj->term_text_len_cache = NULL; /* save instream, finfos, and term_buffer, incrementing refcounts */ obj->instream_sv = newSVsv(instream_sv); obj->finfos = newSVsv(finfos_sv); obj->term_buf_ref = newSVsv(term_buffer_sv); Kino_extract_struct(term_buffer_sv, obj->term_buf, TermBuffer*, "KinoSearch::Index::TermBuffer"); Kino_extract_struct(instream_sv, obj->instream, InStream*, "KinoSearch::Store::InStream"); instream = obj->instream; /* determine whether this is a primary or index enum */ obj->is_index = is_index; /* reject older or newer index formats */ format = (I32)instream->read_int(instream); if (format != -2) Kino_confess("Unsupported index format: %d", format); /* read in some vars */ obj->enum_size = instream->read_long(instream); obj->index_interval = instream->read_int(instream); obj->skip_interval = instream->read_int(instream); /* define the position of the Enum as "not yet started" */ obj->position = -1; RETVAL = obj; } OUTPUT: RETVAL =begin comment _bulk_scan() can be called by three different aliases: fill_cache() loads the entire Enum into memory. This should only be called for index Enums -- never for primary Enums. scan_to() expects a single argument: a termstring. It iterates through the Enum until the Enum's state is ge the target. This is called on the main Enum, after seek() has gotten it close. You don't want to scan through the entire main Enum, just through a small part. next() advances the state of the Enum one term. If the current position of the Enum is valid, it returns 1; when the Enum is exhausted, it returns 0. Scanning through an Enum is an involved process, due to the heavy data compression that's involved. See the Java Lucene File Format definition for details. =end comment =cut SV* _bulk_scan(obj, ...) SegTermEnum *obj; ALIAS: fill_cache = 1 scan_to = 2 next = 3 PREINIT: InStream *instream; TermBuffer *term_buf; TermInfo *tinfo; char *target_termstring_ptr; STRLEN target_termstring_len; char **termstring_ptr_cache_ptr; STRLEN *term_text_len_cache_ptr; TermInfo **tinfos_cache_ptr; I32 aI32; STRLEN len; CODE: { /* make some local copies for clarity of code */ instream = obj->instream; tinfo = obj->tinfo; term_buf = obj->term_buf; /* if called as fill_cache(), allocate space for cache pointers */ if (ix == 1) { Kino_SegTermEnum_init_cache(obj); termstring_ptr_cache_ptr = obj->termstring_ptr_cache; term_text_len_cache_ptr = obj->term_text_len_cache; tinfos_cache_ptr = obj->tinfos_cache; } /* if called as scan_to(), prepare the target_termstring vars */ else if (ix == 2) { if (items != 2) Kino_confess("usage: $enum->scan_to($termstring)"); target_termstring_ptr = SvPV( ST(1), target_termstring_len ); } while (1) { /* if we've run out of terms, null out the termstring and return */ if (++obj->position >= obj->enum_size) { Kino_TermBuf_reset(term_buf); break; } Kino_TermBuf_read(term_buf, instream); /* read doc freq; skip interval doesn't do anything right now */ tinfo->doc_freq = instream->read_vint(instream); /* adjust file pointers. */ tinfo->frq_fileptr += instream->read_vlong(instream); tinfo->prx_fileptr += instream->read_vlong(instream); if (tinfo->doc_freq >= obj->skip_interval) tinfo->skip_offset = instream->read_vint(instream); else tinfo->skip_offset = 0; if (obj->is_index) tinfo->index_fileptr += instream->read_vlong(instream); if (ix == 1) { /* fill_cache */ /* copy tinfo and termstring into caches, keep looping */ *tinfos_cache_ptr = Kino_TInfo_dupe(tinfo); *termstring_ptr_cache_ptr = Kino_savepvn(term_buf->termstring, (term_buf->text_len + KINO_FIELD_NUM_LEN)); *term_text_len_cache_ptr = term_buf->text_len; term_text_len_cache_ptr++; termstring_ptr_cache_ptr++; tinfos_cache_ptr++; } else if (ix == 2) { /* scan_to */ /* keep looping until the termstring is lexically ge target */ aI32 = Kino_SegTermEnum_compare_strings( term_buf->termstring, target_termstring_ptr, (term_buf->text_len + KINO_FIELD_NUM_LEN), target_termstring_len ); if (aI32 >= 0) break; } else if (ix == 3) /* next */ /* bail out after 1 loop iter */ break; } /* return 1 if called via next() and Enum is not yet exhausted */ if (ix == 3 && term_buf->termstring != NULL) { RETVAL = newSViv(1); } else { RETVAL = newSViv(0); } } OUTPUT: RETVAL =for comment For an Enum which has been loaded into memory, scan to the target as quickly as possible. =cut I32 scan_cache(obj, target_termstring_sv) SegTermEnum *obj; SV *target_termstring_sv; PREINIT: TermBuffer *term_buf; I32 lo; I32 mid; I32 hi; I32 result; I32 comparison; char *target_termstring; STRLEN target_len; char **termstrings; STRLEN *lengths; char *scratch_ptr; STRLEN term_text_len; CODE: { term_buf = obj->term_buf; /* prepare to compare strings */ target_termstring = SvPV(target_termstring_sv, target_len); termstrings = obj->termstring_ptr_cache; lengths = obj->term_text_len_cache; if (obj->tinfos_cache == NULL) Kino_confess("Internal Error: fill_cache hasn't been called yet"); lo = 0; hi = obj->enum_size - 1; result = -100; /* divide and conquer */ while (hi >= lo) { mid = (lo + hi) >> 1; comparison = Kino_SegTermEnum_compare_strings( target_termstring, termstrings[mid], target_len, (lengths[mid] + KINO_FIELD_NUM_LEN) ); if (comparison < 0) hi = mid - 1; else if (comparison > 0) lo = mid + 1; else { result = mid; break; } } result = hi == -1 ? 0 /* indicating that target lt first entry */ : result == -100 ? hi /* if result is still -100, it wasn't set */ : result; /* set the state of the Enum/TermBuffer as if we'd called scan_to */ obj->position = result; term_text_len = lengths[result]; scratch_ptr = termstrings[result]; Kino_TermBuf_set_text_len(term_buf, term_text_len); Copy(scratch_ptr, term_buf->termstring, term_text_len, char); Kino_TInfo_destroy(obj->tinfo); obj->tinfo = Kino_TInfo_dupe( obj->tinfos_cache[result] ); RETVAL = result; } OUTPUT: RETVAL =for comment Setters and getters for members in the SegTermEnum struct. Not all of these are useful. =cut SV* _set_or_get(obj, ...) SegTermEnum *obj; ALIAS: _set_instream = 1 _get_instream = 2 _set_finfos = 3 _get_finfos = 4 _set_size = 5 get_size = 6 _set_termstring = 7 get_termstring = 8 _set_term_info = 9 get_term_info = 10 _set_index_interval = 11 get_index_interval = 12 _set_position = 13 _get_position = 14 _set_is_index = 15 is_index = 16 PREINIT: char *scratch_ptr; TermInfo *new_tinfo; STRLEN len; CODE: { /* if called as a setter, make sure the extra arg is there */ if (ix % 2 == 1 && items != 2) croak("usage: $seg_term_enum->set_xxxxxx($val)"); switch (ix) { case 0: croak("can't call _get_or_set on it's own"); break; /* probably unreachable */ case 1: SvREFCNT_dec(obj->instream_sv); obj->instream_sv = newSVsv( ST(1) ); /* fall through */ case 2: RETVAL = newSVsv(obj->instream_sv); break; case 3: SvREFCNT_dec(obj->finfos); obj->finfos = newSVsv( ST(1) ); /* fall through */ case 4: RETVAL = newSVsv(obj->finfos); break; case 5: obj->enum_size = (I32)SvIV( ST(1) ); /* fall through */ case 6: RETVAL = newSViv(obj->enum_size); break; case 7: scratch_ptr = SvPV( ST(1), len ); if (len < KINO_FIELD_NUM_LEN) Kino_confess("Internal error: termstring too short"); Kino_TermBuf_set_text_len(obj->term_buf, len - KINO_FIELD_NUM_LEN); Copy(scratch_ptr, obj->term_buf->termstring, len, char); /* fall through */ case 8: RETVAL = (obj->term_buf->termstring == NULL) ? newSV(0) /* return undef */ : newSVpv( obj->term_buf->termstring, (obj->term_buf->text_len + KINO_FIELD_NUM_LEN) ); break; case 9: if (!sv_derived_from(ST(1), "KinoSearch::Index::TermInfo")) Kino_confess("object isn't a KinoSearch::Index::TermInfo"); /* exctract a TermInfo struct from $_[1] */ new_tinfo = INT2PTR(TermInfo*,( SvIV( (SV*)SvRV(ST(1)) ) )); Kino_TInfo_destroy(obj->tinfo); obj->tinfo = Kino_TInfo_dupe(new_tinfo); /* fall through */ case 10: RETVAL = newSV(0); new_tinfo = Kino_TInfo_dupe(obj->tinfo); sv_setref_pv(RETVAL, "KinoSearch::Index::TermInfo", (void*)new_tinfo); break; case 11: obj->index_interval = SvIV( ST(1) ); /* fall through */ case 12: RETVAL = newSViv(obj->index_interval); break; case 13: obj->position = SvIV( ST(1) ); /* fall through */ case 14: RETVAL = newSViv(obj->position); break; case 15: Kino_confess("can't set is_index"); /* fall through */ case 16: RETVAL = newSViv(obj->is_index); break; default: Kino_confess("Internal error: _set_or_get ix: %d", ix); break; /* probably unreachable */ } } OUTPUT: RETVAL void DESTROY(obj) SegTermEnum* obj; PREINIT: I32 iter; char **termstring_ptr_cache_ptr; TermInfo **tinfos_cache_ptr; PPCODE: { /* put out the garbage for collection */ SvREFCNT_dec(obj->finfos); SvREFCNT_dec(obj->instream_sv); SvREFCNT_dec(obj->term_buf_ref); Kino_TInfo_destroy(obj->tinfo); /* if fill_cache was called, free all of that... */ if (obj->tinfos_cache != NULL) { termstring_ptr_cache_ptr = obj->termstring_ptr_cache; tinfos_cache_ptr = obj->tinfos_cache; Kino_Safefree(obj->term_text_len_cache); for (iter = 0; iter < obj->enum_size; iter++) { Kino_Safefree(*termstring_ptr_cache_ptr++); Kino_TInfo_destroy(*tinfos_cache_ptr++); } Kino_Safefree(obj->tinfos_cache); Kino_Safefree(obj->termstring_ptr_cache); } /* last, the SegTermEnum object itself */ Kino_Safefree(obj); } __H__ #ifndef H_KINOSEARCH_INDEX_SEG_TERM_ENUM #define H_KINOSEARCH_INDEX_SEG_TERM_ENUM 1 #include "EXTERN.h" #include "perl.h" #include "KinoSearchIndexTermBuffer.h" #include "KinoSearchIndexTermInfo.h" #include "KinoSearchStoreInStream.h" #include "KinoSearchUtilCarp.h" #include "KinoSearchUtilMemManager.h" typedef struct segtermenumc { SV *finfos; SV *instream_sv; SV *term_buf_ref; TermBuffer *term_buf; TermInfo *tinfo; InStream *instream; I32 is_index; I32 enum_size; I32 position; I32 index_interval; I32 skip_interval; char **termstring_ptr_cache; STRLEN *term_text_len_cache; TermInfo **tinfos_cache; } SegTermEnum; I32 Kino_SegTermEnum_compare_strings(char*, char*, STRLEN, STRLEN); void Kino_SegTermEnum_init_cache(SegTermEnum*); #endif /* include guard */ __C__ #include "KinoSearchIndexSegTermEnum.h" I32 Kino_SegTermEnum_compare_strings(char *a, char *b, STRLEN a_len, STRLEN b_len) { STRLEN len; I32 comparison = 0; if (a == NULL || b == NULL) Kino_confess("Internal error: can't compare unallocated pointers"); len = a_len < b_len? a_len : b_len; if (len > 0) comparison = memcmp(a, b, len); /* if a is a substring of b, it's less than b, so return a neg num */ if (comparison == 0) comparison = a_len - b_len; return comparison; } void Kino_SegTermEnum_init_cache(SegTermEnum* obj) { if (obj->tinfos_cache != NULL) Kino_confess("Internal error: cache already filled"); Kino_New(0, obj->termstring_ptr_cache, obj->enum_size, char*); Kino_New(0, obj->term_text_len_cache, obj->enum_size, STRLEN); Kino_New(0, obj->tinfos_cache, obj->enum_size, TermInfo*); } __POD__ =begin devdocs =head1 NAME KinoSearch::Index::SegTermEnum - single-segment TermEnum =head1 DESCRIPTION Single-segment implementation of KinoSearch::Index::TermEnum. =head1 COPYRIGHT Copyright 2005-2006 Marvin Humphrey =head1 LICENSE, DISCLAIMER, BUGS, etc. See L version 0.08. =end devdocs =cut