Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
MultipleTermPositions.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef MULTIPLETERMPOSITIONS_H
8#define MULTIPLETERMPOSITIONS_H
9
10#include "TermPositions.h"
11
12namespace Lucene {
13
16class LPPAPI MultipleTermPositions : public TermPositions, public LuceneObject {
17public:
20
22
23protected:
24 int32_t _doc;
25 int32_t _freq;
28
29public:
30 virtual bool next();
31 virtual int32_t nextPosition();
32 virtual bool skipTo(int32_t target);
33 virtual int32_t doc();
34 virtual int32_t freq();
35 virtual void close();
36
38 virtual void seek(const TermPtr& term);
39
41 virtual void seek(const TermEnumPtr& termEnum);
42
44 virtual int32_t read(Collection<int32_t>& docs, Collection<int32_t>& freqs);
45
47 virtual ByteArray getPayload(ByteArray data, int32_t offset);
48
50 virtual bool isPayloadAvailable();
51};
52
53}
54
55#endif
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Utility template class to handle collections that can be safely copied and shared.
Definition Collection.h:17
Base class for all Lucene classes.
Definition LuceneObject.h:31
Allows you to iterate over the TermPositions for multiple Terms as a single TermPositions.
Definition MultipleTermPositions.h:16
virtual bool next()
Moves to the next pair in the enumeration. Returns true if there is such a next pair in the enumerati...
int32_t _doc
Definition MultipleTermPositions.h:24
IntQueuePtr posList
Definition MultipleTermPositions.h:27
int32_t _freq
Definition MultipleTermPositions.h:25
virtual void close()
Frees associated resources.
virtual void seek(const TermPtr &term)
Not implemented.
virtual int32_t freq()
Returns the frequency of the term within the current document. This is invalid until next() is called...
virtual int32_t nextPosition()
Returns next position in the current document. It is an error to call this more than freq() times wit...
virtual bool isPayloadAvailable()
virtual int32_t read(Collection< int32_t > &docs, Collection< int32_t > &freqs)
Not implemented.
MultipleTermPositions(const IndexReaderPtr &indexReader, Collection< TermPtr > terms)
virtual ByteArray getPayload(ByteArray data, int32_t offset)
Not implemented.
TermPositionsQueuePtr termPositionsQueue
Definition MultipleTermPositions.h:26
virtual bool skipTo(int32_t target)
Skips entries to the first beyond the current whose document number is greater than or equal to targe...
virtual int32_t doc()
Returns the current document number. This is invalid until next() is called for the first time.
virtual void seek(const TermEnumPtr &termEnum)
Not implemented.
TermPositions provides an interface for enumerating the <document, frequency, <position>*> tuples for...
Definition TermPositions.h:18
Definition AbstractAllTermDocs.h:12
boost::shared_ptr< TermPositionsQueue > TermPositionsQueuePtr
Definition LuceneTypes.h:244
boost::shared_ptr< Term > TermPtr
Definition LuceneTypes.h:233
boost::shared_ptr< IntQueue > IntQueuePtr
Definition LuceneTypes.h:162
boost::shared_ptr< TermEnum > TermEnumPtr
Definition LuceneTypes.h:235
boost::shared_ptr< IndexReader > IndexReaderPtr
Definition LuceneTypes.h:157

clucene.sourceforge.net