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


SegmentMergeInfo.h
Go to the documentation of this file.
1 // 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 SEGMENTMERGEINFO_H
8 #define SEGMENTMERGEINFO_H
9 
10 #include "Term.h"
11 
12 namespace Lucene {
13 
15 public:
16  SegmentMergeInfo(int32_t b, const TermEnumPtr& te, const IndexReaderPtr& r);
17  virtual ~SegmentMergeInfo();
18 
20 
21 protected:
22  TermPositionsPtr postings; // use getPositions()
23  Collection<int32_t> docMap; // use getDocMap()
24 
25 public:
27  int32_t base;
28  int32_t ord; // the position of the segment in a MultiReader
31  int32_t delCount;
32 
33 public:
36  bool next();
37  void close();
38 };
39 
40 }
41 
42 #endif
SegmentMergeInfo(int32_t b, const TermEnumPtr &te, const IndexReaderPtr &r)
boost::shared_ptr< Term > TermPtr
Definition: LuceneTypes.h:233
int32_t delCount
Definition: SegmentMergeInfo.h:31
boost::shared_ptr< TermEnum > TermEnumPtr
Definition: LuceneTypes.h:235
TermPositionsPtr getPositions()
TermEnumPtr termEnum
Definition: SegmentMergeInfo.h:29
Definition: SegmentMergeInfo.h:14
Collection< int32_t > docMap
Definition: SegmentMergeInfo.h:23
boost::shared_ptr< IndexReader > IndexReaderPtr
Definition: LuceneTypes.h:157
Base class for all Lucene classes.
Definition: LuceneObject.h:31
boost::shared_ptr< TermPositions > TermPositionsPtr
Definition: LuceneTypes.h:243
int32_t base
Definition: SegmentMergeInfo.h:27
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Definition: AbstractAllTermDocs.h:12
IndexReaderWeakPtr _reader
Definition: SegmentMergeInfo.h:30
boost::weak_ptr< IndexReader > IndexReaderWeakPtr
Definition: LuceneTypes.h:157
Collection< int32_t > getDocMap()
int32_t ord
Definition: SegmentMergeInfo.h:28
TermPtr term
Definition: SegmentMergeInfo.h:26
TermPositionsPtr postings
Definition: SegmentMergeInfo.h:19

clucene.sourceforge.net