Branch data Line data Source code
1 : : /** @file emptypostlist.cc
2 : : * @brief A PostList which contains no entries.
3 : : */
4 : : /* Copyright (C) 2009,2010 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 "emptypostlist.h"
24 : :
25 : : #include "omassert.h"
26 : :
27 : : using namespace std;
28 : :
29 : : Xapian::doccount
30 : 303 : EmptyPostList::get_termfreq_min() const
31 : : {
32 : 303 : return 0;
33 : : }
34 : :
35 : : Xapian::doccount
36 : 303 : EmptyPostList::get_termfreq_max() const
37 : : {
38 : 303 : return 0;
39 : : }
40 : :
41 : : Xapian::doccount
42 : 303 : EmptyPostList::get_termfreq_est() const
43 : : {
44 : 303 : return 0;
45 : : }
46 : :
47 : : Xapian::weight
48 : 303 : EmptyPostList::get_maxweight() const
49 : : {
50 : 303 : return 0;
51 : : }
52 : :
53 : : Xapian::docid
54 : 0 : EmptyPostList::get_docid() const
55 : : {
56 : : Assert(false);
57 : 0 : return 0;
58 : : }
59 : :
60 : : Xapian::termcount
61 : 0 : EmptyPostList::get_doclength() const
62 : : {
63 : 0 : return Xapian::termcount(EmptyPostList::get_docid());
64 : : }
65 : :
66 : : Xapian::weight
67 : 0 : EmptyPostList::get_weight() const
68 : : {
69 : : Assert(false);
70 : 0 : return 0;
71 : : }
72 : :
73 : : bool
74 : 299 : EmptyPostList::at_end() const
75 : : {
76 : 299 : return true;
77 : : }
78 : :
79 : : Xapian::weight
80 : 303 : EmptyPostList::recalc_maxweight()
81 : : {
82 : 303 : return EmptyPostList::get_maxweight();
83 : : }
84 : :
85 : : PostList *
86 : 299 : EmptyPostList::next(Xapian::weight)
87 : : {
88 : 299 : return NULL;
89 : : }
90 : :
91 : : PostList *
92 : 0 : EmptyPostList::skip_to(Xapian::docid, Xapian::weight)
93 : : {
94 : 0 : return NULL;
95 : : }
96 : :
97 : : string
98 : 0 : EmptyPostList::get_description() const
99 : : {
100 : 0 : return "EmptyPostList";
101 : : }
|