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>
31 RB_ENTRY(utf8_item
) index_entry
;
34 RB_ENTRY(utf8_item
) data_entry
;
40 utf8_data_cmp(struct utf8_item
*ui1
, struct utf8_item
*ui2
)
42 if (ui1
->size
< ui2
->size
)
44 if (ui1
->size
> ui2
->size
)
46 return (memcmp(ui1
->data
, ui2
->data
, ui1
->size
));
48 RB_HEAD(utf8_data_tree
, utf8_item
);
49 RB_GENERATE_STATIC(utf8_data_tree
, utf8_item
, data_entry
, utf8_data_cmp
);
50 static struct utf8_data_tree utf8_data_tree
= RB_INITIALIZER(utf8_data_tree
);
53 utf8_index_cmp(struct utf8_item
*ui1
, struct utf8_item
*ui2
)
55 if (ui1
->index
< ui2
->index
)
57 if (ui1
->index
> ui2
->index
)
61 RB_HEAD(utf8_index_tree
, utf8_item
);
62 RB_GENERATE_STATIC(utf8_index_tree
, utf8_item
, index_entry
, utf8_index_cmp
);
63 static struct utf8_index_tree utf8_index_tree
= RB_INITIALIZER(utf8_index_tree
);
65 static u_int utf8_next_index
;
67 #define UTF8_GET_SIZE(uc) (((uc) >> 24) & 0x1f)
68 #define UTF8_GET_WIDTH(uc) (((uc) >> 29) - 1)
70 #define UTF8_SET_SIZE(size) (((utf8_char)(size)) << 24)
71 #define UTF8_SET_WIDTH(width) ((((utf8_char)(width)) + 1) << 29)
73 /* Get a UTF-8 item from data. */
74 static struct utf8_item
*
75 utf8_item_by_data(const char *data
, size_t size
)
79 memcpy(ui
.data
, data
, size
);
82 return (RB_FIND(utf8_data_tree
, &utf8_data_tree
, &ui
));
85 /* Get a UTF-8 item from data. */
86 static struct utf8_item
*
87 utf8_item_by_index(u_int index
)
93 return (RB_FIND(utf8_index_tree
, &utf8_index_tree
, &ui
));
96 /* Add a UTF-8 item. */
98 utf8_put_item(const char *data
, size_t size
, u_int
*index
)
100 struct utf8_item
*ui
;
102 ui
= utf8_item_by_data(data
, size
);
105 log_debug("%s: found %.*s = %u", __func__
, (int)size
, data
,
110 if (utf8_next_index
== 0xffffff + 1)
113 ui
= xcalloc(1, sizeof *ui
);
114 ui
->index
= utf8_next_index
++;
115 RB_INSERT(utf8_index_tree
, &utf8_index_tree
, ui
);
117 memcpy(ui
->data
, data
, size
);
119 RB_INSERT(utf8_data_tree
, &utf8_data_tree
, ui
);
122 log_debug("%s: added %.*s = %u", __func__
, (int)size
, data
, *index
);
126 /* Get UTF-8 character from data. */
128 utf8_from_data(const struct utf8_data
*ud
, utf8_char
*uc
)
133 fatalx("invalid UTF-8 width: %u", ud
->width
);
135 if (ud
->size
> UTF8_SIZE
)
138 index
= (((utf8_char
)ud
->data
[2] << 16)|
139 ((utf8_char
)ud
->data
[1] << 8)|
140 ((utf8_char
)ud
->data
[0]));
141 } else if (utf8_put_item(ud
->data
, ud
->size
, &index
) != 0)
143 *uc
= UTF8_SET_SIZE(ud
->size
)|UTF8_SET_WIDTH(ud
->width
)|index
;
144 log_debug("%s: (%d %d %.*s) -> %08x", __func__
, ud
->width
, ud
->size
,
145 (int)ud
->size
, ud
->data
, *uc
);
150 *uc
= UTF8_SET_SIZE(0)|UTF8_SET_WIDTH(0);
151 else if (ud
->width
== 1)
152 *uc
= UTF8_SET_SIZE(1)|UTF8_SET_WIDTH(1)|0x20;
154 *uc
= UTF8_SET_SIZE(1)|UTF8_SET_WIDTH(1)|0x2020;
158 /* Get UTF-8 data from character. */
160 utf8_to_data(utf8_char uc
, struct utf8_data
*ud
)
162 struct utf8_item
*ui
;
165 memset(ud
, 0, sizeof *ud
);
166 ud
->size
= ud
->have
= UTF8_GET_SIZE(uc
);
167 ud
->width
= UTF8_GET_WIDTH(uc
);
170 ud
->data
[2] = (uc
>> 16);
171 ud
->data
[1] = ((uc
>> 8) & 0xff);
172 ud
->data
[0] = (uc
& 0xff);
174 index
= (uc
& 0xffffff);
175 if ((ui
= utf8_item_by_index(index
)) == NULL
)
176 memset(ud
->data
, ' ', ud
->size
);
178 memcpy(ud
->data
, ui
->data
, ud
->size
);
181 log_debug("%s: %08x -> (%d %d %.*s)", __func__
, uc
, ud
->width
, ud
->size
,
182 (int)ud
->size
, ud
->data
);
185 /* Get UTF-8 character from a single ASCII character. */
187 utf8_build_one(u_char ch
)
189 return (UTF8_SET_SIZE(1)|UTF8_SET_WIDTH(1)|ch
);
192 /* Set a single character. */
194 utf8_set(struct utf8_data
*ud
, u_char ch
)
196 static const struct utf8_data empty
= { { 0 }, 1, 1, 1 };
198 memcpy(ud
, &empty
, sizeof *ud
);
202 /* Copy UTF-8 character. */
204 utf8_copy(struct utf8_data
*to
, const struct utf8_data
*from
)
208 memcpy(to
, from
, sizeof *to
);
210 for (i
= to
->size
; i
< sizeof to
->data
; i
++)
214 /* Get width of Unicode character. */
215 static enum utf8_state
216 utf8_width(struct utf8_data
*ud
, int *width
)
220 switch (mbtowc(&wc
, ud
->data
, ud
->size
)) {
222 log_debug("UTF-8 %.*s, mbtowc() %d", (int)ud
->size
, ud
->data
,
224 mbtowc(NULL
, NULL
, MB_CUR_MAX
);
229 *width
= wcwidth(wc
);
230 log_debug("UTF-8 %.*s %#x, wcwidth() %d", (int)ud
->size
, ud
->data
,
232 if (*width
>= 0 && *width
<= 0xff)
238 * Open UTF-8 sequence.
240 * 11000010-11011111 C2-DF start of 2-byte sequence
241 * 11100000-11101111 E0-EF start of 3-byte sequence
242 * 11110000-11110100 F0-F4 start of 4-byte sequence
245 utf8_open(struct utf8_data
*ud
, u_char ch
)
247 memset(ud
, 0, sizeof *ud
);
248 if (ch
>= 0xc2 && ch
<= 0xdf)
250 else if (ch
>= 0xe0 && ch
<= 0xef)
252 else if (ch
>= 0xf0 && ch
<= 0xf4)
260 /* Append character to UTF-8, closing if finished. */
262 utf8_append(struct utf8_data
*ud
, u_char ch
)
266 if (ud
->have
>= ud
->size
)
267 fatalx("UTF-8 character overflow");
268 if (ud
->size
> sizeof ud
->data
)
269 fatalx("UTF-8 character size too large");
271 if (ud
->have
!= 0 && (ch
& 0xc0) != 0x80)
274 ud
->data
[ud
->have
++] = ch
;
275 if (ud
->have
!= ud
->size
)
278 if (ud
->width
== 0xff)
280 if (utf8_width(ud
, &width
) != UTF8_DONE
)
288 * Encode len characters from src into dst, which is guaranteed to have four
289 * bytes available for each character from src (for \abc or UTF-8) plus space
293 utf8_strvis(char *dst
, const char *src
, size_t len
, int flag
)
296 const char *start
= dst
, *end
= src
+ len
;
297 enum utf8_state more
;
301 if ((more
= utf8_open(&ud
, *src
)) == UTF8_MORE
) {
302 while (++src
< end
&& more
== UTF8_MORE
)
303 more
= utf8_append(&ud
, *src
);
304 if (more
== UTF8_DONE
) {
305 /* UTF-8 character finished. */
306 for (i
= 0; i
< ud
.size
; i
++)
310 /* Not a complete, valid UTF-8 character. */
313 if (src
[0] == '$' && src
< end
- 1) {
314 if (isalpha((u_char
)src
[1]) ||
319 } else if (src
< end
- 1)
320 dst
= vis(dst
, src
[0], flag
, src
[1]);
322 dst
= vis(dst
, src
[0], flag
, '\0');
326 return (dst
- start
);
329 /* Same as utf8_strvis but allocate the buffer. */
331 utf8_stravis(char **dst
, const char *src
, int flag
)
336 buf
= xreallocarray(NULL
, 4, strlen(src
) + 1);
337 len
= utf8_strvis(buf
, src
, strlen(src
), flag
);
339 *dst
= xrealloc(buf
, len
+ 1);
343 /* Same as utf8_strvis but allocate the buffer. */
345 utf8_stravisx(char **dst
, const char *src
, size_t srclen
, int flag
)
350 buf
= xreallocarray(NULL
, 4, srclen
+ 1);
351 len
= utf8_strvis(buf
, src
, srclen
, flag
);
353 *dst
= xrealloc(buf
, len
+ 1);
357 /* Does this string contain anything that isn't valid UTF-8? */
359 utf8_isvalid(const char *s
)
363 enum utf8_state more
;
367 if ((more
= utf8_open(&ud
, *s
)) == UTF8_MORE
) {
368 while (++s
< end
&& more
== UTF8_MORE
)
369 more
= utf8_append(&ud
, *s
);
370 if (more
== UTF8_DONE
)
374 if (*s
< 0x20 || *s
> 0x7e)
382 * Sanitize a string, changing any UTF-8 characters to '_'. Caller should free
383 * the returned string. Anything not valid printable ASCII or UTF-8 is
387 utf8_sanitize(const char *src
)
391 enum utf8_state more
;
395 while (*src
!= '\0') {
396 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
397 if ((more
= utf8_open(&ud
, *src
)) == UTF8_MORE
) {
398 while (*++src
!= '\0' && more
== UTF8_MORE
)
399 more
= utf8_append(&ud
, *src
);
400 if (more
== UTF8_DONE
) {
401 dst
= xreallocarray(dst
, n
+ ud
.width
,
403 for (i
= 0; i
< ud
.width
; i
++)
409 if (*src
> 0x1f && *src
< 0x7f)
415 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
420 /* Get UTF-8 buffer length. */
422 utf8_strlen(const struct utf8_data
*s
)
426 for (i
= 0; s
[i
].size
!= 0; i
++)
431 /* Get UTF-8 string width. */
433 utf8_strwidth(const struct utf8_data
*s
, ssize_t n
)
438 for (i
= 0; s
[i
].size
!= 0; i
++) {
439 if (n
!= -1 && n
== i
)
447 * Convert a string into a buffer of UTF-8 characters. Terminated by size == 0.
451 utf8_fromcstr(const char *src
)
453 struct utf8_data
*dst
= NULL
;
455 enum utf8_state more
;
457 while (*src
!= '\0') {
458 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
459 if ((more
= utf8_open(&dst
[n
], *src
)) == UTF8_MORE
) {
460 while (*++src
!= '\0' && more
== UTF8_MORE
)
461 more
= utf8_append(&dst
[n
], *src
);
462 if (more
== UTF8_DONE
) {
468 utf8_set(&dst
[n
], *src
);
472 dst
= xreallocarray(dst
, n
+ 1, sizeof *dst
);
477 /* Convert from a buffer of UTF-8 characters into a string. Caller frees. */
479 utf8_tocstr(struct utf8_data
*src
)
484 for(; src
->size
!= 0; src
++) {
485 dst
= xreallocarray(dst
, n
+ src
->size
, 1);
486 memcpy(dst
+ n
, src
->data
, src
->size
);
489 dst
= xreallocarray(dst
, n
+ 1, 1);
494 /* Get width of UTF-8 string. */
496 utf8_cstrwidth(const char *s
)
498 struct utf8_data tmp
;
500 enum utf8_state more
;
504 if ((more
= utf8_open(&tmp
, *s
)) == UTF8_MORE
) {
505 while (*++s
!= '\0' && more
== UTF8_MORE
)
506 more
= utf8_append(&tmp
, *s
);
507 if (more
== UTF8_DONE
) {
513 if (*s
> 0x1f && *s
!= 0x7f)
520 /* Pad UTF-8 string to width on the left. Caller frees. */
522 utf8_padcstr(const char *s
, u_int width
)
528 n
= utf8_cstrwidth(s
);
533 out
= xmalloc(slen
+ 1 + (width
- n
));
534 memcpy(out
, s
, slen
);
535 for (i
= n
; i
< width
; i
++)
541 /* Pad UTF-8 string to width on the right. Caller frees. */
543 utf8_rpadcstr(const char *s
, u_int width
)
549 n
= utf8_cstrwidth(s
);
554 out
= xmalloc(slen
+ 1 + (width
- n
));
555 for (i
= 0; i
< width
- n
; i
++)
557 memcpy(out
+ i
, s
, slen
);
558 out
[i
+ slen
] = '\0';
563 utf8_cstrhas(const char *s
, const struct utf8_data
*ud
)
565 struct utf8_data
*copy
, *loop
;
568 copy
= utf8_fromcstr(s
);
569 for (loop
= copy
; loop
->size
!= 0; loop
++) {
570 if (loop
->size
!= ud
->size
)
572 if (memcmp(loop
->data
, ud
->data
, loop
->size
) == 0) {