4 * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
30 RB_ENTRY(utf8_item
) index_entry
;
33 RB_ENTRY(utf8_item
) data_entry
;
39 utf8_data_cmp(struct utf8_item
*ui1
, struct utf8_item
*ui2
)
41 if (ui1
->size
< ui2
->size
)
43 if (ui1
->size
> ui2
->size
)
45 return (memcmp(ui1
->data
, ui2
->data
, ui1
->size
));
47 RB_HEAD(utf8_data_tree
, utf8_item
);
48 RB_GENERATE_STATIC(utf8_data_tree
, utf8_item
, data_entry
, utf8_data_cmp
);
49 static struct utf8_data_tree utf8_data_tree
= RB_INITIALIZER(utf8_data_tree
);
52 utf8_index_cmp(struct utf8_item
*ui1
, struct utf8_item
*ui2
)
54 if (ui1
->index
< ui2
->index
)
56 if (ui1
->index
> ui2
->index
)
60 RB_HEAD(utf8_index_tree
, utf8_item
);
61 RB_GENERATE_STATIC(utf8_index_tree
, utf8_item
, index_entry
, utf8_index_cmp
);
62 static struct utf8_index_tree utf8_index_tree
= RB_INITIALIZER(utf8_index_tree
);
64 static u_int utf8_next_index
;
66 #define UTF8_GET_SIZE(uc) (((uc) >> 24) & 0x1f)
67 #define UTF8_GET_WIDTH(uc) (((uc) >> 29) - 1)
69 #define UTF8_SET_SIZE(size) (((utf8_char)(size)) << 24)
70 #define UTF8_SET_WIDTH(width) ((((utf8_char)(width)) + 1) << 29)
72 /* Get a UTF-8 item from data. */
73 static struct utf8_item
*
74 utf8_item_by_data(const char *data
, size_t size
)
78 memcpy(ui
.data
, data
, size
);
81 return (RB_FIND(utf8_data_tree
, &utf8_data_tree
, &ui
));
84 /* Get a UTF-8 item from data. */
85 static struct utf8_item
*
86 utf8_item_by_index(u_int index
)
92 return (RB_FIND(utf8_index_tree
, &utf8_index_tree
, &ui
));
95 /* Add a UTF-8 item. */
97 utf8_put_item(const char *data
, size_t size
, u_int
*index
)
101 ui
= utf8_item_by_data(data
, size
);
104 log_debug("%s: found %.*s = %u", __func__
, (int)size
, data
,
109 if (utf8_next_index
== 0xffffff + 1)
112 ui
= xcalloc(1, sizeof *ui
);
113 ui
->index
= utf8_next_index
++;
114 RB_INSERT(utf8_index_tree
, &utf8_index_tree
, ui
);
116 memcpy(ui
->data
, data
, size
);
118 RB_INSERT(utf8_data_tree
, &utf8_data_tree
, ui
);
121 log_debug("%s: added %.*s = %u", __func__
, (int)size
, data
, *index
);
125 /* Get UTF-8 character from data. */
127 utf8_from_data(const struct utf8_data
*ud
, utf8_char
*uc
)
132 fatalx("invalid UTF-8 width: %u", ud
->width
);
134 if (ud
->size
> UTF8_SIZE
)
137 index
= (((utf8_char
)ud
->data
[2] << 16)|
138 ((utf8_char
)ud
->data
[1] << 8)|
139 ((utf8_char
)ud
->data
[0]));
140 } else if (utf8_put_item(ud
->data
, ud
->size
, &index
) != 0)
142 *uc
= UTF8_SET_SIZE(ud
->size
)|UTF8_SET_WIDTH(ud
->width
)|index
;
143 log_debug("%s: (%d %d %.*s) -> %08x", __func__
, ud
->width
, ud
->size
,
144 (int)ud
->size
, ud
->data
, *uc
);
149 *uc
= UTF8_SET_SIZE(0)|UTF8_SET_WIDTH(0);
150 else if (ud
->width
== 1)
151 *uc
= UTF8_SET_SIZE(1)|UTF8_SET_WIDTH(1)|0x20;
153 *uc
= UTF8_SET_SIZE(1)|UTF8_SET_WIDTH(1)|0x2020;
157 /* Get UTF-8 data from character. */
159 utf8_to_data(utf8_char uc
, struct utf8_data
*ud
)
161 struct utf8_item
*ui
;
164 memset(ud
, 0, sizeof *ud
);
165 ud
->size
= ud
->have
= UTF8_GET_SIZE(uc
);
166 ud
->width
= UTF8_GET_WIDTH(uc
);
169 ud
->data
[2] = (uc
>> 16);
170 ud
->data
[1] = ((uc
>> 8) & 0xff);
171 ud
->data
[0] = (uc
& 0xff);
173 index
= (uc
& 0xffffff);
174 if ((ui
= utf8_item_by_index(index
)) == NULL
)
175 memset(ud
->data
, ' ', ud
->size
);
177 memcpy(ud
->data
, ui
->data
, ud
->size
);
180 log_debug("%s: %08x -> (%d %d %.*s)", __func__
, uc
, ud
->width
, ud
->size
,
181 (int)ud
->size
, ud
->data
);
184 /* Get UTF-8 character from a single ASCII character. */
186 utf8_build_one(u_char ch
)
188 return (UTF8_SET_SIZE(1)|UTF8_SET_WIDTH(1)|ch
);
191 /* Set a single character. */
193 utf8_set(struct utf8_data
*ud
, u_char ch
)
195 static const struct utf8_data empty
= { { 0 }, 1, 1, 1 };
197 memcpy(ud
, &empty
, sizeof *ud
);
201 /* Copy UTF-8 character. */
203 utf8_copy(struct utf8_data
*to
, const struct utf8_data
*from
)
207 memcpy(to
, from
, sizeof *to
);
209 for (i
= to
->size
; i
< sizeof to
->data
; i
++)
213 /* Get width of Unicode character. */
214 static enum utf8_state
215 utf8_width(struct utf8_data
*ud
, int *width
)
220 switch (utf8proc_mbtowc(&wc
, ud
->data
, ud
->size
)) {
222 switch (mbtowc(&wc
, ud
->data
, ud
->size
)) {
225 log_debug("UTF-8 %.*s, mbtowc() %d", (int)ud
->size
, ud
->data
,
227 mbtowc(NULL
, NULL
, MB_CUR_MAX
);
233 *width
= utf8proc_wcwidth(wc
);
235 *width
= wcwidth(wc
);
237 if (*width
>= 0 && *width
<= 0xff)
239 log_debug("UTF-8 %.*s, wcwidth() %d", (int)ud
->size
, ud
->data
, *width
);
244 * Open UTF-8 sequence.
246 * 11000010-11011111 C2-DF start of 2-byte sequence
247 * 11100000-11101111 E0-EF start of 3-byte sequence
248 * 11110000-11110100 F0-F4 start of 4-byte sequence
251 utf8_open(struct utf8_data
*ud
, u_char ch
)
253 memset(ud
, 0, sizeof *ud
);
254 if (ch
>= 0xc2 && ch
<= 0xdf)
256 else if (ch
>= 0xe0 && ch
<= 0xef)
258 else if (ch
>= 0xf0 && ch
<= 0xf4)
266 /* Append character to UTF-8, closing if finished. */
268 utf8_append(struct utf8_data
*ud
, u_char ch
)
272 if (ud
->have
>= ud
->size
)
273 fatalx("UTF-8 character overflow");
274 if (ud
->size
> sizeof ud
->data
)
275 fatalx("UTF-8 character size too large");
277 if (ud
->have
!= 0 && (ch
& 0xc0) != 0x80)
280 ud
->data
[ud
->have
++] = ch
;
281 if (ud
->have
!= ud
->size
)
284 if (ud
->width
== 0xff)
286 if (utf8_width(ud
, &width
) != UTF8_DONE
)
294 * Encode len characters from src into dst, which is guaranteed to have four
295 * bytes available for each character from src (for \abc or UTF-8) plus space
299 utf8_strvis(char *dst
, const char *src
, size_t len
, int flag
)
302 const char *start
= dst
, *end
= src
+ len
;
303 enum utf8_state more
;
307 if ((more
= utf8_open(&ud
, *src
)) == UTF8_MORE
) {
308 while (++src
< end
&& more
== UTF8_MORE
)
309 more
= utf8_append(&ud
, *src
);
310 if (more
== UTF8_DONE
) {
311 /* UTF-8 character finished. */
312 for (i
= 0; i
< ud
.size
; i
++)
316 /* Not a complete, valid UTF-8 character. */
319 if (src
[0] == '$' && src
< end
- 1) {
320 if (isalpha((u_char
)src
[1]) ||
325 } else if (src
< end
- 1)
326 dst
= vis(dst
, src
[0], flag
, src
[1]);
328 dst
= vis(dst
, src
[0], flag
, '\0');
332 return (dst
- start
);
335 /* Same as utf8_strvis but allocate the buffer. */
337 utf8_stravis(char **dst
, const char *src
, int flag
)
342 buf
= xreallocarray(NULL
, 4, strlen(src
) + 1);
343 len
= utf8_strvis(buf
, src
, strlen(src
), flag
);
345 *dst
= xrealloc(buf
, len
+ 1);
349 /* Same as utf8_strvis but allocate the buffer. */
351 utf8_stravisx(char **dst
, const char *src
, size_t srclen
, int flag
)
356 buf
= xreallocarray(NULL
, 4, srclen
+ 1);
357 len
= utf8_strvis(buf
, src
, srclen
, flag
);
359 *dst
= xrealloc(buf
, len
+ 1);
363 /* Does this string contain anything that isn't valid UTF-8? */
365 utf8_isvalid(const char *s
)
369 enum utf8_state more
;
373 if ((more
= utf8_open(&ud
, *s
)) == UTF8_MORE
) {
374 while (++s
< end
&& more
== UTF8_MORE
)
375 more
= utf8_append(&ud
, *s
);
376 if (more
== UTF8_DONE
)
380 if (*s
< 0x20 || *s
> 0x7e)
388 * Sanitize a string, changing any UTF-8 characters to '_'. Caller should free
389 * the returned string. Anything not valid printable ASCII or UTF-8 is
393 utf8_sanitize(const char *src
)
397 enum utf8_state more
;
401 while (*src
!= '\0') {
402 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
403 if ((more
= utf8_open(&ud
, *src
)) == UTF8_MORE
) {
404 while (*++src
!= '\0' && more
== UTF8_MORE
)
405 more
= utf8_append(&ud
, *src
);
406 if (more
== UTF8_DONE
) {
407 dst
= xreallocarray(dst
, n
+ ud
.width
,
409 for (i
= 0; i
< ud
.width
; i
++)
415 if (*src
> 0x1f && *src
< 0x7f)
421 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
426 /* Get UTF-8 buffer length. */
428 utf8_strlen(const struct utf8_data
*s
)
432 for (i
= 0; s
[i
].size
!= 0; i
++)
437 /* Get UTF-8 string width. */
439 utf8_strwidth(const struct utf8_data
*s
, ssize_t n
)
444 for (i
= 0; s
[i
].size
!= 0; i
++) {
445 if (n
!= -1 && n
== i
)
453 * Convert a string into a buffer of UTF-8 characters. Terminated by size == 0.
457 utf8_fromcstr(const char *src
)
459 struct utf8_data
*dst
= NULL
;
461 enum utf8_state more
;
463 while (*src
!= '\0') {
464 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
465 if ((more
= utf8_open(&dst
[n
], *src
)) == UTF8_MORE
) {
466 while (*++src
!= '\0' && more
== UTF8_MORE
)
467 more
= utf8_append(&dst
[n
], *src
);
468 if (more
== UTF8_DONE
) {
474 utf8_set(&dst
[n
], *src
);
478 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
483 /* Convert from a buffer of UTF-8 characters into a string. Caller frees. */
485 utf8_tocstr(struct utf8_data
*src
)
490 for(; src
->size
!= 0; src
++) {
491 dst
= xreallocarray(dst
, n
+ src
->size
, 1);
492 memcpy(dst
+ n
, src
->data
, src
->size
);
495 dst
= xreallocarray(dst
, n
+ 1, 1);
500 /* Get width of UTF-8 string. */
502 utf8_cstrwidth(const char *s
)
504 struct utf8_data tmp
;
506 enum utf8_state more
;
510 if ((more
= utf8_open(&tmp
, *s
)) == UTF8_MORE
) {
511 while (*++s
!= '\0' && more
== UTF8_MORE
)
512 more
= utf8_append(&tmp
, *s
);
513 if (more
== UTF8_DONE
) {
519 if (*s
> 0x1f && *s
!= 0x7f)
526 /* Pad UTF-8 string to width on the left. Caller frees. */
528 utf8_padcstr(const char *s
, u_int width
)
534 n
= utf8_cstrwidth(s
);
539 out
= xmalloc(slen
+ 1 + (width
- n
));
540 memcpy(out
, s
, slen
);
541 for (i
= n
; i
< width
; i
++)
547 /* Pad UTF-8 string to width on the right. Caller frees. */
549 utf8_rpadcstr(const char *s
, u_int width
)
555 n
= utf8_cstrwidth(s
);
560 out
= xmalloc(slen
+ 1 + (width
- n
));
561 for (i
= 0; i
< width
- n
; i
++)
563 memcpy(out
+ i
, s
, slen
);
564 out
[i
+ slen
] = '\0';
569 utf8_cstrhas(const char *s
, const struct utf8_data
*ud
)
571 struct utf8_data
*copy
, *loop
;
574 copy
= utf8_fromcstr(s
);
575 for (loop
= copy
; loop
->size
!= 0; loop
++) {
576 if (loop
->size
!= ud
->size
)
578 if (memcmp(loop
->data
, ud
->data
, loop
->size
) == 0) {