chiark / gitweb /
Update grapheme break algorithm to Unicode 5.1.0 (based on UAX #29)
[disorder] / lib / unicode.c
CommitLineData
e5a5a138
RK
1/*
2 * This file is part of DisOrder
8e93ddd1 3 * Copyright (C) 2007, 2009 Richard Kettlewell
e5a5a138 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
e5a5a138 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
e5a5a138 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
e5a5a138 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
e5a5a138
RK
17 */
18/** @file lib/unicode.c
19 * @brief Unicode support functions
20 *
21 * Here by UTF-8 and UTF-8 we mean the encoding forms of those names (not the
35b651f0
RK
22 * encoding schemes). The primary encoding form is UTF-32 but convenience
23 * wrappers using UTF-8 are provided for a number of functions.
e5a5a138
RK
24 *
25 * The idea is that all the strings that hit the database will be in a
26 * particular normalization form, and for the search and tags database
27 * in case-folded form, so they can be naively compared within the
28 * database code.
29 *
30 * As the code stands this guarantee is not well met!
0ae60b83
RK
31 *
32 * Subpages:
33 * - @ref utf32props
34 * - @ref utftransform
35 * - @ref utf32iterator
36 * - @ref utf32
37 * - @ref utf8
e5a5a138
RK
38 */
39
05b75f8d 40#include "common.h"
e5a5a138
RK
41
42#include "mem.h"
43#include "vector.h"
44#include "unicode.h"
45#include "unidata.h"
46
092f426f
RK
47/** @defgroup utf32props Unicode Code Point Properties */
48/*@{*/
49
50static const struct unidata *utf32__unidata_hard(uint32_t c);
51
52/** @brief Find definition of code point @p c
53 * @param c Code point
54 * @return Pointer to @ref unidata structure for @p c
55 *
56 * @p c can be any 32-bit value, a sensible value will be returned regardless.
57 * The returned pointer is NOT guaranteed to be unique to @p c.
58 */
59static inline const struct unidata *utf32__unidata(uint32_t c) {
60 /* The bottom half of the table contains almost everything of interest
61 * and we can just return the right thing straight away */
62 if(c < UNICODE_BREAK_START)
63 return &unidata[c / UNICODE_MODULUS][c % UNICODE_MODULUS];
64 else
65 return utf32__unidata_hard(c);
66}
67
68/** @brief Find definition of code point @p c
69 * @param c Code point
70 * @return Pointer to @ref unidata structure for @p c
71 *
72 * @p c can be any 32-bit value, a sensible value will be returned regardless.
73 * The returned pointer is NOT guaranteed to be unique to @p c.
74 *
75 * Don't use this function (although it will work fine) - use utf32__unidata()
76 * instead.
77 */
78static const struct unidata *utf32__unidata_hard(uint32_t c) {
79 if(c < UNICODE_BREAK_START)
80 return &unidata[c / UNICODE_MODULUS][c % UNICODE_MODULUS];
81 /* Within the break everything is unassigned */
82 if(c < UNICODE_BREAK_END)
83 return utf32__unidata(0xFFFF); /* guaranteed to be Cn */
84 /* Planes 15 and 16 are (mostly) private use */
85 if((c >= 0xF0000 && c <= 0xFFFFD)
86 || (c >= 0x100000 && c <= 0x10FFFD))
87 return utf32__unidata(0xE000); /* first Co code point */
88 /* Everything else above the break top is unassigned */
89 if(c >= UNICODE_BREAK_TOP)
90 return utf32__unidata(0xFFFF); /* guaranteed to be Cn */
91 /* Currently the rest is language tags and variation selectors */
92 c -= (UNICODE_BREAK_END - UNICODE_BREAK_START);
93 return &unidata[c / UNICODE_MODULUS][c % UNICODE_MODULUS];
94}
95
96/** @brief Return the combining class of @p c
97 * @param c Code point
98 * @return Combining class of @p c
99 *
100 * @p c can be any 32-bit value, a sensible value will be returned regardless.
101 */
102static inline int utf32__combining_class(uint32_t c) {
103 return utf32__unidata(c)->ccc;
104}
105
3c82b504
RK
106/** @brief Return the combining class of @p c
107 * @param c Code point
108 * @return Combining class of @p c
109 *
110 * @p c can be any 32-bit value, a sensible value will be returned regardless.
111 */
112int utf32_combining_class(uint32_t c) {
113 return utf32__combining_class(c);
114}
115
092f426f 116/** @brief Return the General_Category value for @p c
0ae60b83 117 * @param c Code point
092f426f
RK
118 * @return General_Category property value
119 *
120 * @p c can be any 32-bit value, a sensible value will be returned regardless.
121 */
122static inline enum unicode_General_Category utf32__general_category(uint32_t c) {
123 return utf32__unidata(c)->general_category;
124}
125
126/** @brief Determine Grapheme_Break property
127 * @param c Code point
128 * @return Grapheme_Break property value of @p c
129 *
130 * @p c can be any 32-bit value, a sensible value will be returned regardless.
131 */
132static inline enum unicode_Grapheme_Break utf32__grapheme_break(uint32_t c) {
133 return utf32__unidata(c)->grapheme_break;
134}
135
136/** @brief Determine Word_Break property
137 * @param c Code point
138 * @return Word_Break property value of @p c
139 *
140 * @p c can be any 32-bit value, a sensible value will be returned regardless.
141 */
142static inline enum unicode_Word_Break utf32__word_break(uint32_t c) {
143 return utf32__unidata(c)->word_break;
144}
145
146/** @brief Determine Sentence_Break property
147 * @param c Code point
148 * @return Word_Break property value of @p c
149 *
150 * @p c can be any 32-bit value, a sensible value will be returned regardless.
151 */
152static inline enum unicode_Sentence_Break utf32__sentence_break(uint32_t c) {
153 return utf32__unidata(c)->sentence_break;
154}
155
156/** @brief Return true if @p c is ignorable for boundary specifications
157 * @param wb Word break property value
158 * @return non-0 if @p wb is unicode_Word_Break_Extend or unicode_Word_Break_Format
159 */
160static inline int utf32__boundary_ignorable(enum unicode_Word_Break wb) {
161 return (wb == unicode_Word_Break_Extend
162 || wb == unicode_Word_Break_Format);
163}
164
f98fcddb
RK
165/** @brief Return the canonical decomposition of @p c
166 * @param c Code point
167 * @return 0-terminated canonical decomposition, or 0
168 */
169static inline const uint32_t *utf32__decomposition_canon(uint32_t c) {
170 const struct unidata *const data = utf32__unidata(c);
171 const uint32_t *const decomp = data->decomp;
172
173 if(decomp && !(data->flags & unicode_compatibility_decomposition))
174 return decomp;
175 else
176 return 0;
177}
178
179/** @brief Return the compatibility decomposition of @p c
180 * @param c Code point
181 * @return 0-terminated decomposition, or 0
182 */
183static inline const uint32_t *utf32__decomposition_compat(uint32_t c) {
184 return utf32__unidata(c)->decomp;
185}
186
092f426f 187/*@}*/
e5a5a138
RK
188/** @defgroup utftransform Functions that transform between different Unicode encoding forms */
189/*@{*/
190
191/** @brief Convert UTF-32 to UTF-8
192 * @param s Source string
193 * @param ns Length of source string in code points
194 * @param ndp Where to store length of destination string (or NULL)
195 * @return Newly allocated destination string or NULL on error
196 *
56fd389c
RK
197 * If the UTF-32 is not valid then NULL is returned. A UTF-32 code point is
198 * invalid if:
e5a5a138
RK
199 * - it codes for a UTF-16 surrogate
200 * - it codes for a value outside the unicode code space
201 *
56fd389c
RK
202 * The return value is always 0-terminated. The value returned via @p *ndp
203 * does not include the terminator.
e5a5a138
RK
204 */
205char *utf32_to_utf8(const uint32_t *s, size_t ns, size_t *ndp) {
206 struct dynstr d;
207 uint32_t c;
208
209 dynstr_init(&d);
210 while(ns > 0) {
211 c = *s++;
212 if(c < 0x80)
213 dynstr_append(&d, c);
214 else if(c < 0x0800) {
215 dynstr_append(&d, 0xC0 | (c >> 6));
216 dynstr_append(&d, 0x80 | (c & 0x3F));
217 } else if(c < 0x10000) {
56fd389c 218 if(c >= 0xD800 && c <= 0xDFFF)
e5a5a138
RK
219 goto error;
220 dynstr_append(&d, 0xE0 | (c >> 12));
221 dynstr_append(&d, 0x80 | ((c >> 6) & 0x3F));
222 dynstr_append(&d, 0x80 | (c & 0x3F));
223 } else if(c < 0x110000) {
224 dynstr_append(&d, 0xF0 | (c >> 18));
225 dynstr_append(&d, 0x80 | ((c >> 12) & 0x3F));
226 dynstr_append(&d, 0x80 | ((c >> 6) & 0x3F));
227 dynstr_append(&d, 0x80 | (c & 0x3F));
228 } else
229 goto error;
230 --ns;
231 }
232 dynstr_terminate(&d);
233 if(ndp)
234 *ndp = d.nvec;
235 return d.vec;
236error:
237 xfree(d.vec);
238 return 0;
239}
240
241/** @brief Convert UTF-8 to UTF-32
242 * @param s Source string
243 * @param ns Length of source string in code points
244 * @param ndp Where to store length of destination string (or NULL)
f98fcddb 245 * @return Newly allocated destination string or NULL on error
e5a5a138 246 *
56fd389c
RK
247 * The return value is always 0-terminated. The value returned via @p *ndp
248 * does not include the terminator.
e5a5a138
RK
249 *
250 * If the UTF-8 is not valid then NULL is returned. A UTF-8 sequence
251 * for a code point is invalid if:
252 * - it is not the shortest possible sequence for the code point
253 * - it codes for a UTF-16 surrogate
254 * - it codes for a value outside the unicode code space
255 */
256uint32_t *utf8_to_utf32(const char *s, size_t ns, size_t *ndp) {
257 struct dynstr_ucs4 d;
32b158f2 258 uint32_t c32;
e5a5a138 259 const uint8_t *ss = (const uint8_t *)s;
32b158f2 260 int n;
e5a5a138
RK
261
262 dynstr_ucs4_init(&d);
263 while(ns > 0) {
32b158f2
RK
264 const struct unicode_utf8_row *const r = &unicode_utf8_valid[*ss];
265 if(r->count <= ns) {
266 switch(r->count) {
267 case 1:
268 c32 = *ss;
269 break;
270 case 2:
271 if(ss[1] < r->min2 || ss[1] > r->max2)
272 goto error;
273 c32 = *ss & 0x1F;
274 break;
275 case 3:
276 if(ss[1] < r->min2 || ss[1] > r->max2)
277 goto error;
278 c32 = *ss & 0x0F;
279 break;
280 case 4:
281 if(ss[1] < r->min2 || ss[1] > r->max2)
282 goto error;
283 c32 = *ss & 0x07;
284 break;
285 default:
286 goto error;
287 }
e5a5a138
RK
288 } else
289 goto error;
32b158f2
RK
290 for(n = 1; n < r->count; ++n) {
291 if(ss[n] < 0x80 || ss[n] > 0xBF)
292 goto error;
293 c32 = (c32 << 6) | (ss[n] & 0x3F);
294 }
e5a5a138 295 dynstr_ucs4_append(&d, c32);
32b158f2
RK
296 ss += r->count;
297 ns -= r->count;
e5a5a138
RK
298 }
299 dynstr_ucs4_terminate(&d);
300 if(ndp)
301 *ndp = d.nvec;
302 return d.vec;
303error:
304 xfree(d.vec);
305 return 0;
306}
307
18cda350
RK
308/** @brief Test whether [s,s+ns) is valid UTF-8
309 * @param s Start of string
310 * @param ns Length of string
311 * @return non-0 if @p s is valid UTF-8, 0 if it is not valid
312 *
313 * This function is intended to be much faster than calling utf8_to_utf32() and
314 * throwing away the result.
315 */
316int utf8_valid(const char *s, size_t ns) {
317 const uint8_t *ss = (const uint8_t *)s;
318 while(ns > 0) {
319 const struct unicode_utf8_row *const r = &unicode_utf8_valid[*ss];
320 if(r->count <= ns) {
321 switch(r->count) {
322 case 1:
323 break;
324 case 2:
325 if(ss[1] < r->min2 || ss[1] > r->max2)
326 return 0;
327 break;
328 case 3:
329 if(ss[1] < r->min2 || ss[1] > r->max2)
330 return 0;
331 if(ss[2] < 0x80 || ss[2] > 0xBF)
332 return 0;
333 break;
334 case 4:
335 if(ss[1] < r->min2 || ss[1] > r->max2)
336 return 0;
337 if(ss[2] < 0x80 || ss[2] > 0xBF)
338 return 0;
339 if(ss[3] < 0x80 || ss[3] > 0xBF)
340 return 0;
341 break;
342 default:
343 return 0;
344 }
345 } else
346 return 0;
347 ss += r->count;
348 ns -= r->count;
349 }
350 return 1;
351}
352
092f426f
RK
353/*@}*/
354/** @defgroup utf32iterator UTF-32 string iterators */
355/*@{*/
356
357struct utf32_iterator_data {
358 /** @brief Start of string */
359 const uint32_t *s;
360
361 /** @brief Length of string */
362 size_t ns;
363
364 /** @brief Current position */
365 size_t n;
366
367 /** @brief Last two non-ignorable characters or (uint32_t)-1
368 *
369 * last[1] is the non-Extend/Format character just before position @p n;
370 * last[0] is the one just before that.
371 *
372 * Exception 1: if there is no such non-Extend/Format character then an
373 * Extend/Format character is accepted instead.
374 *
375 * Exception 2: if there is no such character even taking that into account
376 * the value is (uint32_t)-1.
377 */
378 uint32_t last[2];
092f426f 379
c85b7022
RK
380 /** @brief Tailoring for Word_Break */
381 unicode_property_tailor *word_break;
382};
092f426f
RK
383
384/** @brief Initialize an internal private iterator
385 * @param it Iterator
386 * @param s Start of string
387 * @param ns Length of string
388 * @param n Absolute position
389 */
390static void utf32__iterator_init(utf32_iterator it,
391 const uint32_t *s, size_t ns, size_t n) {
392 it->s = s;
393 it->ns = ns;
394 it->n = 0;
395 it->last[0] = it->last[1] = -1;
c85b7022 396 it->word_break = 0;
b21a155c 397 utf32_iterator_set(it, n);
092f426f
RK
398}
399
c85b7022
RK
400/** @brief Create a new iterator pointing at the start of a string
401 * @param s Start of string
402 * @param ns Length of string
403 * @return New iterator
404 */
405utf32_iterator utf32_iterator_new(const uint32_t *s, size_t ns) {
406 utf32_iterator it = xmalloc(sizeof *it);
407 utf32__iterator_init(it, s, ns, 0);
408 return it;
409}
410
411/** @brief Tailor this iterator's interpretation of the Word_Break property.
412 * @param it Iterator
413 * @param pt Property tailor function or NULL
414 *
415 * After calling this the iterator will call @p pt to determine the Word_Break
416 * property of each code point. If it returns -1 the default value will be
417 * used otherwise the returned value will be used.
418 *
419 * @p pt can be NULL to revert to the default value of the property.
420 *
421 * It is safe to call this function at any time; the iterator's internal state
422 * will be reset to suit the new tailoring.
423 */
424void utf32_iterator_tailor_word_break(utf32_iterator it,
425 unicode_property_tailor *pt) {
426 it->word_break = pt;
427 utf32_iterator_set(it, it->n);
428}
429
430static inline enum unicode_Word_Break utf32__iterator_word_break(utf32_iterator it,
431 uint32_t c) {
432 if(!it->word_break)
433 return utf32__word_break(c);
434 else {
435 const int t = it->word_break(c);
436
437 if(t < 0)
438 return utf32__word_break(c);
439 else
440 return t;
441 }
442}
443
092f426f
RK
444/** @brief Destroy an iterator
445 * @param it Iterator
446 */
447void utf32_iterator_destroy(utf32_iterator it) {
448 xfree(it);
449}
450
451/** @brief Find the current position of an interator
452 * @param it Iterator
453 */
454size_t utf32_iterator_where(utf32_iterator it) {
455 return it->n;
456}
457
458/** @brief Set an iterator's absolute position
459 * @param it Iterator
460 * @param n Absolute position
461 * @return 0 on success, non-0 on error
462 *
463 * It is an error to position the iterator outside the string (but acceptable
464 * to point it at the hypothetical post-final character). If an invalid value
465 * of @p n is specified then the iterator is not changed.
f98fcddb
RK
466 *
467 * This function works by backing up and then advancing to reconstruct the
468 * iterator's internal state for position @p n. The worst case will be O(n)
469 * time complexity (with a worse constant factor that utf32_iterator_advance())
470 * but the typical case is essentially constant-time.
092f426f
RK
471 */
472int utf32_iterator_set(utf32_iterator it, size_t n) {
5617aaff
RK
473 /* We can't just jump to position @p n; the @p last[] values will be wrong.
474 * What we need is to jump a bit behind @p n and then advance forward,
475 * updating @p last[] along the way. How far back? We need to cross two
476 * non-ignorable code points as we advance forwards, so we'd better pass two
477 * such characters on the way back (if such are available).
478 */
b21a155c 479 size_t m;
5617aaff
RK
480
481 if(n > it->ns) /* range check */
092f426f 482 return -1;
b21a155c
RK
483 /* Walk backwards skipping ignorable code points */
484 m = n;
c85b7022
RK
485 while(m > 0
486 && (utf32__boundary_ignorable(utf32__iterator_word_break(it,
487 it->s[m-1]))))
b21a155c
RK
488 --m;
489 /* Either m=0 or s[m-1] is not ignorable */
490 if(m > 0) {
491 --m;
492 /* s[m] is our first non-ignorable code; look for a second in the same
493 way **/
c85b7022
RK
494 while(m > 0
495 && (utf32__boundary_ignorable(utf32__iterator_word_break(it,
496 it->s[m-1]))))
5617aaff 497 --m;
b21a155c
RK
498 /* Either m=0 or s[m-1] is not ignorable */
499 if(m > 0)
500 --m;
501 }
502 it->last[0] = it->last[1] = -1;
5617aaff
RK
503 it->n = m;
504 return utf32_iterator_advance(it, n - m);
092f426f
RK
505}
506
507/** @brief Advance an iterator
508 * @param it Iterator
509 * @param count Number of code points to advance by
510 * @return 0 on success, non-0 on error
511 *
512 * It is an error to advance an iterator beyond the hypothetical post-final
513 * character of the string. If an invalid value of @p n is specified then the
514 * iterator is not changed.
515 *
516 * This function has O(n) time complexity: it works by advancing naively
517 * forwards through the string.
518 */
519int utf32_iterator_advance(utf32_iterator it, size_t count) {
520 if(count <= it->ns - it->n) {
521 while(count > 0) {
522 const uint32_t c = it->s[it->n];
c85b7022 523 const enum unicode_Word_Break wb = utf32__iterator_word_break(it, c);
092f426f
RK
524 if(it->last[1] == (uint32_t)-1
525 || !utf32__boundary_ignorable(wb)) {
526 it->last[0] = it->last[1];
527 it->last[1] = c;
528 }
529 ++it->n;
530 --count;
531 }
532 return 0;
533 } else
534 return -1;
535}
536
537/** @brief Find the current code point
538 * @param it Iterator
539 * @return Current code point or 0
540 *
541 * If the iterator points at the hypothetical post-final character of the
542 * string then 0 is returned. NB that this doesn't mean that there aren't any
543 * 0 code points inside the string!
544 */
545uint32_t utf32_iterator_code(utf32_iterator it) {
546 if(it->n < it->ns)
547 return it->s[it->n];
548 else
549 return 0;
550}
551
552/** @brief Test for a grapheme boundary
553 * @param it Iterator
554 * @return Non-0 if pointing just after a grapheme boundary, otherwise 0
f98fcddb
RK
555 *
556 * This function identifies default grapheme cluster boundaries as described in
557 * UAX #29 s3. It returns non-0 if @p it points at the code point just after a
558 * grapheme cluster boundary (including the hypothetical code point just after
559 * the end of the string).
092f426f
RK
560 */
561int utf32_iterator_grapheme_boundary(utf32_iterator it) {
562 uint32_t before, after;
563 enum unicode_Grapheme_Break gbbefore, gbafter;
564 /* GB1 and GB2 */
565 if(it->n == 0 || it->n == it->ns)
566 return 1;
567 /* Now we know that s[n-1] and s[n] are safe to inspect */
568 /* GB3 */
569 before = it->s[it->n-1];
570 after = it->s[it->n];
571 if(before == 0x000D && after == 0x000A)
572 return 0;
573 gbbefore = utf32__grapheme_break(before);
574 gbafter = utf32__grapheme_break(after);
575 /* GB4 */
576 if(gbbefore == unicode_Grapheme_Break_Control
577 || before == 0x000D
578 || before == 0x000A)
579 return 1;
580 /* GB5 */
581 if(gbafter == unicode_Grapheme_Break_Control
582 || after == 0x000D
583 || after == 0x000A)
584 return 1;
585 /* GB6 */
586 if(gbbefore == unicode_Grapheme_Break_L
587 && (gbafter == unicode_Grapheme_Break_L
588 || gbafter == unicode_Grapheme_Break_V
589 || gbafter == unicode_Grapheme_Break_LV
590 || gbafter == unicode_Grapheme_Break_LVT))
591 return 0;
592 /* GB7 */
593 if((gbbefore == unicode_Grapheme_Break_LV
594 || gbbefore == unicode_Grapheme_Break_V)
595 && (gbafter == unicode_Grapheme_Break_V
596 || gbafter == unicode_Grapheme_Break_T))
597 return 0;
598 /* GB8 */
599 if((gbbefore == unicode_Grapheme_Break_LVT
600 || gbbefore == unicode_Grapheme_Break_T)
601 && gbafter == unicode_Grapheme_Break_T)
602 return 0;
603 /* GB9 */
604 if(gbafter == unicode_Grapheme_Break_Extend)
605 return 0;
e2e88ad8
RK
606 /* GB9a */
607 if(gbafter == unicode_Grapheme_Break_SpacingMark)
608 return 0;
609 /* GB9b */
610 if(gbbefore == unicode_Grapheme_Break_Prepend)
611 return 0;
092f426f
RK
612 /* GB10 */
613 return 1;
614
615}
616
617/** @brief Test for a word boundary
618 * @param it Iterator
619 * @return Non-0 if pointing just after a word boundary, otherwise 0
f98fcddb
RK
620 *
621 * This function identifies default word boundaries as described in UAX #29 s4.
622 * It returns non-0 if @p it points at the code point just after a word
623 * boundary (including the hypothetical code point just after the end of the
624 * string) and 0 otherwise.
092f426f
RK
625 */
626int utf32_iterator_word_boundary(utf32_iterator it) {
627 enum unicode_Word_Break twobefore, before, after, twoafter;
628 size_t nn;
629
630 /* WB1 and WB2 */
631 if(it->n == 0 || it->n == it->ns)
632 return 1;
633 /* WB3 */
634 if(it->s[it->n-1] == 0x000D && it->s[it->n] == 0x000A)
635 return 0;
636 /* WB4 */
637 /* (!Sep) x (Extend|Format) as in UAX #29 s6.2 */
638 if(utf32__sentence_break(it->s[it->n-1]) != unicode_Sentence_Break_Sep
c85b7022 639 && utf32__boundary_ignorable(utf32__iterator_word_break(it, it->s[it->n])))
092f426f
RK
640 return 0;
641 /* Gather the property values we'll need for the rest of the test taking the
642 * s6.2 changes into account */
643 /* First we look at the code points after the proposed boundary */
644 nn = it->n; /* <it->ns */
c85b7022 645 after = utf32__iterator_word_break(it, it->s[nn++]);
092f426f
RK
646 if(!utf32__boundary_ignorable(after)) {
647 /* X (Extend|Format)* -> X */
648 while(nn < it->ns
c85b7022
RK
649 && utf32__boundary_ignorable(utf32__iterator_word_break(it,
650 it->s[nn])))
092f426f
RK
651 ++nn;
652 }
653 /* It's possible now that nn=ns */
654 if(nn < it->ns)
c85b7022 655 twoafter = utf32__iterator_word_break(it, it->s[nn]);
092f426f
RK
656 else
657 twoafter = unicode_Word_Break_Other;
658
659 /* We've already recorded the non-ignorable code points before the proposed
660 * boundary */
c85b7022
RK
661 before = utf32__iterator_word_break(it, it->last[1]);
662 twobefore = utf32__iterator_word_break(it, it->last[0]);
092f426f
RK
663
664 /* WB5 */
665 if(before == unicode_Word_Break_ALetter
666 && after == unicode_Word_Break_ALetter)
667 return 0;
668 /* WB6 */
669 if(before == unicode_Word_Break_ALetter
670 && after == unicode_Word_Break_MidLetter
671 && twoafter == unicode_Word_Break_ALetter)
672 return 0;
673 /* WB7 */
674 if(twobefore == unicode_Word_Break_ALetter
675 && before == unicode_Word_Break_MidLetter
676 && after == unicode_Word_Break_ALetter)
677 return 0;
c85b7022 678 /* WB8 */
092f426f
RK
679 if(before == unicode_Word_Break_Numeric
680 && after == unicode_Word_Break_Numeric)
681 return 0;
682 /* WB9 */
683 if(before == unicode_Word_Break_ALetter
684 && after == unicode_Word_Break_Numeric)
685 return 0;
686 /* WB10 */
687 if(before == unicode_Word_Break_Numeric
688 && after == unicode_Word_Break_ALetter)
689 return 0;
690 /* WB11 */
691 if(twobefore == unicode_Word_Break_Numeric
692 && before == unicode_Word_Break_MidNum
693 && after == unicode_Word_Break_Numeric)
694 return 0;
695 /* WB12 */
696 if(before == unicode_Word_Break_Numeric
697 && after == unicode_Word_Break_MidNum
698 && twoafter == unicode_Word_Break_Numeric)
699 return 0;
700 /* WB13 */
701 if(before == unicode_Word_Break_Katakana
702 && after == unicode_Word_Break_Katakana)
703 return 0;
704 /* WB13a */
705 if((before == unicode_Word_Break_ALetter
706 || before == unicode_Word_Break_Numeric
707 || before == unicode_Word_Break_Katakana
708 || before == unicode_Word_Break_ExtendNumLet)
709 && after == unicode_Word_Break_ExtendNumLet)
710 return 0;
711 /* WB13b */
712 if(before == unicode_Word_Break_ExtendNumLet
713 && (after == unicode_Word_Break_ALetter
714 || after == unicode_Word_Break_Numeric
715 || after == unicode_Word_Break_Katakana))
716 return 0;
717 /* WB14 */
718 return 1;
719}
720
e5a5a138
RK
721/*@}*/
722/** @defgroup utf32 Functions that operate on UTF-32 strings */
723/*@{*/
724
725/** @brief Return the length of a 0-terminated UTF-32 string
726 * @param s Pointer to 0-terminated string
727 * @return Length of string in code points (excluding terminator)
728 *
56fd389c 729 * Unlike the conversion functions no validity checking is done on the string.
e5a5a138
RK
730 */
731size_t utf32_len(const uint32_t *s) {
732 const uint32_t *t = s;
733
734 while(*t)
735 ++t;
736 return (size_t)(t - s);
737}
738
e5a5a138
RK
739/** @brief Stably sort [s,s+ns) into descending order of combining class
740 * @param s Start of array
741 * @param ns Number of elements, must be at least 1
742 * @param buffer Buffer of at least @p ns elements
743 */
744static void utf32__sort_ccc(uint32_t *s, size_t ns, uint32_t *buffer) {
745 uint32_t *a, *b, *bp;
746 size_t na, nb;
747
748 switch(ns) {
749 case 1: /* 1-element array is always sorted */
750 return;
751 case 2: /* 2-element arrays are trivial to sort */
752 if(utf32__combining_class(s[0]) > utf32__combining_class(s[1])) {
753 uint32_t tmp = s[0];
754 s[0] = s[1];
755 s[1] = tmp;
756 }
757 return;
758 default:
759 /* Partition the array */
760 na = ns / 2;
761 nb = ns - na;
762 a = s;
763 b = s + na;
764 /* Sort the two halves of the array */
765 utf32__sort_ccc(a, na, buffer);
766 utf32__sort_ccc(b, nb, buffer);
767 /* Merge them back into one, via the buffer */
768 bp = buffer;
769 while(na > 0 && nb > 0) {
16506c9d 770 /* We want ascending order of combining class (hence <)
e5a5a138
RK
771 * and we want stability within combining classes (hence <=)
772 */
773 if(utf32__combining_class(*a) <= utf32__combining_class(*b)) {
774 *bp++ = *a++;
775 --na;
776 } else {
777 *bp++ = *b++;
778 --nb;
779 }
780 }
781 while(na > 0) {
782 *bp++ = *a++;
783 --na;
784 }
785 while(nb > 0) {
786 *bp++ = *b++;
787 --nb;
788 }
789 memcpy(s, buffer, ns * sizeof(uint32_t));
790 return;
791 }
792}
793
794/** @brief Put combining characters into canonical order
795 * @param s Pointer to UTF-32 string
796 * @param ns Length of @p s
f98fcddb 797 * @return 0 on success, non-0 on error
e5a5a138 798 *
56fd389c
RK
799 * @p s is modified in-place. See Unicode 5.0 s3.11 for details of the
800 * ordering.
e5a5a138 801 *
56fd389c 802 * Currently we only support a maximum of 1024 combining characters after each
f98fcddb 803 * base character. If this limit is exceeded then a non-0 value is returned.
e5a5a138
RK
804 */
805static int utf32__canonical_ordering(uint32_t *s, size_t ns) {
806 size_t nc;
807 uint32_t buffer[1024];
808
809 /* The ordering amounts to a stable sort of each contiguous group of
810 * characters with non-0 combining class. */
811 while(ns > 0) {
812 /* Skip non-combining characters */
813 if(utf32__combining_class(*s) == 0) {
814 ++s;
815 --ns;
816 continue;
817 }
818 /* We must now have at least one combining character; see how many
819 * there are */
820 for(nc = 1; nc < ns && utf32__combining_class(s[nc]) != 0; ++nc)
821 ;
822 if(nc > 1024)
823 return -1;
824 /* Sort the array */
825 utf32__sort_ccc(s, nc, buffer);
826 s += nc;
827 ns -= nc;
828 }
829 return 0;
830}
831
832/* Magic numbers from UAX #15 s16 */
833#define SBase 0xAC00
834#define LBase 0x1100
835#define VBase 0x1161
836#define TBase 0x11A7
837#define LCount 19
838#define VCount 21
839#define TCount 28
840#define NCount (VCount * TCount)
841#define SCount (LCount * NCount)
842
843/** @brief Guts of the decomposition lookup functions */
844#define utf32__decompose_one_generic(WHICH) do { \
f98fcddb 845 const uint32_t *dc = utf32__decomposition_##WHICH(c); \
e5a5a138
RK
846 if(dc) { \
847 /* Found a canonical decomposition in the table */ \
848 while(*dc) \
849 utf32__decompose_one_##WHICH(d, *dc++); \
850 } else if(c >= SBase && c < SBase + SCount) { \
851 /* Mechanically decomposable Hangul syllable (UAX #15 s16) */ \
852 const uint32_t SIndex = c - SBase; \
853 const uint32_t L = LBase + SIndex / NCount; \
854 const uint32_t V = VBase + (SIndex % NCount) / TCount; \
855 const uint32_t T = TBase + SIndex % TCount; \
856 dynstr_ucs4_append(d, L); \
857 dynstr_ucs4_append(d, V); \
858 if(T != TBase) \
859 dynstr_ucs4_append(d, T); \
860 } else \
861 /* Equal to own canonical decomposition */ \
862 dynstr_ucs4_append(d, c); \
863} while(0)
864
865/** @brief Recursively compute the canonical decomposition of @p c
866 * @param d Dynamic string to store decomposition in
867 * @param c Code point to decompose (must be a valid!)
f98fcddb 868 * @return 0 on success, non-0 on error
e5a5a138
RK
869 */
870static void utf32__decompose_one_canon(struct dynstr_ucs4 *d, uint32_t c) {
871 utf32__decompose_one_generic(canon);
872}
873
874/** @brief Recursively compute the compatibility decomposition of @p c
875 * @param d Dynamic string to store decomposition in
876 * @param c Code point to decompose (must be a valid!)
f98fcddb 877 * @return 0 on success, non-0 on error
e5a5a138
RK
878 */
879static void utf32__decompose_one_compat(struct dynstr_ucs4 *d, uint32_t c) {
880 utf32__decompose_one_generic(compat);
881}
882
16506c9d
RK
883/** @brief Magic utf32__compositions() return value for Hangul Choseong */
884static const uint32_t utf32__hangul_L[1];
885
886/** @brief Return the list of compositions that @p c starts
887 * @param c Starter code point
888 * @return Composition list or NULL
889 *
890 * For Hangul leading (Choseong) jamo we return the special value
891 * utf32__hangul_L. These code points are not listed as the targets of
892 * canonical decompositions (make-unidata checks) so there is no confusion with
893 * real decompositions here.
894 */
895static const uint32_t *utf32__compositions(uint32_t c) {
896 const uint32_t *compositions = utf32__unidata(c)->composed;
897
898 if(compositions)
899 return compositions;
900 /* Special-casing for Hangul */
901 switch(utf32__grapheme_break(c)) {
902 default:
903 return 0;
904 case unicode_Grapheme_Break_L:
905 return utf32__hangul_L;
906 }
907}
908
909/** @brief Composition step
910 * @param s Start of string
911 * @param ns Length of string
912 * @return New length of string
913 *
914 * This is called from utf32__decompose_generic() to compose the result string
915 * in place.
916 */
917static size_t utf32__compose(uint32_t *s, size_t ns) {
918 const uint32_t *compositions;
919 uint32_t *start = s, *t = s, *tt, cc;
920
921 while(ns > 0) {
922 uint32_t starter = *s++;
923 int block_starters = 0;
924 --ns;
925 /* We don't attempt to compose the following things:
926 * - final characters whatever kind they are
927 * - non-starter characters
928 * - starters that don't take part in a canonical decomposition mapping
929 */
930 if(ns == 0
931 || utf32__combining_class(starter)
932 || !(compositions = utf32__compositions(starter))) {
933 *t++ = starter;
934 continue;
935 }
936 if(compositions != utf32__hangul_L) {
937 /* Where we'll put the eventual starter */
938 tt = t++;
939 do {
940 /* See if we can find composition of starter+*s */
941 const uint32_t cchar = *s, *cp = compositions;
942 while((cc = *cp++)) {
943 const uint32_t *decomp = utf32__decomposition_canon(cc);
944 /* We know decomp[0] == starter */
945 if(decomp[1] == cchar)
946 break;
947 }
948 if(cc) {
949 /* Found a composition: cc decomposes to starter,*s */
950 starter = cc;
951 compositions = utf32__compositions(starter);
952 ++s;
953 --ns;
954 } else {
955 /* No composition found. */
956 const int class = utf32__combining_class(*s);
957 if(class) {
958 /* Transfer the uncomposable combining character to the output */
959 *t++ = *s++;
960 --ns;
961 /* All the combining characters of the same class of the
962 * uncomposable character are blocked by it, but there may be
963 * others of higher class later. We eat the uncomposable and
964 * blocked characters and go back round the loop for that higher
965 * class. */
966 while(ns > 0 && utf32__combining_class(*s) == class) {
967 *t++ = *s++;
968 --ns;
969 }
970 /* Block any subsequent starters */
971 block_starters = 1;
972 } else {
973 /* The uncombinable character is itself a starter, so we don't
974 * transfer it to the output but instead go back round the main
975 * loop. */
976 break;
977 }
978 }
979 /* Keep going while there are still characters and the starter takes
980 * part in some composition */
981 } while(ns > 0 && compositions
982 && (!block_starters || utf32__combining_class(*s)));
983 /* Store any remaining combining characters */
984 while(ns > 0 && utf32__combining_class(*s)) {
985 *t++ = *s++;
986 --ns;
987 }
988 /* Store the resulting starter */
989 *tt = starter;
990 } else {
991 /* Special-casing for Hangul
992 *
993 * If there are combining characters between the L and the V then they
994 * will block the V and so no composition happens. Similarly combining
995 * characters between V and T will block the T and so we only get as far
996 * as LV.
997 */
998 if(utf32__grapheme_break(*s) == unicode_Grapheme_Break_V) {
999 const uint32_t V = *s++;
1000 const uint32_t LIndex = starter - LBase;
1001 const uint32_t VIndex = V - VBase;
1002 uint32_t TIndex;
1003 --ns;
1004 if(ns > 0
1005 && utf32__grapheme_break(*s) == unicode_Grapheme_Break_T) {
1006 /* We have an L V T sequence */
1007 const uint32_t T = *s++;
1008 TIndex = T - TBase;
1009 --ns;
1010 } else
1011 /* It's just L V */
1012 TIndex = 0;
1013 /* Compose to LVT or LV as appropriate */
1014 starter = (LIndex * VCount + VIndex) * TCount + TIndex + SBase;
1015 } /* else we only have L or LV and no V or T */
1016 *t++ = starter;
1017 /* There could be some combining characters that belong to the V or T.
1018 * These will be treated as non-starter characters at the top of the loop
1019 * and thuss transferred to the output. */
1020 }
1021 }
1022 return t - start;
1023}
1024
1025/** @brief Guts of the composition and decomposition functions
1026 * @param WHICH @c canon or @c compat to choose decomposition
1027 * @param COMPOSE @c 0 or @c 1 to compose
1028 */
1029#define utf32__decompose_generic(WHICH, COMPOSE) do { \
e5a5a138
RK
1030 struct dynstr_ucs4 d; \
1031 uint32_t c; \
1032 \
1033 dynstr_ucs4_init(&d); \
1034 while(ns) { \
1035 c = *s++; \
56fd389c 1036 if((c >= 0xD800 && c <= 0xDFFF) || c > 0x10FFFF) \
e5a5a138
RK
1037 goto error; \
1038 utf32__decompose_one_##WHICH(&d, c); \
1039 --ns; \
1040 } \
1041 if(utf32__canonical_ordering(d.vec, d.nvec)) \
1042 goto error; \
16506c9d
RK
1043 if(COMPOSE) \
1044 d.nvec = utf32__compose(d.vec, d.nvec); \
e5a5a138
RK
1045 dynstr_ucs4_terminate(&d); \
1046 if(ndp) \
1047 *ndp = d.nvec; \
1048 return d.vec; \
1049error: \
1050 xfree(d.vec); \
1051 return 0; \
1052} while(0)
1053
1054/** @brief Canonically decompose @p [s,s+ns)
1055 * @param s Pointer to string
1056 * @param ns Length of string
1057 * @param ndp Where to store length of result
f98fcddb 1058 * @return Pointer to result string, or NULL on error
e5a5a138 1059 *
16506c9d
RK
1060 * Computes NFD (Normalization Form D) of the string at @p s. This implies
1061 * performing all canonical decompositions and then normalizing the order of
1062 * combining characters.
e5a5a138 1063 *
56fd389c 1064 * Returns NULL if the string is not valid for either of the following reasons:
e5a5a138
RK
1065 * - it codes for a UTF-16 surrogate
1066 * - it codes for a value outside the unicode code space
16506c9d
RK
1067 *
1068 * See also:
1069 * - utf32_decompose_compat()
1070 * - utf32_compose_canon()
e5a5a138
RK
1071 */
1072uint32_t *utf32_decompose_canon(const uint32_t *s, size_t ns, size_t *ndp) {
16506c9d 1073 utf32__decompose_generic(canon, 0);
e5a5a138
RK
1074}
1075
1076/** @brief Compatibility decompose @p [s,s+ns)
1077 * @param s Pointer to string
1078 * @param ns Length of string
1079 * @param ndp Where to store length of result
f98fcddb 1080 * @return Pointer to result string, or NULL on error
e5a5a138 1081 *
16506c9d
RK
1082 * Computes NFKD (Normalization Form KD) of the string at @p s. This implies
1083 * performing all canonical and compatibility decompositions and then
1084 * normalizing the order of combining characters.
e5a5a138 1085 *
56fd389c 1086 * Returns NULL if the string is not valid for either of the following reasons:
e5a5a138
RK
1087 * - it codes for a UTF-16 surrogate
1088 * - it codes for a value outside the unicode code space
16506c9d
RK
1089 *
1090 * See also:
1091 * - utf32_decompose_canon()
1092 * - utf32_compose_compat()
e5a5a138
RK
1093 */
1094uint32_t *utf32_decompose_compat(const uint32_t *s, size_t ns, size_t *ndp) {
16506c9d
RK
1095 utf32__decompose_generic(compat, 0);
1096}
1097
1098/** @brief Canonically compose @p [s,s+ns)
1099 * @param s Pointer to string
1100 * @param ns Length of string
1101 * @param ndp Where to store length of result
1102 * @return Pointer to result string, or NULL on error
1103 *
1104 * Computes NFC (Normalization Form C) of the string at @p s. This implies
1105 * performing all canonical decompositions, normalizing the order of combining
1106 * characters and then composing all unblocked primary compositables.
1107 *
1108 * Returns NULL if the string is not valid for either of the following reasons:
1109 * - it codes for a UTF-16 surrogate
1110 * - it codes for a value outside the unicode code space
1111 *
1112 * See also:
1113 * - utf32_compose_compat()
1114 * - utf32_decompose_canon()
1115 */
1116uint32_t *utf32_compose_canon(const uint32_t *s, size_t ns, size_t *ndp) {
1117 utf32__decompose_generic(canon, 1);
1118}
1119
1120/** @brief Compatibility compose @p [s,s+ns)
1121 * @param s Pointer to string
1122 * @param ns Length of string
1123 * @param ndp Where to store length of result
1124 * @return Pointer to result string, or NULL on error
1125 *
1126 * Computes NFKC (Normalization Form KC) of the string at @p s. This implies
1127 * performing all canonical and compatibility decompositions, normalizing the
1128 * order of combining characters and then composing all unblocked primary
1129 * compositables.
1130 *
1131 * Returns NULL if the string is not valid for either of the following reasons:
1132 * - it codes for a UTF-16 surrogate
1133 * - it codes for a value outside the unicode code space
1134 *
1135 * See also:
1136 * - utf32_compose_canon()
1137 * - utf32_decompose_compat()
1138 */
1139uint32_t *utf32_compose_compat(const uint32_t *s, size_t ns, size_t *ndp) {
1140 utf32__decompose_generic(compat, 1);
e5a5a138
RK
1141}
1142
56fd389c
RK
1143/** @brief Single-character case-fold and decompose operation */
1144#define utf32__casefold_one(WHICH) do { \
bcf9ed7f 1145 const uint32_t *cf = utf32__unidata(c)->casefold; \
56fd389c
RK
1146 if(cf) { \
1147 /* Found a case-fold mapping in the table */ \
1148 while(*cf) \
1149 utf32__decompose_one_##WHICH(&d, *cf++); \
1150 } else \
1151 utf32__decompose_one_##WHICH(&d, c); \
1152} while(0)
e5a5a138
RK
1153
1154/** @brief Case-fold @p [s,s+ns)
1155 * @param s Pointer to string
1156 * @param ns Length of string
1157 * @param ndp Where to store length of result
f98fcddb 1158 * @return Pointer to result string, or NULL on error
e5a5a138
RK
1159 *
1160 * Case-fold the string at @p s according to full default case-folding rules
56fd389c 1161 * (s3.13) for caseless matching. The result will be in NFD.
e5a5a138 1162 *
56fd389c 1163 * Returns NULL if the string is not valid for either of the following reasons:
e5a5a138
RK
1164 * - it codes for a UTF-16 surrogate
1165 * - it codes for a value outside the unicode code space
1166 */
1167uint32_t *utf32_casefold_canon(const uint32_t *s, size_t ns, size_t *ndp) {
1168 struct dynstr_ucs4 d;
1169 uint32_t c;
1170 size_t n;
1171 uint32_t *ss = 0;
1172
1173 /* If the canonical decomposition of the string includes any combining
1174 * character that case-folds to a non-combining character then we must
1175 * normalize before we fold. In Unicode 5.0.0 this means 0345 COMBINING
1176 * GREEK YPOGEGRAMMENI in its decomposition and the various characters that
1177 * canonically decompose to it. */
bcf9ed7f
RK
1178 for(n = 0; n < ns; ++n)
1179 if(utf32__unidata(s[n])->flags & unicode_normalize_before_casefold)
e5a5a138 1180 break;
e5a5a138
RK
1181 if(n < ns) {
1182 /* We need a preliminary decomposition */
1183 if(!(ss = utf32_decompose_canon(s, ns, &ns)))
1184 return 0;
1185 s = ss;
1186 }
1187 dynstr_ucs4_init(&d);
1188 while(ns) {
1189 c = *s++;
56fd389c 1190 if((c >= 0xD800 && c <= 0xDFFF) || c > 0x10FFFF)
e5a5a138 1191 goto error;
56fd389c 1192 utf32__casefold_one(canon);
e5a5a138
RK
1193 --ns;
1194 }
1195 if(utf32__canonical_ordering(d.vec, d.nvec))
1196 goto error;
1197 dynstr_ucs4_terminate(&d);
1198 if(ndp)
1199 *ndp = d.nvec;
1200 return d.vec;
1201error:
1202 xfree(d.vec);
1203 xfree(ss);
1204 return 0;
1205}
1206
f98fcddb 1207/** @brief Compatibility case-fold @p [s,s+ns)
56fd389c
RK
1208 * @param s Pointer to string
1209 * @param ns Length of string
1210 * @param ndp Where to store length of result
f98fcddb 1211 * @return Pointer to result string, or NULL on error
56fd389c
RK
1212 *
1213 * Case-fold the string at @p s according to full default case-folding rules
1214 * (s3.13) for compatibility caseless matching. The result will be in NFKD.
1215 *
1216 * Returns NULL if the string is not valid for either of the following reasons:
1217 * - it codes for a UTF-16 surrogate
1218 * - it codes for a value outside the unicode code space
1219 */
1220uint32_t *utf32_casefold_compat(const uint32_t *s, size_t ns, size_t *ndp) {
1221 struct dynstr_ucs4 d;
1222 uint32_t c;
1223 size_t n;
1224 uint32_t *ss = 0;
1225
bcf9ed7f
RK
1226 for(n = 0; n < ns; ++n)
1227 if(utf32__unidata(s[n])->flags & unicode_normalize_before_casefold)
56fd389c 1228 break;
56fd389c
RK
1229 if(n < ns) {
1230 /* We need a preliminary _canonical_ decomposition */
1231 if(!(ss = utf32_decompose_canon(s, ns, &ns)))
1232 return 0;
1233 s = ss;
1234 }
1235 /* This computes NFKD(toCaseFold(s)) */
1236#define compat_casefold_middle() do { \
1237 dynstr_ucs4_init(&d); \
1238 while(ns) { \
1239 c = *s++; \
1240 if((c >= 0xD800 && c <= 0xDFFF) || c > 0x10FFFF) \
1241 goto error; \
1242 utf32__casefold_one(compat); \
1243 --ns; \
1244 } \
1245 if(utf32__canonical_ordering(d.vec, d.nvec)) \
1246 goto error; \
1247} while(0)
1248 /* Do the inner (NFKD o toCaseFold) */
1249 compat_casefold_middle();
1250 /* We can do away with the NFD'd copy of the input now */
1251 xfree(ss);
1252 s = ss = d.vec;
1253 ns = d.nvec;
1254 /* Do the outer (NFKD o toCaseFold) */
1255 compat_casefold_middle();
1256 /* That's all */
1257 dynstr_ucs4_terminate(&d);
1258 if(ndp)
1259 *ndp = d.nvec;
1260 return d.vec;
1261error:
1262 xfree(d.vec);
1263 xfree(ss);
1264 return 0;
1265}
1266
e5a5a138
RK
1267/** @brief Order a pair of UTF-32 strings
1268 * @param a First 0-terminated string
1269 * @param b Second 0-terminated string
1270 * @return -1, 0 or 1 for a less than, equal to or greater than b
1271 *
1272 * "Comparable to strcmp() at its best."
1273 */
1274int utf32_cmp(const uint32_t *a, const uint32_t *b) {
1275 while(*a && *b && *a == *b) {
1276 ++a;
1277 ++b;
1278 }
1279 return *a < *b ? -1 : (*a > *b ? 1 : 0);
1280}
1281
35b651f0
RK
1282/** @brief Identify a grapheme cluster boundary
1283 * @param s Start of string (must be NFD)
1284 * @param ns Length of string
1285 * @param n Index within string (in [0,ns].)
1286 * @return 1 at a grapheme cluster boundary, 0 otherwise
1287 *
1288 * This function identifies default grapheme cluster boundaries as described in
f98fcddb 1289 * UAX #29 s3. It returns non-0 if @p n points at the code point just after a
35b651f0
RK
1290 * grapheme cluster boundary (including the hypothetical code point just after
1291 * the end of the string).
f98fcddb
RK
1292 *
1293 * This function uses utf32_iterator_set() internally; see that function for
1294 * remarks on performance.
35b651f0 1295 */
1625e11a 1296int utf32_is_grapheme_boundary(const uint32_t *s, size_t ns, size_t n) {
092f426f 1297 struct utf32_iterator_data it[1];
35b651f0 1298
092f426f
RK
1299 utf32__iterator_init(it, s, ns, n);
1300 return utf32_iterator_grapheme_boundary(it);
0b7052da
RK
1301}
1302
1303/** @brief Identify a word boundary
1304 * @param s Start of string (must be NFD)
1305 * @param ns Length of string
1306 * @param n Index within string (in [0,ns].)
1307 * @return 1 at a word boundary, 0 otherwise
1308 *
1309 * This function identifies default word boundaries as described in UAX #29 s4.
f98fcddb 1310 * It returns non-0 if @p n points at the code point just after a word boundary
0b7052da 1311 * (including the hypothetical code point just after the end of the string).
f98fcddb
RK
1312 *
1313 * This function uses utf32_iterator_set() internally; see that function for
1314 * remarks on performance.
0b7052da
RK
1315 */
1316int utf32_is_word_boundary(const uint32_t *s, size_t ns, size_t n) {
092f426f 1317 struct utf32_iterator_data it[1];
0b7052da 1318
092f426f
RK
1319 utf32__iterator_init(it, s, ns, n);
1320 return utf32_iterator_word_boundary(it);
0b7052da
RK
1321}
1322
8818b7fc
RK
1323/** @brief Split [s,ns) into multiple words
1324 * @param s Pointer to start of string
1325 * @param ns Length of string
1326 * @param nwp Where to store word count, or NULL
c85b7022 1327 * @param wbreak Word_Break property tailor, or NULL
8818b7fc
RK
1328 * @return Pointer to array of pointers to words
1329 *
1330 * The returned array is terminated by a NULL pointer and individual
1331 * strings are 0-terminated.
1332 */
c85b7022
RK
1333uint32_t **utf32_word_split(const uint32_t *s, size_t ns, size_t *nwp,
1334 unicode_property_tailor *wbreak) {
8818b7fc
RK
1335 struct utf32_iterator_data it[1];
1336 size_t b1 = 0, b2 = 0 ,i;
1337 int isword;
1338 struct vector32 v32[1];
1339 uint32_t *w;
1340
1341 vector32_init(v32);
1342 utf32__iterator_init(it, s, ns, 0);
c85b7022 1343 it->word_break = wbreak;
8818b7fc
RK
1344 /* Work our way through the string stopping at each word break. */
1345 do {
1346 if(utf32_iterator_word_boundary(it)) {
1347 /* We've found a new boundary */
1348 b1 = b2;
1349 b2 = it->n;
1350 /*fprintf(stderr, "[%zu, %zu) is a candidate word\n", b1, b2);*/
1351 /* Inspect the characters between the boundary and form an opinion as to
1352 * whether they are a word or not */
1353 isword = 0;
1354 for(i = b1; i < b2; ++i) {
c85b7022 1355 switch(utf32__iterator_word_break(it, it->s[i])) {
8818b7fc
RK
1356 case unicode_Word_Break_ALetter:
1357 case unicode_Word_Break_Numeric:
1358 case unicode_Word_Break_Katakana:
1359 isword = 1;
1360 break;
1361 default:
1362 break;
1363 }
1364 }
1365 /* If it's a word add it to the list of results */
1366 if(isword) {
8e93ddd1
RK
1367 const size_t len = b2 - b1;
1368 w = xcalloc_noptr(len + 1, sizeof(uint32_t));
1369 memcpy(w, it->s + b1, len * sizeof (uint32_t));
1370 w[len] = 0;
8818b7fc
RK
1371 vector32_append(v32, w);
1372 }
1373 }
1374 } while(!utf32_iterator_advance(it, 1));
1375 vector32_terminate(v32);
1376 if(nwp)
1377 *nwp = v32->nvec;
1378 return v32->vec;
1379}
1380
e5a5a138 1381/*@}*/
349b7b74 1382/** @defgroup utf8 Functions that operate on UTF-8 strings */
e5a5a138
RK
1383/*@{*/
1384
1385/** @brief Wrapper to transform a UTF-8 string using the UTF-32 function */
1386#define utf8__transform(FN) do { \
1387 uint32_t *to32 = 0, *decomp32 = 0; \
1388 size_t nto32, ndecomp32; \
1389 char *decomp8 = 0; \
1390 \
1391 if(!(to32 = utf8_to_utf32(s, ns, &nto32))) goto error; \
1392 if(!(decomp32 = FN(to32, nto32, &ndecomp32))) goto error; \
1393 decomp8 = utf32_to_utf8(decomp32, ndecomp32, ndp); \
1394error: \
1395 xfree(to32); \
1396 xfree(decomp32); \
1397 return decomp8; \
1398} while(0)
1399
1400/** @brief Canonically decompose @p [s,s+ns)
1401 * @param s Pointer to string
1402 * @param ns Length of string
1403 * @param ndp Where to store length of result
f98fcddb 1404 * @return Pointer to result string, or NULL on error
e5a5a138 1405 *
0ae60b83
RK
1406 * Computes NFD (Normalization Form D) of the string at @p s. This implies
1407 * performing all canonical decompositions and then normalizing the order of
1408 * combining characters.
e5a5a138
RK
1409 *
1410 * Returns NULL if the string is not valid; see utf8_to_utf32() for reasons why
1411 * this might be.
1412 *
0ae60b83
RK
1413 * See also:
1414 * - utf32_decompose_canon().
1415 * - utf8_decompose_compat()
1416 * - utf8_compose_canon()
e5a5a138
RK
1417 */
1418char *utf8_decompose_canon(const char *s, size_t ns, size_t *ndp) {
1419 utf8__transform(utf32_decompose_canon);
1420}
1421
1422/** @brief Compatibility decompose @p [s,s+ns)
1423 * @param s Pointer to string
1424 * @param ns Length of string
1425 * @param ndp Where to store length of result
f98fcddb 1426 * @return Pointer to result string, or NULL on error
e5a5a138 1427 *
0ae60b83
RK
1428 * Computes NFKD (Normalization Form KD) of the string at @p s. This implies
1429 * performing all canonical and compatibility decompositions and then
1430 * normalizing the order of combining characters.
e5a5a138
RK
1431 *
1432 * Returns NULL if the string is not valid; see utf8_to_utf32() for reasons why
1433 * this might be.
1434 *
0ae60b83
RK
1435 * See also:
1436 * - utf32_decompose_compat().
1437 * - utf8_decompose_canon()
1438 * - utf8_compose_compat()
e5a5a138
RK
1439 */
1440char *utf8_decompose_compat(const char *s, size_t ns, size_t *ndp) {
1441 utf8__transform(utf32_decompose_compat);
1442}
1443
0ae60b83
RK
1444/** @brief Canonically compose @p [s,s+ns)
1445 * @param s Pointer to string
1446 * @param ns Length of string
1447 * @param ndp Where to store length of result
1448 * @return Pointer to result string, or NULL on error
1449 *
1450 * Computes NFC (Normalization Form C) of the string at @p s. This implies
1451 * performing all canonical decompositions, normalizing the order of combining
1452 * characters and then composing all unblocked primary compositables.
1453 *
1454 * Returns NULL if the string is not valid; see utf8_to_utf32() for reasons why
1455 * this might be.
1456 *
1457 * See also:
1458 * - utf32_compose_canon()
1459 * - utf8_compose_compat()
1460 * - utf8_decompose_canon()
1461 */
1462char *utf8_compose_canon(const char *s, size_t ns, size_t *ndp) {
1463 utf8__transform(utf32_compose_canon);
1464}
1465
1466/** @brief Compatibility compose @p [s,s+ns)
1467 * @param s Pointer to string
1468 * @param ns Length of string
1469 * @param ndp Where to store length of result
1470 * @return Pointer to result string, or NULL on error
1471 *
1472 * Computes NFKC (Normalization Form KC) of the string at @p s. This implies
1473 * performing all canonical and compatibility decompositions, normalizing the
1474 * order of combining characters and then composing all unblocked primary
1475 * compositables.
1476 *
1477 * Returns NULL if the string is not valid; see utf8_to_utf32() for reasons why
1478 * this might be.
1479 *
1480 * See also:
1481 * - utf32_compose_compat()
1482 * - utf8_compose_canon()
1483 * - utf8_decompose_compat()
1484 */
1485char *utf8_compose_compat(const char *s, size_t ns, size_t *ndp) {
1486 utf8__transform(utf32_compose_compat);
1487}
1488
e5a5a138
RK
1489/** @brief Case-fold @p [s,s+ns)
1490 * @param s Pointer to string
1491 * @param ns Length of string
1492 * @param ndp Where to store length of result
f98fcddb 1493 * @return Pointer to result string, or NULL on error
e5a5a138
RK
1494 *
1495 * Case-fold the string at @p s according to full default case-folding rules
1496 * (s3.13). The result will be in NFD.
1497 *
1498 * Returns NULL if the string is not valid; see utf8_to_utf32() for reasons why
1499 * this might be.
1500 */
1501char *utf8_casefold_canon(const char *s, size_t ns, size_t *ndp) {
1502 utf8__transform(utf32_casefold_canon);
1503}
1504
1505/** @brief Compatibility case-fold @p [s,s+ns)
1506 * @param s Pointer to string
1507 * @param ns Length of string
1508 * @param ndp Where to store length of result
f98fcddb 1509 * @return Pointer to result string, or NULL on error
e5a5a138
RK
1510 *
1511 * Case-fold the string at @p s according to full default case-folding rules
1512 * (s3.13). The result will be in NFKD.
1513 *
1514 * Returns NULL if the string is not valid; see utf8_to_utf32() for reasons why
1515 * this might be.
1516 */
e5a5a138
RK
1517char *utf8_casefold_compat(const char *s, size_t ns, size_t *ndp) {
1518 utf8__transform(utf32_casefold_compat);
1519}
e5a5a138 1520
8818b7fc
RK
1521/** @brief Split [s,ns) into multiple words
1522 * @param s Pointer to start of string
1523 * @param ns Length of string
1524 * @param nwp Where to store word count, or NULL
c85b7022 1525 * @param wbreak Word_Break property tailor, or NULL
8818b7fc
RK
1526 * @return Pointer to array of pointers to words
1527 *
1528 * The returned array is terminated by a NULL pointer and individual
1529 * strings are 0-terminated.
1530 */
c85b7022
RK
1531char **utf8_word_split(const char *s, size_t ns, size_t *nwp,
1532 unicode_property_tailor *wbreak) {
8818b7fc
RK
1533 uint32_t *to32 = 0, **v32 = 0;
1534 size_t nto32, nv, n;
1535 char **v8 = 0, **ret = 0;
c85b7022 1536
8818b7fc 1537 if(!(to32 = utf8_to_utf32(s, ns, &nto32))) goto error;
c85b7022 1538 if(!(v32 = utf32_word_split(to32, nto32, &nv, wbreak))) goto error;
8818b7fc
RK
1539 v8 = xcalloc(sizeof (char *), nv + 1);
1540 for(n = 0; n < nv; ++n)
1541 if(!(v8[n] = utf32_to_utf8(v32[n], utf32_len(v32[n]), 0)))
1542 goto error;
1543 ret = v8;
1544 *nwp = nv;
1545 v8 = 0; /* don't free */
c85b7022 1546error:
8818b7fc
RK
1547 if(v8) {
1548 for(n = 0; n < nv; ++n)
1549 xfree(v8[n]);
1550 xfree(v8);
1551 }
1552 if(v32) {
1553 for(n = 0; n < nv; ++n)
1554 xfree(v32[n]);
1555 xfree(v32);
1556 }
1557 xfree(to32);
1558 return ret;
1559}
1560
1561
e5a5a138
RK
1562/*@}*/
1563
1564/*
1565Local Variables:
1566c-basic-offset:2
1567comment-column:40
1568fill-column:79
1569indent-tabs-mode:nil
1570End:
1571*/