xapian-core  2.0.0
alltermslist.h
Go to the documentation of this file.
1 
4 /* Copyright (C) 2007,2008,2011,2024 Olly Betts
5  *
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.
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, see
18  * <https://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef XAPIAN_INCLUDED_ALLTERMSLIST_H
22 #define XAPIAN_INCLUDED_ALLTERMSLIST_H
23 
24 #include "api/termlist.h"
25 
27 class AllTermsList : public TermList {
29  void operator=(const AllTermsList &);
30 
33 
34  protected:
37 
38  public:
40  virtual Xapian::termcount get_approx_size() const = 0;
41 
47  virtual Xapian::termcount get_wdf() const;
48 
50  virtual Xapian::doccount get_termfreq() const = 0;
51 
53  virtual TermList *next() = 0;
54 
66  virtual TermList* skip_to(std::string_view term) = 0;
67 
73  virtual Xapian::termcount positionlist_count() const;
74 
80  virtual PositionList* positionlist_begin() const;
81 };
82 
83 #endif // XAPIAN_INCLUDED_ALLTERMSLIST_H
Abstract base class for iterating all terms in a database.
Definition: alltermslist.h:27
AllTermsList()
Only constructable as a base class for derived classes.
Definition: alltermslist.h:36
virtual Xapian::termcount get_wdf() const
Return the wdf for the term at the current position.
Definition: alltermslist.cc:32
AllTermsList(const AllTermsList &)
Don't allow copying.
virtual TermList * next()=0
Advance the current position to the next term in the termlist.
virtual Xapian::termcount positionlist_count() const
Return true if the current position is past the last term in this list.
Definition: alltermslist.cc:38
virtual Xapian::doccount get_termfreq() const =0
Return the term frequency for the term at the current position.
virtual Xapian::termcount get_approx_size() const =0
Return approximate size of this termlist.
virtual PositionList * positionlist_begin() const
Return a PositionIterator for the current position.
Definition: alltermslist.cc:44
void operator=(const AllTermsList &)
Don't allow assignment.
virtual TermList * skip_to(std::string_view term)=0
Skip forward to the specified term.
Abstract base class for iterating term positions in a document.
Definition: positionlist.h:32
Abstract base class for termlists.
Definition: termlist.h:42
string term
unsigned XAPIAN_TERMCOUNT_BASE_TYPE termcount
A counts of terms.
Definition: types.h:64
unsigned XAPIAN_DOCID_BASE_TYPE doccount
A count of documents.
Definition: types.h:37
Abstract base class for termlists.