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
|
/** @file documentvaluelist.cc
* @brief Iteration over values in a document.
*/
/* Copyright (C) 2008,2009,2011,2013 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
*/
#include <config.h>
#include "documentvaluelist.h"
#include "backends/document.h"
#include "omassert.h"
#include "str.h"
#include "unicode/description_append.h"
#include "xapian/error.h"
using namespace std;
Xapian::docid
DocumentValueList::get_docid() const
{
throw Xapian::InvalidOperationError("get_docid() isn't valid when iterating over values in a document");
}
Xapian::valueno
DocumentValueList::get_valueno() const
{
Assert(!at_end());
return it->first;
}
string
DocumentValueList::get_value() const
{
Assert(!at_end());
return it->second;
}
bool
DocumentValueList::at_end() const
{
return it == doc->values.end();
}
void
DocumentValueList::next()
{
if (it == doc->values.end()) {
it = doc->values.begin();
} else {
++it;
}
}
void
DocumentValueList::skip_to(Xapian::docid slot)
{
it = doc->values.lower_bound(slot);
}
string
DocumentValueList::get_description() const
{
string desc = "DocumentValueList(";
if (!at_end()) {
desc += "slot=";
desc += str(get_valueno());
desc += ", value=\"";
description_append(desc, get_value());
desc += "\")";
} else {
desc += "atend)";
}
return desc;
}
|