Lucene++ - a full-featured, c++ search engine
API Documentation
Abstract base class for output to a file in a Directory. A random-access output stream. Used for all Lucene index output operations. More...
#include <IndexOutput.h>
Inheritance diagram for Lucene::IndexOutput:Public Member Functions | |
| virtual | ~IndexOutput () |
| virtual String | getClassName () |
| boost::shared_ptr< IndexOutput > | shared_from_this () |
| virtual void | writeByte (uint8_t b)=0 |
| Writes a single byte. More... | |
| virtual void | writeBytes (const uint8_t *b, int32_t offset, int32_t length)=0 |
| Writes an array of bytes. More... | |
| virtual void | flush ()=0 |
| Forces any buffered output to be written. More... | |
| virtual void | close ()=0 |
| Closes this stream to further operations. More... | |
| virtual int64_t | getFilePointer ()=0 |
| Returns the current position in this file, where the next write will occur. More... | |
| virtual void | seek (int64_t pos)=0 |
| Sets current position in this file, where the next write will occur. More... | |
| virtual int64_t | length ()=0 |
| The number of bytes in the file. More... | |
| void | writeBytes (const uint8_t *b, int32_t length) |
| Writes an array of bytes. More... | |
| void | writeInt (int32_t i) |
| Writes an int as four bytes. More... | |
| void | writeVInt (int32_t i) |
| Writes an int in a variable-length format. Writes between one and five bytes. Smaller values take fewer bytes. Negative numbers are not supported. More... | |
| void | writeLong (int64_t i) |
| Writes a int64 as eight bytes. More... | |
| void | writeVLong (int64_t i) |
| Writes an int64 in a variable-length format. Writes between one and five bytes. Smaller values take fewer bytes. Negative numbers are not supported. More... | |
| void | writeString (const String &s) |
| Writes a string. More... | |
| void | writeChars (const String &s, int32_t start, int32_t length) |
| Writes a sub sequence of characters from s as the old format (modified UTF-8 encoded bytes). More... | |
| void | copyBytes (const IndexInputPtr &input, int64_t numBytes) |
| Copy numBytes bytes from input to ourself. More... | |
| void | setLength (int64_t length) |
| Set the file length. By default, this method does nothing (it's optional for a Directory to implement it). But, certain Directory implementations (for example. More... | |
| void | writeStringStringMap (MapStringString map) |
| Write string map as a series of key/value pairs. More... | |
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. More... | |
| virtual LuceneObjectPtr | clone (const LuceneObjectPtr &other=LuceneObjectPtr()) |
| Return clone of this object. More... | |
| virtual int32_t | hashCode () |
| Return hash code for this object. More... | |
| virtual bool | equals (const LuceneObjectPtr &other) |
| Return whether two objects are equal. More... | |
| virtual int32_t | compareTo (const LuceneObjectPtr &other) |
| Compare two objects. More... | |
| virtual String | toString () |
| Returns a string representation of the object. More... | |
Public Member Functions inherited from Lucene::LuceneSync | |
| virtual | ~LuceneSync () |
| virtual SynchronizePtr | getSync () |
| Return this object synchronize lock. More... | |
| virtual LuceneSignalPtr | getSignal () |
| Return this object signal. More... | |
| virtual void | lock (int32_t timeout=0) |
| Lock this object using an optional timeout. More... | |
| virtual void | unlock () |
| Unlock this object. More... | |
| virtual bool | holdsLock () |
| Returns true if this object is currently locked by current thread. More... | |
| virtual void | wait (int32_t timeout=0) |
| Wait for signal using an optional timeout. More... | |
| virtual void | notifyAll () |
| Notify all threads waiting for signal. More... | |
Static Public Member Functions | |
| static String | _getClassName () |
Protected Attributes | |
| ByteArray | copyBuffer |
Protected Attributes inherited from Lucene::LuceneSync | |
| SynchronizePtr | objectLock |
| LuceneSignalPtr | objectSignal |
Static Protected Attributes | |
| static const int32_t | COPY_BUFFER_SIZE |
Additional Inherited Members | |
Protected Member Functions inherited from Lucene::LuceneObject | |
| LuceneObject () | |
Abstract base class for output to a file in a Directory. A random-access output stream. Used for all Lucene index output operations.
|
virtual |
|
inlinestatic |
|
pure virtual |
Closes this stream to further operations.
Implemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
| void Lucene::IndexOutput::copyBytes | ( | const IndexInputPtr & | input, |
| int64_t | numBytes | ||
| ) |
Copy numBytes bytes from input to ourself.
|
pure virtual |
Forces any buffered output to be written.
Implemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
|
inlinevirtual |
Reimplemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
|
pure virtual |
Returns the current position in this file, where the next write will occur.
Implemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
|
pure virtual |
The number of bytes in the file.
Implemented in Lucene::BufferedIndexOutput, Lucene::RAMOutputStream, and Lucene::ChecksumIndexOutput.
|
pure virtual |
Sets current position in this file, where the next write will occur.
Implemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
| void Lucene::IndexOutput::setLength | ( | int64_t | length | ) |
Set the file length. By default, this method does nothing (it's optional for a Directory to implement it). But, certain Directory implementations (for example.
| length | file length. |
|
inline |
|
pure virtual |
Writes a single byte.
Implemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
| void Lucene::IndexOutput::writeBytes | ( | const uint8_t * | b, |
| int32_t | length | ||
| ) |
Writes an array of bytes.
| b | the bytes to write. |
| length | the number of bytes to write. |
|
pure virtual |
Writes an array of bytes.
| b | the bytes to write. |
| length | the number of bytes to write. |
Implemented in Lucene::RAMOutputStream, Lucene::ChecksumIndexOutput, and Lucene::BufferedIndexOutput.
| void Lucene::IndexOutput::writeChars | ( | const String & | s, |
| int32_t | start, | ||
| int32_t | length | ||
| ) |
Writes a sub sequence of characters from s as the old format (modified UTF-8 encoded bytes).
| s | the source of the characters. |
| start | the first character in the sequence. |
| length | the number of characters in the sequence. |
| void Lucene::IndexOutput::writeInt | ( | int32_t | i | ) |
Writes an int as four bytes.
| void Lucene::IndexOutput::writeLong | ( | int64_t | i | ) |
Writes a int64 as eight bytes.
| void Lucene::IndexOutput::writeString | ( | const String & | s | ) |
Writes a string.
| void Lucene::IndexOutput::writeStringStringMap | ( | MapStringString | map | ) |
Write string map as a series of key/value pairs.
| map | map of string-string key-values. |
| void Lucene::IndexOutput::writeVInt | ( | int32_t | i | ) |
Writes an int in a variable-length format. Writes between one and five bytes. Smaller values take fewer bytes. Negative numbers are not supported.
| void Lucene::IndexOutput::writeVLong | ( | int64_t | i | ) |
Writes an int64 in a variable-length format. Writes between one and five bytes. Smaller values take fewer bytes. Negative numbers are not supported.
|
staticprotected |
|
protected |