2011-11-08 [colin] 3.7.10cvs79
[claws.git] / src / codeconv.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <string.h>
29 #include <ctype.h>
30 #include <stdlib.h>
31 #include <errno.h>
32
33 #if HAVE_LOCALE_H
34 #  include <locale.h>
35 #endif
36
37 #include "codeconv.h"
38 #include "unmime.h"
39 #include "base64.h"
40 #include "quoted-printable.h"
41 #include "utils.h"
42 #include "prefs_common.h"
43
44 /* For unknown reasons the inconv.m4 macro undefs that macro if no
45    const is needed.  This would break the code below so we define it. */
46 #ifndef ICONV_CONST
47 #define ICONV_CONST
48 #endif
49
50 typedef enum
51 {
52         JIS_ASCII,
53         JIS_KANJI,
54         JIS_HWKANA,
55         JIS_AUXKANJI
56 } JISState;
57
58 #define SUBST_CHAR      0x5f;
59 #define ESC             '\033'
60
61 #define iseuckanji(c) \
62         (((c) & 0xff) >= 0xa1 && ((c) & 0xff) <= 0xfe)
63 #define iseuchwkana1(c) \
64         (((c) & 0xff) == 0x8e)
65 #define iseuchwkana2(c) \
66         (((c) & 0xff) >= 0xa1 && ((c) & 0xff) <= 0xdf)
67 #define iseucaux(c) \
68         (((c) & 0xff) == 0x8f)
69 #define issjiskanji1(c) \
70         ((((c) & 0xff) >= 0x81 && ((c) & 0xff) <= 0x9f) || \
71          (((c) & 0xff) >= 0xe0 && ((c) & 0xff) <= 0xfc))
72 #define issjiskanji2(c) \
73         ((((c) & 0xff) >= 0x40 && ((c) & 0xff) <= 0x7e) || \
74          (((c) & 0xff) >= 0x80 && ((c) & 0xff) <= 0xfc))
75 #define issjishwkana(c) \
76         (((c) & 0xff) >= 0xa1 && ((c) & 0xff) <= 0xdf)
77
78 #define K_IN()                          \
79         if (state != JIS_KANJI) {       \
80                 *out++ = ESC;           \
81                 *out++ = '$';           \
82                 *out++ = 'B';           \
83                 state = JIS_KANJI;      \
84         }
85
86 #define K_OUT()                         \
87         if (state != JIS_ASCII) {       \
88                 *out++ = ESC;           \
89                 *out++ = '(';           \
90                 *out++ = 'B';           \
91                 state = JIS_ASCII;      \
92         }
93
94 #define HW_IN()                         \
95         if (state != JIS_HWKANA) {      \
96                 *out++ = ESC;           \
97                 *out++ = '(';           \
98                 *out++ = 'I';           \
99                 state = JIS_HWKANA;     \
100         }
101
102 #define AUX_IN()                        \
103         if (state != JIS_AUXKANJI) {    \
104                 *out++ = ESC;           \
105                 *out++ = '$';           \
106                 *out++ = '(';           \
107                 *out++ = 'D';           \
108                 state = JIS_AUXKANJI;   \
109         }
110
111 static CodeConvFunc conv_get_code_conv_func     (const gchar    *src_charset_str,
112                                          const gchar    *dest_charset_str);
113
114 static gchar *conv_iconv_strdup_with_cd (const gchar    *inbuf,
115                                          iconv_t         cd);
116
117 static gchar *conv_iconv_strdup         (const gchar    *inbuf,
118                                          const gchar    *src_code,
119                                          const gchar    *dest_code);
120
121 static CharSet conv_get_locale_charset                  (void);
122 static CharSet conv_get_outgoing_charset                (void);
123 static CharSet conv_guess_ja_encoding(const gchar *str);
124 static gboolean conv_is_ja_locale                       (void);
125
126 static gint conv_jistoeuc(gchar *outbuf, gint outlen, const gchar *inbuf);
127 static gint conv_euctojis(gchar *outbuf, gint outlen, const gchar *inbuf);
128 static gint conv_sjistoeuc(gchar *outbuf, gint outlen, const gchar *inbuf);
129
130 static gint conv_jistoutf8(gchar *outbuf, gint outlen, const gchar *inbuf);
131 static gint conv_sjistoutf8(gchar *outbuf, gint outlen, const gchar *inbuf);
132 static gint conv_euctoutf8(gchar *outbuf, gint outlen, const gchar *inbuf);
133 static gint conv_anytoutf8(gchar *outbuf, gint outlen, const gchar *inbuf);
134
135 static gint conv_utf8toeuc(gchar *outbuf, gint outlen, const gchar *inbuf);
136 static gint conv_utf8tojis(gchar *outbuf, gint outlen, const gchar *inbuf);
137
138 static void conv_unreadable_8bit(gchar *str);
139
140 static gint conv_jistodisp(gchar *outbuf, gint outlen, const gchar *inbuf);
141 static gint conv_sjistodisp(gchar *outbuf, gint outlen, const gchar *inbuf);
142 static gint conv_euctodisp(gchar *outbuf, gint outlen, const gchar *inbuf);
143
144 static gint conv_anytodisp(gchar *outbuf, gint outlen, const gchar *inbuf);
145 static gint conv_ustodisp(gchar *outbuf, gint outlen, const gchar *inbuf);
146 static gint conv_noconv(gchar *outbuf, gint outlen, const gchar *inbuf);
147
148 static gboolean strict_mode = FALSE;
149
150 void codeconv_set_strict(gboolean mode)
151 {
152         strict_mode = mode;
153 }
154
155 static gint conv_jistoeuc(gchar *outbuf, gint outlen, const gchar *inbuf)
156 {
157         const guchar *in = inbuf;
158         guchar *out = outbuf;
159         JISState state = JIS_ASCII;
160
161         while (*in != '\0') {
162                 if (*in == ESC) {
163                         in++;
164                         if (*in == '$') {
165                                 if (*(in + 1) == '@' || *(in + 1) == 'B') {
166                                         state = JIS_KANJI;
167                                         in += 2;
168                                 } else if (*(in + 1) == '(' &&
169                                            *(in + 2) == 'D') {
170                                         state = JIS_AUXKANJI;
171                                         in += 3;
172                                 } else {
173                                         /* unknown escape sequence */
174                                         state = JIS_ASCII;
175                                 }
176                         } else if (*in == '(') {
177                                 if (*(in + 1) == 'B' || *(in + 1) == 'J') {
178                                         state = JIS_ASCII;
179                                         in += 2;
180                                 } else if (*(in + 1) == 'I') {
181                                         state = JIS_HWKANA;
182                                         in += 2;
183                                 } else {
184                                         /* unknown escape sequence */
185                                         state = JIS_ASCII;
186                                 }
187                         } else {
188                                 /* unknown escape sequence */
189                                 state = JIS_ASCII;
190                         }
191                 } else if (*in == 0x0e) {
192                         state = JIS_HWKANA;
193                         in++;
194                 } else if (*in == 0x0f) {
195                         state = JIS_ASCII;
196                         in++;
197                 } else {
198                         switch (state) {
199                         case JIS_ASCII:
200                                 *out++ = *in++;
201                                 break;
202                         case JIS_KANJI:
203                                 *out++ = *in++ | 0x80;
204                                 if (*in == '\0') break;
205                                 *out++ = *in++ | 0x80;
206                                 break;
207                         case JIS_HWKANA:
208                                 *out++ = 0x8e;
209                                 *out++ = *in++ | 0x80;
210                                 break;
211                         case JIS_AUXKANJI:
212                                 *out++ = 0x8f;
213                                 *out++ = *in++ | 0x80;
214                                 if (*in == '\0') break;
215                                 *out++ = *in++ | 0x80;
216                                 break;
217                         }
218                 }
219         }
220
221         *out = '\0';
222         return 0;
223 }
224
225 #define JIS_HWDAKUTEN           0x5e
226 #define JIS_HWHANDAKUTEN        0x5f
227
228 static gint conv_jis_hantozen(guchar *outbuf, guchar jis_code, guchar sound_sym)
229 {
230         static guint16 h2z_tbl[] = {
231                 /* 0x20 - 0x2f */
232                 0x0000, 0x2123, 0x2156, 0x2157, 0x2122, 0x2126, 0x2572, 0x2521,
233                 0x2523, 0x2525, 0x2527, 0x2529, 0x2563, 0x2565, 0x2567, 0x2543,
234                 /* 0x30 - 0x3f */
235                 0x213c, 0x2522, 0x2524, 0x2526, 0x2528, 0x252a, 0x252b, 0x252d,
236                 0x252f, 0x2531, 0x2533, 0x2535, 0x2537, 0x2539, 0x253b, 0x253d,
237                 /* 0x40 - 0x4f */
238                 0x253f, 0x2541, 0x2544, 0x2546, 0x2548, 0x254a, 0x254b, 0x254c,
239                 0x254d, 0x254e, 0x254f, 0x2552, 0x2555, 0x2558, 0x255b, 0x255e,
240                 /* 0x50 - 0x5f */
241                 0x255f, 0x2560, 0x2561, 0x2562, 0x2564, 0x2566, 0x2568, 0x2569,
242                 0x256a, 0x256b, 0x256c, 0x256d, 0x256f, 0x2573, 0x212b, 0x212c
243         };
244
245         static guint16 dakuten_tbl[] = {
246                 /* 0x30 - 0x3f */
247                 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x252c, 0x252e,
248                 0x2530, 0x2532, 0x2534, 0x2536, 0x2538, 0x253a, 0x253c, 0x253e,
249                 /* 0x40 - 0x4f */
250                 0x2540, 0x2542, 0x2545, 0x2547, 0x2549, 0x0000, 0x0000, 0x0000,
251                 0x0000, 0x0000, 0x2550, 0x2553, 0x2556, 0x2559, 0x255c, 0x0000
252         };
253
254         static guint16 handakuten_tbl[] = {
255                 /* 0x4a - 0x4e */
256                 0x2551, 0x2554, 0x2557, 0x255a, 0x255d
257         };
258
259         guint16 out_code;
260
261         jis_code &= 0x7f;
262         sound_sym &= 0x7f;
263
264         if (jis_code < 0x21 || jis_code > 0x5f)
265                 return 0;
266
267         if (sound_sym == JIS_HWDAKUTEN &&
268             jis_code >= 0x36 && jis_code <= 0x4e) {
269                 out_code = dakuten_tbl[jis_code - 0x30];
270                 if (out_code != 0) {
271                         *outbuf = out_code >> 8;
272                         *(outbuf + 1) = out_code & 0xff;
273                         return 2;
274                 }
275         }
276
277         if (sound_sym == JIS_HWHANDAKUTEN &&
278             jis_code >= 0x4a && jis_code <= 0x4e) {
279                 out_code = handakuten_tbl[jis_code - 0x4a];
280                 *outbuf = out_code >> 8;
281                 *(outbuf + 1) = out_code & 0xff;
282                 return 2;
283         }
284
285         out_code = h2z_tbl[jis_code - 0x20];
286         *outbuf = out_code >> 8;
287         *(outbuf + 1) = out_code & 0xff;
288         return 1;
289 }
290
291 static gint conv_euctojis(gchar *outbuf, gint outlen, const gchar *inbuf)
292 {
293         const guchar *in = inbuf;
294         guchar *out = outbuf;
295         JISState state = JIS_ASCII;
296
297         while (*in != '\0') {
298                 if (IS_ASCII(*in)) {
299                         K_OUT();
300                         *out++ = *in++;
301                 } else if (iseuckanji(*in)) {
302                         if (iseuckanji(*(in + 1))) {
303                                 K_IN();
304                                 *out++ = *in++ & 0x7f;
305                                 *out++ = *in++ & 0x7f;
306                         } else {
307                                 K_OUT();
308                                 *out++ = SUBST_CHAR;
309                                 in++;
310                                 if (*in != '\0' && !IS_ASCII(*in)) {
311                                         *out++ = SUBST_CHAR;
312                                         in++;
313                                 }
314                         }
315                 } else if (iseuchwkana1(*in)) {
316                         if (iseuchwkana2(*(in + 1))) {
317                                 if (prefs_common.allow_jisx0201_kana) {
318                                         HW_IN();
319                                         in++;
320                                         *out++ = *in++ & 0x7f;
321                                 } else {
322                                         guchar jis_ch[2];
323                                         gint len;
324
325                                         if (iseuchwkana1(*(in + 2)) &&
326                                             iseuchwkana2(*(in + 3)))
327                                                 len = conv_jis_hantozen
328                                                         (jis_ch,
329                                                          *(in + 1), *(in + 3));
330                                         else
331                                                 len = conv_jis_hantozen
332                                                         (jis_ch,
333                                                          *(in + 1), '\0');
334                                         if (len == 0)
335                                                 in += 2;
336                                         else {
337                                                 K_IN();
338                                                 in += len * 2;
339                                                 *out++ = jis_ch[0];
340                                                 *out++ = jis_ch[1];
341                                         }
342                                 }
343                         } else {
344                                 K_OUT();
345                                 in++;
346                                 if (*in != '\0' && !IS_ASCII(*in)) {
347                                         *out++ = SUBST_CHAR;
348                                         in++;
349                                 }
350                         }
351                 } else if (iseucaux(*in)) {
352                         in++;
353                         if (iseuckanji(*in) && iseuckanji(*(in + 1))) {
354                                 AUX_IN();
355                                 *out++ = *in++ & 0x7f;
356                                 *out++ = *in++ & 0x7f;
357                         } else {
358                                 K_OUT();
359                                 if (*in != '\0' && !IS_ASCII(*in)) {
360                                         *out++ = SUBST_CHAR;
361                                         in++;
362                                         if (*in != '\0' && !IS_ASCII(*in)) {
363                                                 *out++ = SUBST_CHAR;
364                                                 in++;
365                                         }
366                                 }
367                         }
368                 } else {
369                         K_OUT();
370                         *out++ = SUBST_CHAR;
371                         in++;
372                 }
373         }
374
375         K_OUT();
376         *out = '\0';
377         return 0;
378 }
379
380 static gint conv_sjistoeuc(gchar *outbuf, gint outlen, const gchar *inbuf)
381 {
382         const guchar *in = inbuf;
383         guchar *out = outbuf;
384
385         while (*in != '\0') {
386                 if (IS_ASCII(*in)) {
387                         *out++ = *in++;
388                 } else if (issjiskanji1(*in)) {
389                         if (issjiskanji2(*(in + 1))) {
390                                 guchar out1 = *in;
391                                 guchar out2 = *(in + 1);
392                                 guchar row;
393
394                                 row = out1 < 0xa0 ? 0x70 : 0xb0;
395                                 if (out2 < 0x9f) {
396                                         out1 = (out1 - row) * 2 - 1;
397                                         out2 -= out2 > 0x7f ? 0x20 : 0x1f;
398                                 } else {
399                                         out1 = (out1 - row) * 2;
400                                         out2 -= 0x7e;
401                                 }
402
403                                 *out++ = out1 | 0x80;
404                                 *out++ = out2 | 0x80;
405                                 in += 2;
406                         } else {
407                                 *out++ = SUBST_CHAR;
408                                 in++;
409                                 if (*in != '\0' && !IS_ASCII(*in)) {
410                                         *out++ = SUBST_CHAR;
411                                         in++;
412                                 }
413                         }
414                 } else if (issjishwkana(*in)) {
415                         *out++ = 0x8e;
416                         *out++ = *in++;
417                 } else {
418                         *out++ = SUBST_CHAR;
419                         in++;
420                 }
421         }
422
423         *out = '\0';
424         return 0;
425 }
426
427 static gint conv_jistoutf8(gchar *outbuf, gint outlen, const gchar *inbuf)
428 {
429         gchar *eucstr;
430
431         Xalloca(eucstr, outlen, return -1);
432
433         if (conv_jistoeuc(eucstr, outlen, inbuf) <0)
434                 return -1;
435         if (conv_euctoutf8(outbuf, outlen, eucstr) < 0)
436                 return -1;
437         return 0;
438 }
439
440 static gint conv_sjistoutf8(gchar *outbuf, gint outlen, const gchar *inbuf)
441 {
442         gchar *tmpstr;
443
444         tmpstr = conv_iconv_strdup(inbuf, CS_SHIFT_JIS, CS_UTF_8);
445         if (tmpstr) {
446                 strncpy2(outbuf, tmpstr, outlen);
447                 g_free(tmpstr);
448                 return 0;
449         } else {
450                 strncpy2(outbuf, inbuf, outlen);
451                 return -1;
452         }
453 }
454
455 static gint conv_euctoutf8(gchar *outbuf, gint outlen, const gchar *inbuf)
456 {
457         static iconv_t cd = (iconv_t)-1;
458         static gboolean iconv_ok = TRUE;
459         gchar *tmpstr;
460
461         if (cd == (iconv_t)-1) {
462                 if (!iconv_ok) {
463                         strncpy2(outbuf, inbuf, outlen);
464                         return -1;
465                 }
466                 cd = iconv_open(CS_UTF_8, CS_EUC_JP_MS);
467                 if (cd == (iconv_t)-1) {
468                         cd = iconv_open(CS_UTF_8, CS_EUC_JP);
469                         if (cd == (iconv_t)-1) {
470                                 g_warning("conv_euctoutf8(): %s\n",
471                                           g_strerror(errno));
472                                 iconv_ok = FALSE;
473                                 strncpy2(outbuf, inbuf, outlen);
474                                 return -1;
475                         }
476                 }
477         }
478
479         tmpstr = conv_iconv_strdup_with_cd(inbuf, cd);
480         if (tmpstr) {
481                 strncpy2(outbuf, tmpstr, outlen);
482                 g_free(tmpstr);
483                 return 0;
484         } else {
485                 strncpy2(outbuf, inbuf, outlen);
486                 return -1;
487         }
488 }
489
490 static gint conv_anytoutf8(gchar *outbuf, gint outlen, const gchar *inbuf)
491 {
492         gint r = -1;
493         switch (conv_guess_ja_encoding(inbuf)) {
494         case C_ISO_2022_JP:
495                 r = conv_jistoutf8(outbuf, outlen, inbuf);
496                 break;
497         case C_SHIFT_JIS:
498                 r = conv_sjistoutf8(outbuf, outlen, inbuf);
499                 break;
500         case C_EUC_JP:
501                 r = conv_euctoutf8(outbuf, outlen, inbuf);
502                 break;
503         default:
504                 r = 0;
505                 strncpy2(outbuf, inbuf, outlen);
506                 break;
507         }
508         
509         return r;
510 }
511
512 static gint conv_utf8toeuc(gchar *outbuf, gint outlen, const gchar *inbuf)
513 {
514         static iconv_t cd = (iconv_t)-1;
515         static gboolean iconv_ok = TRUE;
516         gchar *tmpstr;
517
518         if (cd == (iconv_t)-1) {
519                 if (!iconv_ok) {
520                         strncpy2(outbuf, inbuf, outlen);
521                         return -1;
522                 }
523                 cd = iconv_open(CS_EUC_JP_MS, CS_UTF_8);
524                 if (cd == (iconv_t)-1) {
525                         cd = iconv_open(CS_EUC_JP, CS_UTF_8);
526                         if (cd == (iconv_t)-1) {
527                                 g_warning("conv_utf8toeuc(): %s\n",
528                                           g_strerror(errno));
529                                 iconv_ok = FALSE;
530                                 strncpy2(outbuf, inbuf, outlen);
531                                 return -1;
532                         }
533                 }
534         }
535
536         tmpstr = conv_iconv_strdup_with_cd(inbuf, cd);
537         if (tmpstr) {
538                 strncpy2(outbuf, tmpstr, outlen);
539                 g_free(tmpstr);
540                 return 0;
541         } else {
542                 strncpy2(outbuf, inbuf, outlen);
543                 return -1;
544         }
545 }
546
547 static gint conv_utf8tojis(gchar *outbuf, gint outlen, const gchar *inbuf)
548 {
549         gchar *eucstr;
550
551         Xalloca(eucstr, outlen, return -1);
552
553         if (conv_utf8toeuc(eucstr, outlen, inbuf) < 0)
554                 return -1;
555         if (conv_euctojis(outbuf, outlen, eucstr) < 0)
556                 return -1;
557                 
558         return 0;
559 }
560
561 static void conv_unreadable_8bit(gchar *str)
562 {
563         register guchar *p = str;
564
565         while (*p != '\0') {
566                 /* convert CR+LF -> LF */
567                 if (*p == '\r' && *(p + 1) == '\n')
568                         memmove(p, p + 1, strlen(p));
569                 else if (!IS_ASCII(*p)) *p = SUBST_CHAR;
570                 p++;
571         }
572 }
573
574 static CharSet conv_guess_ja_encoding(const gchar *str)
575 {
576         const guchar *p = str;
577         CharSet guessed = C_US_ASCII;
578
579         while (*p != '\0') {
580                 if (*p == ESC && (*(p + 1) == '$' || *(p + 1) == '(')) {
581                         if (guessed == C_US_ASCII)
582                                 return C_ISO_2022_JP;
583                         p += 2;
584                 } else if (IS_ASCII(*p)) {
585                         p++;
586                 } else if (iseuckanji(*p) && iseuckanji(*(p + 1))) {
587                         if (*p >= 0xfd && *p <= 0xfe)
588                                 return C_EUC_JP;
589                         else if (guessed == C_SHIFT_JIS) {
590                                 if ((issjiskanji1(*p) &&
591                                      issjiskanji2(*(p + 1))) ||
592                                     issjishwkana(*p))
593                                         guessed = C_SHIFT_JIS;
594                                 else
595                                         guessed = C_EUC_JP;
596                         } else
597                                 guessed = C_EUC_JP;
598                         p += 2;
599                 } else if (issjiskanji1(*p) && issjiskanji2(*(p + 1))) {
600                         if (iseuchwkana1(*p) && iseuchwkana2(*(p + 1)))
601                                 guessed = C_SHIFT_JIS;
602                         else
603                                 return C_SHIFT_JIS;
604                         p += 2;
605                 } else if (issjishwkana(*p)) {
606                         guessed = C_SHIFT_JIS;
607                         p++;
608                 } else {
609                         p++;
610                 }
611         }
612
613         return guessed;
614 }
615
616 static gint conv_jistodisp(gchar *outbuf, gint outlen, const gchar *inbuf)
617 {
618         return conv_jistoutf8(outbuf, outlen, inbuf);
619 }
620
621 static gint conv_sjistodisp(gchar *outbuf, gint outlen, const gchar *inbuf)
622 {
623         return conv_sjistoutf8(outbuf, outlen, inbuf);
624 }
625
626 static gint conv_euctodisp(gchar *outbuf, gint outlen, const gchar *inbuf)
627 {
628         return conv_euctoutf8(outbuf, outlen, inbuf);
629 }
630
631 void conv_utf8todisp(gchar *outbuf, gint outlen, const gchar *inbuf)
632 {
633         if (g_utf8_validate(inbuf, -1, NULL) == TRUE)
634                 strncpy2(outbuf, inbuf, outlen);
635         else
636                 conv_ustodisp(outbuf, outlen, inbuf);
637 }
638
639 static gint conv_anytodisp(gchar *outbuf, gint outlen, const gchar *inbuf)
640 {
641         gint r = 0;
642         if (conv_anytoutf8(outbuf, outlen, inbuf) < 0)
643                 r = -1;
644         if (g_utf8_validate(outbuf, -1, NULL) != TRUE)
645                 conv_unreadable_8bit(outbuf);
646         return r;
647 }
648
649 static gint conv_ustodisp(gchar *outbuf, gint outlen, const gchar *inbuf)
650 {
651         strncpy2(outbuf, inbuf, outlen);
652         conv_unreadable_8bit(outbuf);
653         
654         return 0;
655 }
656
657 void conv_localetodisp(gchar *outbuf, gint outlen, const gchar *inbuf)
658 {
659         gchar *tmpstr;
660
661         codeconv_set_strict(TRUE);
662         tmpstr = conv_iconv_strdup(inbuf, conv_get_locale_charset_str(),
663                                    CS_INTERNAL);
664         codeconv_set_strict(FALSE);
665         if (tmpstr && g_utf8_validate(tmpstr, -1, NULL)) {
666                 strncpy2(outbuf, tmpstr, outlen);
667                 g_free(tmpstr);
668                 return;
669         } else if (tmpstr && !g_utf8_validate(tmpstr, -1, NULL)) {
670                 g_free(tmpstr);
671                 codeconv_set_strict(TRUE);
672                 tmpstr = conv_iconv_strdup(inbuf, 
673                                 conv_get_locale_charset_str_no_utf8(),
674                                 CS_INTERNAL);
675                 codeconv_set_strict(FALSE);
676         }
677         if (tmpstr && g_utf8_validate(tmpstr, -1, NULL)) {
678                 strncpy2(outbuf, tmpstr, outlen);
679                 g_free(tmpstr);
680                 return;
681         } else {
682                 g_free(tmpstr);
683                 conv_utf8todisp(outbuf, outlen, inbuf);
684         }
685 }
686
687 static gint conv_noconv(gchar *outbuf, gint outlen, const gchar *inbuf)
688 {
689         strncpy2(outbuf, inbuf, outlen);
690         return 0;
691 }
692
693 static const gchar *
694 conv_get_fallback_for_private_encoding(const gchar *encoding)
695 {
696         if (encoding && (encoding[0] == 'X' || encoding[0] == 'x') &&
697             encoding[1] == '-') {
698                 if (!g_ascii_strcasecmp(encoding, CS_X_GBK))
699                         return CS_GBK;
700         }
701
702         return encoding;
703 }
704
705 CodeConverter *conv_code_converter_new(const gchar *src_charset)
706 {
707         CodeConverter *conv;
708
709         src_charset = conv_get_fallback_for_private_encoding(src_charset);
710
711         conv = g_new0(CodeConverter, 1);
712         conv->code_conv_func = conv_get_code_conv_func(src_charset, NULL);
713         conv->charset_str = g_strdup(src_charset);
714         conv->charset = conv_get_charset_from_str(src_charset);
715
716         return conv;
717 }
718
719 void conv_code_converter_destroy(CodeConverter *conv)
720 {
721         g_free(conv->charset_str);
722         g_free(conv);
723 }
724
725 gint conv_convert(CodeConverter *conv, gchar *outbuf, gint outlen,
726                   const gchar *inbuf)
727 {
728         if (conv->code_conv_func != conv_noconv)
729                 return conv->code_conv_func(outbuf, outlen, inbuf);
730         else {
731                 gchar *str;
732
733                 str = conv_iconv_strdup(inbuf, conv->charset_str, NULL);
734                 if (!str)
735                         return -1;
736                 else {
737                         strncpy2(outbuf, str, outlen);
738                         g_free(str);
739                 }
740         }
741
742         return 0;
743 }
744
745 gchar *conv_codeset_strdup(const gchar *inbuf,
746                            const gchar *src_code, const gchar *dest_code)
747 {
748         gchar *buf;
749         size_t len;
750         CodeConvFunc conv_func;
751
752         if (!strcmp2(src_code, dest_code))
753                 return g_strdup(inbuf);
754
755         src_code = conv_get_fallback_for_private_encoding(src_code);
756         conv_func = conv_get_code_conv_func(src_code, dest_code);
757         if (conv_func == conv_ustodisp && strict_mode && !is_ascii_str(inbuf))
758                 return NULL;
759
760         if (conv_func != conv_noconv) {
761                 len = (strlen(inbuf) + 1) * 3;
762                 buf = g_malloc(len);
763                 if (!buf) return NULL;
764
765                 if (conv_func(buf, len, inbuf) == 0 || !strict_mode)
766                         return g_realloc(buf, strlen(buf) + 1);
767                 else {
768                         g_free(buf);
769                         return NULL;
770                 }
771         }
772
773         return conv_iconv_strdup(inbuf, src_code, dest_code);
774 }
775
776 static CodeConvFunc conv_get_code_conv_func(const gchar *src_charset_str,
777                                      const gchar *dest_charset_str)
778 {
779         CodeConvFunc code_conv = conv_noconv;
780         CharSet src_charset;
781         CharSet dest_charset;
782
783         if (!src_charset_str)
784                 src_charset = conv_get_locale_charset();
785         else
786                 src_charset = conv_get_charset_from_str(src_charset_str);
787
788         /* auto detection mode */
789         if (!src_charset_str && !dest_charset_str) {
790                 if (conv_is_ja_locale())
791                         return conv_anytodisp;
792                 else
793                         return conv_noconv;
794         }
795
796         dest_charset = conv_get_charset_from_str(dest_charset_str);
797
798         if (dest_charset == C_US_ASCII)
799                 return conv_ustodisp;
800
801         switch (src_charset) {
802         case C_US_ASCII:
803         case C_ISO_8859_1:
804         case C_ISO_8859_2:
805         case C_ISO_8859_3:
806         case C_ISO_8859_4:
807         case C_ISO_8859_5:
808         case C_ISO_8859_6:
809         case C_ISO_8859_7:
810         case C_ISO_8859_8:
811         case C_ISO_8859_9:
812         case C_ISO_8859_10:
813         case C_ISO_8859_11:
814         case C_ISO_8859_13:
815         case C_ISO_8859_14:
816         case C_ISO_8859_15:
817                 break;
818         case C_ISO_2022_JP:
819         case C_ISO_2022_JP_2:
820         case C_ISO_2022_JP_3:
821                 if (dest_charset == C_AUTO)
822                         code_conv = conv_jistodisp;
823                 else if (dest_charset == C_EUC_JP)
824                         code_conv = conv_jistoeuc;
825                 else if (dest_charset == C_UTF_8)
826                         code_conv = conv_jistoutf8;
827                 break;
828         case C_SHIFT_JIS:
829                 if (dest_charset == C_AUTO)
830                         code_conv = conv_sjistodisp;
831                 else if (dest_charset == C_EUC_JP)
832                         code_conv = conv_sjistoeuc;
833                 else if (dest_charset == C_UTF_8)
834                         code_conv = conv_sjistoutf8;
835                 break;
836         case C_EUC_JP:
837                 if (dest_charset == C_AUTO)
838                         code_conv = conv_euctodisp;
839                 else if (dest_charset == C_ISO_2022_JP   ||
840                          dest_charset == C_ISO_2022_JP_2 ||
841                          dest_charset == C_ISO_2022_JP_3)
842                         code_conv = conv_euctojis;
843                 else if (dest_charset == C_UTF_8)
844                         code_conv = conv_euctoutf8;
845                 break;
846         case C_UTF_8:
847                 if (dest_charset == C_EUC_JP)
848                         code_conv = conv_utf8toeuc;
849                 else if (dest_charset == C_ISO_2022_JP   ||
850                          dest_charset == C_ISO_2022_JP_2 ||
851                          dest_charset == C_ISO_2022_JP_3)
852                         code_conv = conv_utf8tojis;
853                 break;
854         default:
855                 break;
856         }
857
858         return code_conv;
859 }
860
861 static gchar *conv_iconv_strdup(const gchar *inbuf,
862                          const gchar *src_code, const gchar *dest_code)
863 {
864         iconv_t cd;
865         gchar *outbuf;
866
867         if (!src_code && !dest_code && 
868             g_utf8_validate(inbuf, -1, NULL))
869                 return g_strdup(inbuf);
870
871         if (!src_code)
872                 src_code = conv_get_outgoing_charset_str();
873         if (!dest_code)
874                 dest_code = CS_INTERNAL;
875
876         /* don't convert if src and dest codeset are identical */
877         if (!strcasecmp(src_code, dest_code))
878                 return g_strdup(inbuf);
879
880         /* don't convert if dest codeset is US-ASCII */
881         if (!strcasecmp(src_code, CS_US_ASCII))
882                 return g_strdup(inbuf);
883
884         /* don't convert if dest codeset is US-ASCII */
885         if (!strcasecmp(dest_code, CS_US_ASCII))
886                 return g_strdup(inbuf);
887
888         cd = iconv_open(dest_code, src_code);
889         if (cd == (iconv_t)-1)
890                 return NULL;
891
892         outbuf = conv_iconv_strdup_with_cd(inbuf, cd);
893
894         iconv_close(cd);
895
896         return outbuf;
897 }
898
899 gchar *conv_iconv_strdup_with_cd(const gchar *inbuf, iconv_t cd)
900 {
901         const gchar *inbuf_p;
902         gchar *outbuf;
903         gchar *outbuf_p;
904         size_t in_size;
905         size_t in_left;
906         size_t out_size;
907         size_t out_left;
908         size_t n_conv;
909         size_t len;
910
911         inbuf_p = inbuf;
912         in_size = strlen(inbuf);
913         in_left = in_size;
914         out_size = (in_size + 1) * 2;
915         outbuf = g_malloc(out_size);
916         outbuf_p = outbuf;
917         out_left = out_size;
918
919 #define EXPAND_BUF()                            \
920 {                                               \
921         len = outbuf_p - outbuf;                \
922         out_size *= 2;                          \
923         outbuf = g_realloc(outbuf, out_size);   \
924         outbuf_p = outbuf + len;                \
925         out_left = out_size - len;              \
926 }
927
928         while ((n_conv = iconv(cd, (ICONV_CONST gchar **)&inbuf_p, &in_left,
929                                &outbuf_p, &out_left)) == (size_t)-1) {
930                 if (EILSEQ == errno) {
931                         if (strict_mode) {
932                                 g_free(outbuf);
933                                 return NULL;
934                         }
935                         //g_print("iconv(): at %d: %s\n", in_size - in_left, g_strerror(errno));
936                         inbuf_p++;
937                         in_left--;
938                         if (out_left == 0) {
939                                 EXPAND_BUF();
940                         }
941                         *outbuf_p++ = SUBST_CHAR;
942                         out_left--;
943                 } else if (EINVAL == errno) {
944                         break;
945                 } else if (E2BIG == errno) {
946                         EXPAND_BUF();
947                 } else {
948                         g_warning("conv_iconv_strdup(): %s\n",
949                                   g_strerror(errno));
950                         break;
951                 }
952         }
953
954         while ((n_conv = iconv(cd, NULL, NULL, &outbuf_p, &out_left)) ==
955                (size_t)-1) {
956                 if (E2BIG == errno) {
957                         EXPAND_BUF();
958                 } else {
959                         g_warning("conv_iconv_strdup(): %s\n",
960                                   g_strerror(errno));
961                         break;
962                 }
963         }
964
965 #undef EXPAND_BUF
966
967         len = outbuf_p - outbuf;
968         outbuf = g_realloc(outbuf, len + 1);
969         outbuf[len] = '\0';
970
971         return outbuf;
972 }
973
974 static const struct {
975         CharSet charset;
976         gchar *const name;
977 } charsets[] = {
978         {C_US_ASCII,            CS_US_ASCII},
979         {C_US_ASCII,            CS_ANSI_X3_4_1968},
980         {C_UTF_8,               CS_UTF_8},
981         {C_UTF_7,               CS_UTF_7},
982         {C_ISO_8859_1,          CS_ISO_8859_1},
983         {C_ISO_8859_2,          CS_ISO_8859_2},
984         {C_ISO_8859_3,          CS_ISO_8859_3},
985         {C_ISO_8859_4,          CS_ISO_8859_4},
986         {C_ISO_8859_5,          CS_ISO_8859_5},
987         {C_ISO_8859_6,          CS_ISO_8859_6},
988         {C_ISO_8859_7,          CS_ISO_8859_7},
989         {C_ISO_8859_8,          CS_ISO_8859_8},
990         {C_ISO_8859_9,          CS_ISO_8859_9},
991         {C_ISO_8859_10,         CS_ISO_8859_10},
992         {C_ISO_8859_11,         CS_ISO_8859_11},
993         {C_ISO_8859_13,         CS_ISO_8859_13},
994         {C_ISO_8859_14,         CS_ISO_8859_14},
995         {C_ISO_8859_15,         CS_ISO_8859_15},
996         {C_BALTIC,              CS_BALTIC},
997         {C_CP1250,              CS_CP1250},
998         {C_CP1251,              CS_CP1251},
999         {C_CP1252,              CS_CP1252},
1000         {C_CP1253,              CS_CP1253},
1001         {C_CP1254,              CS_CP1254},
1002         {C_CP1255,              CS_CP1255},
1003         {C_CP1256,              CS_CP1256},
1004         {C_CP1257,              CS_CP1257},
1005         {C_CP1258,              CS_CP1258},
1006         {C_WINDOWS_1250,        CS_WINDOWS_1250},
1007         {C_WINDOWS_1251,        CS_WINDOWS_1251},
1008         {C_WINDOWS_1252,        CS_WINDOWS_1252},
1009         {C_WINDOWS_1253,        CS_WINDOWS_1253},
1010         {C_WINDOWS_1254,        CS_WINDOWS_1254},
1011         {C_WINDOWS_1255,        CS_WINDOWS_1255},
1012         {C_WINDOWS_1256,        CS_WINDOWS_1256},
1013         {C_WINDOWS_1257,        CS_WINDOWS_1257},
1014         {C_WINDOWS_1258,        CS_WINDOWS_1258},
1015         {C_KOI8_R,              CS_KOI8_R},
1016         {C_KOI8_T,              CS_KOI8_T},
1017         {C_KOI8_U,              CS_KOI8_U},
1018         {C_ISO_2022_JP,         CS_ISO_2022_JP},
1019         {C_ISO_2022_JP_2,       CS_ISO_2022_JP_2},
1020         {C_ISO_2022_JP_3,       CS_ISO_2022_JP_3},
1021         {C_EUC_JP,              CS_EUC_JP},
1022         {C_EUC_JP,              CS_EUCJP},
1023         {C_EUC_JP_MS,           CS_EUC_JP_MS},
1024         {C_SHIFT_JIS,           CS_SHIFT_JIS},
1025         {C_SHIFT_JIS,           CS_SHIFT__JIS},
1026         {C_SHIFT_JIS,           CS_SJIS},
1027         {C_ISO_2022_KR,         CS_ISO_2022_KR},
1028         {C_EUC_KR,              CS_EUC_KR},
1029         {C_ISO_2022_CN,         CS_ISO_2022_CN},
1030         {C_EUC_CN,              CS_EUC_CN},
1031         {C_GB18030,             CS_GB18030},
1032         {C_GB2312,              CS_GB2312},
1033         {C_GBK,                 CS_GBK},
1034         {C_EUC_TW,              CS_EUC_TW},
1035         {C_BIG5,                CS_BIG5},
1036         {C_BIG5_HKSCS,          CS_BIG5_HKSCS},
1037         {C_TIS_620,             CS_TIS_620},
1038         {C_WINDOWS_874,         CS_WINDOWS_874},
1039         {C_GEORGIAN_PS,         CS_GEORGIAN_PS},
1040         {C_TCVN5712_1,          CS_TCVN5712_1},
1041 };
1042
1043 static const struct {
1044         gchar *const locale;
1045         CharSet charset;
1046         CharSet out_charset;
1047 } locale_table[] = {
1048         {"ja_JP.eucJP"  , C_EUC_JP      , C_ISO_2022_JP},
1049         {"ja_JP.EUC-JP" , C_EUC_JP      , C_ISO_2022_JP},
1050         {"ja_JP.EUC"    , C_EUC_JP      , C_ISO_2022_JP},
1051         {"ja_JP.ujis"   , C_EUC_JP      , C_ISO_2022_JP},
1052         {"ja_JP.SJIS"   , C_SHIFT_JIS   , C_ISO_2022_JP},
1053         {"ja_JP.JIS"    , C_ISO_2022_JP , C_ISO_2022_JP},
1054 #ifdef G_OS_WIN32
1055         {"ja_JP"        , C_SHIFT_JIS   , C_ISO_2022_JP},
1056 #else
1057         {"ja_JP"        , C_EUC_JP      , C_ISO_2022_JP},
1058 #endif
1059         {"ko_KR.EUC-KR" , C_EUC_KR      , C_EUC_KR},
1060         {"ko_KR"        , C_EUC_KR      , C_EUC_KR},
1061         {"zh_CN.GB18030"        , C_GB18030     , C_GB18030},
1062         {"zh_CN.GB2312" , C_GB2312      , C_GB2312},
1063         {"zh_CN.GBK"    , C_GBK         , C_GBK},
1064         {"zh_CN"        , C_GB18030     , C_GB18030},
1065         {"zh_HK"        , C_BIG5_HKSCS  , C_BIG5_HKSCS},
1066         {"zh_TW.eucTW"  , C_EUC_TW      , C_BIG5},
1067         {"zh_TW.EUC-TW" , C_EUC_TW      , C_BIG5},
1068         {"zh_TW.Big5"   , C_BIG5        , C_BIG5},
1069         {"zh_TW"        , C_BIG5        , C_BIG5},
1070
1071         {"ru_RU.KOI8-R" , C_KOI8_R      , C_KOI8_R},
1072         {"ru_RU.KOI8R"  , C_KOI8_R      , C_KOI8_R},
1073         {"ru_RU.CP1251" , C_WINDOWS_1251, C_KOI8_R},
1074 #ifdef G_OS_WIN32
1075         {"ru_RU"        , C_WINDOWS_1251, C_KOI8_R},
1076 #else
1077         {"ru_RU"        , C_ISO_8859_5  , C_KOI8_R},
1078 #endif
1079         {"tg_TJ"        , C_KOI8_T      , C_KOI8_T},
1080         {"ru_UA"        , C_KOI8_U      , C_KOI8_U},
1081         {"uk_UA.CP1251" , C_WINDOWS_1251, C_KOI8_U},
1082         {"uk_UA"        , C_KOI8_U      , C_KOI8_U},
1083
1084         {"be_BY"        , C_WINDOWS_1251, C_WINDOWS_1251},
1085         {"bg_BG"        , C_WINDOWS_1251, C_WINDOWS_1251},
1086
1087         {"yi_US"        , C_WINDOWS_1255, C_WINDOWS_1255},
1088
1089         {"af_ZA"        , C_ISO_8859_1  , C_ISO_8859_1},
1090         {"br_FR"        , C_ISO_8859_1  , C_ISO_8859_1},
1091         {"ca_ES"        , C_ISO_8859_1  , C_ISO_8859_1},
1092         {"da_DK"        , C_ISO_8859_1  , C_ISO_8859_1},
1093         {"de_AT"        , C_ISO_8859_1  , C_ISO_8859_1},
1094         {"de_BE"        , C_ISO_8859_1  , C_ISO_8859_1},
1095         {"de_CH"        , C_ISO_8859_1  , C_ISO_8859_1},
1096         {"de_DE"        , C_ISO_8859_1  , C_ISO_8859_1},
1097         {"de_LU"        , C_ISO_8859_1  , C_ISO_8859_1},
1098         {"en_AU"        , C_ISO_8859_1  , C_ISO_8859_1},
1099         {"en_BW"        , C_ISO_8859_1  , C_ISO_8859_1},
1100         {"en_CA"        , C_ISO_8859_1  , C_ISO_8859_1},
1101         {"en_DK"        , C_ISO_8859_1  , C_ISO_8859_1},
1102         {"en_GB"        , C_ISO_8859_1  , C_ISO_8859_1},
1103         {"en_HK"        , C_ISO_8859_1  , C_ISO_8859_1},
1104         {"en_IE"        , C_ISO_8859_1  , C_ISO_8859_1},
1105         {"en_NZ"        , C_ISO_8859_1  , C_ISO_8859_1},
1106         {"en_PH"        , C_ISO_8859_1  , C_ISO_8859_1},
1107         {"en_SG"        , C_ISO_8859_1  , C_ISO_8859_1},
1108         {"en_US"        , C_ISO_8859_1  , C_ISO_8859_1},
1109         {"en_ZA"        , C_ISO_8859_1  , C_ISO_8859_1},
1110         {"en_ZW"        , C_ISO_8859_1  , C_ISO_8859_1},
1111         {"es_AR"        , C_ISO_8859_1  , C_ISO_8859_1},
1112         {"es_BO"        , C_ISO_8859_1  , C_ISO_8859_1},
1113         {"es_CL"        , C_ISO_8859_1  , C_ISO_8859_1},
1114         {"es_CO"        , C_ISO_8859_1  , C_ISO_8859_1},
1115         {"es_CR"        , C_ISO_8859_1  , C_ISO_8859_1},
1116         {"es_DO"        , C_ISO_8859_1  , C_ISO_8859_1},
1117         {"es_EC"        , C_ISO_8859_1  , C_ISO_8859_1},
1118         {"es_ES"        , C_ISO_8859_1  , C_ISO_8859_1},
1119         {"es_GT"        , C_ISO_8859_1  , C_ISO_8859_1},
1120         {"es_HN"        , C_ISO_8859_1  , C_ISO_8859_1},
1121         {"es_MX"        , C_ISO_8859_1  , C_ISO_8859_1},
1122         {"es_NI"        , C_ISO_8859_1  , C_ISO_8859_1},
1123         {"es_PA"        , C_ISO_8859_1  , C_ISO_8859_1},
1124         {"es_PE"        , C_ISO_8859_1  , C_ISO_8859_1},
1125         {"es_PR"        , C_ISO_8859_1  , C_ISO_8859_1},
1126         {"es_PY"        , C_ISO_8859_1  , C_ISO_8859_1},
1127         {"es_SV"        , C_ISO_8859_1  , C_ISO_8859_1},
1128         {"es_US"        , C_ISO_8859_1  , C_ISO_8859_1},
1129         {"es_UY"        , C_ISO_8859_1  , C_ISO_8859_1},
1130         {"es_VE"        , C_ISO_8859_1  , C_ISO_8859_1},
1131         {"et_EE"        , C_ISO_8859_1  , C_ISO_8859_1},
1132         {"eu_ES"        , C_ISO_8859_1  , C_ISO_8859_1},
1133         {"fi_FI"        , C_ISO_8859_1  , C_ISO_8859_1},
1134         {"fo_FO"        , C_ISO_8859_1  , C_ISO_8859_1},
1135         {"fr_BE"        , C_ISO_8859_1  , C_ISO_8859_1},
1136         {"fr_CA"        , C_ISO_8859_1  , C_ISO_8859_1},
1137         {"fr_CH"        , C_ISO_8859_1  , C_ISO_8859_1},
1138         {"fr_FR"        , C_ISO_8859_1  , C_ISO_8859_1},
1139         {"fr_LU"        , C_ISO_8859_1  , C_ISO_8859_1},
1140         {"ga_IE"        , C_ISO_8859_1  , C_ISO_8859_1},
1141         {"gl_ES"        , C_ISO_8859_1  , C_ISO_8859_1},
1142         {"gv_GB"        , C_ISO_8859_1  , C_ISO_8859_1},
1143         {"id_ID"        , C_ISO_8859_1  , C_ISO_8859_1},
1144         {"is_IS"        , C_ISO_8859_1  , C_ISO_8859_1},
1145         {"it_CH"        , C_ISO_8859_1  , C_ISO_8859_1},
1146         {"it_IT"        , C_ISO_8859_1  , C_ISO_8859_1},
1147         {"kl_GL"        , C_ISO_8859_1  , C_ISO_8859_1},
1148         {"kw_GB"        , C_ISO_8859_1  , C_ISO_8859_1},
1149         {"ms_MY"        , C_ISO_8859_1  , C_ISO_8859_1},
1150         {"nl_BE"        , C_ISO_8859_1  , C_ISO_8859_1},
1151         {"nl_NL"        , C_ISO_8859_1  , C_ISO_8859_1},
1152         {"nb_NO"        , C_ISO_8859_1  , C_ISO_8859_1},
1153         {"nn_NO"        , C_ISO_8859_1  , C_ISO_8859_1},
1154         {"no_NO"        , C_ISO_8859_1  , C_ISO_8859_1},
1155         {"oc_FR"        , C_ISO_8859_1  , C_ISO_8859_1},
1156         {"pt_BR"        , C_ISO_8859_1  , C_ISO_8859_1},
1157         {"pt_PT"        , C_ISO_8859_1  , C_ISO_8859_1},
1158         {"sq_AL"        , C_ISO_8859_1  , C_ISO_8859_1},
1159         {"sv_FI"        , C_ISO_8859_1  , C_ISO_8859_1},
1160         {"sv_SE"        , C_ISO_8859_1  , C_ISO_8859_1},
1161         {"tl_PH"        , C_ISO_8859_1  , C_ISO_8859_1},
1162         {"uz_UZ"        , C_ISO_8859_1  , C_ISO_8859_1},
1163         {"wa_BE"        , C_ISO_8859_1  , C_ISO_8859_1},
1164
1165         {"bs_BA"        , C_ISO_8859_2  , C_ISO_8859_2},
1166         {"cs_CZ"        , C_ISO_8859_2  , C_ISO_8859_2},
1167         {"hr_HR"        , C_ISO_8859_2  , C_ISO_8859_2},
1168         {"hu_HU"        , C_ISO_8859_2  , C_ISO_8859_2},
1169         {"pl_PL"        , C_ISO_8859_2  , C_ISO_8859_2},
1170         {"ro_RO"        , C_ISO_8859_2  , C_ISO_8859_2},
1171         {"sk_SK"        , C_ISO_8859_2  , C_ISO_8859_2},
1172         {"sl_SI"        , C_ISO_8859_2  , C_ISO_8859_2},
1173
1174         {"sr_YU@cyrillic"       , C_ISO_8859_5  , C_ISO_8859_5},
1175         {"sr_YU"                , C_ISO_8859_2  , C_ISO_8859_2},
1176
1177         {"mt_MT"                , C_ISO_8859_3  , C_ISO_8859_3},
1178
1179         {"lt_LT.iso88594"       , C_ISO_8859_4  , C_ISO_8859_4},
1180         {"lt_LT.ISO8859-4"      , C_ISO_8859_4  , C_ISO_8859_4},
1181         {"lt_LT.ISO_8859-4"     , C_ISO_8859_4  , C_ISO_8859_4},
1182         {"lt_LT"                , C_ISO_8859_13 , C_ISO_8859_13},
1183
1184         {"mk_MK"        , C_ISO_8859_5  , C_ISO_8859_5},
1185
1186         {"ar_AE"        , C_ISO_8859_6  , C_ISO_8859_6},
1187         {"ar_BH"        , C_ISO_8859_6  , C_ISO_8859_6},
1188         {"ar_DZ"        , C_ISO_8859_6  , C_ISO_8859_6},
1189         {"ar_EG"        , C_ISO_8859_6  , C_ISO_8859_6},
1190         {"ar_IQ"        , C_ISO_8859_6  , C_ISO_8859_6},
1191         {"ar_JO"        , C_ISO_8859_6  , C_ISO_8859_6},
1192         {"ar_KW"        , C_ISO_8859_6  , C_ISO_8859_6},
1193         {"ar_LB"        , C_ISO_8859_6  , C_ISO_8859_6},
1194         {"ar_LY"        , C_ISO_8859_6  , C_ISO_8859_6},
1195         {"ar_MA"        , C_ISO_8859_6  , C_ISO_8859_6},
1196         {"ar_OM"        , C_ISO_8859_6  , C_ISO_8859_6},
1197         {"ar_QA"        , C_ISO_8859_6  , C_ISO_8859_6},
1198         {"ar_SA"        , C_ISO_8859_6  , C_ISO_8859_6},
1199         {"ar_SD"        , C_ISO_8859_6  , C_ISO_8859_6},
1200         {"ar_SY"        , C_ISO_8859_6  , C_ISO_8859_6},
1201         {"ar_TN"        , C_ISO_8859_6  , C_ISO_8859_6},
1202         {"ar_YE"        , C_ISO_8859_6  , C_ISO_8859_6},
1203
1204         {"el_GR"        , C_ISO_8859_7  , C_ISO_8859_7},
1205         {"he_IL"        , C_ISO_8859_8  , C_ISO_8859_8},
1206         {"iw_IL"        , C_ISO_8859_8  , C_ISO_8859_8},
1207         {"tr_TR"        , C_ISO_8859_9  , C_ISO_8859_9},
1208
1209         {"lv_LV"        , C_ISO_8859_13 , C_ISO_8859_13},
1210         {"mi_NZ"        , C_ISO_8859_13 , C_ISO_8859_13},
1211
1212         {"cy_GB"        , C_ISO_8859_14 , C_ISO_8859_14},
1213
1214         {"ar_IN"        , C_UTF_8       , C_UTF_8},
1215         {"en_IN"        , C_UTF_8       , C_UTF_8},
1216         {"se_NO"        , C_UTF_8       , C_UTF_8},
1217         {"ta_IN"        , C_UTF_8       , C_UTF_8},
1218         {"te_IN"        , C_UTF_8       , C_UTF_8},
1219         {"ur_PK"        , C_UTF_8       , C_UTF_8},
1220
1221         {"th_TH"        , C_TIS_620     , C_TIS_620},
1222         /* {"th_TH"     , C_WINDOWS_874}, */
1223         /* {"th_TH"     , C_ISO_8859_11}, */
1224
1225         {"ka_GE"        , C_GEORGIAN_PS , C_GEORGIAN_PS},
1226         {"vi_VN.TCVN"   , C_TCVN5712_1  , C_TCVN5712_1},
1227
1228         {"C"                    , C_US_ASCII    , C_US_ASCII},
1229         {"POSIX"                , C_US_ASCII    , C_US_ASCII},
1230         {"ANSI_X3.4-1968"       , C_US_ASCII    , C_US_ASCII},
1231 };
1232
1233 static GHashTable *conv_get_charset_to_str_table(void)
1234 {
1235         static GHashTable *table;
1236         gint i;
1237
1238         if (table)
1239                 return table;
1240
1241         table = g_hash_table_new(NULL, g_direct_equal);
1242
1243         for (i = 0; i < sizeof(charsets) / sizeof(charsets[0]); i++) {
1244                 if (g_hash_table_lookup(table, GUINT_TO_POINTER(charsets[i].charset))
1245                     == NULL) {
1246                         g_hash_table_insert
1247                                 (table, GUINT_TO_POINTER(charsets[i].charset),
1248                                  charsets[i].name);
1249                 }
1250         }
1251
1252         return table;
1253 }
1254
1255 static GHashTable *conv_get_charset_from_str_table(void)
1256 {
1257         static GHashTable *table;
1258         gint i;
1259
1260         if (table)
1261                 return table;
1262
1263         table = g_hash_table_new(str_case_hash, str_case_equal);
1264
1265         for (i = 0; i < sizeof(charsets) / sizeof(charsets[0]); i++) {
1266                 g_hash_table_insert(table, charsets[i].name,
1267                                     GUINT_TO_POINTER(charsets[i].charset));
1268         }
1269
1270         return table;
1271 }
1272
1273 const gchar *conv_get_charset_str(CharSet charset)
1274 {
1275         GHashTable *table;
1276
1277         table = conv_get_charset_to_str_table();
1278         return g_hash_table_lookup(table, GUINT_TO_POINTER(charset));
1279 }
1280
1281 CharSet conv_get_charset_from_str(const gchar *charset)
1282 {
1283         GHashTable *table;
1284
1285         if (!charset) return C_AUTO;
1286
1287         table = conv_get_charset_from_str_table();
1288         return GPOINTER_TO_UINT(g_hash_table_lookup(table, charset));
1289 }
1290
1291 static CharSet conv_get_locale_charset(void)
1292 {
1293         static CharSet cur_charset = -1;
1294         const gchar *cur_locale;
1295         const gchar *p;
1296         gint i;
1297
1298         if (cur_charset != -1)
1299                 return cur_charset;
1300
1301         cur_locale = conv_get_current_locale();
1302         if (!cur_locale) {
1303                 cur_charset = C_US_ASCII;
1304                 return cur_charset;
1305         }
1306
1307         if (strcasestr(cur_locale, ".UTF-8") ||
1308             strcasestr(cur_locale, ".utf8")) {
1309                 cur_charset = C_UTF_8;
1310                 return cur_charset;
1311         }
1312
1313         if ((p = strcasestr(cur_locale, "@euro")) && p[5] == '\0') {
1314                 cur_charset = C_ISO_8859_15;
1315                 return cur_charset;
1316         }
1317
1318         for (i = 0; i < sizeof(locale_table) / sizeof(locale_table[0]); i++) {
1319                 const gchar *p;
1320
1321                 /* "ja_JP.EUC" matches with "ja_JP.eucJP", "ja_JP.EUC" and
1322                    "ja_JP". "ja_JP" matches with "ja_JP.xxxx" and "ja" */
1323                 if (!g_ascii_strncasecmp(cur_locale, locale_table[i].locale,
1324                                  strlen(locale_table[i].locale))) {
1325                         cur_charset = locale_table[i].charset;
1326                         return cur_charset;
1327                 } else if ((p = strchr(locale_table[i].locale, '_')) &&
1328                          !strchr(p + 1, '.')) {
1329                         if (strlen(cur_locale) == 2 &&
1330                             !g_ascii_strncasecmp(cur_locale, locale_table[i].locale, 2)) {
1331                                 cur_charset = locale_table[i].charset;
1332                                 return cur_charset;
1333                         }
1334                 }
1335         }
1336
1337         cur_charset = C_AUTO;
1338         return cur_charset;
1339 }
1340
1341 static CharSet conv_get_locale_charset_no_utf8(void)
1342 {
1343         static CharSet cur_charset = -1;
1344         const gchar *cur_locale;
1345         const gchar *p;
1346         gchar *tmp;
1347         gint i;
1348
1349         if (prefs_common.broken_are_utf8)
1350                 return conv_get_locale_charset();
1351
1352         if (cur_charset != -1)
1353                 return cur_charset;
1354
1355         cur_locale = conv_get_current_locale();
1356         if (!cur_locale) {
1357                 cur_charset = C_US_ASCII;
1358                 return cur_charset;
1359         }
1360
1361         if (strcasestr(cur_locale, "UTF-8")) {
1362                 tmp = g_strdup(cur_locale);
1363                 *(strcasestr(tmp, ".UTF-8")) = '\0';
1364                 cur_locale = tmp;
1365         }
1366
1367         if ((p = strcasestr(cur_locale, "@euro")) && p[5] == '\0') {
1368                 cur_charset = C_ISO_8859_15;
1369                 return cur_charset;
1370         }
1371
1372         for (i = 0; i < sizeof(locale_table) / sizeof(locale_table[0]); i++) {
1373                 const gchar *p;
1374
1375                 /* "ja_JP.EUC" matches with "ja_JP.eucJP", "ja_JP.EUC" and
1376                    "ja_JP". "ja_JP" matches with "ja_JP.xxxx" and "ja" */
1377                 if (!g_ascii_strncasecmp(cur_locale, locale_table[i].locale,
1378                                  strlen(locale_table[i].locale))) {
1379                         cur_charset = locale_table[i].charset;
1380                         return cur_charset;
1381                 } else if ((p = strchr(locale_table[i].locale, '_')) &&
1382                          !strchr(p + 1, '.')) {
1383                         if (strlen(cur_locale) == 2 &&
1384                             !g_ascii_strncasecmp(cur_locale, locale_table[i].locale, 2)) {
1385                                 cur_charset = locale_table[i].charset;
1386                                 return cur_charset;
1387                         }
1388                 }
1389         }
1390
1391         cur_charset = C_AUTO;
1392         return cur_charset;
1393 }
1394
1395 const gchar *conv_get_locale_charset_str(void)
1396 {
1397         static const gchar *codeset = NULL;
1398
1399         if (!codeset)
1400                 codeset = conv_get_charset_str(conv_get_locale_charset());
1401
1402         return codeset ? codeset : CS_INTERNAL;
1403 }
1404
1405 const gchar *conv_get_locale_charset_str_no_utf8(void)
1406 {
1407         static const gchar *codeset = NULL;
1408
1409         if (!codeset)
1410                 codeset = conv_get_charset_str(conv_get_locale_charset_no_utf8());
1411
1412         return codeset ? codeset : CS_INTERNAL;
1413 }
1414
1415 static CharSet conv_get_outgoing_charset(void)
1416 {
1417         static CharSet out_charset = -1;
1418         const gchar *cur_locale;
1419         const gchar *p;
1420         gint i;
1421
1422         if (out_charset != -1)
1423                 return out_charset;
1424
1425         cur_locale = conv_get_current_locale();
1426         if (!cur_locale) {
1427                 out_charset = C_AUTO;
1428                 return out_charset;
1429         }
1430
1431         if (strcasestr(cur_locale, "UTF-8")) {
1432                 out_charset = C_UTF_8;
1433                 return out_charset;
1434         }
1435
1436         if ((p = strcasestr(cur_locale, "@euro")) && p[5] == '\0') {
1437                 out_charset = C_ISO_8859_15;
1438                 return out_charset;
1439         }
1440
1441         for (i = 0; i < sizeof(locale_table) / sizeof(locale_table[0]); i++) {
1442                 const gchar *p;
1443
1444                 if (!g_ascii_strncasecmp(cur_locale, locale_table[i].locale,
1445                                  strlen(locale_table[i].locale))) {
1446                         out_charset = locale_table[i].out_charset;
1447                         break;
1448                 } else if ((p = strchr(locale_table[i].locale, '_')) &&
1449                          !strchr(p + 1, '.')) {
1450                         if (strlen(cur_locale) == 2 &&
1451                             !g_ascii_strncasecmp(cur_locale, locale_table[i].locale, 2)) {
1452                                 out_charset = locale_table[i].out_charset;
1453                                 break;
1454                         }
1455                 }
1456         }
1457
1458         return out_charset;
1459 }
1460
1461 const gchar *conv_get_outgoing_charset_str(void)
1462 {
1463         CharSet out_charset;
1464         const gchar *str;
1465
1466         out_charset = conv_get_outgoing_charset();
1467         str = conv_get_charset_str(out_charset);
1468
1469         return str ? str : CS_UTF_8;
1470 }
1471
1472 const gchar *conv_get_current_locale(void)
1473 {
1474         const gchar *cur_locale;
1475
1476 #ifdef G_OS_WIN32
1477         cur_locale = g_win32_getlocale();
1478 #else
1479         cur_locale = g_getenv("LC_ALL");
1480         if (!cur_locale) cur_locale = g_getenv("LC_CTYPE");
1481         if (!cur_locale) cur_locale = g_getenv("LANG");
1482         if (!cur_locale) cur_locale = setlocale(LC_CTYPE, NULL);
1483 #endif /* G_OS_WIN32 */
1484
1485         debug_print("current locale: %s\n",
1486                     cur_locale ? cur_locale : "(none)");
1487
1488         return cur_locale;
1489 }
1490
1491 static gboolean conv_is_ja_locale(void)
1492 {
1493         static gint is_ja_locale = -1;
1494         const gchar *cur_locale;
1495
1496         if (is_ja_locale != -1)
1497                 return is_ja_locale != 0;
1498
1499         is_ja_locale = 0;
1500         cur_locale = conv_get_current_locale();
1501         if (cur_locale) {
1502                 if (g_ascii_strncasecmp(cur_locale, "ja", 2) == 0)
1503                         is_ja_locale = 1;
1504         }
1505
1506         return is_ja_locale != 0;
1507 }
1508
1509 gchar *conv_unmime_header(const gchar *str, const gchar *default_encoding,
1510                            gboolean addr_field)
1511 {
1512         gchar buf[BUFFSIZE];
1513
1514         if (is_ascii_str(str))
1515                 return unmime_header(str, addr_field);
1516
1517         if (default_encoding) {
1518                 gchar *utf8_buf;
1519
1520                 utf8_buf = conv_codeset_strdup
1521                         (str, default_encoding, CS_INTERNAL);
1522                 if (utf8_buf) {
1523                         gchar *decoded_str;
1524
1525                         decoded_str = unmime_header(utf8_buf, addr_field);
1526                         g_free(utf8_buf);
1527                         return decoded_str;
1528                 }
1529         }
1530
1531         if (conv_is_ja_locale())
1532                 conv_anytodisp(buf, sizeof(buf), str);
1533         else
1534                 conv_localetodisp(buf, sizeof(buf), str);
1535
1536         return unmime_header(buf, addr_field);
1537 }
1538
1539 #define MAX_LINELEN             76
1540 #define MAX_HARD_LINELEN        996
1541 #define MIMESEP_BEGIN           "=?"
1542 #define MIMESEP_END             "?="
1543
1544 #define LBREAK_IF_REQUIRED(cond, is_plain_text)                         \
1545 {                                                                       \
1546         if (len - (destp - (guchar *)dest) < MAX_LINELEN + 2) {         \
1547                 *destp = '\0';                                          \
1548                 return;                                                 \
1549         }                                                               \
1550                                                                         \
1551         if ((cond) && *srcp) {                                          \
1552                 if (destp > (guchar *)dest && left < MAX_LINELEN - 1) { \
1553                         if (isspace(*(destp - 1)))                      \
1554                                 destp--;                                \
1555                         else if (is_plain_text && isspace(*srcp))       \
1556                                 srcp++;                                 \
1557                         if (*srcp) {                                    \
1558                                 *destp++ = '\n';                        \
1559                                 *destp++ = ' ';                         \
1560                                 left = MAX_LINELEN - 1;                 \
1561                         }                                               \
1562                 } else if (destp == (guchar *)dest && left < 7) {       \
1563                         if (isspace(*(destp - 1)))                      \
1564                                 destp--;                                \
1565                         else if (is_plain_text && isspace(*srcp))       \
1566                                 srcp++;                                 \
1567                         if (*srcp) {                                    \
1568                                 *destp++ = '\n';                        \
1569                                 *destp++ = ' ';                         \
1570                                 left = MAX_LINELEN - 1;                 \
1571                         }                                               \
1572                 }                                                       \
1573         }                                                               \
1574 }
1575
1576 void conv_encode_header_full(gchar *dest, gint len, const gchar *src,
1577                         gint header_len, gboolean addr_field,
1578                         const gchar *out_encoding_)
1579 {
1580         const gchar *cur_encoding;
1581         const gchar *out_encoding;
1582         gint mimestr_len;
1583         gchar *mimesep_enc;
1584         gint left;
1585         const guchar *srcp = src;
1586         guchar *destp = dest;
1587         gboolean use_base64;
1588
1589         cm_return_if_fail(g_utf8_validate(src, -1, NULL) == TRUE);
1590         cm_return_if_fail(destp != NULL);
1591
1592         if (MB_CUR_MAX > 1) {
1593                 use_base64 = TRUE;
1594                 mimesep_enc = "?B?";
1595         } else {
1596                 use_base64 = FALSE;
1597                 mimesep_enc = "?Q?";
1598         }
1599
1600         cur_encoding = CS_INTERNAL;
1601
1602         if (out_encoding_)
1603                 out_encoding = out_encoding_;
1604         else
1605                 out_encoding = conv_get_outgoing_charset_str();
1606
1607         if (!strcmp(out_encoding, CS_US_ASCII))
1608                 out_encoding = CS_ISO_8859_1;
1609
1610         mimestr_len = strlen(MIMESEP_BEGIN) + strlen(out_encoding) +
1611                 strlen(mimesep_enc) + strlen(MIMESEP_END);
1612
1613         left = MAX_LINELEN - header_len;
1614
1615         while (*srcp) {
1616                 LBREAK_IF_REQUIRED(left <= 0, TRUE);
1617
1618                 while (isspace(*srcp)) {
1619                         *destp++ = *srcp++;
1620                         left--;
1621                         LBREAK_IF_REQUIRED(left <= 0, TRUE);
1622                 }
1623
1624                 /* output as it is if the next word is ASCII string */
1625                 if (!is_next_nonascii(srcp)) {
1626                         gint word_len;
1627
1628                         word_len = get_next_word_len(srcp);
1629                         LBREAK_IF_REQUIRED(left < word_len, TRUE);
1630                         while (word_len > 0) {
1631                                 LBREAK_IF_REQUIRED(left + (MAX_HARD_LINELEN - MAX_LINELEN) <= 0, TRUE)
1632                                 *destp++ = *srcp++;
1633                                 left--;
1634                                 word_len--;
1635                         }
1636
1637                         continue;
1638                 }
1639
1640                 /* don't include parentheses and quotes in encoded strings */
1641                 if (addr_field && (*srcp == '(' || *srcp == ')' || *srcp == '"')) {
1642                         LBREAK_IF_REQUIRED(left < 2, FALSE);
1643                         *destp++ = *srcp++;
1644                         left--;
1645                 }
1646
1647                 while (1) {
1648                         gint mb_len = 0;
1649                         gint cur_len = 0;
1650                         gchar *part_str;
1651                         gchar *out_str;
1652                         gchar *enc_str;
1653                         const guchar *p = srcp;
1654                         gint out_str_len;
1655                         gint out_enc_str_len;
1656                         gint mime_block_len;
1657                         gboolean cont = FALSE;
1658
1659                         while (*p != '\0') {
1660                                 if (isspace(*p) && !is_next_nonascii(p + 1))
1661                                         break;
1662                                 /* don't include parentheses in encoded
1663                                    strings */
1664                                 if (addr_field && (*p == '(' || *p == ')' || *p == '"'))
1665                                         break;
1666
1667                                 mb_len = g_utf8_skip[*p];
1668
1669                                 Xstrndup_a(part_str, srcp, cur_len + mb_len, );
1670                                 out_str = conv_codeset_strdup
1671                                         (part_str, cur_encoding, out_encoding);
1672                                 if (!out_str) {
1673                                         if (strict_mode) {
1674                                                 *dest = '\0';
1675                                                 return;
1676                                         } else {
1677                                                 g_warning("conv_encode_header(): code conversion failed\n");
1678                                                 conv_unreadable_8bit(part_str);
1679                                                 out_str = g_strdup(part_str);
1680                                         }
1681                                 }
1682                                 out_str_len = strlen(out_str);
1683
1684                                 if (use_base64)
1685                                         out_enc_str_len = B64LEN(out_str_len);
1686                                 else
1687                                         out_enc_str_len =
1688                                                 qp_get_q_encoding_len(out_str);
1689
1690                                 g_free(out_str);
1691
1692                                 if (mimestr_len + out_enc_str_len <= left) {
1693                                         cur_len += mb_len;
1694                                         p += mb_len;
1695                                 } else if (cur_len == 0) {
1696                                         left = 0;
1697                                         LBREAK_IF_REQUIRED(1, FALSE);
1698                                         continue;
1699                                 } else {
1700                                         cont = TRUE;
1701                                         break;
1702                                 }
1703                         }
1704
1705                         if (cur_len > 0) {
1706                                 Xstrndup_a(part_str, srcp, cur_len, );
1707                                 out_str = conv_codeset_strdup
1708                                         (part_str, cur_encoding, out_encoding);
1709                                 if (!out_str) {
1710                                         g_warning("conv_encode_header(): code conversion failed\n");
1711                                         conv_unreadable_8bit(part_str);
1712                                         out_str = g_strdup(part_str);
1713                                 }
1714                                 out_str_len = strlen(out_str);
1715
1716                                 if (use_base64)
1717                                         out_enc_str_len = B64LEN(out_str_len);
1718                                 else
1719                                         out_enc_str_len =
1720                                                 qp_get_q_encoding_len(out_str);
1721
1722                                 Xalloca(enc_str, out_enc_str_len + 1, );
1723                                 if (use_base64)
1724                                         base64_encode(enc_str, out_str, out_str_len);
1725                                 else
1726                                         qp_q_encode(enc_str, out_str);
1727
1728                                 g_free(out_str);
1729
1730                                 /* output MIME-encoded string block */
1731                                 mime_block_len = mimestr_len + strlen(enc_str);
1732                                 g_snprintf(destp, mime_block_len + 1,
1733                                            MIMESEP_BEGIN "%s%s%s" MIMESEP_END,
1734                                            out_encoding, mimesep_enc, enc_str);
1735                                 destp += mime_block_len;
1736                                 srcp += cur_len;
1737
1738                                 left -= mime_block_len;
1739                         }
1740
1741                         LBREAK_IF_REQUIRED(cont, FALSE);
1742
1743                         if (cur_len == 0)
1744                                 break;
1745                 }
1746         }
1747
1748         *destp = '\0';
1749 }
1750
1751 void conv_encode_header(gchar *dest, gint len, const gchar *src,
1752                         gint header_len, gboolean addr_field)
1753 {
1754         conv_encode_header_full(dest,len,src,header_len,addr_field,NULL);
1755 }
1756
1757 #undef LBREAK_IF_REQUIRED
1758 gchar *conv_filename_from_utf8(const gchar *utf8_file)
1759 {
1760         gchar *fs_file;
1761         GError *error = NULL;
1762
1763         fs_file = g_filename_from_utf8(utf8_file, -1, NULL, NULL, &error);
1764         if (error) {
1765                 debug_print("failed to convert encoding of file name: %s\n",
1766                           error->message);
1767                 g_error_free(error);
1768         }
1769         if (!fs_file)
1770                 fs_file = g_strdup(utf8_file);
1771
1772         return fs_file;
1773 }
1774
1775 gchar *conv_filename_to_utf8(const gchar *fs_file)
1776 {
1777         gchar *utf8_file = NULL;
1778         GError *error = NULL;
1779
1780         utf8_file = g_filename_to_utf8(fs_file, -1, NULL, NULL, &error);
1781         if (error) {
1782                 g_warning("failed to convert encoding of file name: %s\n",
1783                           error->message);
1784                 g_error_free(error);
1785         }
1786
1787         if (!utf8_file || !g_utf8_validate(utf8_file, -1, NULL)) {
1788                 g_free(utf8_file);
1789                 utf8_file = g_strdup(fs_file);
1790                 conv_unreadable_8bit(utf8_file);
1791         }
1792
1793         return utf8_file;
1794 }