Lucene++ - a full-featured, c++ search engine
API Documentation
#include <UTF8Stream.h>
Public Member Functions | |
UTF8DecoderStream (const ReaderPtr &reader) | |
virtual | ~UTF8DecoderStream () |
virtual String | getClassName () |
boost::shared_ptr< UTF8DecoderStream > | shared_from_this () |
![]() | |
UTF8Decoder (const uint8_t *utf8Begin, const uint8_t *utf8End) | |
virtual | ~UTF8Decoder () |
boost::shared_ptr< UTF8Decoder > | shared_from_this () |
int32_t | decode (wchar_t *unicode, int32_t length) |
int32_t | utf8to16 (wchar_t *unicode, int32_t length) |
int32_t | utf8to32 (wchar_t *unicode, int32_t length) |
![]() | |
virtual | ~UTF8Base () |
boost::shared_ptr< UTF8Base > | shared_from_this () |
![]() | |
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. | |
![]() | |
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 String | _getClassName () |
![]() | |
static String | _getClassName () |
Protected Member Functions | |
virtual uint32_t | readNext () |
![]() | |
int32_t | sequenceLength (uint32_t cp) |
bool | getSequence (uint32_t &cp, int32_t length) |
bool | isValidNext (uint32_t &cp) |
![]() | |
uint8_t | mask8 (uint32_t b) |
uint16_t | mask16 (uint32_t c) |
bool | isTrail (uint32_t b) |
bool | isSurrogate (uint32_t cp) |
bool | isLeadSurrogate (uint32_t cp) |
bool | isTrailSurrogate (uint32_t cp) |
bool | isValidCodePoint (uint32_t cp) |
bool | isOverlongSequence (uint32_t cp, int32_t length) |
![]() | |
LuceneObject () | |
Protected Attributes | |
ReaderPtr | reader |
![]() | |
const uint8_t * | utf8Begin |
const uint8_t * | utf8End |
![]() | |
SynchronizePtr | objectLock |
LuceneSignalPtr | objectSignal |
Additional Inherited Members | |
![]() | |
static const uint16_t | LEAD_SURROGATE_MIN |
static const uint16_t | LEAD_SURROGATE_MAX |
static const uint16_t | TRAIL_SURROGATE_MIN |
static const uint16_t | TRAIL_SURROGATE_MAX |
static const uint16_t | LEAD_OFFSET |
static const uint32_t | SURROGATE_OFFSET |
static const uint32_t | CODE_POINT_MAX |
static const wchar_t | UNICODE_REPLACEMENT_CHAR |
static const wchar_t | UNICODE_TERMINATOR |
Lucene::UTF8DecoderStream::UTF8DecoderStream | ( | const ReaderPtr & | reader | ) |
|
virtual |
|
inlinestatic |
|
inlinevirtual |
Reimplemented from Lucene::UTF8Decoder.
|
protectedvirtual |
Reimplemented from Lucene::UTF8Decoder.
|
inline |
|
protected |