]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/unicode/utf16.h
2 *******************************************************************************
4 * Copyright (C) 1999-2011, 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.
183 * If the offset points to a single, unpaired surrogate, then that itself
184 * will be returned as the code point.
185 * Iteration through a string is more efficient with U16_NEXT_UNSAFE or U16_NEXT.
187 * @param s const UChar * string
188 * @param start starting string offset (usually 0)
189 * @param i string offset, must be start<=i<length
190 * @param length string length
191 * @param c output UChar32 variable
192 * @see U16_GET_UNSAFE
195 #define U16_GET(s, start, i, length, c) { \
197 if(U16_IS_SURROGATE(c)) { \
199 if(U16_IS_SURROGATE_LEAD(c)) { \
200 if((i)+1<(length) && U16_IS_TRAIL(__c2=(s)[(i)+1])) { \
201 (c)=U16_GET_SUPPLEMENTARY((c), __c2); \
204 if((i)>(start) && U16_IS_LEAD(__c2=(s)[(i)-1])) { \
205 (c)=U16_GET_SUPPLEMENTARY(__c2, (c)); \
211 /* definitions with forward iteration --------------------------------------- */
214 * Get a code point from a string at a code point boundary offset,
215 * and advance the offset to the next code point boundary.
216 * (Post-incrementing forward iteration.)
217 * "Unsafe" macro, assumes well-formed UTF-16.
219 * The offset may point to the lead surrogate unit
220 * for a supplementary code point, in which case the macro will read
221 * the following trail surrogate as well.
222 * If the offset points to a trail surrogate, then that itself
223 * will be returned as the code point.
224 * The result is undefined if the offset points to a single, unpaired lead surrogate.
226 * @param s const UChar * string
227 * @param i string offset
228 * @param c output UChar32 variable
232 #define U16_NEXT_UNSAFE(s, i, c) { \
234 if(U16_IS_LEAD(c)) { \
235 (c)=U16_GET_SUPPLEMENTARY((c), (s)[(i)++]); \
240 * Get a code point from a string at a code point boundary offset,
241 * and advance the offset to the next code point boundary.
242 * (Post-incrementing forward iteration.)
243 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
245 * The offset may point to the lead surrogate unit
246 * for a supplementary code point, in which case the macro will read
247 * the following trail surrogate as well.
248 * If the offset points to a trail surrogate or
249 * to a single, unpaired lead surrogate, then that itself
250 * will be returned as the code point.
252 * @param s const UChar * string
253 * @param i string offset, must be i<length
254 * @param length string length
255 * @param c output UChar32 variable
256 * @see U16_NEXT_UNSAFE
259 #define U16_NEXT(s, i, length, c) { \
261 if(U16_IS_LEAD(c)) { \
263 if((i)<(length) && U16_IS_TRAIL(__c2=(s)[(i)])) { \
265 (c)=U16_GET_SUPPLEMENTARY((c), __c2); \
271 * Append a code point to a string, overwriting 1 or 2 code units.
272 * The offset points to the current end of the string contents
273 * and is advanced (post-increment).
274 * "Unsafe" macro, assumes a valid code point and sufficient space in the string.
275 * Otherwise, the result is undefined.
277 * @param s const UChar * string buffer
278 * @param i string offset
279 * @param c code point to append
283 #define U16_APPEND_UNSAFE(s, i, c) { \
284 if((uint32_t)(c)<=0xffff) { \
285 (s)[(i)++]=(uint16_t)(c); \
287 (s)[(i)++]=(uint16_t)(((c)>>10)+0xd7c0); \
288 (s)[(i)++]=(uint16_t)(((c)&0x3ff)|0xdc00); \
293 * Append a code point to a string, overwriting 1 or 2 code units.
294 * The offset points to the current end of the string contents
295 * and is advanced (post-increment).
296 * "Safe" macro, checks for a valid code point.
297 * If a surrogate pair is written, checks for sufficient space in the string.
298 * If the code point is not valid or a trail surrogate does not fit,
299 * then isError is set to TRUE.
301 * @param s const UChar * string buffer
302 * @param i string offset, must be i<capacity
303 * @param capacity size of the string buffer
304 * @param c code point to append
305 * @param isError output UBool set to TRUE if an error occurs, otherwise not modified
306 * @see U16_APPEND_UNSAFE
309 #define U16_APPEND(s, i, capacity, c, isError) { \
310 if((uint32_t)(c)<=0xffff) { \
311 (s)[(i)++]=(uint16_t)(c); \
312 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
313 (s)[(i)++]=(uint16_t)(((c)>>10)+0xd7c0); \
314 (s)[(i)++]=(uint16_t)(((c)&0x3ff)|0xdc00); \
315 } else /* c>0x10ffff or not enough space */ { \
321 * Advance the string offset from one code point boundary to the next.
322 * (Post-incrementing iteration.)
323 * "Unsafe" macro, assumes well-formed UTF-16.
325 * @param s const UChar * string
326 * @param i string offset
330 #define U16_FWD_1_UNSAFE(s, i) { \
331 if(U16_IS_LEAD((s)[(i)++])) { \
337 * Advance the string offset from one code point boundary to the next.
338 * (Post-incrementing iteration.)
339 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
341 * @param s const UChar * string
342 * @param i string offset, must be i<length
343 * @param length string length
344 * @see U16_FWD_1_UNSAFE
347 #define U16_FWD_1(s, i, length) { \
348 if(U16_IS_LEAD((s)[(i)++]) && (i)<(length) && U16_IS_TRAIL((s)[i])) { \
354 * Advance the string offset from one code point boundary to the n-th next one,
355 * i.e., move forward by n code points.
356 * (Post-incrementing iteration.)
357 * "Unsafe" macro, assumes well-formed UTF-16.
359 * @param s const UChar * string
360 * @param i string offset
361 * @param n number of code points to skip
365 #define U16_FWD_N_UNSAFE(s, i, n) { \
368 U16_FWD_1_UNSAFE(s, i); \
374 * Advance the string offset from one code point boundary to the n-th next one,
375 * i.e., move forward by n code points.
376 * (Post-incrementing iteration.)
377 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
379 * @param s const UChar * string
380 * @param i string offset, must be i<length
381 * @param length string length
382 * @param n number of code points to skip
383 * @see U16_FWD_N_UNSAFE
386 #define U16_FWD_N(s, i, length, n) { \
388 while(__N>0 && (i)<(length)) { \
389 U16_FWD_1(s, i, length); \
395 * Adjust a random-access offset to a code point boundary
396 * at the start of a code point.
397 * If the offset points to the trail surrogate of a surrogate pair,
398 * then the offset is decremented.
399 * Otherwise, it is not modified.
400 * "Unsafe" macro, assumes well-formed UTF-16.
402 * @param s const UChar * string
403 * @param i string offset
404 * @see U16_SET_CP_START
407 #define U16_SET_CP_START_UNSAFE(s, i) { \
408 if(U16_IS_TRAIL((s)[i])) { \
414 * Adjust a random-access offset to a code point boundary
415 * at the start of a code point.
416 * If the offset points to the trail surrogate of a surrogate pair,
417 * then the offset is decremented.
418 * Otherwise, it is not modified.
419 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
421 * @param s const UChar * string
422 * @param start starting string offset (usually 0)
423 * @param i string offset, must be start<=i
424 * @see U16_SET_CP_START_UNSAFE
427 #define U16_SET_CP_START(s, start, i) { \
428 if(U16_IS_TRAIL((s)[i]) && (i)>(start) && U16_IS_LEAD((s)[(i)-1])) { \
433 /* definitions with backward iteration -------------------------------------- */
436 * Move the string offset from one code point boundary to the previous one
437 * and get the code point between them.
438 * (Pre-decrementing backward iteration.)
439 * "Unsafe" macro, assumes well-formed UTF-16.
441 * The input offset may be the same as the string length.
442 * If the offset is behind a trail surrogate unit
443 * for a supplementary code point, then the macro will read
444 * the preceding lead surrogate as well.
445 * If the offset is behind a lead surrogate, then that itself
446 * will be returned as the code point.
447 * The result is undefined if the offset is behind a single, unpaired trail surrogate.
449 * @param s const UChar * string
450 * @param i string offset
451 * @param c output UChar32 variable
455 #define U16_PREV_UNSAFE(s, i, c) { \
457 if(U16_IS_TRAIL(c)) { \
458 (c)=U16_GET_SUPPLEMENTARY((s)[--(i)], (c)); \
463 * Move the string offset from one code point boundary to the previous one
464 * and get the code point between them.
465 * (Pre-decrementing backward iteration.)
466 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
468 * The input offset may be the same as the string length.
469 * If the offset is behind a trail surrogate unit
470 * for a supplementary code point, then the macro will read
471 * the preceding lead surrogate as well.
472 * If the offset is behind a lead surrogate or behind a single, unpaired
473 * trail surrogate, then that itself
474 * will be returned as the code point.
476 * @param s const UChar * string
477 * @param start starting string offset (usually 0)
478 * @param i string offset, must be start<i
479 * @param c output UChar32 variable
480 * @see U16_PREV_UNSAFE
483 #define U16_PREV(s, start, i, c) { \
485 if(U16_IS_TRAIL(c)) { \
487 if((i)>(start) && U16_IS_LEAD(__c2=(s)[(i)-1])) { \
489 (c)=U16_GET_SUPPLEMENTARY(__c2, (c)); \
495 * Move the string offset from one code point boundary to the previous one.
496 * (Pre-decrementing backward iteration.)
497 * The input offset may be the same as the string length.
498 * "Unsafe" macro, assumes well-formed UTF-16.
500 * @param s const UChar * string
501 * @param i string offset
505 #define U16_BACK_1_UNSAFE(s, i) { \
506 if(U16_IS_TRAIL((s)[--(i)])) { \
512 * Move the string offset from one code point boundary to the previous one.
513 * (Pre-decrementing backward iteration.)
514 * The input offset may be the same as the string length.
515 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
517 * @param s const UChar * string
518 * @param start starting string offset (usually 0)
519 * @param i string offset, must be start<i
520 * @see U16_BACK_1_UNSAFE
523 #define U16_BACK_1(s, start, i) { \
524 if(U16_IS_TRAIL((s)[--(i)]) && (i)>(start) && U16_IS_LEAD((s)[(i)-1])) { \
530 * Move the string offset from one code point boundary to the n-th one before it,
531 * i.e., move backward by n code points.
532 * (Pre-decrementing backward iteration.)
533 * The input offset may be the same as the string length.
534 * "Unsafe" macro, assumes well-formed UTF-16.
536 * @param s const UChar * string
537 * @param i string offset
538 * @param n number of code points to skip
542 #define U16_BACK_N_UNSAFE(s, i, n) { \
545 U16_BACK_1_UNSAFE(s, i); \
551 * Move the string offset from one code point boundary to the n-th one before it,
552 * i.e., move backward by n code points.
553 * (Pre-decrementing backward iteration.)
554 * The input offset may be the same as the string length.
555 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
557 * @param s const UChar * string
558 * @param start start of string
559 * @param i string offset, must be start<i
560 * @param n number of code points to skip
561 * @see U16_BACK_N_UNSAFE
564 #define U16_BACK_N(s, start, i, n) { \
566 while(__N>0 && (i)>(start)) { \
567 U16_BACK_1(s, start, i); \
573 * Adjust a random-access offset to a code point boundary after a code point.
574 * If the offset is behind the lead surrogate of a surrogate pair,
575 * then the offset is incremented.
576 * Otherwise, it is not modified.
577 * The input offset may be the same as the string length.
578 * "Unsafe" macro, assumes well-formed UTF-16.
580 * @param s const UChar * string
581 * @param i string offset
582 * @see U16_SET_CP_LIMIT
585 #define U16_SET_CP_LIMIT_UNSAFE(s, i) { \
586 if(U16_IS_LEAD((s)[(i)-1])) { \
592 * Adjust a random-access offset to a code point boundary after a code point.
593 * If the offset is behind the lead surrogate of a surrogate pair,
594 * then the offset is incremented.
595 * Otherwise, it is not modified.
596 * The input offset may be the same as the string length.
597 * "Safe" macro, handles unpaired surrogates and checks for string boundaries.
599 * @param s const UChar * string
600 * @param start starting string offset (usually 0)
601 * @param i string offset, start<=i<=length
602 * @param length string length
603 * @see U16_SET_CP_LIMIT_UNSAFE
606 #define U16_SET_CP_LIMIT(s, start, i, length) { \
607 if((start)<(i) && (i)<(length) && U16_IS_LEAD((s)[(i)-1]) && U16_IS_TRAIL((s)[i])) { \