]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/unicode/utf16.h
2 *******************************************************************************
4 * Copyright (C) 1999-2012, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
10 * tab size: 8 (not used)
13 * created on: 1999sep09
14 * created by: Markus W. Scherer
19 * \brief C API: 16-bit Unicode handling macros
21 * This file defines macros to deal with 16-bit Unicode (UTF-16) code units and strings.
23 * For more information see utf.h and the ICU User Guide Strings chapter
24 * (http://userguide.icu-project.org/strings).
27 * ICU coding guidelines for if() statements should be followed when using these macros.
28 * Compound statements (curly braces {}) must be used for if-else-while...
29 * bodies and all macro statements should be terminated with semicolon.
35 #include "unicode/umachine.h"
37 # include "unicode/utf.h"
40 /* single-code point definitions -------------------------------------------- */
43 * Does this code unit alone encode a code point (BMP, not a surrogate)?
44 * @param c 16-bit code unit
45 * @return TRUE or FALSE
48 #define U16_IS_SINGLE(c) !U_IS_SURROGATE(c)
51 * Is this code unit a lead surrogate (U+d800..U+dbff)?
52 * @param c 16-bit code unit
53 * @return TRUE or FALSE
56 #define U16_IS_LEAD(c) (((c)&0xfffffc00)==0xd800)
59 * Is this code unit a trail surrogate (U+dc00..U+dfff)?
60 * @param c 16-bit code unit
61 * @return TRUE or FALSE
64 #define U16_IS_TRAIL(c) (((c)&0xfffffc00)==0xdc00)
67 * Is this code unit a surrogate (U+d800..U+dfff)?
68 * @param c 16-bit code unit
69 * @return TRUE or FALSE
72 #define U16_IS_SURROGATE(c) U_IS_SURROGATE(c)
75 * Assuming c is a surrogate code point (U16_IS_SURROGATE(c)),
76 * is it a lead surrogate?
77 * @param c 16-bit code unit
78 * @return TRUE or FALSE
81 #define U16_IS_SURROGATE_LEAD(c) (((c)&0x400)==0)
84 * Assuming c is a surrogate code point (U16_IS_SURROGATE(c)),
85 * is it a trail surrogate?
86 * @param c 16-bit code unit
87 * @return TRUE or FALSE
90 #define U16_IS_SURROGATE_TRAIL(c) (((c)&0x400)!=0)
93 * Helper constant for U16_GET_SUPPLEMENTARY.
96 #define U16_SURROGATE_OFFSET ((0xd800<<10UL)+0xdc00-0x10000)
99 * Get a supplementary code point value (U+10000..U+10ffff)
100 * from its lead and trail surrogates.
101 * The result is undefined if the input values are not
102 * lead and trail surrogates.
104 * @param lead lead surrogate (U+d800..U+dbff)
105 * @param trail trail surrogate (U+dc00..U+dfff)
106 * @return supplementary code point (U+10000..U+10ffff)
109 #define U16_GET_SUPPLEMENTARY(lead, trail) \
110 (((UChar32)(lead)<<10UL)+(UChar32)(trail)-U16_SURROGATE_OFFSET)
114 * Get the lead surrogate (0xd800..0xdbff) for a
115 * supplementary code point (0x10000..0x10ffff).
116 * @param supplementary 32-bit code point (U+10000..U+10ffff)
117 * @return lead surrogate (U+d800..U+dbff) for supplementary
120 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0)
123 * Get the trail surrogate (0xdc00..0xdfff) for a
124 * supplementary code point (0x10000..0x10ffff).
125 * @param supplementary 32-bit code point (U+10000..U+10ffff)
126 * @return trail surrogate (U+dc00..U+dfff) for supplementary
129 #define U16_TRAIL(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00)
132 * How many 16-bit code units are used to encode this Unicode code point? (1 or 2)
133 * The result is not defined if c is not a Unicode code point (U+0000..U+10ffff).
134 * @param c 32-bit code point
138 #define U16_LENGTH(c) ((uint32_t)(c)<=0xffff ? 1 : 2)
141 * The maximum number of 16-bit code units per Unicode code point (U+0000..U+10ffff).
145 #define U16_MAX_LENGTH 2
148 * Get a code point from a string at a random-access offset,
149 * without changing the offset.
150 * "Unsafe" macro, assumes well-formed UTF-16.
152 * The offset may point to either the lead or trail surrogate unit
153 * for a supplementary code point, in which case the macro will read
154 * the adjacent matching surrogate as well.
155 * The result is undefined if the offset points to a single, unpaired surrogate.
156 * Iteration through a string is more efficient with U16_NEXT_UNSAFE or U16_NEXT.
158 * @param s const UChar * string
159 * @param i string offset
160 * @param c output UChar32 variable
164 #define U16_GET_UNSAFE(s, i, c) { \
166 if(U16_IS_SURROGATE(c)) { \
167 if(U16_IS_SURROGATE_LEAD(c)) { \
168 (c)=U16_GET_SUPPLEMENTARY((c), (s)[(i)+1]); \
170 (c)=U16_GET_SUPPLEMENTARY((s)[(i)-1], (c)); \
176 * Get a code point from a string at a random-access offset,
177 * without changing the offset.
178 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
180 * The offset may point to either the lead or trail surrogate unit
181 * for a supplementary code point, in which case the macro will read
182 * the adjacent matching surrogate as well.
184 * The length can be negative for a NUL-terminated string.
186 * If the offset points to a single, unpaired surrogate, then that itself
187 * will be returned as the code point.
188 * Iteration through a string is more efficient with U16_NEXT_UNSAFE or U16_NEXT.
190 * @param s const UChar * string
191 * @param start starting string offset (usually 0)
192 * @param i string offset, must be start<=i<length
193 * @param length string length
194 * @param c output UChar32 variable
195 * @see U16_GET_UNSAFE
198 #define U16_GET(s, start, i, length, c) { \
200 if(U16_IS_SURROGATE(c)) { \
202 if(U16_IS_SURROGATE_LEAD(c)) { \
203 if((i)+1!=(length) && U16_IS_TRAIL(__c2=(s)[(i)+1])) { \
204 (c)=U16_GET_SUPPLEMENTARY((c), __c2); \
207 if((i)>(start) && U16_IS_LEAD(__c2=(s)[(i)-1])) { \
208 (c)=U16_GET_SUPPLEMENTARY(__c2, (c)); \
214 /* definitions with forward iteration --------------------------------------- */
217 * Get a code point from a string at a code point boundary offset,
218 * and advance the offset to the next code point boundary.
219 * (Post-incrementing forward iteration.)
220 * "Unsafe" macro, assumes well-formed UTF-16.
222 * The offset may point to the lead surrogate unit
223 * for a supplementary code point, in which case the macro will read
224 * the following trail surrogate as well.
225 * If the offset points to a trail surrogate, then that itself
226 * will be returned as the code point.
227 * The result is undefined if the offset points to a single, unpaired lead surrogate.
229 * @param s const UChar * string
230 * @param i string offset
231 * @param c output UChar32 variable
235 #define U16_NEXT_UNSAFE(s, i, c) { \
237 if(U16_IS_LEAD(c)) { \
238 (c)=U16_GET_SUPPLEMENTARY((c), (s)[(i)++]); \
243 * Get a code point from a string at a code point boundary offset,
244 * and advance the offset to the next code point boundary.
245 * (Post-incrementing forward iteration.)
246 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
248 * The length can be negative for a NUL-terminated string.
250 * The offset may point to the lead surrogate unit
251 * for a supplementary code point, in which case the macro will read
252 * the following trail surrogate as well.
253 * If the offset points to a trail surrogate or
254 * to a single, unpaired lead surrogate, then that itself
255 * will be returned as the code point.
257 * @param s const UChar * string
258 * @param i string offset, must be i<length
259 * @param length string length
260 * @param c output UChar32 variable
261 * @see U16_NEXT_UNSAFE
264 #define U16_NEXT(s, i, length, c) { \
266 if(U16_IS_LEAD(c)) { \
268 if((i)!=(length) && U16_IS_TRAIL(__c2=(s)[(i)])) { \
270 (c)=U16_GET_SUPPLEMENTARY((c), __c2); \
276 * Append a code point to a string, overwriting 1 or 2 code units.
277 * The offset points to the current end of the string contents
278 * and is advanced (post-increment).
279 * "Unsafe" macro, assumes a valid code point and sufficient space in the string.
280 * Otherwise, the result is undefined.
282 * @param s const UChar * string buffer
283 * @param i string offset
284 * @param c code point to append
288 #define U16_APPEND_UNSAFE(s, i, c) { \
289 if((uint32_t)(c)<=0xffff) { \
290 (s)[(i)++]=(uint16_t)(c); \
292 (s)[(i)++]=(uint16_t)(((c)>>10)+0xd7c0); \
293 (s)[(i)++]=(uint16_t)(((c)&0x3ff)|0xdc00); \
298 * Append a code point to a string, overwriting 1 or 2 code units.
299 * The offset points to the current end of the string contents
300 * and is advanced (post-increment).
301 * "Safe" macro, checks for a valid code point.
302 * If a surrogate pair is written, checks for sufficient space in the string.
303 * If the code point is not valid or a trail surrogate does not fit,
304 * then isError is set to TRUE.
306 * @param s const UChar * string buffer
307 * @param i string offset, must be i<capacity
308 * @param capacity size of the string buffer
309 * @param c code point to append
310 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
311 * @see U16_APPEND_UNSAFE
314 #define U16_APPEND(s, i, capacity, c, isError) { \
315 if((uint32_t)(c)<=0xffff) { \
316 (s)[(i)++]=(uint16_t)(c); \
317 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
318 (s)[(i)++]=(uint16_t)(((c)>>10)+0xd7c0); \
319 (s)[(i)++]=(uint16_t)(((c)&0x3ff)|0xdc00); \
320 } else /* c>0x10ffff or not enough space */ { \
326 * Advance the string offset from one code point boundary to the next.
327 * (Post-incrementing iteration.)
328 * "Unsafe" macro, assumes well-formed UTF-16.
330 * @param s const UChar * string
331 * @param i string offset
335 #define U16_FWD_1_UNSAFE(s, i) { \
336 if(U16_IS_LEAD((s)[(i)++])) { \
342 * Advance the string offset from one code point boundary to the next.
343 * (Post-incrementing iteration.)
344 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
346 * The length can be negative for a NUL-terminated string.
348 * @param s const UChar * string
349 * @param i string offset, must be i<length
350 * @param length string length
351 * @see U16_FWD_1_UNSAFE
354 #define U16_FWD_1(s, i, length) { \
355 if(U16_IS_LEAD((s)[(i)++]) && (i)!=(length) && U16_IS_TRAIL((s)[i])) { \
361 * Advance the string offset from one code point boundary to the n-th next one,
362 * i.e., move forward by n code points.
363 * (Post-incrementing iteration.)
364 * "Unsafe" macro, assumes well-formed UTF-16.
366 * @param s const UChar * string
367 * @param i string offset
368 * @param n number of code points to skip
372 #define U16_FWD_N_UNSAFE(s, i, n) { \
375 U16_FWD_1_UNSAFE(s, i); \
381 * Advance the string offset from one code point boundary to the n-th next one,
382 * i.e., move forward by n code points.
383 * (Post-incrementing iteration.)
384 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
386 * The length can be negative for a NUL-terminated string.
388 * @param s const UChar * string
389 * @param i int32_t string offset, must be i<length
390 * @param length int32_t string length
391 * @param n number of code points to skip
392 * @see U16_FWD_N_UNSAFE
395 #define U16_FWD_N(s, i, length, n) { \
397 while(__N>0 && ((i)<(length) || ((length)<0 && (s)[i]!=0))) { \
398 U16_FWD_1(s, i, length); \
404 * Adjust a random-access offset to a code point boundary
405 * at the start of a code point.
406 * If the offset points to the trail surrogate of a surrogate pair,
407 * then the offset is decremented.
408 * Otherwise, it is not modified.
409 * "Unsafe" macro, assumes well-formed UTF-16.
411 * @param s const UChar * string
412 * @param i string offset
413 * @see U16_SET_CP_START
416 #define U16_SET_CP_START_UNSAFE(s, i) { \
417 if(U16_IS_TRAIL((s)[i])) { \
423 * Adjust a random-access offset to a code point boundary
424 * at the start of a code point.
425 * If the offset points to the trail surrogate of a surrogate pair,
426 * then the offset is decremented.
427 * Otherwise, it is not modified.
428 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
430 * @param s const UChar * string
431 * @param start starting string offset (usually 0)
432 * @param i string offset, must be start<=i
433 * @see U16_SET_CP_START_UNSAFE
436 #define U16_SET_CP_START(s, start, i) { \
437 if(U16_IS_TRAIL((s)[i]) && (i)>(start) && U16_IS_LEAD((s)[(i)-1])) { \
442 /* definitions with backward iteration -------------------------------------- */
445 * Move the string offset from one code point boundary to the previous one
446 * and get the code point between them.
447 * (Pre-decrementing backward iteration.)
448 * "Unsafe" macro, assumes well-formed UTF-16.
450 * The input offset may be the same as the string length.
451 * If the offset is behind a trail surrogate unit
452 * for a supplementary code point, then the macro will read
453 * the preceding lead surrogate as well.
454 * If the offset is behind a lead surrogate, then that itself
455 * will be returned as the code point.
456 * The result is undefined if the offset is behind a single, unpaired trail surrogate.
458 * @param s const UChar * string
459 * @param i string offset
460 * @param c output UChar32 variable
464 #define U16_PREV_UNSAFE(s, i, c) { \
466 if(U16_IS_TRAIL(c)) { \
467 (c)=U16_GET_SUPPLEMENTARY((s)[--(i)], (c)); \
472 * Move the string offset from one code point boundary to the previous one
473 * and get the code point between them.
474 * (Pre-decrementing backward iteration.)
475 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
477 * The input offset may be the same as the string length.
478 * If the offset is behind a trail surrogate unit
479 * for a supplementary code point, then the macro will read
480 * the preceding lead surrogate as well.
481 * If the offset is behind a lead surrogate or behind a single, unpaired
482 * trail surrogate, then that itself
483 * will be returned as the code point.
485 * @param s const UChar * string
486 * @param start starting string offset (usually 0)
487 * @param i string offset, must be start<i
488 * @param c output UChar32 variable
489 * @see U16_PREV_UNSAFE
492 #define U16_PREV(s, start, i, c) { \
494 if(U16_IS_TRAIL(c)) { \
496 if((i)>(start) && U16_IS_LEAD(__c2=(s)[(i)-1])) { \
498 (c)=U16_GET_SUPPLEMENTARY(__c2, (c)); \
504 * Move the string offset from one code point boundary to the previous one.
505 * (Pre-decrementing backward iteration.)
506 * The input offset may be the same as the string length.
507 * "Unsafe" macro, assumes well-formed UTF-16.
509 * @param s const UChar * string
510 * @param i string offset
514 #define U16_BACK_1_UNSAFE(s, i) { \
515 if(U16_IS_TRAIL((s)[--(i)])) { \
521 * Move the string offset from one code point boundary to the previous one.
522 * (Pre-decrementing backward iteration.)
523 * The input offset may be the same as the string length.
524 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
526 * @param s const UChar * string
527 * @param start starting string offset (usually 0)
528 * @param i string offset, must be start<i
529 * @see U16_BACK_1_UNSAFE
532 #define U16_BACK_1(s, start, i) { \
533 if(U16_IS_TRAIL((s)[--(i)]) && (i)>(start) && U16_IS_LEAD((s)[(i)-1])) { \
539 * Move the string offset from one code point boundary to the n-th one before it,
540 * i.e., move backward by n code points.
541 * (Pre-decrementing backward iteration.)
542 * The input offset may be the same as the string length.
543 * "Unsafe" macro, assumes well-formed UTF-16.
545 * @param s const UChar * string
546 * @param i string offset
547 * @param n number of code points to skip
551 #define U16_BACK_N_UNSAFE(s, i, n) { \
554 U16_BACK_1_UNSAFE(s, i); \
560 * Move the string offset from one code point boundary to the n-th one before it,
561 * i.e., move backward by n code points.
562 * (Pre-decrementing backward iteration.)
563 * The input offset may be the same as the string length.
564 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
566 * @param s const UChar * string
567 * @param start start of string
568 * @param i string offset, must be start<i
569 * @param n number of code points to skip
570 * @see U16_BACK_N_UNSAFE
573 #define U16_BACK_N(s, start, i, n) { \
575 while(__N>0 && (i)>(start)) { \
576 U16_BACK_1(s, start, i); \
582 * Adjust a random-access offset to a code point boundary after a code point.
583 * If the offset is behind the lead surrogate of a surrogate pair,
584 * then the offset is incremented.
585 * Otherwise, it is not modified.
586 * The input offset may be the same as the string length.
587 * "Unsafe" macro, assumes well-formed UTF-16.
589 * @param s const UChar * string
590 * @param i string offset
591 * @see U16_SET_CP_LIMIT
594 #define U16_SET_CP_LIMIT_UNSAFE(s, i) { \
595 if(U16_IS_LEAD((s)[(i)-1])) { \
601 * Adjust a random-access offset to a code point boundary after a code point.
602 * If the offset is behind the lead surrogate of a surrogate pair,
603 * then the offset is incremented.
604 * Otherwise, it is not modified.
605 * The input offset may be the same as the string length.
606 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
608 * The length can be negative for a NUL-terminated string.
610 * @param s const UChar * string
611 * @param start int32_t starting string offset (usually 0)
612 * @param i int32_t string offset, start<=i<=length
613 * @param length int32_t string length
614 * @see U16_SET_CP_LIMIT_UNSAFE
617 #define U16_SET_CP_LIMIT(s, start, i, length) { \
618 if((start)<(i) && ((i)<(length) || (length)<0) && U16_IS_LEAD((s)[(i)-1]) && U16_IS_TRAIL((s)[i])) { \