forked from lipnitsk/mocp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utf8.c
412 lines (336 loc) · 7.97 KB
/
utf8.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*
* MOC - music on console
* Copyright (C) 2005,2006 Damian Pietras <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdio.h>
#include <stdarg.h>
#ifdef HAVE_ICONV
# include <iconv.h>
#endif
#ifdef HAVE_NL_TYPES_H
# include <nl_types.h>
#endif
#ifdef HAVE_LANGINFO_H
# include <langinfo.h>
#endif
#if defined HAVE_NCURSESW_CURSES_H
# include <ncursesw/curses.h>
#elif defined HAVE_NCURSESW_H
# include <ncursesw.h>
#elif defined HAVE_NCURSES_CURSES_H
# include <ncurses/curses.h>
#elif defined HAVE_NCURSES_H
# include <ncurses.h>
#elif defined HAVE_CURSES_H
# include <curses.h>
#endif
#include <assert.h>
#include <string.h>
#include <errno.h>
#include <wchar.h>
#include "common.h"
#include "log.h"
#include "options.h"
#include "utf8.h"
#include "rcc.h"
static char *terminal_charset = NULL;
static int using_utf8 = 0;
static iconv_t iconv_desc = (iconv_t)(-1);
static iconv_t files_iconv_desc = (iconv_t)(-1);
static iconv_t xterm_iconv_desc = (iconv_t)(-1);
/* Return a malloc()ed string converted using iconv().
* If for_file_name is not 0, use the conversion defined for file names.
* For NULL returns NULL. */
char *iconv_str (const iconv_t desc, const char *str)
{
char buf[512];
#ifdef FREEBSD
const char *inbuf;
#else
char *inbuf;
#endif
char *outbuf;
char *str_copy;
size_t inbytesleft, outbytesleft;
char *converted;
if (!str)
return NULL;
if (desc == (iconv_t)(-1))
return xstrdup (str);
inbuf = str_copy = xstrdup (str);
outbuf = buf;
inbytesleft = strlen(inbuf);
outbytesleft = sizeof(buf) - 1;
iconv (desc, NULL, NULL, NULL, NULL);
while (inbytesleft) {
if (iconv(desc, &inbuf, &inbytesleft, &outbuf,
&outbytesleft)
== (size_t)(-1)) {
if (errno == EILSEQ) {
inbuf++;
inbytesleft--;
if (!--outbytesleft) {
*outbuf = 0;
break;
}
*(outbuf++) = '#';
}
else if (errno == EINVAL) {
*(outbuf++) = '#';
*outbuf = 0;
break;
}
else if (errno == E2BIG) {
outbuf[sizeof(buf)-1] = 0;
break;
}
}
}
*outbuf = 0;
converted = xstrdup (buf);
free (str_copy);
return converted;
}
char *files_iconv_str (const char *str)
{
return iconv_str (files_iconv_desc, str);
}
char *xterm_iconv_str (const char *str)
{
return iconv_str (xterm_iconv_desc, str);
}
int xwaddstr (WINDOW *win, const char *str)
{
int res;
if (using_utf8)
res = waddstr (win, str);
else {
char *lstr = iconv_str (iconv_desc, str);
res = waddstr (win, lstr);
free (lstr);
}
return res;
}
/* Convert multi-byte sequence to wide characters. Change invalid UTF-8
* sequences to '?'. 'dest' can be NULL as in mbstowcs().
* If 'invalid_char' is not NULL it will be set to 1 if an invalid character
* appears in the string, otherwise 0. */
static size_t xmbstowcs (wchar_t *dest, const char *src, size_t len,
int *invalid_char)
{
mbstate_t ps;
size_t count = 0;
assert (src != NULL);
assert (!dest || len > 0);
memset (&ps, 0, sizeof(ps));
if (dest)
memset (dest, 0, len * sizeof(wchar_t));
if (invalid_char)
*invalid_char = 0;
while (src && (len || !dest)) {
size_t res;
res = mbsrtowcs (dest, &src, len, &ps);
if (res != (size_t)-1) {
count += res;
src = NULL;
}
else {
size_t converted;
src++;
if (dest) {
converted = wcslen (dest);
dest += converted;
count += converted;
len -= converted;
if (len > 1) {
*dest = L'?';
dest++;
*dest = L'\0';
len--;
}
else
*(dest - 1) = L'\0';
}
else
count++;
memset (&ps, 0, sizeof(ps));
if (invalid_char)
*invalid_char = 1;
}
}
return count;
}
int xwaddnstr (WINDOW *win, const char *str, const int n)
{
int res, width, inv_char;
wchar_t *ucs;
char *mstr, *lstr;
size_t size, num_chars;
assert (n > 0);
assert (str != NULL);
mstr = iconv_str (iconv_desc, str);
size = xmbstowcs (NULL, mstr, -1, NULL) + 1;
ucs = (wchar_t *)xmalloc (sizeof(wchar_t) * size);
xmbstowcs (ucs, mstr, size, &inv_char);
width = wcswidth (ucs, WIDTH_MAX);
if (width == -1) {
size_t clidx;
for (clidx = 0; clidx < size - 1; clidx++) {
if (wcwidth (ucs[clidx]) == -1)
ucs[clidx] = L'?';
}
width = wcswidth (ucs, WIDTH_MAX);
inv_char = 1;
}
if (width > n) {
while (width > n)
width -= wcwidth (ucs[--size]);
ucs[size] = L'\0';
}
num_chars = wcstombs (NULL, ucs, 0);
lstr = (char *)xmalloc (num_chars + 1);
if (inv_char)
wcstombs (lstr, ucs, num_chars + 1);
else
snprintf (lstr, num_chars + 1, "%s", mstr);
res = waddstr (win, lstr);
free (ucs);
free (lstr);
free (mstr);
return res;
}
int xmvwaddstr (WINDOW *win, const int y, const int x, const char *str)
{
int res;
if (using_utf8)
res = mvwaddstr (win, y, x, str);
else {
char *lstr = iconv_str (iconv_desc, str);
res = mvwaddstr (win, y, x, lstr);
free (lstr);
}
return res;
}
int xmvwaddnstr (WINDOW *win, const int y, const int x, const char *str,
const int n)
{
int res;
if (using_utf8)
res = mvwaddnstr (win, y, x, str, n);
else {
char *lstr = iconv_str (iconv_desc, str);
res = mvwaddnstr (win, y, x, lstr, n);
free (lstr);
}
return res;
}
int xwprintw (WINDOW *win, const char *fmt, ...)
{
va_list va;
int res;
char *buf;
va_start (va, fmt);
buf = format_msg_va (fmt, va);
va_end (va);
if (using_utf8)
res = waddstr (win, buf);
else {
char *lstr = iconv_str (iconv_desc, buf);
res = waddstr (win, lstr);
free (lstr);
}
free (buf);
return res;
}
static void iconv_cleanup ()
{
if (iconv_desc != (iconv_t)(-1)
&& iconv_close(iconv_desc) == -1)
log_errno ("iconv_close() failed", errno);
}
void utf8_init ()
{
#ifdef HAVE_NL_LANGINFO_CODESET
#ifdef HAVE_NL_LANGINFO
terminal_charset = xstrdup (nl_langinfo(CODESET));
assert (terminal_charset != NULL);
if (!strcmp(terminal_charset, "UTF-8")) {
#ifdef HAVE_NCURSESW
logit ("Using UTF8 output");
using_utf8 = 1;
#else /* HAVE_NCURSESW */
terminal_charset = xstrdup ("US-ASCII");
logit ("Using US-ASCII conversion - compiled without libncursesw");
#endif /* HAVE_NCURSESW */
}
else
logit ("Terminal character set: %s", terminal_charset);
#else /* HAVE_NL_LANGINFO */
terminal_charset = xstrdup ("US-ASCII");
logit ("Assuming US-ASCII terminal character set");
#endif /* HAVE_NL_LANGINFO */
#endif /* HAVE_NL_LANGINFO_CODESET */
if (!using_utf8 && terminal_charset) {
iconv_desc = iconv_open (terminal_charset, "UTF-8");
if (iconv_desc == (iconv_t)(-1))
log_errno ("iconv_open() failed", errno);
}
if (options_get_bool ("FileNamesIconv"))
files_iconv_desc = iconv_open ("UTF-8", "");
if (options_get_bool ("NonUTFXterm"))
xterm_iconv_desc = iconv_open ("", "UTF-8");
}
void utf8_cleanup ()
{
if (terminal_charset)
free (terminal_charset);
iconv_cleanup ();
}
/* Return the number of columns the string occupies when displayed. */
size_t strwidth (const char *s)
{
wchar_t *ucs;
size_t size;
size_t width;
assert (s != NULL);
size = xmbstowcs (NULL, s, -1, NULL) + 1;
ucs = (wchar_t *)xmalloc (sizeof(wchar_t) * size);
xmbstowcs (ucs, s, size, NULL);
width = wcswidth (ucs, WIDTH_MAX);
free (ucs);
return width;
}
/* Return a malloc()ed string containing the tail of 'str' up to a
* maximum of 'len' characters (in columns occupied on the screen). */
char *xstrtail (const char *str, const int len)
{
wchar_t *ucs;
wchar_t *ucs_tail;
size_t size;
int width;
char *tail;
assert (str != NULL);
assert (len > 0);
size = xmbstowcs(NULL, str, -1, NULL) + 1;
ucs = (wchar_t *)xmalloc (sizeof(wchar_t) * size);
xmbstowcs (ucs, str, size, NULL);
ucs_tail = ucs;
width = wcswidth (ucs, WIDTH_MAX);
assert (width >= 0);
while (width > len)
width -= wcwidth (*ucs_tail++);
size = wcstombs (NULL, ucs_tail, 0) + 1;
tail = (char *)xmalloc (size);
wcstombs (tail, ucs_tail, size);
free (ucs);
return tail;
}