Branch data Line data Source code
1 : : /** @file externalpostlist.cc
2 : : * @brief Return document ids from an external source.
3 : : */
4 : : /* Copyright 2008,2009,2010 Olly Betts
5 : : * Copyright 2009 Lemur Consulting Ltd
6 : : *
7 : : * This program is free software; you can redistribute it and/or modify
8 : : * it under the terms of the GNU General Public License as published by
9 : : * the Free Software Foundation; either version 2 of the License, or
10 : : * (at your option) any later version.
11 : : *
12 : : * This program is distributed in the hope that it will be useful,
13 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : : * GNU General Public License for more details.
16 : : *
17 : : * You should have received a copy of the GNU General Public License
18 : : * along with this program; if not, write to the Free Software
19 : : * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 : : */
21 : :
22 : : #include <config.h>
23 : :
24 : : #include "externalpostlist.h"
25 : :
26 : : #include <xapian/postingsource.h>
27 : :
28 : : #include "debuglog.h"
29 : : #include "omassert.h"
30 : :
31 : : using namespace std;
32 : :
33 : 754 : ExternalPostList::ExternalPostList(const Xapian::Database & db,
34 : : Xapian::PostingSource *source_,
35 : : double factor_,
36 : : MultiMatch * matcher)
37 : 754 : : source(source_), source_is_owned(false), current(0), factor(factor_)
38 : : {
39 : : Assert(source);
40 : 754 : Xapian::PostingSource * newsource = source->clone();
41 [ + + # # ]: 754 : if (newsource != NULL) {
42 : 746 : source = newsource;
43 : 746 : source_is_owned = true;
44 : : }
45 : 754 : source->register_matcher_(static_cast<void*>(matcher));
46 : 754 : source->init(db);
47 : 754 : }
48 : :
49 : 754 : ExternalPostList::~ExternalPostList()
50 : : {
51 [ + + ][ # # ]: 754 : if (source_is_owned) {
[ # # ]
52 [ + + ][ # # ]: 746 : delete source;
[ # # ]
53 : : }
54 [ + - ][ # # ]: 754 : }
[ # # ]
55 : :
56 : : Xapian::doccount
57 : 750 : ExternalPostList::get_termfreq_min() const
58 : : {
59 : : Assert(source);
60 : 750 : return source->get_termfreq_min();
61 : : }
62 : :
63 : : Xapian::doccount
64 : 832 : ExternalPostList::get_termfreq_est() const
65 : : {
66 : : Assert(source);
67 : 832 : return source->get_termfreq_est();
68 : : }
69 : :
70 : : Xapian::doccount
71 : 750 : ExternalPostList::get_termfreq_max() const
72 : : {
73 : : Assert(source);
74 : 750 : return source->get_termfreq_max();
75 : : }
76 : :
77 : : Xapian::weight
78 : 1302 : ExternalPostList::get_maxweight() const
79 : : {
80 : : LOGCALL(MATCH, Xapian::weight, "ExternalPostList::get_maxweight", NO_ARGS);
81 : : // source will be NULL here if we've reached the end.
82 [ + + ]: 1302 : if (source == NULL) RETURN(0.0);
83 [ + + ]: 1287 : if (factor == 0.0) RETURN(0.0);
84 : 1302 : RETURN(factor * source->get_maxweight());
85 : : }
86 : :
87 : : Xapian::docid
88 : 2866 : ExternalPostList::get_docid() const
89 : : {
90 : : LOGCALL(MATCH, Xapian::docid, "ExternalPostList::get_docid", NO_ARGS);
91 : : Assert(current);
92 : 2866 : RETURN(current);
93 : : }
94 : :
95 : : Xapian::weight
96 : 3180 : ExternalPostList::get_weight() const
97 : : {
98 : : LOGCALL(MATCH, Xapian::weight, "ExternalPostList::get_weight", NO_ARGS);
99 : : Assert(source);
100 [ + + ]: 3180 : if (factor == 0.0) RETURN(factor);
101 : 3180 : RETURN(factor * source->get_weight());
102 : : }
103 : :
104 : : Xapian::termcount
105 : 0 : ExternalPostList::get_doclength() const
106 : : {
107 : : Assert(false);
108 : 0 : return 0;
109 : : }
110 : :
111 : : Xapian::weight
112 : 870 : ExternalPostList::recalc_maxweight()
113 : : {
114 : 870 : return ExternalPostList::get_maxweight();
115 : : }
116 : :
117 : : PositionList *
118 : 0 : ExternalPostList::read_position_list()
119 : : {
120 : 0 : return NULL;
121 : : }
122 : :
123 : : PositionList *
124 : 0 : ExternalPostList::open_position_list() const
125 : : {
126 : 0 : return NULL;
127 : : }
128 : :
129 : : PostList *
130 : 3554 : ExternalPostList::update_after_advance() {
131 : : LOGCALL(MATCH, PostList *, "ExternalPostList::update_after_advance", NO_ARGS);
132 : : Assert(source);
133 [ + + ]: 3554 : if (source->at_end()) {
134 : : LOGLINE(MATCH, "ExternalPostList now at end");
135 [ + + ][ + - ]: 680 : if (source_is_owned) delete source;
136 : 680 : source = NULL;
137 : : } else {
138 : 2874 : current = source->get_docid();
139 : : }
140 : 3554 : RETURN(NULL);
141 : : }
142 : :
143 : : PostList *
144 : 3527 : ExternalPostList::next(Xapian::weight w_min)
145 : : {
146 : : LOGCALL(MATCH, PostList *, "ExternalPostList::next", w_min);
147 : : Assert(source);
148 : 3527 : source->next(w_min);
149 : 3527 : RETURN(update_after_advance());
150 : : }
151 : :
152 : : PostList *
153 : 27 : ExternalPostList::skip_to(Xapian::docid did, Xapian::weight w_min)
154 : : {
155 : : LOGCALL(MATCH, PostList *, "ExternalPostList::skip_to", did | w_min);
156 : : Assert(source);
157 [ - + ]: 27 : if (did <= current) RETURN(NULL);
158 : 27 : source->skip_to(did, w_min);
159 : 27 : RETURN(update_after_advance());
160 : : }
161 : :
162 : : PostList *
163 : 347 : ExternalPostList::check(Xapian::docid did, Xapian::weight w_min, bool &valid)
164 : : {
165 : : LOGCALL(MATCH, PostList *, "ExternalPostList::check", did | w_min | valid);
166 : : Assert(source);
167 [ - + ]: 347 : if (did <= current) {
168 : 0 : valid = true;
169 : 0 : RETURN(NULL);
170 : : }
171 : 347 : valid = source->check(did, w_min);
172 [ - + ]: 347 : if (source->at_end()) {
173 : : LOGLINE(MATCH, "ExternalPostList now at end");
174 [ # # ][ # # ]: 0 : if (source_is_owned) delete source;
175 : 0 : source = NULL;
176 : : } else {
177 [ + - ]: 347 : current = valid ? source->get_docid() : current;
178 : : }
179 : 347 : RETURN(NULL);
180 : : }
181 : :
182 : : bool
183 : 3901 : ExternalPostList::at_end() const
184 : : {
185 : : LOGCALL(MATCH, bool, "ExternalPostList::at_end", NO_ARGS);
186 : 3901 : RETURN(source == NULL);
187 : : }
188 : :
189 : : Xapian::termcount
190 : 1001 : ExternalPostList::count_matching_subqs() const
191 : : {
192 : 1001 : return 1;
193 : : }
194 : :
195 : : string
196 : 0 : ExternalPostList::get_description() const
197 : : {
198 : 0 : string desc = "ExternalPostList(";
199 [ # # ]: 0 : if (source) desc += source->get_description();
200 : 0 : desc += ")";
201 : 0 : return desc;
202 : : }
|