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