12 #ifndef U_HIDE_DRAFT_API 31 typedef union UCPTrieData {
35 const uint16_t *ptr16;
37 const uint32_t *ptr32;
63 const uint16_t *index;
74 uint16_t shifted12HighStart;
91 uint16_t index3NullOffset;
97 int32_t dataNullOffset;
108 typedef struct UCPTrie UCPTrie;
205 U_CAPI UCPTrie * U_EXPORT2
207 const void *data, int32_t length, int32_t *pActualLength,
219 #if U_SHOW_CPLUSPLUS_API 346 #define UCPTRIE_16(trie, i) ((trie)->data.ptr16[i]) 356 #define UCPTRIE_32(trie, i) ((trie)->data.ptr32[i]) 366 #define UCPTRIE_8(trie, i) ((trie)->data.ptr8[i]) 378 #define UCPTRIE_FAST_GET(trie, dataAccess, c) dataAccess(trie, _UCPTRIE_CP_INDEX(trie, 0xffff, c)) 390 #define UCPTRIE_SMALL_GET(trie, dataAccess, c) \ 391 dataAccess(trie, _UCPTRIE_CP_INDEX(trie, UCPTRIE_SMALL_MAX, c)) 406 #define UCPTRIE_FAST_U16_NEXT(trie, dataAccess, src, limit, c, result) { \ 409 if (!U16_IS_SURROGATE(c)) { \ 410 __index = _UCPTRIE_FAST_INDEX(trie, c); \ 413 if (U16_IS_SURROGATE_LEAD(c) && (src) != (limit) && U16_IS_TRAIL(__c2 = *(src))) { \ 415 (c) = U16_GET_SUPPLEMENTARY((c), __c2); \ 416 __index = _UCPTRIE_SMALL_INDEX(trie, c); \ 418 __index = (trie)->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET; \ 421 (result) = dataAccess(trie, __index); \ 437 #define UCPTRIE_FAST_U16_PREV(trie, dataAccess, start, src, c, result) { \ 440 if (!U16_IS_SURROGATE(c)) { \ 441 __index = _UCPTRIE_FAST_INDEX(trie, c); \ 444 if (U16_IS_SURROGATE_TRAIL(c) && (src) != (start) && U16_IS_LEAD(__c2 = *((src) - 1))) { \ 446 (c) = U16_GET_SUPPLEMENTARY(__c2, (c)); \ 447 __index = _UCPTRIE_SMALL_INDEX(trie, c); \ 449 __index = (trie)->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET; \ 452 (result) = dataAccess(trie, __index); \ 471 #define UCPTRIE_FAST_U8_NEXT(trie, dataAccess, src, limit, result) { \ 472 int32_t __lead = (uint8_t)*(src)++; \ 473 if (!U8_IS_SINGLE(__lead)) { \ 474 uint8_t __t1, __t2, __t3; \ 475 if ((src) != (limit) && \ 478 U8_LEAD3_T1_BITS[__lead &= 0xf] & (1 << ((__t1 = *(src)) >> 5)) && \ 479 ++(src) != (limit) && (__t2 = *(src) - 0x80) <= 0x3f && \ 480 (__lead = ((int32_t)(trie)->index[(__lead << 6) + (__t1 & 0x3f)]) + __t2, 1) \ 482 (__lead -= 0xf0) <= 4 && \ 483 U8_LEAD4_T1_BITS[(__t1 = *(src)) >> 4] & (1 << __lead) && \ 484 (__lead = (__lead << 6) | (__t1 & 0x3f), ++(src) != (limit)) && \ 485 (__t2 = *(src) - 0x80) <= 0x3f && \ 486 ++(src) != (limit) && (__t3 = *(src) - 0x80) <= 0x3f && \ 487 (__lead = __lead >= (trie)->shifted12HighStart ? \ 488 (trie)->dataLength - UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET : \ 489 ucptrie_internalSmallU8Index((trie), __lead, __t2, __t3), 1) \ 491 __lead >= 0xc2 && (__t1 = *(src) - 0x80) <= 0x3f && \ 492 (__lead = (int32_t)(trie)->index[__lead & 0x1f] + __t1, 1))) { \ 495 __lead = (trie)->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET; \ 498 (result) = dataAccess(trie, __lead); \ 517 #define UCPTRIE_FAST_U8_PREV(trie, dataAccess, start, src, result) { \ 518 int32_t __index = (uint8_t)*--(src); \ 519 if (!U8_IS_SINGLE(__index)) { \ 520 __index = ucptrie_internalU8PrevIndex((trie), __index, (const uint8_t *)(start), \ 521 (const uint8_t *)(src)); \ 522 (src) -= __index & 7; \ 525 (result) = dataAccess(trie, __index); \ 537 #define UCPTRIE_ASCII_GET(trie, dataAccess, c) dataAccess(trie, c) 550 #define UCPTRIE_FAST_BMP_GET(trie, dataAccess, c) dataAccess(trie, _UCPTRIE_FAST_INDEX(trie, c)) 562 #define UCPTRIE_FAST_SUPP_GET(trie, dataAccess, c) dataAccess(trie, _UCPTRIE_SMALL_INDEX(trie, c)) 575 UCPTRIE_FAST_SHIFT = 6,
578 UCPTRIE_FAST_DATA_BLOCK_LENGTH = 1 << UCPTRIE_FAST_SHIFT,
581 UCPTRIE_FAST_DATA_MASK = UCPTRIE_FAST_DATA_BLOCK_LENGTH - 1,
584 UCPTRIE_SMALL_MAX = 0xfff,
591 UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET = 1,
597 UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET = 2
605 ucptrie_internalSmallIndex(
const UCPTrie *trie,
UChar32 c);
609 ucptrie_internalSmallU8Index(
const UCPTrie *trie, int32_t lt1, uint8_t t2, uint8_t t3);
617 ucptrie_internalU8PrevIndex(
const UCPTrie *trie,
UChar32 c,
618 const uint8_t *start,
const uint8_t *src);
621 #define _UCPTRIE_FAST_INDEX(trie, c) \ 622 ((int32_t)(trie)->index[(c) >> UCPTRIE_FAST_SHIFT] + ((c) & UCPTRIE_FAST_DATA_MASK)) 625 #define _UCPTRIE_SMALL_INDEX(trie, c) \ 626 ((c) >= (trie)->highStart ? \ 627 (trie)->dataLength - UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET : \ 628 ucptrie_internalSmallIndex(trie, c)) 635 #define _UCPTRIE_CP_INDEX(trie, fastMax, c) \ 636 ((uint32_t)(c) <= (uint32_t)(fastMax) ? \ 637 _UCPTRIE_FAST_INDEX(trie, c) : \ 638 (uint32_t)(c) <= 0x10ffff ? \ 639 _UCPTRIE_SMALL_INDEX(trie, c) : \ 640 (trie)->dataLength - UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET) 644 #endif // U_IN_DOXYGEN 645 #endif // U_HIDE_DRAFT_API UCPMapRangeOption
Selectors for how ucpmap_getRange() etc.
U_CAPI UCPTrieType ucptrie_getType(const UCPTrie *trie)
Returns the trie type.
U_CAPI UCPTrie * ucptrie_openFromBinary(UCPTrieType type, UCPTrieValueWidth valueWidth, const void *data, int32_t length, int32_t *pActualLength, UErrorCode *pErrorCode)
Opens a trie from its binary form, stored in 32-bit-aligned memory.
#define U_CAPI
This is used to declare a function as a public ICU C API.
UCPTrieValueWidth
Selectors for the number of bits in a UCPTrie data value.
Immutable Unicode code point trie structure.
This file defines an abstract map from Unicode code points to integer values.
#define U_INTERNAL
This is used to declare a function as an internal ICU C API.
The trie stores 8 bits per data value.
C API: 8-bit Unicode handling macros.
#define U_CDECL_BEGIN
This is used to begin a declaration of a library private ICU C API.
"Smart pointer" class, closes a UCPTrie via ucptrie_close().
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
U_CAPI uint32_t ucptrie_get(const UCPTrie *trie, UChar32 c)
Returns the value for a code point as stored in the trie, with range checking.
Fast/simple/larger BMP data structure.
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
"Smart pointer" definition macro, deletes objects via the closeFunction.
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
U_CAPI int32_t ucptrie_toBinary(const UCPTrie *trie, void *data, int32_t capacity, UErrorCode *pErrorCode)
Writes a memory-mappable form of the trie into 32-bit aligned memory.
uint32_t UCPMapValueFilter(const void *context, uint32_t value)
Callback function type: Modifies a map value.
The trie stores 32 bits per data value.
int32_t UChar32
Define UChar32 as a type for single Unicode code points.
The trie stores 16 bits per data value.
U_CAPI UCPTrieValueWidth ucptrie_getValueWidth(const UCPTrie *trie)
Returns the number of bits in a trie data value.
For ucptrie_openFromBinary() to accept any data value width.
U_CAPI void ucptrie_close(UCPTrie *trie)
Closes a trie and releases associated memory.
#define U_CDECL_END
This is used to end a declaration of a library private ICU C API.
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers...
For ucptrie_openFromBinary() to accept any type.
Basic definitions for ICU, for both C and C++ APIs.
U_CAPI UChar32 ucptrie_getRange(const UCPTrie *trie, UChar32 start, UCPMapRangeOption option, uint32_t surrogateValue, UCPMapValueFilter *filter, const void *context, uint32_t *pValue)
Returns the last code point such that all those from start to there have the same value...
UCPTrieType
Selectors for the type of a UCPTrie.
Small/slower BMP data structure.