Branch data Line data Source code
1 : : /* multi_termlist.cc: C++ class definition for multiple database access
2 : : *
3 : : * Copyright 1999,2000,2001 BrightStation PLC
4 : : * Copyright 2002,2003,2004,2005,2006,2007,2008,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
19 : : * USA
20 : : */
21 : :
22 : : #include <config.h>
23 : :
24 : : #include "multi_termlist.h"
25 : :
26 : : #include "database.h"
27 : : #include "debuglog.h"
28 : : #include "expandweight.h"
29 : :
30 : 45 : MultiTermList::MultiTermList(TermList * tl_,
31 : : const Xapian::Database &db_,
32 : : size_t db_index_)
33 : 45 : : tl(tl_), db(db_), db_index(db_index_)
34 : : {
35 : 45 : termfreq_factor = double(db.get_doccount());
36 : 45 : termfreq_factor /= db.internal[db_index]->get_doccount();
37 : : LOGLINE(DB, "Approximation factor for termfreq: " << termfreq_factor);
38 : 45 : }
39 : :
40 : 45 : MultiTermList::~MultiTermList()
41 : : {
42 [ + - ][ # # ]: 45 : delete tl;
[ # # ]
43 [ + - ][ # # ]: 45 : }
[ # # ]
44 : :
45 : : Xapian::termcount
46 : 0 : MultiTermList::get_approx_size() const
47 : : {
48 : 0 : return tl->get_approx_size();
49 : : }
50 : :
51 : : void
52 : 0 : MultiTermList::accumulate_stats(Xapian::Internal::ExpandStats & stats) const
53 : : {
54 : : // For a multidb, every termlist access during expand will be through
55 : : // a MultiTermList, so it's safe to just set db_index like this.
56 : 0 : stats.db_index = db_index;
57 : 0 : tl->accumulate_stats(stats);
58 : 0 : }
59 : :
60 : : string
61 : 1503 : MultiTermList::get_termname() const
62 : : {
63 : 1503 : return tl->get_termname();
64 : : }
65 : :
66 : 0 : Xapian::termcount MultiTermList::get_wdf() const
67 : : {
68 : 0 : return tl->get_wdf();
69 : : }
70 : :
71 : 0 : Xapian::doccount MultiTermList::get_termfreq() const
72 : : {
73 : : // Approximate term frequency
74 : 0 : return Xapian::doccount(tl->get_termfreq() * termfreq_factor);
75 : : }
76 : :
77 : 810 : TermList * MultiTermList::next()
78 : : {
79 : 810 : return tl->next();
80 : : }
81 : :
82 : 9 : TermList * MultiTermList::skip_to(const string & term)
83 : : {
84 : 9 : return tl->skip_to(term);
85 : : }
86 : :
87 : 819 : bool MultiTermList::at_end() const
88 : : {
89 : 819 : return tl->at_end();
90 : : }
91 : :
92 : : Xapian::termcount
93 : 6 : MultiTermList::positionlist_count() const
94 : : {
95 : 6 : return tl->positionlist_count();
96 : : }
97 : :
98 : : Xapian::PositionIterator
99 : 3 : MultiTermList::positionlist_begin() const
100 : : {
101 : 3 : return tl->positionlist_begin();
102 : : }
|