/usr/lib/perl5/KinoSearch1/Document/Field.pm is in libkinosearch1-perl 1.00-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | package KinoSearch1::Document::Field;
use strict;
use warnings;
use KinoSearch1::Util::ToolSet;
use base qw( KinoSearch1::Util::Class );
BEGIN {
__PACKAGE__->init_instance_vars(
# constructor args / members
name => undef,
analyzer => undef,
boost => 1,
stored => 1,
indexed => 1,
analyzed => 1,
vectorized => 1,
binary => 0,
compressed => 0,
omit_norms => 0,
field_num => undef,
value => '',
fnm_bits => undef,
fdt_bits => undef,
tv_string => '',
tv_cache => undef,
);
__PACKAGE__->ready_get_set(
qw(
value
tv_string
boost
indexed
stored
analyzed
vectorized
binary
compressed
analyzer
field_num
name
omit_norms
)
);
}
use KinoSearch1::Index::FieldsReader;
use KinoSearch1::Index::FieldInfos;
use KinoSearch1::Index::TermVector;
use Storable qw( dclone );
sub init_instance {
my $self = shift;
# field name is required
croak("Missing required parameter 'name'")
unless length $self->{name};
# don't index binary fields
if ( $self->{binary} ) {
$self->{indexed} = 0;
$self->{analyzed} = 0;
}
}
sub clone {
my $self = shift;
return dclone($self);
}
# Given two Field objects, return a child which has all the positive
# attributes of both parents (meaning: values are OR'd).
sub breed_with {
my ( $self, $other ) = @_;
my $kid = $self->clone;
for (qw( indexed vectorized )) {
$kid->{$_} ||= $other->{$_};
}
return $kid;
}
sub set_fnm_bits { $_[0]->{fnm_bits} = $_[1] }
sub get_fnm_bits {
my $self = shift;
$self->{fnm_bits} = KinoSearch1::Index::FieldInfos->encode_fnm_bits($self)
unless defined $self->{fnm_bits};
return $self->{fnm_bits};
}
sub set_fdt_bits { $_[0]->{fdt_bits} = $_[1] }
sub get_fdt_bits {
my $self = shift;
$self->{fdt_bits}
= KinoSearch1::Index::FieldsReader->encode_fdt_bits($self)
unless defined $self->{fdt_bits};
return $self->{fdt_bits};
}
sub get_value_len { bytes::length( $_[0]->{value} ) }
# Return a TermVector object for a given Term, if it's in this field.
sub term_vector {
my ( $self, $term_text ) = @_;
return unless bytes::length( $self->{tv_string} );
if ( !defined $self->{tv_cache} ) {
$self->{tv_cache} = _extract_tv_cache( $self->{tv_string} );
}
if ( exists $self->{tv_cache}{$term_text} ) {
my ( $positions, $starts, $ends )
= _unpack_posdata( $self->{tv_cache}{$term_text} );
my $term_vector = KinoSearch1::Index::TermVector->new(
text => $term_text,
field => $self->{name},
positions => $positions,
start_offsets => $starts,
end_offsets => $ends,
);
return $term_vector;
}
return;
}
1;
__END__
__XS__
MODULE = KinoSearch1 PACKAGE = KinoSearch1::Document::Field
=for comment
Return ref to a hash where the keys are term texts and the values are encoded
positional data.
=cut
void
_extract_tv_cache(tv_string_sv)
SV *tv_string_sv;
PREINIT:
HV *tv_cache_hv;
PPCODE:
tv_cache_hv = Kino1_Field_extract_tv_cache(tv_string_sv);
XPUSHs( sv_2mortal( newRV_noinc( (SV*)tv_cache_hv ) ) );
XSRETURN(1);
=for comment
Decompress positional data.
=cut
void
_unpack_posdata(posdata_sv)
SV *posdata_sv;
PREINIT:
AV *positions_av, *starts_av, *ends_av;
PPCODE:
positions_av = newAV();
starts_av = newAV();
ends_av = newAV();
Kino1_Field_unpack_posdata(posdata_sv, positions_av, starts_av, ends_av);
XPUSHs(sv_2mortal( newRV_noinc((SV*)positions_av) ));
XPUSHs(sv_2mortal( newRV_noinc((SV*)starts_av) ));
XPUSHs(sv_2mortal( newRV_noinc((SV*)ends_av) ));
XSRETURN(3);
__H__
#ifndef H_KINOSEARCH_FIELD
#define H_KINOSEARCH_FIELD 1
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "KinoSearch1StoreInStream.h"
#include "KinoSearch1UtilCarp.h"
HV* Kino1_Field_extract_tv_cache(SV*);
void Kino1_Field_unpack_posdata(SV*, AV*, AV*, AV*);
#endif /* include guard */
__C__
#include "KinoSearch1DocumentField.h"
HV*
Kino1_Field_extract_tv_cache(SV *tv_string_sv) {
HV *tv_cache_hv;
char *tv_string, *bookmark_ptr, *key;
char **tv_ptr;
STRLEN len, tv_len, overlap, key_len;
SV *text_sv, *nums_sv;
I32 i, num_terms, num_positions;
/* allocate a new hash */
tv_cache_hv = newHV();
/* extract pointers */
tv_string = SvPV(tv_string_sv, tv_len);
tv_ptr = &tv_string;
/* create a base text scalar */
text_sv = newSV(1);
SvPOK_on(text_sv);
*(SvEND(text_sv)) = '\0';
/* read the number of vectorized terms in the field */
num_terms = Kino1_InStream_decode_vint(tv_ptr);
for (i = 0; i < num_terms; i++) {
/* decompress the term text */
overlap = Kino1_InStream_decode_vint(tv_ptr);
SvCUR_set(text_sv, overlap);
len = Kino1_InStream_decode_vint(tv_ptr);
sv_catpvn(text_sv, *tv_ptr, len);
*tv_ptr += len;
key = SvPV(text_sv, key_len);
/* get positions & offsets string */
num_positions = Kino1_InStream_decode_vint(tv_ptr);
bookmark_ptr = *tv_ptr;
while(num_positions--) {
/* leave nums compressed to save a little mem */
(void)Kino1_InStream_decode_vint(tv_ptr);
(void)Kino1_InStream_decode_vint(tv_ptr);
(void)Kino1_InStream_decode_vint(tv_ptr);
}
len = *tv_ptr - bookmark_ptr;
nums_sv = newSVpvn(bookmark_ptr, len);
/* store the $text => $posdata pair in the output hash */
hv_store(tv_cache_hv, key, key_len, nums_sv, 0);
}
SvREFCNT_dec(text_sv);
return tv_cache_hv;
}
void
Kino1_Field_unpack_posdata(SV *posdata_sv, AV *positions_av,
AV *starts_av, AV *ends_av) {
STRLEN len;
char *posdata, *posdata_end;
char **posdata_ptr;
SV *num_sv;
posdata = SvPV(posdata_sv, len);
posdata_ptr = &posdata;
posdata_end = SvEND(posdata_sv);
/* translate encoded VInts to Perl scalars */
while(*posdata_ptr < posdata_end) {
num_sv = newSViv( Kino1_InStream_decode_vint(posdata_ptr) );
av_push(positions_av, num_sv);
num_sv = newSViv( Kino1_InStream_decode_vint(posdata_ptr) );
av_push(starts_av, num_sv);
num_sv = newSViv( Kino1_InStream_decode_vint(posdata_ptr) );
av_push(ends_av, num_sv);
}
if (*posdata_ptr != posdata_end)
Kino1_confess("Bad encoding of posdata");
}
__POD__
=head1 NAME
KinoSearch1::Document::Field - a field within a document
=head1 SYNOPSIS
# no public interface
=head1 DESCRIPTION
Fields can only be defined or manipulated indirectly, via InvIndexer and Doc.
=head1 COPYRIGHT
Copyright 2005-2010 Marvin Humphrey
=head1 LICENSE, DISCLAIMER, BUGS, etc.
See L<KinoSearch1> version 1.00.
=cut
|