blob: 6a0dd25b0fe414764f89ae48384f68c959dcafe3 [file] [log] [blame]
Johannes Schindelin9e832662006-12-22 22:06:08 +01001#include "git-compat-util.h"
Johannes Schindelina94410c2008-11-10 18:47:00 +01002#include "strbuf.h"
Johannes Schindelin9e832662006-12-22 22:06:08 +01003#include "utf8.h"
4
5/* This code is originally from http://www.cl.cam.ac.uk/~mgk25/ucs/ */
6
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +01007static const char utf16_be_bom[] = {'\xFE', '\xFF'};
8static const char utf16_le_bom[] = {'\xFF', '\xFE'};
9static const char utf32_be_bom[] = {'\0', '\0', '\xFE', '\xFF'};
10static const char utf32_le_bom[] = {'\xFF', '\xFE', '\0', '\0'};
11
Johannes Schindelin9e832662006-12-22 22:06:08 +010012struct interval {
John Keepinga68a67d2014-02-16 16:06:04 +000013 ucs_char_t first;
14 ucs_char_t last;
Johannes Schindelin9e832662006-12-22 22:06:08 +010015};
16
Nguyễn Thái Ngọc Duy16406322013-04-19 09:08:52 +100017size_t display_mode_esc_sequence_len(const char *s)
Nguyễn Thái Ngọc Duy4247fe72013-04-19 09:08:44 +100018{
19 const char *p = s;
20 if (*p++ != '\033')
21 return 0;
22 if (*p++ != '[')
23 return 0;
24 while (isdigit(*p) || *p == ';')
25 p++;
26 if (*p++ != 'm')
27 return 0;
28 return p - s;
29}
30
Johannes Schindelin9e832662006-12-22 22:06:08 +010031/* auxiliary function for binary search in interval table */
Junio C Hamanof3fa1832007-11-08 15:35:32 -080032static int bisearch(ucs_char_t ucs, const struct interval *table, int max)
33{
Johannes Schindelin9e832662006-12-22 22:06:08 +010034 int min = 0;
35 int mid;
36
37 if (ucs < table[0].first || ucs > table[max].last)
38 return 0;
39 while (max >= min) {
Derrick Stolee19716b22017-10-08 14:29:37 -040040 mid = min + (max - min) / 2;
Johannes Schindelin9e832662006-12-22 22:06:08 +010041 if (ucs > table[mid].last)
42 min = mid + 1;
43 else if (ucs < table[mid].first)
44 max = mid - 1;
45 else
46 return 1;
47 }
48
49 return 0;
50}
51
52/* The following two functions define the column width of an ISO 10646
53 * character as follows:
54 *
55 * - The null character (U+0000) has a column width of 0.
56 *
57 * - Other C0/C1 control characters and DEL will lead to a return
58 * value of -1.
59 *
60 * - Non-spacing and enclosing combining characters (general
61 * category code Mn or Me in the Unicode database) have a
62 * column width of 0.
63 *
64 * - SOFT HYPHEN (U+00AD) has a column width of 1.
65 *
66 * - Other format characters (general category code Cf in the Unicode
67 * database) and ZERO WIDTH SPACE (U+200B) have a column width of 0.
68 *
69 * - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF)
70 * have a column width of 0.
71 *
72 * - Spacing characters in the East Asian Wide (W) or East Asian
73 * Full-width (F) category as defined in Unicode Technical
74 * Report #11 have a column width of 2.
75 *
76 * - All remaining characters (including all printable
77 * ISO 8859-1 and WGL4 characters, Unicode control characters,
78 * etc.) have a column width of 1.
79 *
Ramsay Jones28321142007-03-03 18:28:57 +000080 * This implementation assumes that ucs_char_t characters are encoded
Johannes Schindelin9e832662006-12-22 22:06:08 +010081 * in ISO 10646.
82 */
83
Amos Waterlandb51be132007-05-08 00:46:08 -040084static int git_wcwidth(ucs_char_t ch)
Johannes Schindelin9e832662006-12-22 22:06:08 +010085{
86 /*
87 * Sorted list of non-overlapping intervals of non-spacing characters,
Johannes Schindelin9e832662006-12-22 22:06:08 +010088 */
Stefan Bellere233bef2018-04-10 14:26:17 -070089#include "unicode-width.h"
Johannes Schindelin9e832662006-12-22 22:06:08 +010090
91 /* test for 8-bit control characters */
92 if (ch == 0)
93 return 0;
94 if (ch < 32 || (ch >= 0x7f && ch < 0xa0))
95 return -1;
96
97 /* binary search in table of non-spacing characters */
Beat Bollifa364ad2019-10-11 20:41:23 +020098 if (bisearch(ch, zero_width, ARRAY_SIZE(zero_width) - 1))
Johannes Schindelin9e832662006-12-22 22:06:08 +010099 return 0;
100
Torsten Bögershausen08460342014-05-09 23:51:38 +0200101 /* binary search in table of double width characters */
Beat Bollifa364ad2019-10-11 20:41:23 +0200102 if (bisearch(ch, double_width, ARRAY_SIZE(double_width) - 1))
Torsten Bögershausen08460342014-05-09 23:51:38 +0200103 return 2;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100104
Torsten Bögershausen08460342014-05-09 23:51:38 +0200105 return 1;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100106}
107
108/*
Junio C Hamano396ccf12008-01-06 19:02:22 -0800109 * Pick one ucs character starting from the location *start points at,
110 * and return it, while updating the *start pointer to point at the
Junio C Hamano44b25b82008-01-02 01:49:58 -0800111 * end of that character. When remainder_p is not NULL, the location
112 * holds the number of bytes remaining in the string that we are allowed
113 * to pick from. Otherwise we are allowed to pick up to the NUL that
114 * would eventually appear in the string. *remainder_p is also reduced
115 * by the number of bytes we have consumed.
Junio C Hamano396ccf12008-01-06 19:02:22 -0800116 *
117 * If the string was not a valid UTF-8, *start pointer is set to NULL
118 * and the return value is undefined.
Johannes Schindelin9e832662006-12-22 22:06:08 +0100119 */
Junio C Hamano5e133b82010-01-11 22:32:29 -0800120static ucs_char_t pick_one_utf8_char(const char **start, size_t *remainder_p)
Johannes Schindelin9e832662006-12-22 22:06:08 +0100121{
122 unsigned char *s = (unsigned char *)*start;
Ramsay Jones28321142007-03-03 18:28:57 +0000123 ucs_char_t ch;
Junio C Hamano44b25b82008-01-02 01:49:58 -0800124 size_t remainder, incr;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100125
Junio C Hamano44b25b82008-01-02 01:49:58 -0800126 /*
127 * A caller that assumes NUL terminated text can choose
128 * not to bother with the remainder length. We will
129 * stop at the first NUL.
130 */
131 remainder = (remainder_p ? *remainder_p : 999);
132
133 if (remainder < 1) {
134 goto invalid;
135 } else if (*s < 0x80) {
Johannes Schindelin9e832662006-12-22 22:06:08 +0100136 /* 0xxxxxxx */
137 ch = *s;
Junio C Hamano44b25b82008-01-02 01:49:58 -0800138 incr = 1;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100139 } else if ((s[0] & 0xe0) == 0xc0) {
140 /* 110XXXXx 10xxxxxx */
Junio C Hamano44b25b82008-01-02 01:49:58 -0800141 if (remainder < 2 ||
142 (s[1] & 0xc0) != 0x80 ||
143 (s[0] & 0xfe) == 0xc0)
Johannes Schindelin9e832662006-12-22 22:06:08 +0100144 goto invalid;
145 ch = ((s[0] & 0x1f) << 6) | (s[1] & 0x3f);
Junio C Hamano44b25b82008-01-02 01:49:58 -0800146 incr = 2;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100147 } else if ((s[0] & 0xf0) == 0xe0) {
148 /* 1110XXXX 10Xxxxxx 10xxxxxx */
Junio C Hamano44b25b82008-01-02 01:49:58 -0800149 if (remainder < 3 ||
150 (s[1] & 0xc0) != 0x80 ||
151 (s[2] & 0xc0) != 0x80 ||
152 /* overlong? */
153 (s[0] == 0xe0 && (s[1] & 0xe0) == 0x80) ||
154 /* surrogate? */
155 (s[0] == 0xed && (s[1] & 0xe0) == 0xa0) ||
156 /* U+FFFE or U+FFFF? */
157 (s[0] == 0xef && s[1] == 0xbf &&
158 (s[2] & 0xfe) == 0xbe))
Johannes Schindelin9e832662006-12-22 22:06:08 +0100159 goto invalid;
160 ch = ((s[0] & 0x0f) << 12) |
161 ((s[1] & 0x3f) << 6) | (s[2] & 0x3f);
Junio C Hamano44b25b82008-01-02 01:49:58 -0800162 incr = 3;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100163 } else if ((s[0] & 0xf8) == 0xf0) {
164 /* 11110XXX 10XXxxxx 10xxxxxx 10xxxxxx */
Junio C Hamano44b25b82008-01-02 01:49:58 -0800165 if (remainder < 4 ||
166 (s[1] & 0xc0) != 0x80 ||
167 (s[2] & 0xc0) != 0x80 ||
168 (s[3] & 0xc0) != 0x80 ||
169 /* overlong? */
170 (s[0] == 0xf0 && (s[1] & 0xf0) == 0x80) ||
171 /* > U+10FFFF? */
172 (s[0] == 0xf4 && s[1] > 0x8f) || s[0] > 0xf4)
Johannes Schindelin9e832662006-12-22 22:06:08 +0100173 goto invalid;
174 ch = ((s[0] & 0x07) << 18) | ((s[1] & 0x3f) << 12) |
175 ((s[2] & 0x3f) << 6) | (s[3] & 0x3f);
Junio C Hamano44b25b82008-01-02 01:49:58 -0800176 incr = 4;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100177 } else {
178invalid:
179 *start = NULL;
180 return 0;
181 }
182
Junio C Hamano44b25b82008-01-02 01:49:58 -0800183 *start += incr;
184 if (remainder_p)
185 *remainder_p = remainder - incr;
Junio C Hamano396ccf12008-01-06 19:02:22 -0800186 return ch;
187}
188
189/*
190 * This function returns the number of columns occupied by the character
191 * pointed to by the variable start. The pointer is updated to point at
Junio C Hamano44b25b82008-01-02 01:49:58 -0800192 * the next character. When remainder_p is not NULL, it points at the
193 * location that stores the number of remaining bytes we can use to pick
194 * a character (see pick_one_utf8_char() above).
Junio C Hamano396ccf12008-01-06 19:02:22 -0800195 */
Junio C Hamano44b25b82008-01-02 01:49:58 -0800196int utf8_width(const char **start, size_t *remainder_p)
Junio C Hamano396ccf12008-01-06 19:02:22 -0800197{
Junio C Hamano44b25b82008-01-02 01:49:58 -0800198 ucs_char_t ch = pick_one_utf8_char(start, remainder_p);
Junio C Hamano396ccf12008-01-06 19:02:22 -0800199 if (!*start)
200 return 0;
Amos Waterlandb51be132007-05-08 00:46:08 -0400201 return git_wcwidth(ch);
Johannes Schindelin9e832662006-12-22 22:06:08 +0100202}
203
Geoffrey Thomas8a9391e2009-01-30 04:41:28 -0500204/*
205 * Returns the total number of columns required by a null-terminated
206 * string, assuming that the string is utf8. Returns strlen() instead
207 * if the string does not look like a valid utf8 string.
208 */
Patrick Steinhardt522cc872022-12-01 15:46:53 +0100209int utf8_strnwidth(const char *string, size_t len, int skip_ansi)
Geoffrey Thomas8a9391e2009-01-30 04:41:28 -0500210{
Geoffrey Thomas8a9391e2009-01-30 04:41:28 -0500211 const char *orig = string;
Patrick Steinhardt937b71c2022-12-01 15:47:04 +0100212 size_t width = 0;
Geoffrey Thomas8a9391e2009-01-30 04:41:28 -0500213
Nguyễn Thái Ngọc Duy2bc1e7e2013-04-19 09:08:45 +1000214 while (string && string < orig + len) {
Patrick Steinhardt937b71c2022-12-01 15:47:04 +0100215 int glyph_width;
216 size_t skip;
Patrick Steinhardt17d23e82022-12-01 15:47:00 +0100217
Nguyễn Thái Ngọc Duy2bc1e7e2013-04-19 09:08:45 +1000218 while (skip_ansi &&
219 (skip = display_mode_esc_sequence_len(string)) != 0)
220 string += skip;
Patrick Steinhardt17d23e82022-12-01 15:47:00 +0100221
222 glyph_width = utf8_width(&string, NULL);
223 if (glyph_width > 0)
224 width += glyph_width;
Geoffrey Thomas8a9391e2009-01-30 04:41:28 -0500225 }
Patrick Steinhardt937b71c2022-12-01 15:47:04 +0100226
227 /*
228 * TODO: fix the interface of this function and `utf8_strwidth()` to
229 * return `size_t` instead of `int`.
230 */
231 return cast_size_t_to_int(string ? width : len);
Nguyễn Thái Ngọc Duy2bc1e7e2013-04-19 09:08:45 +1000232}
233
234int utf8_strwidth(const char *string)
235{
Patrick Steinhardt522cc872022-12-01 15:46:53 +0100236 return utf8_strnwidth(string, strlen(string), 0);
Geoffrey Thomas8a9391e2009-01-30 04:41:28 -0500237}
238
Johannes Schindelin9e832662006-12-22 22:06:08 +0100239int is_utf8(const char *text)
240{
241 while (*text) {
242 if (*text == '\n' || *text == '\t' || *text == '\r') {
243 text++;
244 continue;
245 }
Junio C Hamano44b25b82008-01-02 01:49:58 -0800246 utf8_width(&text, NULL);
Johannes Schindelin9e832662006-12-22 22:06:08 +0100247 if (!text)
248 return 0;
249 }
250 return 1;
251}
252
René Scharfe37bb5d72009-11-22 17:15:29 +0100253static void strbuf_add_indented_text(struct strbuf *buf, const char *text,
254 int indent, int indent2)
255{
256 if (indent < 0)
257 indent = 0;
258 while (*text) {
259 const char *eol = strchrnul(text, '\n');
260 if (*eol == '\n')
261 eol++;
René Scharfe3c0ff442010-02-19 23:15:55 +0100262 strbuf_addchars(buf, ' ', indent);
René Scharfe68ad5e12010-02-19 23:16:45 +0100263 strbuf_add(buf, text, eol - text);
René Scharfe37bb5d72009-11-22 17:15:29 +0100264 text = eol;
265 indent = indent2;
266 }
267}
268
Johannes Schindelin9e832662006-12-22 22:06:08 +0100269/*
270 * Wrap the text, if necessary. The variable indent is the indent for the
271 * first line, indent2 is the indent for all other lines.
Johannes Schindelin094e03b2007-02-27 16:20:31 +0100272 * If indent is negative, assume that already -indent columns have been
273 * consumed (and no extra indent is necessary for the first line).
Johannes Schindelin9e832662006-12-22 22:06:08 +0100274 */
Steffen Prohaskae0db1762012-12-11 06:59:22 +0100275void strbuf_add_wrapped_text(struct strbuf *buf,
René Scharfe462749b2010-02-19 23:20:44 +0100276 const char *text, int indent1, int indent2, int width)
Johannes Schindelin9e832662006-12-22 22:06:08 +0100277{
René Scharfe462749b2010-02-19 23:20:44 +0100278 int indent, w, assume_utf8 = 1;
279 const char *bol, *space, *start = text;
280 size_t orig_len = buf->len;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100281
Junio C Hamano00d39472009-10-18 23:40:35 -0700282 if (width <= 0) {
René Scharfe462749b2010-02-19 23:20:44 +0100283 strbuf_add_indented_text(buf, text, indent1, indent2);
Steffen Prohaskae0db1762012-12-11 06:59:22 +0100284 return;
Junio C Hamano00d39472009-10-18 23:40:35 -0700285 }
286
René Scharfe462749b2010-02-19 23:20:44 +0100287retry:
288 bol = text;
289 w = indent = indent1;
290 space = NULL;
Johannes Schindelin094e03b2007-02-27 16:20:31 +0100291 if (indent < 0) {
292 w = -indent;
293 space = text;
294 }
295
Johannes Schindelin9e832662006-12-22 22:06:08 +0100296 for (;;) {
René Scharfe8a3c63e2009-11-23 23:40:03 +0100297 char c;
298 size_t skip;
299
300 while ((skip = display_mode_esc_sequence_len(text)))
301 text += skip;
302
303 c = *text;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100304 if (!c || isspace(c)) {
Jan H. Schönherr14e1a4e2012-10-18 16:43:28 +0200305 if (w <= width || !space) {
Johannes Schindelin9e832662006-12-22 22:06:08 +0100306 const char *start = bol;
Johannes Schindelinae0b2702007-11-11 14:14:15 +0000307 if (!c && text == start)
Steffen Prohaskae0db1762012-12-11 06:59:22 +0100308 return;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100309 if (space)
310 start = space;
311 else
René Scharfe3c0ff442010-02-19 23:15:55 +0100312 strbuf_addchars(buf, ' ', indent);
René Scharfe68ad5e12010-02-19 23:16:45 +0100313 strbuf_add(buf, start, text - start);
Johannes Schindelin094e03b2007-02-27 16:20:31 +0100314 if (!c)
Steffen Prohaskae0db1762012-12-11 06:59:22 +0100315 return;
Johannes Schindelin9e832662006-12-22 22:06:08 +0100316 space = text;
Johannes Schindelinae0b2702007-11-11 14:14:15 +0000317 if (c == '\t')
318 w |= 0x07;
319 else if (c == '\n') {
320 space++;
321 if (*space == '\n') {
René Scharfe68ad5e12010-02-19 23:16:45 +0100322 strbuf_addch(buf, '\n');
Johannes Schindelinae0b2702007-11-11 14:14:15 +0000323 goto new_line;
324 }
325 else if (!isalnum(*space))
326 goto new_line;
327 else
René Scharfe68ad5e12010-02-19 23:16:45 +0100328 strbuf_addch(buf, ' ');
Johannes Schindelinae0b2702007-11-11 14:14:15 +0000329 }
Johannes Schindelin9e832662006-12-22 22:06:08 +0100330 w++;
331 text++;
332 }
333 else {
Johannes Schindelinae0b2702007-11-11 14:14:15 +0000334new_line:
René Scharfe68ad5e12010-02-19 23:16:45 +0100335 strbuf_addch(buf, '\n');
Johannes Schindelin62273822007-03-02 15:28:00 +0100336 text = bol = space + isspace(*space);
Johannes Schindelin9e832662006-12-22 22:06:08 +0100337 space = NULL;
338 w = indent = indent2;
339 }
340 continue;
341 }
René Scharfe462749b2010-02-19 23:20:44 +0100342 if (assume_utf8) {
Junio C Hamano44b25b82008-01-02 01:49:58 -0800343 w += utf8_width(&text, NULL);
René Scharfe462749b2010-02-19 23:20:44 +0100344 if (!text) {
345 assume_utf8 = 0;
346 text = start;
347 strbuf_setlen(buf, orig_len);
348 goto retry;
349 }
350 } else {
Johannes Schindelin9e832662006-12-22 22:06:08 +0100351 w++;
352 text++;
353 }
354 }
355}
Junio C Hamanob45974a2006-12-23 23:36:55 -0800356
Steffen Prohaskae0db1762012-12-11 06:59:22 +0100357void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len,
Jeff King98acc832011-02-23 04:50:19 -0500358 int indent, int indent2, int width)
359{
360 char *tmp = xstrndup(data, len);
Steffen Prohaskae0db1762012-12-11 06:59:22 +0100361 strbuf_add_wrapped_text(buf, tmp, indent, indent2, width);
Jeff King98acc832011-02-23 04:50:19 -0500362 free(tmp);
Jeff King98acc832011-02-23 04:50:19 -0500363}
364
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000365void strbuf_utf8_replace(struct strbuf *sb_src, int pos, int width,
366 const char *subst)
367{
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100368 const char *src = sb_src->buf, *end = sb_src->buf + sb_src->len;
369 struct strbuf dst;
370 int w = 0;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000371
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100372 strbuf_init(&dst, sb_src->len);
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000373
374 while (src < end) {
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100375 const char *old;
Patrick Steinhardt81c2d4c2022-12-01 15:47:10 +0100376 int glyph_width;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000377 size_t n;
378
379 while ((n = display_mode_esc_sequence_len(src))) {
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100380 strbuf_add(&dst, src, n);
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000381 src += n;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000382 }
383
Nguyễn Thái Ngọc Duy43087592014-08-10 14:05:21 +0700384 if (src >= end)
385 break;
386
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000387 old = src;
Patrick Steinhardt81c2d4c2022-12-01 15:47:10 +0100388 glyph_width = utf8_width((const char**)&src, NULL);
389 if (!src) /* broken utf-8, do nothing */
Rene Scharfe9a012bf2017-08-30 20:20:16 +0200390 goto out;
Patrick Steinhardt81c2d4c2022-12-01 15:47:10 +0100391
392 /*
393 * In case we see a control character we copy it into the
394 * buffer, but don't add it to the width.
395 */
396 if (glyph_width < 0)
397 glyph_width = 0;
398
399 if (glyph_width && w >= pos && w < pos + width) {
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000400 if (subst) {
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100401 strbuf_addstr(&dst, subst);
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000402 subst = NULL;
403 }
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100404 } else {
405 strbuf_add(&dst, old, src - old);
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000406 }
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100407
Patrick Steinhardt81c2d4c2022-12-01 15:47:10 +0100408 w += glyph_width;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000409 }
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100410
411 strbuf_swap(sb_src, &dst);
Rene Scharfe9a012bf2017-08-30 20:20:16 +0200412out:
Patrick Steinhardtf930a232022-12-01 15:47:15 +0100413 strbuf_release(&dst);
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000414}
415
Lars Schneider2f0c4a32018-04-15 20:16:04 +0200416/*
417 * Returns true (1) if the src encoding name matches the dst encoding
418 * name directly or one of its alternative names. E.g. UTF-16BE is the
419 * same as UTF16BE.
420 */
421static int same_utf_encoding(const char *src, const char *dst)
422{
René Scharfe89f8cab2019-11-08 21:25:21 +0100423 if (skip_iprefix(src, "utf", &src) && skip_iprefix(dst, "utf", &dst)) {
424 skip_prefix(src, "-", &src);
425 skip_prefix(dst, "-", &dst);
426 return !strcasecmp(src, dst);
Lars Schneider2f0c4a32018-04-15 20:16:04 +0200427 }
428 return 0;
429}
430
Junio C Hamano677cfed2006-12-30 12:20:43 -0800431int is_encoding_utf8(const char *name)
432{
433 if (!name)
434 return 1;
Lars Schneider2f0c4a32018-04-15 20:16:04 +0200435 if (same_utf_encoding("utf-8", name))
Junio C Hamano677cfed2006-12-30 12:20:43 -0800436 return 1;
437 return 0;
438}
439
Junio C Hamano0e18bcd2012-10-18 22:41:56 -0700440int same_encoding(const char *src, const char *dst)
441{
Lars Schneider2f0c4a32018-04-15 20:16:04 +0200442 static const char utf8[] = "UTF-8";
443
444 if (!src)
445 src = utf8;
446 if (!dst)
447 dst = utf8;
448 if (same_utf_encoding(src, dst))
Junio C Hamano0e18bcd2012-10-18 22:41:56 -0700449 return 1;
450 return !strcasecmp(src, dst);
451}
452
Junio C Hamanob45974a2006-12-23 23:36:55 -0800453/*
Jiang Xinc0821962013-02-09 14:31:09 +0800454 * Wrapper for fprintf and returns the total number of columns required
455 * for the printed string, assuming that the string is utf8.
456 */
457int utf8_fprintf(FILE *stream, const char *format, ...)
458{
459 struct strbuf buf = STRBUF_INIT;
460 va_list arg;
461 int columns;
462
463 va_start(arg, format);
464 strbuf_vaddf(&buf, format, arg);
465 va_end(arg);
466
467 columns = fputs(buf.buf, stream);
468 if (0 <= columns) /* keep the error from the I/O */
469 columns = utf8_strwidth(buf.buf);
470 strbuf_release(&buf);
471 return columns;
472}
473
474/*
Junio C Hamanob45974a2006-12-23 23:36:55 -0800475 * Given a buffer and its encoding, return it re-encoded
476 * with iconv. If the conversion fails, returns NULL.
477 */
478#ifndef NO_ICONV
Brandon Casey309dbc82009-06-05 18:36:12 -0500479#if defined(OLD_ICONV) || (defined(__sun__) && !defined(_XPG6))
Ramsay Jonesfd547a92007-03-03 18:29:03 +0000480 typedef const char * iconv_ibp;
481#else
482 typedef char * iconv_ibp;
483#endif
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100484char *reencode_string_iconv(const char *in, size_t insz, iconv_t conv,
485 size_t bom_len, size_t *outsz_p)
Junio C Hamanob45974a2006-12-23 23:36:55 -0800486{
Torsten Bögershausen76759c72012-07-08 15:50:25 +0200487 size_t outsz, outalloc;
Ramsay Jonesfd547a92007-03-03 18:29:03 +0000488 char *out, *outpos;
489 iconv_ibp cp;
Junio C Hamanob45974a2006-12-23 23:36:55 -0800490
Junio C Hamanob45974a2006-12-23 23:36:55 -0800491 outsz = insz;
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100492 outalloc = st_add(outsz, 1 + bom_len); /* for terminating NUL */
Junio C Hamanob45974a2006-12-23 23:36:55 -0800493 out = xmalloc(outalloc);
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100494 outpos = out + bom_len;
Ramsay Jonesfd547a92007-03-03 18:29:03 +0000495 cp = (iconv_ibp)in;
Junio C Hamanob45974a2006-12-23 23:36:55 -0800496
497 while (1) {
498 size_t cnt = iconv(conv, &cp, &insz, &outpos, &outsz);
499
John Keepingdf5213b2014-02-16 16:06:03 +0000500 if (cnt == (size_t) -1) {
Junio C Hamanob45974a2006-12-23 23:36:55 -0800501 size_t sofar;
502 if (errno != E2BIG) {
503 free(out);
Junio C Hamanob45974a2006-12-23 23:36:55 -0800504 return NULL;
505 }
506 /* insz has remaining number of bytes.
507 * since we started outsz the same as insz,
508 * it is likely that insz is not enough for
509 * converting the rest.
510 */
511 sofar = outpos - out;
Jeff King77aa03d2018-07-24 06:50:10 -0400512 outalloc = st_add3(sofar, st_mult(insz, 2), 32);
Junio C Hamanob45974a2006-12-23 23:36:55 -0800513 out = xrealloc(out, outalloc);
514 outpos = out + sofar;
515 outsz = outalloc - sofar - 1;
516 }
517 else {
518 *outpos = '\0';
Nguyễn Thái Ngọc Duyb782bba2013-04-19 09:08:46 +1000519 if (outsz_p)
520 *outsz_p = outpos - out;
Junio C Hamanob45974a2006-12-23 23:36:55 -0800521 break;
522 }
523 }
Torsten Bögershausen76759c72012-07-08 15:50:25 +0200524 return out;
525}
526
Junio C Hamano32707412016-09-26 18:09:48 -0700527static const char *fallback_encoding(const char *name)
528{
529 /*
530 * Some platforms do not have the variously spelled variants of
531 * UTF-8, so let's fall back to trying the most official
532 * spelling. We do so only as a fallback in case the platform
533 * does understand the user's spelling, but not our official
534 * one.
535 */
536 if (is_encoding_utf8(name))
537 return "UTF-8";
538
Junio C Hamanodf375582016-09-26 18:09:48 -0700539 /*
540 * Even though latin-1 is still seen in e-mail
541 * headers, some platforms only install ISO-8859-1.
542 */
543 if (!strcasecmp(name, "latin-1"))
544 return "ISO-8859-1";
545
Junio C Hamano32707412016-09-26 18:09:48 -0700546 return name;
547}
548
Jeff Kingc7d017d2018-07-24 06:50:33 -0400549char *reencode_string_len(const char *in, size_t insz,
Nguyễn Thái Ngọc Duyb782bba2013-04-19 09:08:46 +1000550 const char *out_encoding, const char *in_encoding,
Jeff Kingc7d017d2018-07-24 06:50:33 -0400551 size_t *outsz)
Torsten Bögershausen76759c72012-07-08 15:50:25 +0200552{
553 iconv_t conv;
554 char *out;
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100555 const char *bom_str = NULL;
556 size_t bom_len = 0;
Torsten Bögershausen76759c72012-07-08 15:50:25 +0200557
558 if (!in_encoding)
559 return NULL;
Jeff King5c680be2013-02-25 15:31:00 -0500560
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100561 /* UTF-16LE-BOM is the same as UTF-16 for reading */
562 if (same_utf_encoding("UTF-16LE-BOM", in_encoding))
563 in_encoding = "UTF-16";
564
565 /*
566 * For writing, UTF-16 iconv typically creates "UTF-16BE-BOM"
567 * Some users under Windows want the little endian version
brian m. carlson79444c92019-02-12 00:52:06 +0000568 *
569 * We handle UTF-16 and UTF-32 ourselves only if the platform does not
570 * provide a BOM (which we require), since we want to match the behavior
571 * of the system tools and libc as much as possible.
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100572 */
573 if (same_utf_encoding("UTF-16LE-BOM", out_encoding)) {
574 bom_str = utf16_le_bom;
575 bom_len = sizeof(utf16_le_bom);
576 out_encoding = "UTF-16LE";
577 } else if (same_utf_encoding("UTF-16BE-BOM", out_encoding)) {
578 bom_str = utf16_be_bom;
579 bom_len = sizeof(utf16_be_bom);
580 out_encoding = "UTF-16BE";
brian m. carlson79444c92019-02-12 00:52:06 +0000581#ifdef ICONV_OMITS_BOM
582 } else if (same_utf_encoding("UTF-16", out_encoding)) {
583 bom_str = utf16_be_bom;
584 bom_len = sizeof(utf16_be_bom);
585 out_encoding = "UTF-16BE";
586 } else if (same_utf_encoding("UTF-32", out_encoding)) {
587 bom_str = utf32_be_bom;
588 bom_len = sizeof(utf32_be_bom);
589 out_encoding = "UTF-32BE";
590#endif
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100591 }
592
Torsten Bögershausen76759c72012-07-08 15:50:25 +0200593 conv = iconv_open(out_encoding, in_encoding);
Jeff King5c680be2013-02-25 15:31:00 -0500594 if (conv == (iconv_t) -1) {
Junio C Hamano32707412016-09-26 18:09:48 -0700595 in_encoding = fallback_encoding(in_encoding);
596 out_encoding = fallback_encoding(out_encoding);
597
Jeff King5c680be2013-02-25 15:31:00 -0500598 conv = iconv_open(out_encoding, in_encoding);
599 if (conv == (iconv_t) -1)
600 return NULL;
601 }
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100602 out = reencode_string_iconv(in, insz, conv, bom_len, outsz);
Junio C Hamanob45974a2006-12-23 23:36:55 -0800603 iconv_close(conv);
Torsten Bögershausenaab2a1a2019-01-30 16:01:52 +0100604 if (out && bom_str && bom_len)
605 memcpy(out, bom_str, bom_len);
Junio C Hamanob45974a2006-12-23 23:36:55 -0800606 return out;
607}
608#endif
Kirill Smelkov6cd3c052013-03-07 14:55:07 +0400609
Lars Schneider10ecb822018-04-15 20:16:05 +0200610static int has_bom_prefix(const char *data, size_t len,
611 const char *bom, size_t bom_len)
612{
613 return data && bom && (len >= bom_len) && !memcmp(data, bom, bom_len);
614}
615
Lars Schneider10ecb822018-04-15 20:16:05 +0200616int has_prohibited_utf_bom(const char *enc, const char *data, size_t len)
617{
618 return (
619 (same_utf_encoding("UTF-16BE", enc) ||
620 same_utf_encoding("UTF-16LE", enc)) &&
621 (has_bom_prefix(data, len, utf16_be_bom, sizeof(utf16_be_bom)) ||
622 has_bom_prefix(data, len, utf16_le_bom, sizeof(utf16_le_bom)))
623 ) || (
624 (same_utf_encoding("UTF-32BE", enc) ||
625 same_utf_encoding("UTF-32LE", enc)) &&
626 (has_bom_prefix(data, len, utf32_be_bom, sizeof(utf32_be_bom)) ||
627 has_bom_prefix(data, len, utf32_le_bom, sizeof(utf32_le_bom)))
628 );
629}
630
Lars Schneiderc6e48652018-04-15 20:16:06 +0200631int is_missing_required_utf_bom(const char *enc, const char *data, size_t len)
632{
633 return (
634 (same_utf_encoding(enc, "UTF-16")) &&
635 !(has_bom_prefix(data, len, utf16_be_bom, sizeof(utf16_be_bom)) ||
636 has_bom_prefix(data, len, utf16_le_bom, sizeof(utf16_le_bom)))
637 ) || (
638 (same_utf_encoding(enc, "UTF-32")) &&
639 !(has_bom_prefix(data, len, utf32_be_bom, sizeof(utf32_be_bom)) ||
640 has_bom_prefix(data, len, utf32_le_bom, sizeof(utf32_le_bom)))
641 );
642}
643
Kirill Smelkov6cd3c052013-03-07 14:55:07 +0400644/*
645 * Returns first character length in bytes for multi-byte `text` according to
646 * `encoding`.
647 *
648 * - The `text` pointer is updated to point at the next character.
649 * - When `remainder_p` is not NULL, on entry `*remainder_p` is how much bytes
650 * we can consume from text, and on exit `*remainder_p` is reduced by returned
651 * character length. Otherwise `text` is treated as limited by NUL.
652 */
653int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding)
654{
655 int chrlen;
656 const char *p = *text;
657 size_t r = (remainder_p ? *remainder_p : SIZE_MAX);
658
659 if (r < 1)
660 return 0;
661
662 if (is_encoding_utf8(encoding)) {
663 pick_one_utf8_char(&p, &r);
664
665 chrlen = p ? (p - *text)
666 : 1 /* not valid UTF-8 -> raw byte sequence */;
667 }
668 else {
669 /*
670 * TODO use iconv to decode one char and obtain its chrlen
671 * for now, let's treat encodings != UTF-8 as one-byte
672 */
673 chrlen = 1;
674 }
675
676 *text += chrlen;
677 if (remainder_p)
678 *remainder_p -= chrlen;
679
680 return chrlen;
681}
Jeff King6162a1d2014-12-15 17:56:59 -0500682
683/*
Jeff King6aaf9562014-12-23 03:45:36 -0500684 * Pick the next char from the stream, ignoring codepoints an HFS+ would.
685 * Note that this is _not_ complete by any means. It's just enough
Jeff King6162a1d2014-12-15 17:56:59 -0500686 * to make is_hfs_dotgit() work, and should not be used otherwise.
687 */
688static ucs_char_t next_hfs_char(const char **in)
689{
690 while (1) {
691 ucs_char_t out = pick_one_utf8_char(in, NULL);
692 /*
693 * check for malformed utf8. Technically this
694 * gets converted to a percent-sequence, but
695 * returning 0 is good enough for is_hfs_dotgit
696 * to realize it cannot be .git
697 */
698 if (!*in)
699 return 0;
700
701 /* these code points are ignored completely */
702 switch (out) {
703 case 0x200c: /* ZERO WIDTH NON-JOINER */
704 case 0x200d: /* ZERO WIDTH JOINER */
705 case 0x200e: /* LEFT-TO-RIGHT MARK */
706 case 0x200f: /* RIGHT-TO-LEFT MARK */
707 case 0x202a: /* LEFT-TO-RIGHT EMBEDDING */
708 case 0x202b: /* RIGHT-TO-LEFT EMBEDDING */
709 case 0x202c: /* POP DIRECTIONAL FORMATTING */
710 case 0x202d: /* LEFT-TO-RIGHT OVERRIDE */
711 case 0x202e: /* RIGHT-TO-LEFT OVERRIDE */
712 case 0x206a: /* INHIBIT SYMMETRIC SWAPPING */
713 case 0x206b: /* ACTIVATE SYMMETRIC SWAPPING */
714 case 0x206c: /* INHIBIT ARABIC FORM SHAPING */
715 case 0x206d: /* ACTIVATE ARABIC FORM SHAPING */
716 case 0x206e: /* NATIONAL DIGIT SHAPES */
717 case 0x206f: /* NOMINAL DIGIT SHAPES */
718 case 0xfeff: /* ZERO WIDTH NO-BREAK SPACE */
719 continue;
720 }
721
Jeff King6aaf9562014-12-23 03:45:36 -0500722 return out;
Jeff King6162a1d2014-12-15 17:56:59 -0500723 }
724}
725
Jeff King0fc333b2018-05-02 15:23:45 -0400726static int is_hfs_dot_generic(const char *path,
727 const char *needle, size_t needle_len)
Jeff King6162a1d2014-12-15 17:56:59 -0500728{
729 ucs_char_t c;
730
Jeff King6aaf9562014-12-23 03:45:36 -0500731 c = next_hfs_char(&path);
732 if (c != '.')
733 return 0;
Jeff King6aaf9562014-12-23 03:45:36 -0500734
735 /*
736 * there's a great deal of other case-folding that occurs
Jeff King0fc333b2018-05-02 15:23:45 -0400737 * in HFS+, but this is enough to catch our fairly vanilla
738 * hard-coded needles.
Jeff King6aaf9562014-12-23 03:45:36 -0500739 */
Jeff King0fc333b2018-05-02 15:23:45 -0400740 for (; needle_len > 0; needle++, needle_len--) {
741 c = next_hfs_char(&path);
742
743 /*
744 * We know our needles contain only ASCII, so we clamp here to
745 * make the results of tolower() sane.
746 */
747 if (c > 127)
748 return 0;
749 if (tolower(c) != *needle)
750 return 0;
751 }
752
Jeff King6162a1d2014-12-15 17:56:59 -0500753 c = next_hfs_char(&path);
754 if (c && !is_dir_sep(c))
755 return 0;
756
757 return 1;
758}
Junio C Hamanodde843e2015-04-16 10:45:29 -0700759
Jeff King0fc333b2018-05-02 15:23:45 -0400760/*
761 * Inline wrapper to make sure the compiler resolves strlen() on literals at
762 * compile time.
763 */
764static inline int is_hfs_dot_str(const char *path, const char *needle)
765{
766 return is_hfs_dot_generic(path, needle, strlen(needle));
767}
768
769int is_hfs_dotgit(const char *path)
770{
771 return is_hfs_dot_str(path, "git");
772}
773
774int is_hfs_dotgitmodules(const char *path)
775{
776 return is_hfs_dot_str(path, "gitmodules");
777}
778
779int is_hfs_dotgitignore(const char *path)
780{
781 return is_hfs_dot_str(path, "gitignore");
782}
783
784int is_hfs_dotgitattributes(const char *path)
785{
786 return is_hfs_dot_str(path, "gitattributes");
787}
788
Jeff King801ed012021-05-03 16:43:22 -0400789int is_hfs_dotmailmap(const char *path)
790{
791 return is_hfs_dot_str(path, "mailmap");
792}
793
Junio C Hamanodde843e2015-04-16 10:45:29 -0700794const char utf8_bom[] = "\357\273\277";
795
796int skip_utf8_bom(char **text, size_t len)
797{
798 if (len < strlen(utf8_bom) ||
799 memcmp(*text, utf8_bom, strlen(utf8_bom)))
800 return 0;
801 *text += strlen(utf8_bom);
802 return 1;
803}
Karthik Nayak110dcda2015-09-10 21:18:19 +0530804
805void strbuf_utf8_align(struct strbuf *buf, align_type position, unsigned int width,
806 const char *s)
807{
Patrick Steinhardt522cc872022-12-01 15:46:53 +0100808 size_t slen = strlen(s);
Karthik Nayak110dcda2015-09-10 21:18:19 +0530809 int display_len = utf8_strnwidth(s, slen, 0);
810 int utf8_compensation = slen - display_len;
811
812 if (display_len >= width) {
813 strbuf_addstr(buf, s);
814 return;
815 }
816
817 if (position == ALIGN_LEFT)
818 strbuf_addf(buf, "%-*s", width + utf8_compensation, s);
819 else if (position == ALIGN_MIDDLE) {
820 int left = (width - display_len) / 2;
821 strbuf_addf(buf, "%*s%-*s", left, "", width - left + utf8_compensation, s);
822 } else if (position == ALIGN_RIGHT)
823 strbuf_addf(buf, "%*s", width + utf8_compensation, s);
824}