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
|
/** @file
* @brief Set of documents judged as relevant
*/
/* Copyright (C) 2017 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
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see
* <https://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <xapian/rset.h>
#include "rsetinternal.h"
#include "str.h"
#include <string>
using namespace std;
namespace Xapian {
RSet::RSet(const RSet&) = default;
RSet&
RSet::operator=(const RSet&) = default;
RSet::RSet(RSet &&) = default;
RSet&
RSet::operator=(RSet &&) = default;
RSet::RSet() {}
RSet::RSet(Internal* internal_) : internal(internal_) {}
RSet::~RSet() {}
Xapian::doccount
RSet::size() const
{
return internal ? internal->docs.size() : 0;
}
void
RSet::add_document(Xapian::docid did)
{
if (rare(did == 0))
throw Xapian::InvalidArgumentError("Docid 0 not valid in an RSet");
if (!internal)
internal = new RSet::Internal;
internal->docs.insert(did);
}
void
RSet::remove_document(Xapian::docid did)
{
if (rare(did == 0))
throw Xapian::InvalidArgumentError("Docid 0 not valid in an RSet");
if (internal)
internal->docs.erase(did);
}
bool
RSet::contains(Xapian::docid did) const
{
return internal && internal->docs.find(did) != internal->docs.end();
}
string
RSet::get_description() const
{
string desc = "RSet(";
if (!internal || internal->docs.empty()) {
desc += ')';
} else {
for (auto&& did : internal->docs) {
desc += str(did);
desc += ',';
}
desc.back() = ')';
}
return desc;
}
}
|