/usr/include/xapian/mset.h is in libxapian-dev 1.4.5-1.
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 | /** @file mset.h
* @brief Class representing a list of search results
*/
/* Copyright (C) 2015,2016 Olly Betts
*
* 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_MSET_H
#define XAPIAN_INCLUDED_MSET_H
#if !defined XAPIAN_IN_XAPIAN_H && !defined XAPIAN_LIB_BUILD
# error "Never use <xapian/mset.h> directly; include <xapian.h> instead."
#endif
#include <iterator>
#include <string>
#include <xapian/attributes.h>
#include <xapian/document.h>
#include <xapian/intrusive_ptr.h>
#include <xapian/stem.h>
#include <xapian/types.h>
#include <xapian/visibility.h>
namespace Xapian {
class MSetIterator;
/// Class representing a list of search results.
class XAPIAN_VISIBILITY_DEFAULT MSet {
friend class MSetIterator;
// Helper function for fetch() methods.
void fetch_(Xapian::doccount first, Xapian::doccount last) const;
public:
/// Class representing the MSet internals.
class Internal;
/// @private @internal Reference counted internals.
Xapian::Internal::intrusive_ptr<Internal> internal;
/** Copying is allowed.
*
* The internals are reference counted, so copying is cheap.
*/
MSet(const MSet & o);
/** Copying is allowed.
*
* The internals are reference counted, so assignment is cheap.
*/
MSet & operator=(const MSet & o);
/** Default constructor.
*
* Creates an empty MSet, mostly useful as a placeholder.
*/
MSet();
/// Destructor.
~MSet();
/** Convert a weight to a percentage.
*
* The matching document with the highest weight will get 100% if it
* matches all the weighted query terms, and proportionally less if it
* only matches some, and other weights are scaled by the same factor.
*
* Documents with a non-zero score will always score at least 1%.
*
* Note that these generally aren't percentages of anything meaningful
* (unless you use a custom weighting formula where they are!)
*/
int convert_to_percent(double weight) const;
/** Convert the weight of the current iterator position to a percentage.
*
* The matching document with the highest weight will get 100% if it
* matches all the weighted query terms, and proportionally less if it
* only matches some, and other weights are scaled by the same factor.
*
* Documents with a non-zero score will always score at least 1%.
*
* Note that these generally aren't percentages of anything meaningful
* (unless you use a custom weighting formula where they are!)
*/
int convert_to_percent(const MSetIterator & it) const;
/** Get the termfreq of a term.
*
* @return The number of documents @a term occurs in.
*/
Xapian::doccount get_termfreq(const std::string & term) const;
/** Get the term weight of a term.
*
* @return The maximum weight that @a term could have contributed to a
* document.
*/
double get_termweight(const std::string & term) const;
/** Rank of first item in this MSet.
*
* This is the parameter `first` passed to Xapian::Enquire::get_mset().
*/
Xapian::doccount get_firstitem() const;
/** Lower bound on the total number of matching documents. */
Xapian::doccount get_matches_lower_bound() const;
/** Estimate of the total number of matching documents. */
Xapian::doccount get_matches_estimated() const;
/** Upper bound on the total number of matching documents. */
Xapian::doccount get_matches_upper_bound() const;
/** Lower bound on the total number of matching documents before collapsing.
*
* Conceptually the same as get_matches_lower_bound() for the same query
* without any collapse part (though the actual value may differ).
*/
Xapian::doccount get_uncollapsed_matches_lower_bound() const;
/** Estimate of the total number of matching documents before collapsing.
*
* Conceptually the same as get_matches_estimated() for the same query
* without any collapse part (though the actual value may differ).
*/
Xapian::doccount get_uncollapsed_matches_estimated() const;
/** Upper bound on the total number of matching documents before collapsing.
*
* Conceptually the same as get_matches_upper_bound() for the same query
* without any collapse part (though the actual value may differ).
*/
Xapian::doccount get_uncollapsed_matches_upper_bound() const;
/** The maximum weight attained by any document. */
double get_max_attained() const;
/** The maximum possible weight any document could achieve. */
double get_max_possible() const;
enum {
/** Model the relevancy of non-query terms in MSet::snippet().
*
* Non-query terms will be assigned a small weight, and the snippet
* will tend to prefer snippets which contain a more interesting
* background (where the query term content is equivalent).
*/
SNIPPET_BACKGROUND_MODEL = 1,
/** Exhaustively evaluate candidate snippets in MSet::snippet().
*
* Without this flag, snippet generation will stop once it thinks
* it has found a "good enough" snippet, which will generally reduce
* the time taken to generate a snippet.
*/
SNIPPET_EXHAUSTIVE = 2,
/** Return the empty string if no term got matched.
*
* If enabled, snippet() returns an empty string if not a single match
* was found in text. If not enabled, snippet() returns a (sub)string
* of text without any highlighted terms.
*/
SNIPPET_EMPTY_WITHOUT_MATCH = 4
};
/** Generate a snippet.
*
* This method selects a continuous run of words of less than about @a
* length bytes from @a text, based mainly on where the query matches
* (currently terms, exact phrases and wildcards are taken into account),
* but also on the non-query terms in the text.
*
* The returned text can be escaped (by default, it is escaped to make it
* suitable for use in HTML), and matches with the query will be
* highlighted using @a hi_start and @a hi_end.
*
* If the snippet seems to start or end mid-sentence, then @a omit is
* prepended or append (respectively) to indicate this.
*
* The stemmer used to build the query should be specified in @a stemmer.
*
* And @a flags contains flags controlling behaviour.
*
* Added in 1.3.5.
*/
std::string snippet(const std::string & text,
size_t length = 500,
const Xapian::Stem & stemmer = Xapian::Stem(),
unsigned flags = SNIPPET_BACKGROUND_MODEL|SNIPPET_EXHAUSTIVE,
const std::string & hi_start = "<b>",
const std::string & hi_end = "</b>",
const std::string & omit = "...") const;
/** Prefetch hint a range of items.
*
* For a remote database, this may start a pipelined fetch of the
* requested documents from the remote server.
*
* For a disk-based database, this may send prefetch hints to the
* operating system such that the disk blocks the requested documents
* are stored in are more likely to be in the cache when we come to
* actually read them.
*/
void fetch(const MSetIterator &begin, const MSetIterator &end) const;
/** Prefetch hint a single MSet item.
*
* For a remote database, this may start a pipelined fetch of the
* requested documents from the remote server.
*
* For a disk-based database, this may send prefetch hints to the
* operating system such that the disk blocks the requested documents
* are stored in are more likely to be in the cache when we come to
* actually read them.
*/
void fetch(const MSetIterator &item) const;
/** Prefetch hint the whole MSet.
*
* For a remote database, this may start a pipelined fetch of the
* requested documents from the remote server.
*
* For a disk-based database, this may send prefetch hints to the
* operating system such that the disk blocks the requested documents
* are stored in are more likely to be in the cache when we come to
* actually read them.
*/
void fetch() const { fetch_(0, Xapian::doccount(-1)); }
/** Return number of items in this MSet object. */
Xapian::doccount size() const;
/** Return true if this MSet object is empty. */
bool empty() const { return size() == 0; }
/** Efficiently swap this MSet object with another. */
void swap(MSet & o) { internal.swap(o.internal); }
/** Return iterator pointing to the first item in this MSet. */
MSetIterator begin() const;
/** Return iterator pointing to just after the last item in this MSet. */
MSetIterator end() const;
/** Return iterator pointing to the i-th object in this MSet. */
MSetIterator operator[](Xapian::doccount i) const;
/** Return iterator pointing to the last object in this MSet. */
MSetIterator back() const;
/// Return a string describing this object.
std::string get_description() const;
/** @private @internal MSet is what the C++ STL calls a container.
*
* The following typedefs allow the class to be used in templates in the
* same way the standard containers can be.
*
* These are deliberately hidden from the Doxygen-generated docs, as the
* machinery here isn't interesting to API users. They just need to know
* that Xapian container classes are compatible with the STL.
*
* See "The C++ Programming Language", 3rd ed. section 16.3.1:
*/
// @{
/// @private
typedef Xapian::MSetIterator value_type;
/// @private
typedef Xapian::doccount size_type;
/// @private
typedef Xapian::doccount_diff difference_type;
/// @private
typedef Xapian::MSetIterator iterator;
/// @private
typedef Xapian::MSetIterator const_iterator;
/// @private
typedef value_type * pointer;
/// @private
typedef const value_type * const_pointer;
/// @private
typedef value_type & reference;
/// @private
typedef const value_type & const_reference;
// @}
//
/** @private @internal MSet is what the C++ STL calls a container.
*
* The following methods allow the class to be used in templates in the
* same way the standard containers can be.
*
* These are deliberately hidden from the Doxygen-generated docs, as the
* machinery here isn't interesting to API users. They just need to know
* that Xapian container classes are compatible with the STL.
*/
// @{
// The size is fixed once created.
Xapian::doccount max_size() const { return size(); }
// @}
};
/// Iterator over a Xapian::MSet.
class XAPIAN_VISIBILITY_DEFAULT MSetIterator {
friend class MSet;
MSetIterator(const Xapian::MSet & mset_, Xapian::doccount off_from_end_)
: mset(mset_), off_from_end(off_from_end_) { }
public:
/** @private @internal The MSet we are iterating over. */
Xapian::MSet mset;
/** @private @internal The current position of the iterator.
*
* We store the offset from the end of @a mset, since that means
* MSet::end() just needs to set this member to 0.
*/
Xapian::MSet::size_type off_from_end;
/** Create an unpositioned MSetIterator. */
MSetIterator() : off_from_end(0) { }
/** Get the numeric document id for the current position. */
Xapian::docid operator*() const;
/// Advance the iterator to the next position.
MSetIterator & operator++() {
--off_from_end;
return *this;
}
/// Advance the iterator to the next position (postfix version).
MSetIterator operator++(int) {
MSetIterator retval = *this;
--off_from_end;
return retval;
}
/// Move the iterator to the previous position.
MSetIterator & operator--() {
++off_from_end;
return *this;
}
/// Move the iterator to the previous position (postfix version).
MSetIterator operator--(int) {
MSetIterator retval = *this;
++off_from_end;
return retval;
}
/** @private @internal MSetIterator is what the C++ STL calls an
* random_access_iterator.
*
* The following typedefs allow std::iterator_traits<> to work so that
* this iterator can be used with the STL.
*
* These are deliberately hidden from the Doxygen-generated docs, as the
* machinery here isn't interesting to API users. They just need to know
* that Xapian iterator classes are compatible with the STL.
*/
// @{
/// @private
typedef std::random_access_iterator_tag iterator_category;
/// @private
typedef std::string value_type;
/// @private
typedef Xapian::termcount_diff difference_type;
/// @private
typedef std::string * pointer;
/// @private
typedef std::string & reference;
// @}
/// Move the iterator forwards by n positions.
MSetIterator & operator+=(difference_type n) {
off_from_end -= n;
return *this;
}
/// Move the iterator back by n positions.
MSetIterator & operator-=(difference_type n) {
off_from_end += n;
return *this;
}
/** Return the iterator incremented by @a n positions.
*
* If @a n is negative, decrements by (-n) positions.
*/
MSetIterator operator+(difference_type n) const {
return MSetIterator(mset, off_from_end - n);
}
/** Return the iterator decremented by @a n positions.
*
* If @a n is negative, increments by (-n) positions.
*/
MSetIterator operator-(difference_type n) const {
return MSetIterator(mset, off_from_end + n);
}
/** Return the number of positions between @a o and this iterator. */
difference_type operator-(const MSetIterator& o) const {
return difference_type(o.off_from_end) - difference_type(off_from_end);
}
/** Return the MSet rank for the current position.
*
* The rank of mset[0] is mset.get_firstitem().
*/
Xapian::doccount get_rank() const {
return mset.get_firstitem() + (mset.size() - off_from_end);
}
/** Get the Document object for the current position. */
Xapian::Document get_document() const;
/** Get the weight for the current position. */
double get_weight() const;
/** Return the collapse key for the current position.
*
* If collapsing isn't in use, an empty string will be returned.
*/
std::string get_collapse_key() const;
/** Return a count of the number of collapses done onto the current key.
*
* This starts at 0, and is incremented each time an item is eliminated
* because its key is the same as that of the current item (as returned
* by get_collapse_key()).
*
* Note that this is NOT necessarily one less than the total number of
* matching documents with this collapse key due to various optimisations
* implemented in the matcher - for example, it can skip documents
* completely if it can prove their weight wouldn't be enough to make the
* result set.
*
* You can say is that if get_collapse_count() > 0 then there are
* >= get_collapse_count() other documents with the current collapse
* key. But if get_collapse_count() == 0 then there may or may not be
* other such documents.
*/
Xapian::doccount get_collapse_count() const;
/** Convert the weight of the current iterator position to a percentage.
*
* The matching document with the highest weight will get 100% if it
* matches all the weighted query terms, and proportionally less if it
* only matches some, and other weights are scaled by the same factor.
*
* Documents with a non-zero score will always score at least 1%.
*
* Note that these generally aren't percentages of anything meaningful
* (unless you use a custom weighting formula where they are!)
*/
int get_percent() const {
return mset.convert_to_percent(get_weight());
}
/// Return a string describing this object.
std::string get_description() const;
};
bool
XAPIAN_NOTHROW(operator==(const MSetIterator &a, const MSetIterator &b));
/// Equality test for MSetIterator objects.
inline bool
operator==(const MSetIterator &a, const MSetIterator &b) XAPIAN_NOEXCEPT
{
return a.off_from_end == b.off_from_end;
}
inline bool
XAPIAN_NOTHROW(operator!=(const MSetIterator &a, const MSetIterator &b));
/// Inequality test for MSetIterator objects.
inline bool
operator!=(const MSetIterator &a, const MSetIterator &b) XAPIAN_NOEXCEPT
{
return !(a == b);
}
bool
XAPIAN_NOTHROW(operator<(const MSetIterator &a, const MSetIterator &b));
/// Inequality test for MSetIterator objects.
inline bool
operator<(const MSetIterator &a, const MSetIterator &b) XAPIAN_NOEXCEPT
{
return a.off_from_end > b.off_from_end;
}
inline bool
XAPIAN_NOTHROW(operator>(const MSetIterator &a, const MSetIterator &b));
/// Inequality test for MSetIterator objects.
inline bool
operator>(const MSetIterator &a, const MSetIterator &b) XAPIAN_NOEXCEPT
{
return b < a;
}
inline bool
XAPIAN_NOTHROW(operator>=(const MSetIterator &a, const MSetIterator &b));
/// Inequality test for MSetIterator objects.
inline bool
operator>=(const MSetIterator &a, const MSetIterator &b) XAPIAN_NOEXCEPT
{
return !(a < b);
}
inline bool
XAPIAN_NOTHROW(operator<=(const MSetIterator &a, const MSetIterator &b));
/// Inequality test for MSetIterator objects.
inline bool
operator<=(const MSetIterator &a, const MSetIterator &b) XAPIAN_NOEXCEPT
{
return !(b < a);
}
/** Return MSetIterator @a it incremented by @a n positions.
*
* If @a n is negative, decrements by (-n) positions.
*/
inline MSetIterator
operator+(MSetIterator::difference_type n, const MSetIterator& it)
{
return it + n;
}
// Inlined methods of MSet which need MSetIterator to have been defined:
inline void
MSet::fetch(const MSetIterator &begin_it, const MSetIterator &end_it) const
{
fetch_(begin_it.off_from_end, end_it.off_from_end);
}
inline void
MSet::fetch(const MSetIterator &item) const
{
fetch_(item.off_from_end, item.off_from_end);
}
inline MSetIterator
MSet::begin() const {
return MSetIterator(*this, size());
}
inline MSetIterator
MSet::end() const {
// Decrementing the result of end() needs to work, so we must pass in
// *this here.
return MSetIterator(*this, 0);
}
inline MSetIterator
MSet::operator[](Xapian::doccount i) const {
return MSetIterator(*this, size() - i);
}
inline MSetIterator
MSet::back() const {
return MSetIterator(*this, 1);
}
inline int
MSet::convert_to_percent(const MSetIterator & it) const {
return convert_to_percent(it.get_weight());
}
}
#endif // XAPIAN_INCLUDED_MSET_H
|