forked from mintty/mintty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcwidth.c
222 lines (194 loc) · 6.7 KB
/
mcwidth.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
// xcwidth.c (part of mintty)
// Copyright 2009-10 Andy Koppe, 2017 Thomas Wolff
// Adapted from code by Markus Kuhn.
// Licensed under the terms of the GNU General Public License v3 or later.
#include "charset.h"
typedef struct {
xchar first;
xchar last;
} interval;
/* auxiliary function for binary search in interval table */
static bool
bisearch(xchar c, const interval table[], int len)
{
int min = 0, max = len - 1;
if (c < table[0].first || c > table[max].last)
return false;
while (max >= min) {
int mid = (min + max) / 2;
if (c > table[mid].last)
min = mid + 1;
else if (c < table[mid].first)
max = mid - 1;
else
return true;
}
return false;
}
/* sorted list of non-overlapping intervals of East Asian wide characters */
static const interval wide[] =
#include "wide.t"
/* sorted list of non-overlapping intervals of
East Asian Ambiguous characters, generated by
uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c
*/
static const interval ambiguous[] =
#include "ambiguous.t"
/*
* This is an implementation of wcwidth() (defined in IEEE Std 1002.1-2001)
* for Unicode:
* http://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html
*
* In fixed-width output devices, Latin characters all occupy a single
* "cell" position of equal width, whereas ideographic CJK characters
* occupy two such cells. Interoperability between terminal-line
* applications and (teletype-style) character terminals using the
* UTF-8 encoding requires agreement on which character should advance
* the cursor by how many cell positions. No established formal
* standards exist at present on which Unicode character shall occupy
* how many cell positions on character terminals. These routines are
* a first attempt of defining such behavior based on simple rules
* applied to data provided by the Unicode Consortium.
*
* For some graphical characters, the Unicode standard explicitly
* defines a character-cell width via the definition of the East Asian
* FullWidth (F), Wide (W), Half-width (H), and Narrow (Na) classes.
* In all these cases, there is no ambiguity about which width a
* terminal shall use. For characters in the East Asian Ambiguous (A)
* class, the width choice depends purely on a preference of backward
* compatibility with either historic CJK or Western practice.
* Choosing single-width for these characters is easy to justify as
* the appropriate long-term solution, as the CJK practice of
* displaying these characters as double-width comes from historic
* implementation simplicity (8-bit encoded characters were displayed
* single-width and 16-bit ones double-width, even for Greek,
* Cyrillic, etc.) and not any typographic considerations.
*
* Much less clear is the choice of width for the Not East Asian
* (Neutral) class. Existing practice does not dictate a width for any
* of these characters. It would nevertheless make sense
* typographically to allocate two character cells to characters such
* as for instance EM SPACE or VOLUME INTEGRAL, which cannot be
* represented adequately with a single-width glyph. The following
* routines at present merely assign a single-cell width to all
* neutral characters, in the interest of simplicity. This is not
* entirely satisfactory and should be reconsidered before
* establishing a formal standard in this area. At the moment, the
* decision which Not East Asian (Neutral) characters should be
* represented by double-width glyphs cannot yet be answered by
* applying a simple rule from the Unicode database content. Setting
* up a proper standard for the behavior of UTF-8 character terminals
* will require a careful analysis not only of each Unicode character,
* but also of each presentation form, something the author of these
* routines has avoided to do so far.
*
* http://www.unicode.org/unicode/reports/tr11/
*
* Markus Kuhn -- 2007-05-26 (Unicode 5.0)
*
* Permission to use, copy, modify, and distribute this software
* for any purpose and without fee is hereby granted. The author
* disclaims all warranties with regard to this software.
*
* Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
*/
/* The following function defines the column width of an ISO 10646
* character as follows:
*
* - The null character (U+0000) has a column width of 0.
*
* - Other C0/C1 control characters and DEL will lead to a return
* value of -1.
*
* - Non-spacing and enclosing combining characters (general
* category code Mn or Me in the Unicode database) have a
* column width of 0.
*
* - SOFT HYPHEN (U+00AD) has a column width of 1.
*
* - Other format characters (general category code Cf in the Unicode
* database) and ZERO WIDTH SPACE (U+200B) have a column width of 0.
*
* - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF)
* have a column width of 0.
*
* - Spacing characters in the East Asian Wide (W) or East Asian
* Full-width (F) category as defined in Unicode Technical
* Report #11 have a column width of 2.
*
* - All remaining characters (including all printable
* ISO 8859-1 and WGL4 characters, Unicode control characters,
* etc.) have a column width of 1.
*
* This implementation assumes that xchar (rather than wchar_t) characters
* are encoded in ISO 10646.
*/
/* sorted list of non-overlapping intervals of non-spacing characters
with Hangul fix: U+D7B0...U+D7C6 , U+D7CB...U+D7FB
generated by:
uniset +cat=Me +cat=Mn +cat=Cf -00AD +1160-11FF +200B +D7B0-D7C6 +D7CB-D7FB c
*/
static const interval combining[] =
#include "combining.t"
int
xcwidth(xchar c)
{
/* null character */
if (c == 0)
return 0;
/* printable ASCII characters */
if (c >= 0x20 && c < 0x7f)
return 1;
/* control characters */
if (c < 0xa0)
return -1;
/* non-spacing characters */
if (bisearch(c, combining, lengthof(combining)))
return 0;
/* CJK ambiguous characters */
if (bisearch(c, ambiguous, lengthof(ambiguous)))
return cs_ambig_wide + 1;
/* wide characters */
if (bisearch(c, wide, lengthof(wide)))
return 2;
/* anything else */
return 1;
}
bool
is_wide(xchar c)
{
return bisearch(c, wide, lengthof(wide));
}
bool
is_ambig(xchar c)
{
return bisearch(c, ambiguous, lengthof(ambiguous));
}
bool
is_ambigwide(xchar c)
{
return is_ambig(c) && !is_wide(c);
}
static const interval indic[] = {
#include "indicwide.t"
};
bool
indicwide(xchar c)
{
return bisearch(c, indic, lengthof(indic));
}
static const interval extra[] = {
#include "longchars.t"
};
bool
extrawide(xchar c)
{
return bisearch(c, extra, lengthof(extra));
}
static const interval combdouble[] =
#include "combdouble.t"
bool
combiningdouble(xchar c)
{
return bisearch(c, combdouble, lengthof(combdouble));
}