Lucene++ - a full-featured, c++ search engine
API Documentation
#include <FieldsWriter.h>
Public Member Functions | |
| FieldsWriter (const DirectoryPtr &d, const String &segment, const FieldInfosPtr &fn) | |
| FieldsWriter (const IndexOutputPtr &fdx, const IndexOutputPtr &fdt, const FieldInfosPtr &fn) | |
| virtual | ~FieldsWriter () |
| virtual String | getClassName () |
| boost::shared_ptr< FieldsWriter > | shared_from_this () |
| void | setFieldsStream (const IndexOutputPtr &stream) |
| void | flushDocument (int32_t numStoredFields, const RAMOutputStreamPtr &buffer) |
| Writes the contents of buffer into the fields stream and adds a new entry for this document into the index stream. This assumes the buffer was already written in the correct fields format. | |
| void | skipDocument () |
| void | flush () |
| void | close () |
| void | writeField (const FieldInfoPtr &fi, const FieldablePtr &field) |
| void | addRawDocuments (const IndexInputPtr &stream, Collection< int32_t > lengths, int32_t numDocs) |
| Bulk write a contiguous series of documents. The lengths array is the length (in bytes) of each raw document. The stream IndexInput is the fieldsStream from which we should bulk-copy all bytes. | |
| void | addDocument (const DocumentPtr &doc) |
| Public Member Functions inherited from Lucene::LuceneObject | |
| virtual | ~LuceneObject () |
| virtual void | initialize () |
| Called directly after instantiation to create objects that depend on this object being fully constructed. | |
| virtual LuceneObjectPtr | clone (const LuceneObjectPtr &other=LuceneObjectPtr()) |
| Return clone of this object. | |
| virtual int32_t | hashCode () |
| Return hash code for this object. | |
| virtual bool | equals (const LuceneObjectPtr &other) |
| Return whether two objects are equal. | |
| virtual int32_t | compareTo (const LuceneObjectPtr &other) |
| Compare two objects. | |
| virtual String | toString () |
| Returns a string representation of the object. | |
| Public Member Functions inherited from Lucene::LuceneSync | |
| virtual | ~LuceneSync () |
| virtual SynchronizePtr | getSync () |
| Return this object synchronize lock. | |
| virtual LuceneSignalPtr | getSignal () |
| Return this object signal. | |
| virtual void | lock (int32_t timeout=0) |
| Lock this object using an optional timeout. | |
| virtual void | unlock () |
| Unlock this object. | |
| virtual bool | holdsLock () |
| Returns true if this object is currently locked by current thread. | |
| virtual void | wait (int32_t timeout=0) |
| Wait for signal using an optional timeout. | |
| virtual void | notifyAll () |
| Notify all threads waiting for signal. | |
Static Public Member Functions | |
| static String | _getClassName () |
Static Public Attributes | |
| static const uint8_t | FIELD_IS_TOKENIZED |
| static const uint8_t | FIELD_IS_BINARY |
| static const uint8_t | FIELD_IS_COMPRESSED |
| static const int32_t | FORMAT |
| static const int32_t | FORMAT_VERSION_UTF8_LENGTH_IN_BYTES |
| static const int32_t | FORMAT_LUCENE_3_0_NO_COMPRESSED_FIELDS |
| static const int32_t | FORMAT_CURRENT |
Protected Attributes | |
| FieldInfosPtr | fieldInfos |
| IndexOutputPtr | fieldsStream |
| IndexOutputPtr | indexStream |
| bool | doClose |
| Protected Attributes inherited from Lucene::LuceneSync | |
| SynchronizePtr | objectLock |
| LuceneSignalPtr | objectSignal |
Additional Inherited Members | |
| Protected Member Functions inherited from Lucene::LuceneObject | |
| LuceneObject () | |
| Lucene::FieldsWriter::FieldsWriter | ( | const DirectoryPtr & | d, |
| const String & | segment, | ||
| const FieldInfosPtr & | fn ) |
Referenced by _getClassName().
| Lucene::FieldsWriter::FieldsWriter | ( | const IndexOutputPtr & | fdx, |
| const IndexOutputPtr & | fdt, | ||
| const FieldInfosPtr & | fn ) |
|
virtual |
|
inlinestatic |
References FieldsWriter().
| void Lucene::FieldsWriter::addDocument | ( | const DocumentPtr & | doc | ) |
| void Lucene::FieldsWriter::addRawDocuments | ( | const IndexInputPtr & | stream, |
| Collection< int32_t > | lengths, | ||
| int32_t | numDocs ) |
Bulk write a contiguous series of documents. The lengths array is the length (in bytes) of each raw document. The stream IndexInput is the fieldsStream from which we should bulk-copy all bytes.
| void Lucene::FieldsWriter::close | ( | ) |
| void Lucene::FieldsWriter::flush | ( | ) |
| void Lucene::FieldsWriter::flushDocument | ( | int32_t | numStoredFields, |
| const RAMOutputStreamPtr & | buffer ) |
Writes the contents of buffer into the fields stream and adds a new entry for this document into the index stream. This assumes the buffer was already written in the correct fields format.
|
inlinevirtual |
| void Lucene::FieldsWriter::setFieldsStream | ( | const IndexOutputPtr & | stream | ) |
|
inline |
| void Lucene::FieldsWriter::skipDocument | ( | ) |
| void Lucene::FieldsWriter::writeField | ( | const FieldInfoPtr & | fi, |
| const FieldablePtr & | field ) |
|
protected |
|
static |
|
static |
|
static |
|
protected |
|
protected |
|
static |
|
static |
|
static |
|
static |
|
protected |