Branch data Line data Source code
1 : : /* inmemory_positionlist.cc
2 : : *
3 : : * Copyright 1999,2000,2001 BrightStation PLC
4 : : * Copyright 2003,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
19 : : * USA
20 : : */
21 : :
22 : : #include <config.h>
23 : :
24 : : #include "inmemory_positionlist.h"
25 : :
26 : : #include "debuglog.h"
27 : : #include "omassert.h"
28 : :
29 : 4438182 : InMemoryPositionList::InMemoryPositionList(const OmDocumentTerm::term_positions & positions_)
30 : : : positions(positions_), mypos(positions.begin()),
31 : 4438182 : iterating_in_progress(false)
32 : : {
33 : 4438182 : }
34 : :
35 : : void
36 : 570 : InMemoryPositionList::set_data(const OmDocumentTerm::term_positions & positions_)
37 : : {
38 : 570 : positions = positions_;
39 : 570 : mypos = positions.begin();
40 : 570 : iterating_in_progress = false;
41 : 570 : }
42 : :
43 : : Xapian::termcount
44 : 1350 : InMemoryPositionList::get_size() const
45 : : {
46 : 1350 : return positions.size();
47 : : }
48 : :
49 : : Xapian::termpos
50 : 6210195 : InMemoryPositionList::get_position() const
51 : : {
52 : : Assert(iterating_in_progress);
53 : : Assert(!at_end());
54 : 6210195 : return *mypos;
55 : : }
56 : :
57 : : void
58 : 9314978 : InMemoryPositionList::next()
59 : : {
60 [ + + ]: 9314978 : if (iterating_in_progress) {
61 : : Assert(!at_end());
62 : 4876615 : mypos++;
63 : : } else {
64 : 4438363 : iterating_in_progress = true;
65 : : }
66 : 9314978 : }
67 : :
68 : : void
69 : 396 : InMemoryPositionList::skip_to(Xapian::termpos termpos)
70 : : {
71 [ + + ]: 396 : if (!iterating_in_progress) iterating_in_progress = true;
72 [ + + ][ + + ]: 494 : while (!at_end() && *mypos < termpos) mypos++;
[ + + ]
73 : 396 : }
74 : :
75 : : bool
76 : 9315868 : InMemoryPositionList::at_end() const
77 : : {
78 : 9315868 : return(mypos == positions.end());
79 : : }
|