Branch data Line data Source code
1 : : /** @file documentvaluelist.cc
2 : : * @brief Iteration over values in a document.
3 : : */
4 : : /* Copyright (C) 2008,2009 Olly Betts
5 : : *
6 : : * This program is free software; you can redistribute it and/or
7 : : * modify it under the terms of the GNU General Public License as
8 : : * published by the Free Software Foundation; either version 2 of the
9 : : * License, or (at your option) any later version.
10 : : *
11 : : * This program is distributed in the hope that it will be useful,
12 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : : * GNU General Public License for more details.
15 : : *
16 : : * You should have received a copy of the GNU General Public License
17 : : * along with this program; if not, write to the Free Software
18 : : * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 : : */
20 : :
21 : : #include <config.h>
22 : :
23 : : #include "documentvaluelist.h"
24 : :
25 : : #include "document.h"
26 : : #include "omassert.h"
27 : : #include "str.h"
28 : :
29 : : #include "xapian/error.h"
30 : :
31 : : using namespace std;
32 : :
33 : : Xapian::docid
34 : 0 : DocumentValueList::get_docid() const
35 : : {
36 : 0 : throw Xapian::InvalidOperationError("get_docid() isn't valid when iterating over values in a document");
37 : : }
38 : :
39 : : Xapian::valueno
40 : 6380901 : DocumentValueList::get_valueno() const
41 : : {
42 : : Assert(!at_end());
43 : 6380901 : return it->first;
44 : : }
45 : :
46 : : string
47 : 6769729 : DocumentValueList::get_value() const
48 : : {
49 : : Assert(!at_end());
50 : 6769729 : return it->second;
51 : : }
52 : :
53 : : bool
54 : 7088569 : DocumentValueList::at_end() const
55 : : {
56 : 7088569 : return it == doc->values.end();
57 : : }
58 : :
59 : : void
60 : 7088569 : DocumentValueList::next()
61 : : {
62 [ + + ]: 7088569 : if (it == doc->values.end()) {
63 : 707875 : it = doc->values.begin();
64 : : } else {
65 : 6380694 : ++it;
66 : : }
67 : 7088569 : }
68 : :
69 : : void
70 : 0 : DocumentValueList::skip_to(Xapian::docid slot)
71 : : {
72 : 0 : it = doc->values.lower_bound(slot);
73 : 0 : }
74 : :
75 : : string
76 : 0 : DocumentValueList::get_description() const
77 : : {
78 : 0 : string desc = "DocumentValueList(";
79 [ # # ]: 0 : if (!at_end()) {
80 : 0 : desc += "slot=";
81 : 0 : desc += str(get_valueno());
82 : 0 : desc += ", value=\"";
83 : 0 : desc += get_value();
84 : 0 : desc += "\")";
85 : : } else {
86 : 0 : desc += "atend)";
87 : : }
88 : 0 : return desc;
89 : : }
|