56 #define U8_COUNT_TRAIL_BYTES(leadByte) \
57 (U8_IS_LEAD(leadByte) ? \
58 ((uint8_t)(leadByte)>=0xe0)+((uint8_t)(leadByte)>=0xf0)+1 : 0)
71 #define U8_COUNT_TRAIL_BYTES_UNSAFE(leadByte) \
72 (((uint8_t)(leadByte)>=0xc2)+((uint8_t)(leadByte)>=0xe0)+((uint8_t)(leadByte)>=0xf0))
81 #define U8_MASK_LEAD_BYTE(leadByte, countTrailBytes) ((leadByte)&=(1<<(6-(countTrailBytes)))-1)
91 #define U8_LEAD3_T1_BITS "\x20\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x10\x30\x30"
98 #define U8_IS_VALID_LEAD3_AND_T1(lead, t1) (U8_LEAD3_T1_BITS[(lead)&0xf]&(1<<((uint8_t)(t1)>>5)))
108 #define U8_LEAD4_T1_BITS "\x00\x00\x00\x00\x00\x00\x00\x00\x1E\x0F\x0F\x0F\x00\x00\x00\x00"
115 #define U8_IS_VALID_LEAD4_AND_T1(lead, t1) (U8_LEAD4_T1_BITS[(uint8_t)(t1)>>4]&(1<<((lead)&7)))
173 #define U8_IS_SINGLE(c) ((int8_t)(c)>=0)
181 #define U8_IS_LEAD(c) ((uint8_t)((c)-0xc2)<=0x32)
190 #define U8_IS_TRAIL(c) ((int8_t)(c)<-0x40)
199 #define U8_LENGTH(c) \
200 ((uint32_t)(c)<=0x7f ? 1 : \
201 ((uint32_t)(c)<=0x7ff ? 2 : \
202 ((uint32_t)(c)<=0xd7ff ? 3 : \
203 ((uint32_t)(c)<=0xdfff || (uint32_t)(c)>0x10ffff ? 0 : \
204 ((uint32_t)(c)<=0xffff ? 3 : 4)\
215 #define U8_MAX_LENGTH 4
217 #ifndef U_HIDE_DRAFT_API
228 #define U8_LENGTH_FROM_LEAD_BYTE(leadByte) (U8_COUNT_TRAIL_BYTES(leadByte) + 1)
239 #define U8_LENGTH_FROM_LEAD_BYTE_UNSAFE(leadByte) (U8_COUNT_TRAIL_BYTES_UNSAFE(leadByte) + 1)
259 #define U8_GET_UNSAFE(s, i, c) UPRV_BLOCK_MACRO_BEGIN { \
260 int32_t _u8_get_unsafe_index=(int32_t)(i); \
261 U8_SET_CP_START_UNSAFE(s, _u8_get_unsafe_index); \
262 U8_NEXT_UNSAFE(s, _u8_get_unsafe_index, c); \
263 } UPRV_BLOCK_MACRO_END
286 #define U8_GET(s, start, i, length, c) UPRV_BLOCK_MACRO_BEGIN { \
287 int32_t _u8_get_index=(i); \
288 U8_SET_CP_START(s, start, _u8_get_index); \
289 U8_NEXT(s, _u8_get_index, length, c); \
290 } UPRV_BLOCK_MACRO_END
317 #define U8_GET_OR_FFFD(s, start, i, length, c) UPRV_BLOCK_MACRO_BEGIN { \
318 int32_t _u8_get_index=(i); \
319 U8_SET_CP_START(s, start, _u8_get_index); \
320 U8_NEXT_OR_FFFD(s, _u8_get_index, length, c); \
321 } UPRV_BLOCK_MACRO_END
342 #define U8_NEXT_UNSAFE(s, i, c) UPRV_BLOCK_MACRO_BEGIN { \
343 (c)=(uint8_t)(s)[(i)++]; \
344 if(!U8_IS_SINGLE(c)) { \
346 (c)=(((c)&0x1f)<<6)|((s)[(i)++]&0x3f); \
347 } else if((c)<0xf0) { \
349 (c)=(UChar)(((c)<<12)|(((s)[i]&0x3f)<<6)|((s)[(i)+1]&0x3f)); \
352 (c)=(((c)&7)<<18)|(((s)[i]&0x3f)<<12)|(((s)[(i)+1]&0x3f)<<6)|((s)[(i)+2]&0x3f); \
356 } UPRV_BLOCK_MACRO_END
378 #define U8_NEXT(s, i, length, c) U8_INTERNAL_NEXT_OR_SUB(s, i, length, c, U_SENTINEL)
404 #define U8_NEXT_OR_FFFD(s, i, length, c) U8_INTERNAL_NEXT_OR_SUB(s, i, length, c, 0xfffd)
407 #define U8_INTERNAL_NEXT_OR_SUB(s, i, length, c, sub) UPRV_BLOCK_MACRO_BEGIN { \
408 (c)=(uint8_t)(s)[(i)++]; \
409 if(!U8_IS_SINGLE(c)) { \
411 if((i)!=(length) && \
415 U8_LEAD3_T1_BITS[(c)&=0xf]&(1<<((__t=(s)[i])>>5)) && \
419 U8_LEAD4_T1_BITS[(__t=(s)[i])>>4]&(1<<(c)) && \
420 ((c)=((c)<<6)|(__t&0x3f), ++(i)!=(length)) && \
421 (__t=(s)[i]-0x80)<=0x3f) && \
423 ((c)=((c)<<6)|__t, ++(i)!=(length)) \
425 (c)>=0xc2 && ((c)&=0x1f, 1)) && \
427 (__t=(s)[i]-0x80)<=0x3f && \
428 ((c)=((c)<<6)|__t, ++(i), 1)) { \
433 } UPRV_BLOCK_MACRO_END
448 #define U8_APPEND_UNSAFE(s, i, c) UPRV_BLOCK_MACRO_BEGIN { \
451 (s)[(i)++]=(uint8_t)__uc; \
454 (s)[(i)++]=(uint8_t)((__uc>>6)|0xc0); \
457 (s)[(i)++]=(uint8_t)((__uc>>12)|0xe0); \
459 (s)[(i)++]=(uint8_t)((__uc>>18)|0xf0); \
460 (s)[(i)++]=(uint8_t)(((__uc>>12)&0x3f)|0x80); \
462 (s)[(i)++]=(uint8_t)(((__uc>>6)&0x3f)|0x80); \
464 (s)[(i)++]=(uint8_t)((__uc&0x3f)|0x80); \
466 } UPRV_BLOCK_MACRO_END
485 #define U8_APPEND(s, i, capacity, c, isError) UPRV_BLOCK_MACRO_BEGIN { \
488 (s)[(i)++]=(uint8_t)__uc; \
489 } else if(__uc<=0x7ff && (i)+1<(capacity)) { \
490 (s)[(i)++]=(uint8_t)((__uc>>6)|0xc0); \
491 (s)[(i)++]=(uint8_t)((__uc&0x3f)|0x80); \
492 } else if((__uc<=0xd7ff || (0xe000<=__uc && __uc<=0xffff)) && (i)+2<(capacity)) { \
493 (s)[(i)++]=(uint8_t)((__uc>>12)|0xe0); \
494 (s)[(i)++]=(uint8_t)(((__uc>>6)&0x3f)|0x80); \
495 (s)[(i)++]=(uint8_t)((__uc&0x3f)|0x80); \
496 } else if(0xffff<__uc && __uc<=0x10ffff && (i)+3<(capacity)) { \
497 (s)[(i)++]=(uint8_t)((__uc>>18)|0xf0); \
498 (s)[(i)++]=(uint8_t)(((__uc>>12)&0x3f)|0x80); \
499 (s)[(i)++]=(uint8_t)(((__uc>>6)&0x3f)|0x80); \
500 (s)[(i)++]=(uint8_t)((__uc&0x3f)|0x80); \
504 } UPRV_BLOCK_MACRO_END
516 #define U8_FWD_1_UNSAFE(s, i) UPRV_BLOCK_MACRO_BEGIN { \
517 (i)+=1+U8_COUNT_TRAIL_BYTES_UNSAFE((s)[i]); \
518 } UPRV_BLOCK_MACRO_END
533 #define U8_FWD_1(s, i, length) UPRV_BLOCK_MACRO_BEGIN { \
534 uint8_t __b=(s)[(i)++]; \
535 if(U8_IS_LEAD(__b) && (i)!=(length)) { \
536 uint8_t __t1=(s)[i]; \
537 if((0xe0<=__b && __b<0xf0)) { \
538 if(U8_IS_VALID_LEAD3_AND_T1(__b, __t1) && \
539 ++(i)!=(length) && U8_IS_TRAIL((s)[i])) { \
542 } else if(__b<0xe0) { \
543 if(U8_IS_TRAIL(__t1)) { \
547 if(U8_IS_VALID_LEAD4_AND_T1(__b, __t1) && \
548 ++(i)!=(length) && U8_IS_TRAIL((s)[i]) && \
549 ++(i)!=(length) && U8_IS_TRAIL((s)[i])) { \
554 } UPRV_BLOCK_MACRO_END
568 #define U8_FWD_N_UNSAFE(s, i, n) UPRV_BLOCK_MACRO_BEGIN { \
571 U8_FWD_1_UNSAFE(s, i); \
574 } UPRV_BLOCK_MACRO_END
591 #define U8_FWD_N(s, i, length, n) UPRV_BLOCK_MACRO_BEGIN { \
593 while(__N>0 && ((i)<(length) || ((length)<0 && (s)[i]!=0))) { \
594 U8_FWD_1(s, i, length); \
597 } UPRV_BLOCK_MACRO_END
612 #define U8_SET_CP_START_UNSAFE(s, i) UPRV_BLOCK_MACRO_BEGIN { \
613 while(U8_IS_TRAIL((s)[i])) { --(i); } \
614 } UPRV_BLOCK_MACRO_END
633 #define U8_SET_CP_START(s, start, i) UPRV_BLOCK_MACRO_BEGIN { \
634 if(U8_IS_TRAIL((s)[(i)])) { \
635 (i)=utf8_back1SafeBody(s, start, (i)); \
637 } UPRV_BLOCK_MACRO_END
665 #define U8_TRUNCATE_IF_INCOMPLETE(s, start, length) UPRV_BLOCK_MACRO_BEGIN { \
666 if((length)>(start)) { \
667 uint8_t __b1=s[(length)-1]; \
668 if(U8_IS_SINGLE(__b1)) { \
670 } else if(U8_IS_LEAD(__b1)) { \
672 } else if(U8_IS_TRAIL(__b1) && ((length)-2)>=(start)) { \
673 uint8_t __b2=s[(length)-2]; \
674 if(0xe0<=__b2 && __b2<=0xf4) { \
675 if(__b2<0xf0 ? U8_IS_VALID_LEAD3_AND_T1(__b2, __b1) : \
676 U8_IS_VALID_LEAD4_AND_T1(__b2, __b1)) { \
679 } else if(U8_IS_TRAIL(__b2) && ((length)-3)>=(start)) { \
680 uint8_t __b3=s[(length)-3]; \
681 if(0xf0<=__b3 && __b3<=0xf4 && U8_IS_VALID_LEAD4_AND_T1(__b3, __b2)) { \
687 } UPRV_BLOCK_MACRO_END
710 #define U8_PREV_UNSAFE(s, i, c) UPRV_BLOCK_MACRO_BEGIN { \
711 (c)=(uint8_t)(s)[--(i)]; \
712 if(!U8_IS_SINGLE(c)) { \
713 uint8_t __b, __count=1, __shift=6; \
720 U8_MASK_LEAD_BYTE(__b, __count); \
721 (c)|=(UChar32)__b<<__shift; \
724 (c)|=(UChar32)(__b&0x3f)<<__shift; \
730 } UPRV_BLOCK_MACRO_END
752 #define U8_PREV(s, start, i, c) UPRV_BLOCK_MACRO_BEGIN { \
753 (c)=(uint8_t)(s)[--(i)]; \
754 if(!U8_IS_SINGLE(c)) { \
755 (c)=utf8_prevCharSafeBody((const uint8_t *)s, start, &(i), c, -1); \
757 } UPRV_BLOCK_MACRO_END
783 #define U8_PREV_OR_FFFD(s, start, i, c) UPRV_BLOCK_MACRO_BEGIN { \
784 (c)=(uint8_t)(s)[--(i)]; \
785 if(!U8_IS_SINGLE(c)) { \
786 (c)=utf8_prevCharSafeBody((const uint8_t *)s, start, &(i), c, -3); \
788 } UPRV_BLOCK_MACRO_END
801 #define U8_BACK_1_UNSAFE(s, i) UPRV_BLOCK_MACRO_BEGIN { \
802 while(U8_IS_TRAIL((s)[--(i)])) {} \
803 } UPRV_BLOCK_MACRO_END
817 #define U8_BACK_1(s, start, i) UPRV_BLOCK_MACRO_BEGIN { \
818 if(U8_IS_TRAIL((s)[--(i)])) { \
819 (i)=utf8_back1SafeBody(s, start, (i)); \
821 } UPRV_BLOCK_MACRO_END
836 #define U8_BACK_N_UNSAFE(s, i, n) UPRV_BLOCK_MACRO_BEGIN { \
839 U8_BACK_1_UNSAFE(s, i); \
842 } UPRV_BLOCK_MACRO_END
858 #define U8_BACK_N(s, start, i, n) UPRV_BLOCK_MACRO_BEGIN { \
860 while(__N>0 && (i)>(start)) { \
861 U8_BACK_1(s, start, i); \
864 } UPRV_BLOCK_MACRO_END
879 #define U8_SET_CP_LIMIT_UNSAFE(s, i) UPRV_BLOCK_MACRO_BEGIN { \
880 U8_BACK_1_UNSAFE(s, i); \
881 U8_FWD_1_UNSAFE(s, i); \
882 } UPRV_BLOCK_MACRO_END
901 #define U8_SET_CP_LIMIT(s, start, i, length) UPRV_BLOCK_MACRO_BEGIN { \
902 if((start)<(i) && ((i)<(length) || (length)<0)) { \
903 U8_BACK_1(s, start, i); \
904 U8_FWD_1(s, i, length); \
906 } UPRV_BLOCK_MACRO_END
Basic types and constants for UTF.
int32_t UChar32
Define UChar32 as a type for single Unicode code points.
int8_t UBool
The ICU boolean type, a signed-byte integer.
#define U_CAPI
This is used to declare a function as a public ICU C API.
U_CAPI int32_t utf8_appendCharSafeBody(uint8_t *s, int32_t i, int32_t length, UChar32 c, UBool *pIsError)
Function for handling "append code point" with error-checking.
U_CAPI int32_t utf8_back1SafeBody(const uint8_t *s, int32_t start, int32_t i)
Function for handling "skip backward one code point" with error-checking.
U_CAPI UChar32 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, int8_t strict)
Function for handling "next code point" with error-checking.
U_CAPI UChar32 utf8_prevCharSafeBody(const uint8_t *s, int32_t start, int32_t *pi, UChar32 c, int8_t strict)
Function for handling "previous code point" with error-checking.
C API: Code point macros.