2 * @brief A vector-like container of terms which can be iterated.
4 /* Copyright (C) 2011,2015 Olly Betts
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.
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.
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
23 #include "vectortermlist.h"
25 #include "net/length.h"
27 #include "xapian/error.h"
32 VectorTermList::get_approx_size() const
38 VectorTermList::get_termname() const
40 // Check we've started but not reached the end.
41 Assert(p
!= data
.data());
42 Assert(!VectorTermList::at_end());
47 VectorTermList::get_wdf() const
49 // Check we've started but not reached the end.
50 Assert(p
!= data
.data());
51 Assert(!VectorTermList::at_end());
56 VectorTermList::get_termfreq() const
58 throw Xapian::InvalidOperationError("VectorTermList::get_termfreq() not meaningful");
62 VectorTermList::next()
64 // Check we've not reached the end.
65 Assert(!VectorTermList::at_end());
67 const char * end
= data
.data() + data
.size();
69 current_term
.resize(0);
73 decode_length_and_check(&p
, end
, len
);
74 current_term
.assign(p
, len
);
82 VectorTermList::skip_to(const string
&)
84 // skip_to only makes sense for termlists which are in sorted order.
85 throw Xapian::InvalidOperationError("VectorTermList::skip_to() not meaningful");
89 VectorTermList::at_end() const
95 VectorTermList::positionlist_count() const
97 throw Xapian::InvalidOperationError("VectorTermList::positionlist_count() not meaningful");
100 Xapian::PositionIterator
101 VectorTermList::positionlist_begin() const
103 throw Xapian::InvalidOperationError("VectorTermList::positionlist_begin() not meaningful");