Apache log4cxx
Version 0.10.0
|
An abstract engine to transform a sequences of bytes in a specific charset into a LogString. More...
Public Member Functions | |
virtual | ~CharsetDecoder () |
Destructor. More... | |
virtual log4cxx_status_t | decode (ByteBuffer &in, LogString &out)=0 |
Decodes as many bytes as possible from the given input buffer, writing the results to the given output string. More... | |
Public Member Functions inherited from ObjectImpl | |
ObjectImpl () | |
virtual | ~ObjectImpl () |
void | addRef () const |
void | releaseRef () const |
Public Member Functions inherited from Object | |
virtual const helpers::Class & | getClass () const |
virtual | ~Object () |
virtual bool | instanceof (const Class &clazz) const =0 |
virtual const void * | cast (const Class &clazz) const =0 |
Static Public Member Functions | |
static CharsetDecoderPtr | getDefaultDecoder () |
Get decoder for default charset. More... | |
static CharsetDecoderPtr | getDecoder (const LogString &charset) |
Get decoder for specified character set. More... | |
static CharsetDecoderPtr | getUTF8Decoder () |
Get decoder for UTF-8. More... | |
static CharsetDecoderPtr | getISOLatinDecoder () |
Get decoder for ISO-8859-1. More... | |
static bool | isError (log4cxx_status_t stat) |
Determins if status value indicates an invalid byte sequence. More... | |
Static Public Member Functions inherited from Object | |
static const helpers::Class & | getStaticClass () |
static const log4cxx::helpers::ClassRegistration & | registerClass () |
Protected Member Functions | |
CharsetDecoder () | |
Protected constructor. More... | |
Additional Inherited Members | |
Protected Attributes inherited from ObjectImpl | |
unsigned int volatile | ref |
An abstract engine to transform a sequences of bytes in a specific charset into a LogString.
|
protected |
Protected constructor.
|
virtual |
Destructor.
|
pure virtual |
Decodes as many bytes as possible from the given input buffer, writing the results to the given output string.
in | input buffer. |
out | output string. |
|
static |
Get decoder for specified character set.
charset | the following values should be recognized: "US-ASCII", "ISO-8859-1", "UTF-8", "UTF-16BE", "UTF-16LE". |
IllegalArgumentException | if charset is not recognized. |
|
static |
Get decoder for default charset.
|
static |
Get decoder for ISO-8859-1.
|
static |
Get decoder for UTF-8.
|
inlinestatic |
Determins if status value indicates an invalid byte sequence.