/usr/include/xapian/postingsource.h is in libxapian-dev 1.2.19-1+deb8u1.
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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 | /** @file postingsource.h
* @brief External sources of posting information
*/
/* Copyright (C) 2007,2008,2009,2010,2011,2012 Olly Betts
* Copyright (C) 2008,2009 Lemur Consulting Ltd
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef XAPIAN_INCLUDED_POSTINGSOURCE_H
#define XAPIAN_INCLUDED_POSTINGSOURCE_H
#include <xapian/database.h>
#include <xapian/types.h>
#include <xapian/visibility.h>
#include <string>
#include <map>
namespace Xapian {
/** Base class which provides an "external" source of postings.
*/
class XAPIAN_VISIBILITY_DEFAULT PostingSource {
/// Don't allow assignment.
void operator=(const PostingSource &);
/// Don't allow copying.
PostingSource(const PostingSource &);
/// The current upper bound on what get_weight() can return.
double max_weight_;
/** The object to inform of maxweight changes.
*
* We store this as a (void*) to avoid needing to declare an internal
* type in an external header. It's actually (MultiMatch *).
*/
void * matcher_;
protected:
/// Allow subclasses to be instantiated.
PostingSource() : max_weight_(0), matcher_(NULL) { }
/** Set an upper bound on what get_weight() can return from now on.
*
* This upper bound is used by the matcher to perform various
* optimisations, so if you can return a good bound, then matches
* will generally run faster.
*
* This method should be called after calling init(), and may be called
* during iteration if the upper bound drops.
*
* It is valid for the posting source to have returned a higher value from
* get_weight() earlier in the iteration, but the posting source must not
* return a higher value from get_weight() than the currently set upper
* bound, and the upper bound must not be increased (until init() has been
* called).
*
* If you don't call this method, the upper bound will default to 0, for
* convenience when implementing "weight-less" PostingSource subclasses.
*
* @param max_weight The upper bound to set.
*/
void set_maxweight(Xapian::weight max_weight);
public:
/** @private @internal Set the object to inform of maxweight changes.
*
* This method is for internal use only - it would be private except that
* would force us to forward declare an internal class in an external API
* header just to make it a friend.
*/
void register_matcher_(void * matcher) { matcher_ = matcher; }
// Destructor.
virtual ~PostingSource();
/** A lower bound on the number of documents this object can return.
*
* Xapian will always call init() on a PostingSource before calling this
* for the first time.
*/
virtual Xapian::doccount get_termfreq_min() const = 0;
/** An estimate of the number of documents this object can return.
*
* It must always be true that:
*
* get_termfreq_min() <= get_termfreq_est() <= get_termfreq_max()
*
* Xapian will always call init() on a PostingSource before calling this
* for the first time.
*/
virtual Xapian::doccount get_termfreq_est() const = 0;
/** An upper bound on the number of documents this object can return.
*
* Xapian will always call init() on a PostingSource before calling this
* for the first time.
*/
virtual Xapian::doccount get_termfreq_max() const = 0;
/// Return the currently set upper bound on what get_weight() can return.
Xapian::weight get_maxweight() const { return max_weight_; }
/** Return the weight contribution for the current document.
*
* This default implementation always returns 0, for convenience when
* implementing "weight-less" PostingSource subclasses.
*
* This method may assume that it will only be called when there is a
* "current document". In detail: Xapian will always call init() on a
* PostingSource before calling this for the first time. It will also
* only call this if the PostingSource reports that it is pointing to a
* valid document (ie, it will not call it before calling at least one of
* next(), skip_to() or check(), and will ensure that the PostingSource is
* not at the end by calling at_end()).
*/
virtual Xapian::weight get_weight() const;
/** Return the current docid.
*
* This method may assume that it will only be called when there is a
* "current document". See @a get_weight() for details.
*
* Note: in the case of a multi-database search, the returned docid should
* be in the single subdatabase relevant to this posting source. See the
* @a init() method for details.
*/
virtual Xapian::docid get_docid() const = 0;
/** Advance the current position to the next matching document.
*
* The PostingSource starts before the first entry in the list, so next()
* must be called before any methods which need the context of
* the current position.
*
* Xapian will always call init() on a PostingSource before calling this
* for the first time.
*
* @param min_wt The minimum weight contribution that is needed (this is
* just a hint which subclasses may ignore).
*/
virtual void next(Xapian::weight min_wt) = 0;
/** Advance to the specified docid.
*
* If the specified docid isn't in the list, position ourselves on the
* first document after it (or at_end() if no greater docids are present).
*
* If the current position is already the specified docid, this method will
* leave the position unmodified.
*
* If the specified docid is earlier than the current position, the
* behaviour is unspecified. A sensible behaviour would be to leave the
* current position unmodified, but it is also reasonable to move to the
* specified docid.
*
* The default implementation calls next() repeatedly, which works but
* skip_to() can often be implemented much more efficiently.
*
* Xapian will always call init() on a PostingSource before calling this
* for the first time.
*
* Note: in the case of a multi-database search, the docid specified is
* the docid in the single subdatabase relevant to this posting source.
* See the @a init() method for details.
*
* @param did The document id to advance to.
* @param min_wt The minimum weight contribution that is needed (this is
* just a hint which subclasses may ignore).
*/
virtual void skip_to(Xapian::docid did, Xapian::weight min_wt);
/** Check if the specified docid occurs.
*
* The caller is required to ensure that the specified document id @a did
* actually exists in the database. If it does, it must move to that
* document id, and return true. If it does not, it may either:
*
* - return true, having moved to a definite position (including
* "at_end"), which must be the same position as skip_to() would have
* moved to.
*
* or
*
* - return false, having moved to an "indeterminate" position, such that
* a subsequent call to next() or skip_to() will move to the next
* matching position after @a did.
*
* Generally, this method should act like skip_to() and return true if
* that can be done at little extra cost.
*
* Otherwise it should simply check if a particular docid is present,
* returning true if it is, and false if it isn't.
*
* The default implementation calls skip_to() and always returns true.
*
* Xapian will always call init() on a PostingSource before calling this
* for the first time.
*
* Note: in the case of a multi-database search, the docid specified is
* the docid in the single subdatabase relevant to this posting source.
* See the @a init() method for details.
*
* @param did The document id to check.
* @param min_wt The minimum weight contribution that is needed (this is
* just a hint which subclasses may ignore).
*/
virtual bool check(Xapian::docid did, Xapian::weight min_wt);
/** Return true if the current position is past the last entry in this list.
*
* At least one of @a next(), @a skip_to() or @a check() will be called
* before this method is first called.
*/
virtual bool at_end() const = 0;
/** Clone the posting source.
*
* The clone should inherit the configuration of the parent, but need not
* inherit the state. ie, the clone does not need to be in the same
* iteration position as the original: the matcher will always call
* init() on the clone before attempting to move the iterator, or read
* the information about the current position of the iterator.
*
* This may return NULL to indicate that cloning is not supported. In
* this case, the PostingSource may only be used with a single-database
* search.
*
* The default implementation returns NULL.
*
* Note that the returned object will be deallocated by Xapian after use
* with "delete". If you want to handle the deletion in a special way
* (for example when wrapping the Xapian API for use from another
* language) then you can define a static <code>operator delete</code>
* method in your subclass as shown here:
* http://trac.xapian.org/ticket/554#comment:1
*/
virtual PostingSource * clone() const;
/** Name of the posting source class.
*
* This is used when serialising and unserialising posting sources; for
* example, for performing remote searches.
*
* If the subclass is in a C++ namespace, the namespace should be included
* in the name, using "::" as a separator. For example, for a
* PostingSource subclass called "FooPostingSource" in the "Xapian"
* namespace the result of this call should be "Xapian::FooPostingSource".
*
* This should only be implemented if serialise() and unserialise() are
* also implemented. The default implementation returns an empty string.
*
* If this returns an empty string, Xapian will assume that serialise()
* and unserialise() are not implemented.
*/
virtual std::string name() const;
/** Serialise object parameters into a string.
*
* The serialised parameters should represent the configuration of the
* posting source, but need not (indeed, should not) represent the current
* iteration state.
*
* If you don't want to support the remote backend, you can use the
* default implementation which simply throws Xapian::UnimplementedError.
*/
virtual std::string serialise() const;
/** Create object given string serialisation returned by serialise().
*
* Note that the returned object will be deallocated by Xapian after use
* with "delete". If you want to handle the deletion in a special way
* (for example when wrapping the Xapian API for use from another
* language) then you can define a static <code>operator delete</code>
* method in your subclass as shown here:
* http://trac.xapian.org/ticket/554#comment:1
*
* If you don't want to support the remote backend, you can use the
* default implementation which simply throws Xapian::UnimplementedError.
*
* @param s A serialised instance of this PostingSource subclass.
*/
virtual PostingSource * unserialise(const std::string &s) const;
/** Set this PostingSource to the start of the list of postings.
*
* This is called automatically by the matcher prior to each query being
* processed.
*
* If a PostingSource is used for multiple searches, @a init() will
* therefore be called multiple times, and must handle this by using the
* database passed in the most recent call.
*
* @param db The database which the PostingSource should iterate through.
*
* Note: the database supplied to this method must not be modified: in
* particular, the reopen() method should not be called on it.
*
* Note: in the case of a multi-database search, a separate PostingSource
* will be used for each database (the separate PostingSources will be
* obtained using @a clone()), and each PostingSource will be passed one of
* the sub-databases as the @a db parameter here. The @a db parameter
* will therefore always refer to a single database. All docids passed
* to, or returned from, the PostingSource refer to docids in that single
* database, rather than in the multi-database.
*/
virtual void init(const Database & db) = 0;
/** Return a string describing this object.
*
* This default implementation returns a generic answer. This default
* it provided to avoid forcing those deriving their own PostingSource
* subclass from having to implement this (they may not care what
* get_description() gives for their subclass).
*/
virtual std::string get_description() const;
};
/** A posting source which generates weights from a value slot.
*
* This is a base class for classes which generate weights using values stored
* in the specified slot. For example, ValueWeightPostingSource uses
* sortable_unserialise to convert values directly to weights.
*
* The upper bound on the weight returned is set to DBL_MAX. Subclasses
* should call set_maxweight() in their init() methods after calling
* ValuePostingSource::init() if they know a tighter bound on the weight.
*/
class XAPIAN_VISIBILITY_DEFAULT ValuePostingSource : public PostingSource {
protected:
/// The database we're reading values from.
Xapian::Database db;
/// The slot we're reading values from.
Xapian::valueno slot;
/// Value stream iterator.
Xapian::ValueIterator value_it;
/// Flag indicating if we've started (true if we have).
bool started;
/** A lower bound on the term frequency.
*
* Subclasses should set this if they are overriding the next(), skip_to()
* or check() methods to return fewer documents.
*/
Xapian::doccount termfreq_min;
/** An estimate of the term frequency.
*
* Subclasses should set this if they are overriding the next(), skip_to()
* or check() methods.
*/
Xapian::doccount termfreq_est;
/** An upper bound on the term frequency.
*
* Subclasses should set this if they are overriding the next(), skip_to()
* or check() methods.
*/
Xapian::doccount termfreq_max;
public:
/** Construct a ValuePostingSource.
*
* @param slot_ The value slot to read values from.
*/
ValuePostingSource(Xapian::valueno slot_);
Xapian::doccount get_termfreq_min() const;
Xapian::doccount get_termfreq_est() const;
Xapian::doccount get_termfreq_max() const;
void next(Xapian::weight min_wt);
void skip_to(Xapian::docid min_docid, Xapian::weight min_wt);
bool check(Xapian::docid min_docid, Xapian::weight min_wt);
bool at_end() const;
Xapian::docid get_docid() const;
void init(const Database & db_);
};
/** A posting source which reads weights from a value slot.
*
* This returns entries for all documents in the given database which have a
* non empty values in the specified slot. It returns a weight calculated by
* applying sortable_unserialise to the value stored in the slot (so the
* values stored should probably have been calculated by applying
* sortable_serialise to a floating point number at index time).
*
* The upper bound on the weight returned is set using the upper bound on the
* values in the specified slot, or DBL_MAX if value bounds aren't supported
* by the current backend.
*
* For efficiency, this posting source doesn't check that the stored values
* are valid in any way, so it will never raise an exception due to invalid
* stored values. In particular, it doesn't ensure that the unserialised
* values are positive, which is a requirement for weights. The behaviour if
* the slot contains values which unserialise to negative values is undefined.
*/
class XAPIAN_VISIBILITY_DEFAULT ValueWeightPostingSource
: public ValuePostingSource {
public:
/** Construct a ValueWeightPostingSource.
*
* @param slot_ The value slot to read values from.
*/
ValueWeightPostingSource(Xapian::valueno slot_);
Xapian::weight get_weight() const;
ValueWeightPostingSource * clone() const;
std::string name() const;
std::string serialise() const;
ValueWeightPostingSource * unserialise(const std::string &s) const;
void init(const Database & db_);
std::string get_description() const;
};
/** Read weights from a value which is known to decrease as docid increases.
*
* This posting source can be used, like ValueWeightPostingSource, to add a
* weight contribution to a query based on the values stored in a slot. The
* values in the slot must be serialised as by @a sortable_serialise().
*
* However, this posting source is additionally given a range of document IDs,
* within which the weight is known to be decreasing. ie, for all documents
* with ids A and B within this range (including the endpoints), where A is
* less than B, the weight of A is less than or equal to the weight of B.
* This can allow the posting source to skip to the end of the range quickly
* if insufficient weight is left in the posting source for a particular
* source.
*
* By default, the range is assumed to cover all document IDs.
*
* The ordering property can be arranged at index time, or by sorting an
* indexed database to produce a new, sorted, database.
*/
class XAPIAN_VISIBILITY_DEFAULT DecreasingValueWeightPostingSource
: public Xapian::ValueWeightPostingSource {
protected:
Xapian::docid range_start;
Xapian::docid range_end;
double curr_weight;
/// Flag, set to true if there are docs after the end of the range.
bool items_at_end;
/// Skip the iterator forward if in the decreasing range, and weight is low.
void skip_if_in_range(Xapian::weight min_wt);
public:
DecreasingValueWeightPostingSource(Xapian::valueno slot_,
Xapian::docid range_start_ = 0,
Xapian::docid range_end_ = 0);
Xapian::weight get_weight() const;
DecreasingValueWeightPostingSource * clone() const;
std::string name() const;
std::string serialise() const;
DecreasingValueWeightPostingSource * unserialise(const std::string &s) const;
void init(const Xapian::Database & db_);
void next(Xapian::weight min_wt);
void skip_to(Xapian::docid min_docid, Xapian::weight min_wt);
bool check(Xapian::docid min_docid, Xapian::weight min_wt);
std::string get_description() const;
};
/** A posting source which looks up weights in a map using values as the key.
*
* This allows will return entries for all documents in the given database
* which have a value in the slot specified. The values will be mapped to the
* corresponding weight in the weight map. If there is no mapping for a
* particular value, the default weight will be returned (which itself
* defaults to 0.0).
*/
class XAPIAN_VISIBILITY_DEFAULT ValueMapPostingSource
: public ValuePostingSource {
/// The default weight
double default_weight;
/// The maximum weight in weight_map.
double max_weight_in_map;
/// The value -> weight map
std::map<std::string, double> weight_map;
public:
/** Construct a ValueWeightPostingSource.
*
* @param slot_ The value slot to read values from.
*/
ValueMapPostingSource(Xapian::valueno slot_);
/** Add a mapping.
*
* @param key The key looked up from the value slot.
* @param wt The weight to give this key.
*/
void add_mapping(const std::string &key, double wt);
/** Clear all mappings. */
void clear_mappings();
/** Set a default weight for document values not in the map.
*
* @param wt The weight to set as the default.
*/
void set_default_weight(double wt);
Xapian::weight get_weight() const;
ValueMapPostingSource * clone() const;
std::string name() const;
std::string serialise() const;
ValueMapPostingSource * unserialise(const std::string &s) const;
void init(const Database & db_);
std::string get_description() const;
};
/** A posting source which returns a fixed weight for all documents.
*
* This returns entries for all documents in the given database, with a fixed
* weight (specified by a parameter to the constructor).
*/
class XAPIAN_VISIBILITY_DEFAULT FixedWeightPostingSource : public PostingSource {
/// The database we're reading documents from.
Xapian::Database db;
/// Number of documents in the posting source.
Xapian::doccount termfreq;
/// Iterator over all documents.
Xapian::PostingIterator it;
/// Flag indicating if we've started (true if we have).
bool started;
/// The docid last passed to check() (0 if check() wasn't the last move).
Xapian::docid check_docid;
public:
/** Construct a FixedWeightPostingSource.
*
* @param wt The fixed weight to return.
*/
FixedWeightPostingSource(Xapian::weight wt);
Xapian::doccount get_termfreq_min() const;
Xapian::doccount get_termfreq_est() const;
Xapian::doccount get_termfreq_max() const;
Xapian::weight get_weight() const;
void next(Xapian::weight min_wt);
void skip_to(Xapian::docid min_docid, Xapian::weight min_wt);
bool check(Xapian::docid min_docid, Xapian::weight min_wt);
bool at_end() const;
Xapian::docid get_docid() const;
FixedWeightPostingSource * clone() const;
std::string name() const;
std::string serialise() const;
FixedWeightPostingSource * unserialise(const std::string &s) const;
void init(const Database & db_);
std::string get_description() const;
};
}
#endif // XAPIAN_INCLUDED_POSTINGSOURCE_H
|