Simple transcoder for converting between external char and wchar_t strings and internal strings.
 More...
|  | 
| static void | decodeUTF8 (const std::string &src, LogString &dst) | 
|  | Appends this specified string of UTF-8 characters to LogString.  More... 
 | 
|  | 
| static void | encodeUTF8 (const LogString &src, std::string &dst) | 
|  | Converts the LogString to a UTF-8 string.  More... 
 | 
|  | 
| static char * | encodeUTF8 (const LogString &src, log4cxx::helpers::Pool &p) | 
|  | Converts the LogString to a UTF-8 string.  More... 
 | 
|  | 
| static void | encodeUTF8 (unsigned int sv, ByteBuffer &dst) | 
|  | Append UCS-4 code point to a byte buffer as UTF-8.  More... 
 | 
|  | 
| static void | encodeUTF16LE (unsigned int sv, ByteBuffer &dst) | 
|  | Append UCS-4 code point to a byte buffer as UTF-16LE.  More... 
 | 
|  | 
| static void | encodeUTF16BE (unsigned int sv, ByteBuffer &dst) | 
|  | Append UCS-4 code point to a byte buffer as UTF-16BE.  More... 
 | 
|  | 
| static unsigned int | decode (const std::string &in, std::string::const_iterator &iter) | 
|  | Decodes next character from a UTF-8 string.  More... 
 | 
|  | 
| static void | encode (unsigned int ch, std::string &dst) | 
|  | Appends UCS-4 value to a UTF-8 string.  More... 
 | 
|  | 
| static void | decode (const std::string &src, LogString &dst) | 
|  | Appends string in the current code-page to a LogString.  More... 
 | 
|  | 
| static void | encode (const LogString &src, std::string &dst) | 
|  | Appends a LogString to a string in the current code-page.  More... 
 | 
|  | 
| static char * | encode (const LogString &src, log4cxx::helpers::Pool &p) | 
|  | Encodes the specified LogString to the current character set.  More... 
 | 
|  | 
| static void | decode (const std::wstring &src, LogString &dst) | 
|  | 
| static void | encode (const LogString &src, std::wstring &dst) | 
|  | 
| static wchar_t * | wencode (const LogString &src, log4cxx::helpers::Pool &p) | 
|  | 
| static unsigned int | decode (const std::wstring &in, std::wstring::const_iterator &iter) | 
|  | Decodes next character from a wstring.  More... 
 | 
|  | 
| static void | encode (unsigned int ch, std::wstring &dst) | 
|  | Appends UCS-4 value to a UTF-8 string.  More... 
 | 
|  | 
| static void | decode (const std::basic_string< UniChar > &src, LogString &dst) | 
|  | 
| static void | encode (const LogString &src, std::basic_string< UniChar > &dst) | 
|  | 
| static unsigned int | decode (const std::basic_string< UniChar > &in, std::basic_string< UniChar >::const_iterator &iter) | 
|  | Decodes next character from a UniChar string.  More... 
 | 
|  | 
| static void | encode (unsigned int ch, std::basic_string< UniChar > &dst) | 
|  | Appends UCS-4 value to a UTF-8 string.  More... 
 | 
|  | 
| static void | decode (const CFStringRef &src, LogString &dst) | 
|  | 
| static CFStringRef | encode (const LogString &src) | 
|  | 
| static logchar | decode (char v) | 
|  | Returns a logchar value given a character literal in the ASCII charset.  More... 
 | 
|  | 
| static LogString | decode (const char *v) | 
|  | Returns a LogString given a string literal in the ASCII charset.  More... 
 | 
|  | 
| static std::string | encodeCharsetName (const LogString &charsetName) | 
|  | Encodes a charset name in the default encoding without using a CharsetEncoder (which could trigger recursion).  More... 
 | 
|  | 
Simple transcoder for converting between external char and wchar_t strings and internal strings.