]> git.xonotic.org Git - xonotic/gmqcc.git/blob - utf8.c
Wrong operand order it's 0xf4u-0xc2u i.e 0x32.
[xonotic/gmqcc.git] / utf8.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include "gmqcc.h"
24
25 /*
26  * Based on the flexible and economical utf8 decoder:
27  * http://bjoern.hoehrmann.de/utf-8/decoder/dfa/
28  *
29  * This is slightly more economical, the fastest way to decode utf8 is
30  * with a lookup table as in:
31  *
32  * first 1-byte lookup
33  * if that fails, 2-byte lookup
34  * if that fails, 3-byte lookup
35  * if that fails, 4-byte lookup
36  *
37  * The following table can be generated with some interval trickery.
38  * consider an interval [a, b):
39  *
40  *      a must be 0x80 or b must be 0xc0, lower 3 bits
41  *      are clear, thus:
42  *          interval(a,b) = ((uint32_t)((a==0x80?0x40-b:-a)<<23))
43  *
44  * The failstate can be represented as interval(0x80,0x80), it's
45  * odd to see but this is a full state machine.
46  *
47  * The table than maps the corresponding sections as a serise of
48  * intervals.
49  *
50  * In this table the transition values are pre-multiplied with 16 to
51  * save a shift instruction for every byte, we throw away fillers
52  * which makes the table smaller.
53  */
54 static const uint32_t utf8_tab[] = {
55     0xC0000002, 0xC0000003, 0xC0000004, 0xC0000005, 0xC0000006, 0xC0000007,
56     0xC0000008, 0xC0000009, 0xC000000A, 0xC000000B, 0xC000000C, 0xC000000D,
57     0xC000000E, 0xC000000F, 0xC0000010, 0xC0000011, 0xC0000012, 0xC0000013,
58     0xC0000014, 0xC0000015, 0xC0000016, 0xC0000017, 0xC0000018, 0xC0000019,
59     0xC000001A, 0xC000001B, 0xC000001C, 0xC000001D, 0xC000001E, 0xC000001F,
60     0xB3000000, 0xC3000001, 0xC3000002, 0xC3000003, 0xC3000004, 0xC3000005,
61     0xC3000006, 0xC3000007, 0xC3000008, 0xC3000009, 0xC300000A, 0xC300000B,
62     0xC300000C, 0xD300000D, 0xC300000E, 0xC300000F, 0xBB0C0000, 0xC30C0001,
63     0xC30C0002, 0xC30C0003, 0xD30C0004, 0x58257830, 0x202C,     0x3B031B01,
64     0x30,       0x5,        0xFFFFFD1C, 0x7C,       0xFFFFFD5C, 0x4C,
65     0xFFFFFE4C, 0xA4,       0xFFFFFE8C, 0xC4,       0xFFFFFEFC, 0x10C,
66     0x14,       0x0,        0x527A01,   0x1107801,  0x8070C1B,  0x10070190,
67     0x14,       0x1C,       0xFFFFFD08, 0x2A,       0x0,        0x0,
68     0x14,       0x0,        0x527A01,   0x1107801,  0x8070C1B,  0x190,
69     0x24,       0x1C,       0xFFFFFC98, 0x40,       0x46100E00, 0xF4A180E,
70     0x8008770B, 0x3B1A3F00, 0x2224332A, 0x0,        0x1C,       0x44,
71     0xFFFFFDA0, 0x3E,       0x100E4100, 0xD430286,  0x70C7906,  0x8,
72     0x44,       0x64,       0xFFFFFDC0, 0x65,       0x100E4200, 0xE45028F,
73     0x45038E18, 0x48D200E,  0x8C280E45, 0x300E4805, 0xE480686,  0x4D078338,
74     0xE6C400E,  0x300E4138, 0x42280E41, 0xE42200E,  0x100E4218, 0x80E42,
75     0x14,       0xAC,       0xFFFFFDE8, 0x2,        0x0,        0x0,
76     0x0,        0x0,        0x4004D0,   0x0,        0x4004B0,   0x0,
77     0x0,        0x0,        0x1,        0x0,        0x1,        0x0,
78     0xC,        0x0,        0x4003A8,   0x0,        0xD,        0x0,
79     0x4005B4,   0x0,        0x19,       0x0,        0x6007E0,   0x0,
80     0x1B,       0x0,        0x8,        0x0,        0x1A,       0x0,
81     0x6007E8,   0x0,        0x1C,       0x0,        0x8,        0x0,
82     0x6FFFFEF5, 0x0,        0x400260,   0x0,        0x5,        0x0,
83     0x4002E0,   0x0,        0x6,        0x0,        0x400280,   0x0,
84     0xA,        0x0,        0x3F,       0x0,        0xB,        0x0,
85     0x18,       0x0,        0x15,       0x0,        0x0,        0x0,
86     0x3,        0x0,        0x6009D0,   0x0,        0x2,        0x0,
87     0x48,       0x0,        0x14,       0x0,        0x7,        0x0,
88     0x17,       0x0,        0x400360,   0x0,        0x7,        0x0
89 };
90
91 int utf8_from(char *s, utf8ch_t ch) {
92     if (!s)
93         return 0;
94
95     if ((unsigned)ch < 0x80) {
96         *s = ch;
97         return 1;
98     } else if ((unsigned)ch < 0x800) {
99         *s++ = 0xC0 | (ch >> 6);
100         *s   = 0x80 | (ch & 0x3F);
101         return 2;
102     } else if ((unsigned)ch < 0xD800 || (unsigned)ch - 0xE000 < 0x2000) {
103         *s++ = 0xE0 | (ch >> 12);
104         *s++ = 0x80 | ((ch >> 6) & 0x3F);
105         *s   = 0x80 | (ch & 0x3F);
106         return 3;
107     } else if ((unsigned)ch - 0x10000 < 0x100000) {
108         *s++ = 0xF0 | (ch >> 18);
109         *s++ = 0x80 | ((ch >> 12) & 0x3F);
110         *s++ = 0x80 | ((ch >> 6) & 0x3F);
111         *s   = 0x80 | (ch & 0x3F);
112         return 4;
113     }
114     return 0;
115 }
116
117 int utf8_to(utf8ch_t *i, const unsigned char *s, size_t n) {
118     unsigned c,j;
119
120     if (!s || !n)
121         return 0;
122
123     /* This is consistent with mbtowc behaviour. */
124     if (!i)
125         i = (utf8ch_t*)(void*)&i;
126
127     if (*s < 0x80)
128         return !!(*i = *s);
129     if (*s-0xC2U > 0x32)
130         return 0;
131
132     c = utf8_tab[*s++-0xC2U];
133
134     /*
135      * Avoid excessive checks against n.
136      *
137      * When shifting state `n-1` times does not clear the high bit,
138      * then the value of `n` won't satisfy the condition to read a
139      * character as it will be insufficent.
140      */
141     if (n < 4 && ((c<<(6*n-6)) & (1U << 31)))
142         return 0;
143
144     /*
145      * The upper 6 state bits are negitive integer offset to a bound-check
146      * next byte equivlant to: ((b-0x80)+(b+offset))&~0x3f
147      */
148     if ((((*s>>3)-0x10)|((*s>>3)+((int32_t)c>>26))) & ~7)
149         return 0;
150
151     for (j=2; j<3; j++) {
152         if (!((c = c<<6 | (*s++-0x80))&(1U<<31))) {
153             *i = c;
154             return j;
155         }
156         if (*s-0x80U >= 0x40)
157             return 0;
158     }
159
160     *i = c<<6 | (*s++-0x80);
161     return 4;
162 }