1 /** @file honey_postlisttable.cc
2 * @brief Subclass of HoneyTable which holds postlists.
4 /* Copyright (C) 2007,2008,2009,2010,2013,2014,2015,2016,2017 Olly Betts
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (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 "honey_postlisttable.h"
25 #include "honey_database.h"
26 #include "honey_postlist.h"
29 HoneyPostListTable::open_post_list(const HoneyDatabase
* db
,
30 const std::string
& term
) const
32 return new HoneyPostList(db
, term
);
36 HoneyPostListTable::get_freqs(const std::string
& term
,
37 Xapian::doccount
* termfreq_ptr
,
38 Xapian::termcount
* collfreq_ptr
) const
47 HoneyPostListTable::get_doclength(Xapian::docid did
) const
55 HoneyPostListTable::get_used_docid_range(Xapian::docid
& first
,
56 Xapian::docid
& last
) const
60 last
= Xapian::docid(-1);