2024-01-04 11:22:03 +03:00
|
|
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
2023-05-09 15:18:15 +03:00
|
|
|
|
|
|
|
#ifndef _XS_UNICODE_H
|
|
|
|
|
|
|
|
#define _XS_UNICODE_H
|
|
|
|
|
2024-08-05 07:01:21 +03:00
|
|
|
int xs_utf8_enc(char buf[4], unsigned int cpoint);
|
2024-02-15 19:44:28 +03:00
|
|
|
int xs_is_utf8_cont_byte(char c);
|
2024-05-21 15:12:15 +03:00
|
|
|
unsigned int xs_utf8_dec(const char **str);
|
2023-08-17 18:38:39 +03:00
|
|
|
int xs_unicode_width(unsigned int cpoint);
|
2023-11-17 05:51:04 +03:00
|
|
|
int xs_is_surrogate(unsigned int cpoint);
|
|
|
|
unsigned int xs_surrogate_dec(unsigned int p1, unsigned int p2);
|
|
|
|
unsigned int xs_surrogate_enc(unsigned int cpoint);
|
2023-08-03 09:42:38 +03:00
|
|
|
unsigned int *_xs_unicode_upper_search(unsigned int cpoint);
|
|
|
|
unsigned int *_xs_unicode_lower_search(unsigned int cpoint);
|
|
|
|
#define xs_unicode_is_upper(cpoint) (!!_xs_unicode_upper_search(cpoint))
|
|
|
|
#define xs_unicode_is_lower(cpoint) (!!_xs_unicode_lower_search(cpoint))
|
|
|
|
unsigned int xs_unicode_to_upper(unsigned int cpoint);
|
|
|
|
unsigned int xs_unicode_to_lower(unsigned int cpoint);
|
|
|
|
int xs_unicode_nfd(unsigned int cpoint, unsigned int *base, unsigned int *diac);
|
|
|
|
int xs_unicode_nfc(unsigned int base, unsigned int diac, unsigned int *cpoint);
|
2023-09-13 19:19:19 +03:00
|
|
|
int xs_unicode_is_alpha(unsigned int cpoint);
|
2023-05-09 15:18:15 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
#ifdef _XS_H
|
2024-08-05 07:01:21 +03:00
|
|
|
xs_str *xs_utf8_cat(xs_str *str, unsigned int cpoint);
|
2023-12-27 14:54:38 +03:00
|
|
|
#endif
|
|
|
|
|
2023-05-09 15:18:15 +03:00
|
|
|
#ifdef XS_IMPLEMENTATION
|
|
|
|
|
2024-04-14 20:26:49 +03:00
|
|
|
#ifndef xs_countof
|
|
|
|
#define xs_countof(a) (sizeof((a)) / sizeof((*a)))
|
2023-12-27 14:54:38 +03:00
|
|
|
#endif
|
2023-05-30 20:49:30 +03:00
|
|
|
|
2024-08-05 07:01:21 +03:00
|
|
|
int xs_utf8_enc(char buf[4], unsigned int cpoint)
|
2023-08-17 18:38:39 +03:00
|
|
|
/* encodes an Unicode codepoint to utf-8 into buf and returns the size in bytes */
|
2023-05-30 20:49:30 +03:00
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
char *p = buf;
|
2023-05-30 20:49:30 +03:00
|
|
|
|
|
|
|
if (cpoint < 0x80) /* 1 byte char */
|
|
|
|
*p++ = cpoint & 0xff;
|
|
|
|
else {
|
|
|
|
if (cpoint < 0x800) /* 2 byte char */
|
|
|
|
*p++ = 0xc0 | (cpoint >> 6);
|
|
|
|
else {
|
|
|
|
if (cpoint < 0x10000) /* 3 byte char */
|
|
|
|
*p++ = 0xe0 | (cpoint >> 12);
|
|
|
|
else { /* 4 byte char */
|
|
|
|
*p++ = 0xf0 | (cpoint >> 18);
|
|
|
|
*p++ = 0x80 | ((cpoint >> 12) & 0x3f);
|
|
|
|
}
|
|
|
|
|
|
|
|
*p++ = 0x80 | ((cpoint >> 6) & 0x3f);
|
|
|
|
}
|
|
|
|
|
|
|
|
*p++ = 0x80 | (cpoint & 0x3f);
|
|
|
|
}
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return p - buf;
|
2023-05-30 20:49:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-15 19:44:28 +03:00
|
|
|
int xs_is_utf8_cont_byte(char c)
|
|
|
|
/* returns true if c is an utf8 continuation byte */
|
|
|
|
{
|
|
|
|
return ((c & 0xc0) == 0x80);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-05-21 15:12:15 +03:00
|
|
|
unsigned int xs_utf8_dec(const char **str)
|
2023-08-03 09:42:38 +03:00
|
|
|
/* decodes an utf-8 char inside str and updates the pointer */
|
2023-05-30 20:49:30 +03:00
|
|
|
{
|
2024-05-21 15:12:15 +03:00
|
|
|
const char *p = *str;
|
2023-08-03 09:42:38 +03:00
|
|
|
unsigned int cpoint = 0;
|
2023-12-27 14:54:38 +03:00
|
|
|
unsigned char c = *p++;
|
2023-05-30 20:49:30 +03:00
|
|
|
int cb = 0;
|
|
|
|
|
|
|
|
if ((c & 0x80) == 0) { /* 1 byte char */
|
2023-08-03 09:42:38 +03:00
|
|
|
cpoint = c;
|
2023-05-30 20:49:30 +03:00
|
|
|
}
|
2023-05-09 15:18:15 +03:00
|
|
|
else
|
2023-05-30 20:49:30 +03:00
|
|
|
if ((c & 0xe0) == 0xc0) { /* 2 byte char */
|
2023-08-03 09:42:38 +03:00
|
|
|
cpoint = (c & 0x1f) << 6;
|
2023-05-30 20:49:30 +03:00
|
|
|
cb = 1;
|
2023-05-09 15:18:15 +03:00
|
|
|
}
|
|
|
|
else
|
2023-05-30 20:49:30 +03:00
|
|
|
if ((c & 0xf0) == 0xe0) { /* 3 byte char */
|
2023-08-03 09:42:38 +03:00
|
|
|
cpoint = (c & 0x0f) << 12;
|
2023-05-30 20:49:30 +03:00
|
|
|
cb = 2;
|
2023-05-09 15:18:15 +03:00
|
|
|
}
|
|
|
|
else
|
2023-05-30 20:49:30 +03:00
|
|
|
if ((c & 0xf8) == 0xf0) { /* 4 byte char */
|
2023-08-03 09:42:38 +03:00
|
|
|
cpoint = (c & 0x07) << 18;
|
2023-05-30 20:49:30 +03:00
|
|
|
cb = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process the continuation bytes */
|
2024-02-15 19:44:28 +03:00
|
|
|
while (cb > 0 && *p && xs_is_utf8_cont_byte(*p))
|
2023-12-27 14:54:38 +03:00
|
|
|
cpoint |= (*p++ & 0x3f) << (--cb * 6);
|
2023-05-09 15:18:15 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
/* incomplete or broken? */
|
|
|
|
if (cb)
|
|
|
|
cpoint = 0xfffd;
|
2023-09-13 19:19:19 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
*str = p;
|
|
|
|
return cpoint;
|
2023-09-13 19:19:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
/** Unicode character width: intentionally dead simple **/
|
2023-08-17 18:38:39 +03:00
|
|
|
|
|
|
|
static unsigned int xs_unicode_width_table[] = {
|
|
|
|
0x300, 0x36f, 0, /* diacritics */
|
|
|
|
0x1100, 0x11ff, 2, /* Hangul */
|
|
|
|
0x2e80, 0xa4cf, 2, /* CJK */
|
|
|
|
0xac00, 0xd7a3, 2, /* more Hangul */
|
|
|
|
0xe000, 0xf8ff, 0, /* private use */
|
|
|
|
0xf900, 0xfaff, 2, /* CJK compatibility */
|
|
|
|
0xff00, 0xff60, 2, /* full width things */
|
|
|
|
0xffdf, 0xffe6, 2, /* full width things */
|
|
|
|
0x1f200, 0x1ffff, 2, /* emojis */
|
|
|
|
0x20000, 0x2fffd, 2 /* more CJK */
|
|
|
|
};
|
|
|
|
|
|
|
|
int xs_unicode_width(unsigned int cpoint)
|
|
|
|
/* returns the width in columns of a Unicode codepoint (somewhat simplified) */
|
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
int b = 0;
|
2024-04-14 20:26:49 +03:00
|
|
|
int t = xs_countof(xs_unicode_width_table) / 3 - 1;
|
2023-12-27 14:54:38 +03:00
|
|
|
|
|
|
|
while (t >= b) {
|
|
|
|
int n = (b + t) / 2;
|
|
|
|
unsigned int *p = &xs_unicode_width_table[n * 3];
|
|
|
|
|
|
|
|
if (cpoint < p[0])
|
|
|
|
t = n - 1;
|
|
|
|
else
|
|
|
|
if (cpoint > p[1])
|
|
|
|
b = n + 1;
|
|
|
|
else
|
|
|
|
return p[2];
|
|
|
|
}
|
2023-08-17 18:38:39 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return 1;
|
2023-08-17 18:38:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-11-17 05:51:04 +03:00
|
|
|
/** surrogate pairs **/
|
|
|
|
|
|
|
|
int xs_is_surrogate(unsigned int cpoint)
|
|
|
|
/* checks if cpoint is the first element of a Unicode surrogate pair */
|
|
|
|
{
|
|
|
|
return cpoint >= 0xd800 && cpoint <= 0xdfff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int xs_surrogate_dec(unsigned int p1, unsigned int p2)
|
|
|
|
/* "decodes" a surrogate pair into a codepoint */
|
|
|
|
{
|
|
|
|
return 0x10000 | ((p1 & 0x3ff) << 10) | (p2 & 0x3ff);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int xs_surrogate_enc(unsigned int cpoint)
|
|
|
|
/* "encodes" a Unicode into a surrogate pair (p1 in the MSB word) */
|
|
|
|
{
|
|
|
|
unsigned int p1 = 0xd7c0 + (cpoint >> 10);
|
|
|
|
unsigned int p2 = 0xdc00 + (cpoint & 0x3ff);
|
|
|
|
|
|
|
|
return (p1 << 16) | p2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
#ifdef _XS_H
|
2023-08-03 09:42:38 +03:00
|
|
|
|
2024-08-05 07:01:21 +03:00
|
|
|
xs_str *xs_utf8_cat(xs_str *str, unsigned int cpoint)
|
2023-12-27 14:54:38 +03:00
|
|
|
/* encodes an Unicode codepoint to utf-8 into str */
|
2023-08-03 09:42:38 +03:00
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
char tmp[4];
|
|
|
|
|
2024-08-05 07:01:21 +03:00
|
|
|
int c = xs_utf8_enc(tmp, cpoint);
|
2023-08-03 09:42:38 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return xs_append_m(str, tmp, c);
|
2023-08-03 09:42:38 +03:00
|
|
|
}
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
#endif /* _XS_H */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _XS_UNICODE_TBL_H
|
|
|
|
|
|
|
|
/* include xs_unicode_tbl.h before this one to use these functions */
|
2023-08-03 09:42:38 +03:00
|
|
|
|
|
|
|
unsigned int *_xs_unicode_upper_search(unsigned int cpoint)
|
|
|
|
/* searches for an uppercase codepoint in the case fold table */
|
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
int b = 0;
|
2024-04-14 20:26:49 +03:00
|
|
|
int t = xs_countof(xs_unicode_case_fold_table) / 2 + 1;
|
2023-12-27 14:54:38 +03:00
|
|
|
|
|
|
|
while (t >= b) {
|
|
|
|
int n = (b + t) / 2;
|
|
|
|
unsigned int *p = &xs_unicode_case_fold_table[n * 2];
|
|
|
|
|
|
|
|
if (cpoint < p[0])
|
|
|
|
t = n - 1;
|
|
|
|
else
|
|
|
|
if (cpoint > p[0])
|
|
|
|
b = n + 1;
|
|
|
|
else
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2023-08-03 09:42:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int *_xs_unicode_lower_search(unsigned int cpoint)
|
|
|
|
/* searches for a lowercase codepoint in the case fold table */
|
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
unsigned int *p = xs_unicode_case_fold_table;
|
2024-04-14 20:26:49 +03:00
|
|
|
unsigned int *e = p + xs_countof(xs_unicode_case_fold_table);
|
2023-08-03 09:42:38 +03:00
|
|
|
|
|
|
|
while (p < e) {
|
2023-12-27 14:54:38 +03:00
|
|
|
if (cpoint == p[1])
|
2023-08-03 09:42:38 +03:00
|
|
|
return p;
|
|
|
|
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
unsigned int xs_unicode_to_lower(unsigned int cpoint)
|
|
|
|
/* returns the cpoint to lowercase */
|
2023-08-03 09:42:38 +03:00
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
unsigned int *p = _xs_unicode_upper_search(cpoint);
|
2023-08-03 09:42:38 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return p == NULL ? cpoint : p[1];
|
2023-08-03 09:42:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
unsigned int xs_unicode_to_upper(unsigned int cpoint)
|
|
|
|
/* returns the cpoint to uppercase */
|
2023-08-03 09:42:38 +03:00
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
unsigned int *p = _xs_unicode_lower_search(cpoint);
|
2023-08-03 09:42:38 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return p == NULL ? cpoint : p[0];
|
2023-05-09 15:18:15 +03:00
|
|
|
}
|
|
|
|
|
2023-05-30 20:49:30 +03:00
|
|
|
|
2023-08-03 09:42:38 +03:00
|
|
|
int xs_unicode_nfd(unsigned int cpoint, unsigned int *base, unsigned int *diac)
|
|
|
|
/* applies unicode Normalization Form D */
|
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
int b = 0;
|
2024-04-14 20:26:49 +03:00
|
|
|
int t = xs_countof(xs_unicode_nfd_table) / 3 - 1;
|
2023-12-27 14:54:38 +03:00
|
|
|
|
|
|
|
while (t >= b) {
|
|
|
|
int n = (b + t) / 2;
|
|
|
|
unsigned int *p = &xs_unicode_nfd_table[n * 3];
|
|
|
|
|
|
|
|
int c = cpoint - p[0];
|
|
|
|
|
|
|
|
if (c < 0)
|
|
|
|
t = n - 1;
|
|
|
|
else
|
|
|
|
if (c > 0)
|
|
|
|
b = n + 1;
|
|
|
|
else {
|
|
|
|
*base = p[1];
|
|
|
|
*diac = p[2];
|
|
|
|
return 1;
|
|
|
|
}
|
2023-08-03 09:42:38 +03:00
|
|
|
}
|
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return 0;
|
2023-08-03 09:42:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int xs_unicode_nfc(unsigned int base, unsigned int diac, unsigned int *cpoint)
|
|
|
|
/* applies unicode Normalization Form C */
|
|
|
|
{
|
|
|
|
unsigned int *p = xs_unicode_nfd_table;
|
2024-04-14 20:26:49 +03:00
|
|
|
unsigned int *e = p + xs_countof(xs_unicode_nfd_table);
|
2023-08-03 09:42:38 +03:00
|
|
|
|
|
|
|
while (p < e) {
|
|
|
|
if (p[1] == base && p[2] == diac) {
|
|
|
|
*cpoint = p[0];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
p += 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-09-13 19:19:19 +03:00
|
|
|
int xs_unicode_is_alpha(unsigned int cpoint)
|
|
|
|
/* checks if a codepoint is an alpha (i.e. a letter) */
|
|
|
|
{
|
2023-12-27 14:54:38 +03:00
|
|
|
int b = 0;
|
2024-04-14 20:26:49 +03:00
|
|
|
int t = xs_countof(xs_unicode_alpha_table) / 2 - 1;
|
2023-12-27 14:54:38 +03:00
|
|
|
|
|
|
|
while (t >= b) {
|
|
|
|
int n = (b + t) / 2;
|
|
|
|
unsigned int *p = &xs_unicode_alpha_table[n * 2];
|
|
|
|
|
|
|
|
if (cpoint < p[0])
|
|
|
|
t = n - 1;
|
|
|
|
else
|
|
|
|
if (cpoint > p[1])
|
|
|
|
b = n + 1;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
2023-09-13 19:19:19 +03:00
|
|
|
|
2023-12-27 14:54:38 +03:00
|
|
|
return 0;
|
2023-09-13 19:19:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-03 09:42:38 +03:00
|
|
|
#endif /* _XS_UNICODE_TBL_H */
|
|
|
|
|
2023-05-09 15:18:15 +03:00
|
|
|
#endif /* XS_IMPLEMENTATION */
|
|
|
|
|
|
|
|
#endif /* _XS_UNICODE_H */
|