usr.sbin/makefs/hammer2: Sync with recent userspace ondisk.c changes
[dragonfly.git] / contrib / nvi2 / common / conv.c
blobaa1f908c79654c667b584ba4a3f0ff57b8b0fc28
1 /*-
2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1993, 1994, 1995, 1996
5 * Keith Bostic. All rights reserved.
6 * Copyright (c) 2011, 2012
7 * Zhihao Yuan. All rights reserved.
9 * See the LICENSE file for redistribution information.
12 #include "config.h"
14 #include <sys/types.h>
15 #include <sys/queue.h>
16 #include <sys/time.h>
18 #include <bitstring.h>
19 #include <errno.h>
20 #include <limits.h>
21 #include <langinfo.h>
22 #include <locale.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <strings.h>
27 #include <unistd.h>
29 #include "common.h"
32 * codeset --
33 * Get the locale encoding.
35 * PUBLIC: char * codeset(void);
37 char *
38 codeset(void)
40 static char *cs;
42 if (cs == NULL)
43 cs = nl_langinfo(CODESET);
45 return cs;
48 #ifdef USE_WIDECHAR
49 static int
50 raw2int(SCR *sp, const char * str, ssize_t len, CONVWIN *cw, size_t *tolen,
51 CHAR_T **dst)
53 int i;
54 CHAR_T **tostr = &cw->bp1.wc;
55 size_t *blen = &cw->blen1;
57 BINC_RETW(NULL, *tostr, *blen, len);
59 *tolen = len;
60 for (i = 0; i < len; ++i)
61 (*tostr)[i] = (u_char) str[i];
63 *dst = cw->bp1.wc;
65 return 0;
68 #define CONV_BUFFER_SIZE 512
69 /* fill the buffer with codeset encoding of string pointed to by str
70 * left has the number of bytes left in str and is adjusted
71 * len contains the number of bytes put in the buffer
73 #ifdef USE_ICONV
74 #define CONVERT(str, left, src, len) \
75 do { \
76 size_t outleft; \
77 char *bp = buffer; \
78 outleft = CONV_BUFFER_SIZE; \
79 errno = 0; \
80 if (iconv(id, (iconv_src_t)&str, &left, &bp, &outleft) \
81 == -1 && errno != E2BIG) \
82 goto err; \
83 if ((len = CONV_BUFFER_SIZE - outleft) == 0) { \
84 error = -left; \
85 goto err; \
86 } \
87 src = buffer; \
88 } while (0)
90 #define IC_RESET() \
91 do { \
92 if (id != (iconv_t)-1) \
93 iconv(id, NULL, NULL, NULL, NULL); \
94 } while(0)
95 #else
96 #define CONVERT(str, left, src, len)
97 #define IC_RESET()
98 #endif
100 static int
101 default_char2int(SCR *sp, const char * str, ssize_t len, CONVWIN *cw,
102 size_t *tolen, CHAR_T **dst, iconv_t id)
104 size_t i = 0, j;
105 CHAR_T **tostr = &cw->bp1.wc;
106 size_t *blen = &cw->blen1;
107 mbstate_t mbs;
108 size_t n;
109 ssize_t nlen = len;
110 char *src = (char *)str;
111 #ifdef USE_ICONV
112 char buffer[CONV_BUFFER_SIZE];
113 #endif
114 size_t left = len;
115 int error = 1;
117 memset(&mbs, 0, sizeof(mbs));
118 BINC_RETW(NULL, *tostr, *blen, nlen);
120 #ifdef USE_ICONV
121 if (id != (iconv_t)-1)
122 CONVERT(str, left, src, len);
123 #endif
125 for (i = 0, j = 0; j < len; ) {
126 n = mbrtowc((*tostr)+i, src+j, len-j, &mbs);
127 /* NULL character converted */
128 if (n == -2)
129 error = -(len-j);
130 if (n == -1 || n == -2)
131 goto err;
132 if (n == 0)
133 n = 1;
134 j += n;
135 if (++i >= *blen) {
136 nlen += 256;
137 BINC_RETW(NULL, *tostr, *blen, nlen);
139 if (id != (iconv_t)-1 && j == len && left) {
140 CONVERT(str, left, src, len);
141 j = 0;
145 error = 0;
146 err:
147 *tolen = i;
148 *dst = cw->bp1.wc;
149 IC_RESET();
151 return error;
154 static int
155 fe_char2int(SCR *sp, const char * str, ssize_t len, CONVWIN *cw, size_t *tolen,
156 CHAR_T **dst)
158 return default_char2int(sp, str, len, cw, tolen, dst,
159 sp->conv.id[IC_FE_CHAR2INT]);
162 static int
163 ie_char2int(SCR *sp, const char * str, ssize_t len, CONVWIN *cw, size_t *tolen,
164 CHAR_T **dst)
166 return default_char2int(sp, str, len, cw, tolen, dst,
167 sp->conv.id[IC_IE_CHAR2INT]);
170 static int
171 cs_char2int(SCR *sp, const char * str, ssize_t len, CONVWIN *cw, size_t *tolen,
172 CHAR_T **dst)
174 return default_char2int(sp, str, len, cw, tolen, dst, (iconv_t)-1);
177 static int
178 int2raw(SCR *sp, const CHAR_T * str, ssize_t len, CONVWIN *cw, size_t *tolen,
179 char **dst)
181 int i;
182 char **tostr = &cw->bp1.c;
183 size_t *blen = &cw->blen1;
185 BINC_RETC(NULL, *tostr, *blen, len);
187 *tolen = len;
188 for (i = 0; i < len; ++i)
189 (*tostr)[i] = str[i];
191 *dst = cw->bp1.c;
193 return 0;
196 static int
197 default_int2char(SCR *sp, const CHAR_T * str, ssize_t len, CONVWIN *cw,
198 size_t *tolen, char **pdst, iconv_t id)
200 size_t i, j, offset = 0;
201 char **tostr = &cw->bp1.c;
202 size_t *blen = &cw->blen1;
203 mbstate_t mbs;
204 size_t n;
205 ssize_t nlen = len + MB_CUR_MAX;
206 char *dst;
207 size_t buflen;
208 #ifdef USE_ICONV
209 char buffer[CONV_BUFFER_SIZE];
210 #endif
211 int error = 1;
213 /* convert first len bytes of buffer and append it to cw->bp
214 * len is adjusted => 0
215 * offset contains the offset in cw->bp and is adjusted
216 * cw->bp is grown as required
218 #ifdef USE_ICONV
219 #define CONVERT2(_buffer, lenp, cw, offset) \
220 do { \
221 char *bp = _buffer; \
222 int ret; \
223 do { \
224 size_t outleft = cw->blen1 - offset; \
225 char *obp = cw->bp1.c + offset; \
226 if (cw->blen1 < offset + MB_CUR_MAX) { \
227 nlen += 256; \
228 BINC_RETC(NULL, cw->bp1.c, cw->blen1, \
229 nlen); \
231 errno = 0; \
232 ret = iconv(id, (iconv_src_t)&bp, lenp, &obp, \
233 &outleft); \
234 if (ret == -1 && errno != E2BIG) \
235 goto err; \
236 offset = cw->blen1 - outleft; \
237 } while (ret != 0); \
238 } while (0)
239 #else
240 #define CONVERT2(_buffer, lenp, cw, offset)
241 #endif
244 memset(&mbs, 0, sizeof(mbs));
245 BINC_RETC(NULL, *tostr, *blen, nlen);
246 dst = *tostr; buflen = *blen;
248 #ifdef USE_ICONV
249 if (id != (iconv_t)-1) {
250 dst = buffer; buflen = CONV_BUFFER_SIZE;
252 #endif
254 for (i = 0, j = 0; i < len; ++i) {
255 n = wcrtomb(dst+j, str[i], &mbs);
256 if (n == -1)
257 goto err;
258 j += n;
259 if (buflen < j + MB_CUR_MAX) {
260 if (id != (iconv_t)-1) {
261 CONVERT2(buffer, &j, cw, offset);
262 } else {
263 nlen += 256;
264 BINC_RETC(NULL, *tostr, *blen, nlen);
265 dst = *tostr; buflen = *blen;
270 n = wcrtomb(dst+j, L'\0', &mbs);
271 j += n - 1; /* don't count NUL at the end */
272 *tolen = j;
274 if (id != (iconv_t)-1) {
275 CONVERT2(buffer, &j, cw, offset);
276 /* back to the initial state */
277 CONVERT2(NULL, NULL, cw, offset);
278 *tolen = offset;
281 error = 0;
282 err:
283 if (error)
284 *tolen = j;
285 *pdst = cw->bp1.c;
286 IC_RESET();
288 return error;
291 static int
292 fe_int2char(SCR *sp, const CHAR_T * str, ssize_t len, CONVWIN *cw,
293 size_t *tolen, char **dst)
295 return default_int2char(sp, str, len, cw, tolen, dst,
296 sp->conv.id[IC_FE_INT2CHAR]);
299 static int
300 cs_int2char(SCR *sp, const CHAR_T * str, ssize_t len, CONVWIN *cw,
301 size_t *tolen, char **dst)
303 return default_int2char(sp, str, len, cw, tolen, dst, (iconv_t)-1);
306 #endif
309 * conv_init --
310 * Initialize the iconv environment.
312 * PUBLIC: void conv_init(SCR *, SCR *);
314 void
315 conv_init(SCR *orig, SCR *sp)
317 int i;
319 if (orig == NULL)
320 setlocale(LC_ALL, "");
321 if (orig != NULL)
322 memmove(&sp->conv, &orig->conv, sizeof(CONV));
323 #ifdef USE_WIDECHAR
324 else {
325 char *ctype = setlocale(LC_CTYPE, NULL);
328 * XXX
329 * This hack fixes the libncursesw issue on FreeBSD.
331 if (!strcmp(ctype, "ko_KR.CP949"))
332 setlocale(LC_CTYPE, "ko_KR.eucKR");
333 else if (!strcmp(ctype, "zh_CN.GB2312"))
334 setlocale(LC_CTYPE, "zh_CN.eucCN");
335 else if (!strcmp(ctype, "zh_CN.GBK"))
336 setlocale(LC_CTYPE, "zh_CN.GB18030");
337 else if (!strcmp(ctype, "zh_Hans_CN.GB2312"))
338 setlocale(LC_CTYPE, "zh_Hans_CN.eucCN");
339 else if (!strcmp(ctype, "zh_Hans_CN.GBK"))
340 setlocale(LC_CTYPE, "zh_Hans_CN.GB18030");
343 * Switch to 8bit mode if locale is C;
344 * LC_CTYPE should be reseted to C if unmatched.
346 if (!strcmp(ctype, "C") || !strcmp(ctype, "POSIX")) {
347 sp->conv.sys2int = sp->conv.file2int = raw2int;
348 sp->conv.int2sys = sp->conv.int2file = int2raw;
349 sp->conv.input2int = raw2int;
350 } else {
351 sp->conv.sys2int = cs_char2int;
352 sp->conv.int2sys = cs_int2char;
353 sp->conv.file2int = fe_char2int;
354 sp->conv.int2file = fe_int2char;
355 sp->conv.input2int = ie_char2int;
357 #ifdef USE_ICONV
358 o_set(sp, O_INPUTENCODING, OS_STRDUP, codeset(), 0);
359 #endif
361 #endif
363 /* iconv descriptors must be distinct to screens. */
364 for (i = 0; i <= IC_IE_TO_UTF16; ++i)
365 sp->conv.id[i] = (iconv_t)-1;
366 #ifdef USE_ICONV
367 conv_enc(sp, O_INPUTENCODING, 0);
368 #endif
372 * conv_enc --
373 * Convert file/input encoding.
375 * PUBLIC: int conv_enc(SCR *, int, char *);
378 conv_enc(SCR *sp, int option, char *enc)
380 #if defined(USE_WIDECHAR) && defined(USE_ICONV)
381 iconv_t *c2w, *w2c;
382 iconv_t id_c2w, id_w2c;
384 switch (option) {
385 case O_FILEENCODING:
386 c2w = sp->conv.id + IC_FE_CHAR2INT;
387 w2c = sp->conv.id + IC_FE_INT2CHAR;
388 if (!enc)
389 enc = O_STR(sp, O_FILEENCODING);
391 if (strcasecmp(codeset(), enc)) {
392 if ((id_c2w = iconv_open(codeset(), enc)) ==
393 (iconv_t)-1)
394 goto err;
395 if ((id_w2c = iconv_open(enc, codeset())) ==
396 (iconv_t)-1)
397 goto err;
398 } else {
399 id_c2w = (iconv_t)-1;
400 id_w2c = (iconv_t)-1;
403 break;
405 case O_INPUTENCODING:
406 c2w = sp->conv.id + IC_IE_CHAR2INT;
407 w2c = sp->conv.id + IC_IE_TO_UTF16;
408 if (!enc)
409 enc = O_STR(sp, O_INPUTENCODING);
411 if (strcasecmp(codeset(), enc)) {
412 if ((id_c2w = iconv_open(codeset(), enc)) ==
413 (iconv_t)-1)
414 goto err;
415 } else
416 id_c2w = (iconv_t)-1;
418 /* UTF-16 can not be locale and can not be inputed. */
419 if ((id_w2c = iconv_open("utf-16be", enc)) == (iconv_t)-1)
420 goto err;
422 break;
424 default:
425 abort();
428 if (*c2w != (iconv_t)-1)
429 iconv_close(*c2w);
430 if (*w2c != (iconv_t)-1)
431 iconv_close(*w2c);
433 *c2w = id_c2w;
434 *w2c = id_w2c;
436 F_CLR(sp, SC_CONV_ERROR);
437 F_SET(sp, SC_SCR_REFORMAT);
439 return 0;
440 err:
441 #endif
442 switch (option) {
443 case O_FILEENCODING:
444 msgq(sp, M_ERR, "321|File encoding conversion not supported");
445 break;
446 case O_INPUTENCODING:
447 msgq(sp, M_ERR, "322|Input encoding conversion not supported");
448 break;
450 return 1;
454 * conv_end --
455 * Close the iconv descriptors, release the buffer.
457 * PUBLIC: void conv_end(SCR *);
459 void
460 conv_end(SCR *sp)
462 #if defined(USE_WIDECHAR) && defined(USE_ICONV)
463 int i;
464 for (i = 0; i <= IC_IE_TO_UTF16; ++i)
465 if (sp->conv.id[i] != (iconv_t)-1)
466 iconv_close(sp->conv.id[i]);
467 free(sp->cw.bp1.c);
468 #endif