Terminate the output string if it hasn't been fully converted
[infodrom/newmail] / charset.c
1 /*
2     Copyright (c) 2006  Joey Schulze <joey@infodrom.org>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include <locale.h>
20 #include <langinfo.h>
21 #include <string.h>
22 #include <iconv.h>
23
24 char *charset = NULL;
25
26 /*
27  * Determine the output character set
28  */
29 void set_charset()
30 {
31   setlocale (LC_CTYPE, "");
32
33   charset = strdup (nl_langinfo(CODESET));
34 }
35
36 /*
37  * Convert a word from an arbitrary charset into the output character set
38  *
39  * No conversion is performed when both charsets are equal
40  */
41 char *convert_word(const char *encoding, char *inbuf, char *outbuf, size_t outbytesleft)
42 {
43   iconv_t cd;
44   char *inptr, *outptr;
45   size_t inbytesleft;
46   size_t nconv;
47   size_t outsize;
48
49   if (!charset || !strcasecmp (encoding, charset)) {
50     memmove (outbuf, inbuf, strlen(inbuf)<outbytesleft?strlen(inbuf)+1:strlen(inbuf));
51     outbuf[outbytesleft-1] = '\0';
52     return outbuf;
53   }
54
55   outsize = outbytesleft;
56
57   cd = iconv_open (charset, encoding);
58
59   inbytesleft = strlen (inbuf)+1;
60   inptr = inbuf;
61   outptr = outbuf;
62
63   nconv = iconv (cd, &inptr, &inbytesleft, &outptr, &outbytesleft);
64   iconv_close(cd);
65
66   if (nconv == -1 && outsize-outbytesleft >= 0)
67     outbuf[outsize-outbytesleft] = '\0';
68
69   return outbuf;
70 }
71
72
73 /*
74  * Needs to be called with LANG=de_DE.ISO-8859-1
75
76 void test_charset()
77 {
78   char outbuf[100];
79   size_t size = 99;
80
81   memset (outbuf, 0, sizeof (outbuf));
82   printf ("%s\n", convert_word ("UTF-8", "für ein", outbuf, size));
83   printf ("%s\n", outbuf);
84   if (!strcmp(outbuf, "für ein"))
85     printf ("charset.c: test passed\n");
86   else
87     printf ("charset.c: test failed\n");
88 }
89
90 */