MeVisLab Toolbox Reference
|
Internal conversion file between UTF32, UTF-16, and UTF-8 adopted for usage in mlUtils. More...
#include "mlTypeDefs.h"
Go to the source code of this file.
Macros | |
Some fundamental constants | |
#define | UNI_REPLACEMENT_CHAR (static_cast<UTF32>(0x0000FFFD)) |
Used instead of invalid characters on lenient conversion. | |
#define | UNI_MAX_BMP (static_cast<UTF32>(0x0000FFFF)) |
#define | UNI_MAX_UTF16 (static_cast<UTF32>(0x0010FFFF)) |
#define | UNI_MAX_UTF32 (static_cast<UTF32>(0x7FFFFFFF)) |
Typedefs | |
typedef MLuint32 | UTF32 |
Note : This file has been adapted to the purpose of ML and MeVisLab usage. | |
typedef MLuint16 | UTF16 |
at least 16 bits | |
typedef MLuint8 | UTF8 |
typically 8 bits | |
Enumerations | |
enum | ConversionResult { conversionOK , sourceExhausted , targetExhausted , sourceIllegal } |
Enum to describe conversion results. More... | |
enum | ConversionFlags { strictConversion = 0 , lenientConversion } |
Enum to describe conversion strictness. More... | |
Internal conversion file between UTF32, UTF-16, and UTF-8 adopted for usage in mlUtils.
Definition in file mlConvertUTF.h.
#define UNI_MAX_BMP (static_cast<UTF32>(0x0000FFFF)) |
Definition at line 136 of file mlConvertUTF.h.
#define UNI_MAX_UTF16 (static_cast<UTF32>(0x0010FFFF)) |
Definition at line 137 of file mlConvertUTF.h.
#define UNI_MAX_UTF32 (static_cast<UTF32>(0x7FFFFFFF)) |
Definition at line 138 of file mlConvertUTF.h.
#define UNI_REPLACEMENT_CHAR (static_cast<UTF32>(0x0000FFFD)) |
Used instead of invalid characters on lenient conversion.
Definition at line 135 of file mlConvertUTF.h.
at least 16 bits
Definition at line 128 of file mlConvertUTF.h.
Note : This file has been adapted to the purpose of ML and MeVisLab usage.
That includes
Definition at line 127 of file mlConvertUTF.h.
typically 8 bits
Definition at line 129 of file mlConvertUTF.h.
Enum to describe conversion strictness.
Enumerator | |
---|---|
strictConversion | Strict conversion, error on conversion problem. |
lenientConversion | Non-strict conversion, use '?' or UNI_REPLACEMENT_CHAR instead. |
Definition at line 154 of file mlConvertUTF.h.
Enum to describe conversion results.
Definition at line 144 of file mlConvertUTF.h.
ConversionResult CalculateNumCharsInUTF8 | ( | const UTF8 * | sourceStart, |
unsigned int * | length, | ||
ConversionFlags | flags ) |
Calculate the number of chars in an UTF8 string (may be less than strlen, because of multibyte encoded chars).
If any pointer is NULL then sourceIllegal is returned and *length is set to 0 if non NULL. The return value reports errors or success of conversion.
ConversionResult CalculateUTF16BufferSizeForUTF8 | ( | const UTF8 * | sourceStart, |
unsigned int * | length, | ||
ConversionFlags | flags ) |
Calculate the number of chars required in UTF16 encoding to fit the given UTF8 string (may be less than strlen, because of multibyte encoded chars), but more than CalculateNumCharsInUTF8()
because of UTF16 surrogates.
If any pointer is NULL then sourceIllegal is returned and *length is set to 0 if non NULL. The return value reports errors or success of conversion.
ConversionResult ConvertUTF16toUTF32 | ( | const UTF16 ** | sourceStart, |
const UTF16 * | sourceEnd, | ||
UTF32 ** | targetStart, | ||
UTF32 * | targetEnd, | ||
ConversionFlags | flags ) |
Converts UTF16 string to UTF32 string.
For detailed parameter and function description see header comments in ConvertUTF.h.
ConversionResult ConvertUTF16toUTF8 | ( | const UTF16 ** | sourceStart, |
const UTF16 * | sourceEnd, | ||
UTF8 ** | targetStart, | ||
UTF8 * | targetEnd, | ||
ConversionFlags | flags ) |
Converts UTF16 string to UTF8 string.
For detailed parameter and function description see header comments in ConvertUTF.h.
ConversionResult ConvertUTF32toUTF16 | ( | const UTF32 ** | sourceStart, |
const UTF32 * | sourceEnd, | ||
UTF16 ** | targetStart, | ||
UTF16 * | targetEnd, | ||
ConversionFlags | flags ) |
Converts UTF32 string to UTF16 string.
For detailed parameter and function description see header comments in ConvertUTF.h.
ConversionResult ConvertUTF32toUTF8 | ( | const UTF32 ** | sourceStart, |
const UTF32 * | sourceEnd, | ||
UTF8 ** | targetStart, | ||
UTF8 * | targetEnd, | ||
ConversionFlags | flags ) |
Converts UTF32 string to UTF8 string.
For detailed parameter and function description see header comments in ConvertUTF.h.
ConversionResult ConvertUTF8toLatin1 | ( | const UTF8 * | sourceStart, |
char * | targetStart, | ||
char * | targetEnd, | ||
ConversionFlags | flags ) |
Convert UTF8 to latin1 chars.
If sourceStart is NULL then sourceIllegal is returned. If targetStart or targetEnd is NULL then targetExhausted is returned. The return value reports errors or success of conversion.
ConversionResult ConvertUTF8toUTF16 | ( | const UTF8 ** | sourceStart, |
const UTF8 * | sourceEnd, | ||
UTF16 ** | targetStart, | ||
UTF16 * | targetEnd, | ||
ConversionFlags | flags ) |
Converts UTF8 string to UTF16 string.
For detailed parameter and function description see header comments in ConvertUTF.h.