1 /* Determine a canonical name for the current locale's character encoding.
3 Copyright (C) 2000-2006 Free Software Foundation, Inc.
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, or (at your option)
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.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 /* Written by Bruno Haible <bruno@clisp.org>. */
24 #include "localcharset.h"
31 #if defined _WIN32 || defined __WIN32__
36 /* Assume EMX program runs on OS/2, even if compiled under DOS. */
40 #if !defined WIN32_NATIVE
41 # if HAVE_LANGINFO_CODESET
42 # include <langinfo.h>
44 # if 0 /* see comment below */
49 # define WIN32_LEAN_AND_MEAN
52 #elif defined WIN32_NATIVE
53 # define WIN32_LEAN_AND_MEAN
61 #if ENABLE_RELOCATABLE
62 # include "relocatable.h"
64 # define relocate(pathname) (pathname)
69 # include "configmake.h"
72 #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__
73 /* Win32, Cygwin, OS/2, DOS */
74 # define ISSLASH(C) ((C) == '/' || (C) == '\\')
77 #ifndef DIRECTORY_SEPARATOR
78 # define DIRECTORY_SEPARATOR '/'
82 # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR)
85 #if HAVE_DECL_GETC_UNLOCKED
87 # define getc getc_unlocked
90 /* The following static variable is declared 'volatile' to avoid a
91 possible multithread problem in the function get_charset_aliases. If we
92 are running in a threaded environment, and if two threads initialize
93 'charset_aliases' simultaneously, both will produce the same value,
94 and everything will be ok if the two assignments to 'charset_aliases'
95 are atomic. But I don't know what will happen if the two assignments mix. */
97 # define volatile /* empty */
99 /* Pointer to the contents of the charset.alias file, if it has already been
100 read, else NULL. Its format is:
101 ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0' */
102 static const char * volatile charset_aliases
;
104 /* Return a pointer to the contents of the charset.alias file. */
106 get_charset_aliases (void)
110 cp
= charset_aliases
;
113 #if !(defined VMS || defined WIN32_NATIVE || defined __CYGWIN__)
116 const char *base
= "charset.alias";
119 /* Make it possible to override the charset.alias location. This is
120 necessary for running the testsuite before "make install". */
121 dir
= getenv ("CHARSETALIASDIR");
122 if (dir
== NULL
|| dir
[0] == '\0')
123 dir
= relocate (LIBDIR
);
125 /* Concatenate dir and base into freshly allocated file_name. */
127 size_t dir_len
= strlen (dir
);
128 size_t base_len
= strlen (base
);
129 int add_slash
= (dir_len
> 0 && !ISSLASH (dir
[dir_len
- 1]));
130 file_name
= (char *) malloc (dir_len
+ add_slash
+ base_len
+ 1);
131 if (file_name
!= NULL
)
133 memcpy (file_name
, dir
, dir_len
);
135 file_name
[dir_len
] = DIRECTORY_SEPARATOR
;
136 memcpy (file_name
+ dir_len
+ add_slash
, base
, base_len
+ 1);
140 if (file_name
== NULL
|| (fp
= fopen (file_name
, "r")) == NULL
)
141 /* Out of memory or file not found, treat it as empty. */
145 /* Parse the file's contents. */
146 char *res_ptr
= NULL
;
160 if (c
== '\n' || c
== ' ' || c
== '\t')
164 /* Skip comment, to end of line. */
167 while (!(c
== EOF
|| c
== '\n'));
173 if (fscanf (fp
, "%50s %50s", buf1
, buf2
) < 2)
177 old_res_ptr
= res_ptr
;
180 res_size
= l1
+ 1 + l2
+ 1;
181 res_ptr
= (char *) malloc (res_size
+ 1);
185 res_size
+= l1
+ 1 + l2
+ 1;
186 res_ptr
= (char *) realloc (res_ptr
, res_size
+ 1);
192 if (old_res_ptr
!= NULL
)
196 strcpy (res_ptr
+ res_size
- (l2
+ 1) - (l1
+ 1), buf1
);
197 strcpy (res_ptr
+ res_size
- (l2
+ 1), buf2
);
204 *(res_ptr
+ res_size
) = '\0';
209 if (file_name
!= NULL
)
215 /* To avoid the troubles of an extra file charset.alias_vms in the
216 sources of many GNU packages, simply inline the aliases here. */
217 /* The list of encodings is taken from the OpenVMS 7.3-1 documentation
218 "Compaq C Run-Time Library Reference Manual for OpenVMS systems"
219 section 10.7 "Handling Different Character Sets". */
220 cp
= "ISO8859-1" "\0" "ISO-8859-1" "\0"
221 "ISO8859-2" "\0" "ISO-8859-2" "\0"
222 "ISO8859-5" "\0" "ISO-8859-5" "\0"
223 "ISO8859-7" "\0" "ISO-8859-7" "\0"
224 "ISO8859-8" "\0" "ISO-8859-8" "\0"
225 "ISO8859-9" "\0" "ISO-8859-9" "\0"
227 "eucJP" "\0" "EUC-JP" "\0"
228 "SJIS" "\0" "SHIFT_JIS" "\0"
229 "DECKANJI" "\0" "DEC-KANJI" "\0"
230 "SDECKANJI" "\0" "EUC-JP" "\0"
232 "eucTW" "\0" "EUC-TW" "\0"
233 "DECHANYU" "\0" "DEC-HANYU" "\0"
234 "DECHANZI" "\0" "GB2312" "\0"
236 "DECKOREAN" "\0" "EUC-KR" "\0";
239 # if defined WIN32_NATIVE || defined __CYGWIN__
240 /* To avoid the troubles of installing a separate file in the same
241 directory as the DLL and of retrieving the DLL's directory at
242 runtime, simply inline the aliases here. */
244 cp
= "CP936" "\0" "GBK" "\0"
245 "CP1361" "\0" "JOHAB" "\0"
246 "CP20127" "\0" "ASCII" "\0"
247 "CP20866" "\0" "KOI8-R" "\0"
248 "CP20936" "\0" "GB2312" "\0"
249 "CP21866" "\0" "KOI8-RU" "\0"
250 "CP28591" "\0" "ISO-8859-1" "\0"
251 "CP28592" "\0" "ISO-8859-2" "\0"
252 "CP28593" "\0" "ISO-8859-3" "\0"
253 "CP28594" "\0" "ISO-8859-4" "\0"
254 "CP28595" "\0" "ISO-8859-5" "\0"
255 "CP28596" "\0" "ISO-8859-6" "\0"
256 "CP28597" "\0" "ISO-8859-7" "\0"
257 "CP28598" "\0" "ISO-8859-8" "\0"
258 "CP28599" "\0" "ISO-8859-9" "\0"
259 "CP28605" "\0" "ISO-8859-15" "\0"
260 "CP38598" "\0" "ISO-8859-8" "\0"
261 "CP51932" "\0" "EUC-JP" "\0"
262 "CP51936" "\0" "GB2312" "\0"
263 "CP51949" "\0" "EUC-KR" "\0"
264 "CP51950" "\0" "EUC-TW" "\0"
265 "CP54936" "\0" "GB18030" "\0"
266 "CP65001" "\0" "UTF-8" "\0";
270 charset_aliases
= cp
;
276 /* Determine the current locale's character encoding, and canonicalize it
277 into one of the canonical names listed in config.charset.
278 The result must not be freed; it is statically allocated.
279 If the canonical name cannot be determined, the result is a non-canonical
286 locale_charset (void)
291 #if !(defined WIN32_NATIVE || defined OS2)
293 # if HAVE_LANGINFO_CODESET
295 /* Most systems support nl_langinfo (CODESET) nowadays. */
296 codeset
= nl_langinfo (CODESET
);
299 /* Cygwin 2006 does not have locales. nl_langinfo (CODESET) always
300 returns "US-ASCII". As long as this is not fixed, return the suffix
301 of the locale name from the environment variables (if present) or
302 the codepage as a number. */
303 if (codeset
!= NULL
&& strcmp (codeset
, "US-ASCII") == 0)
306 static char buf
[2 + 10 + 1];
308 locale
= getenv ("LC_ALL");
309 if (locale
== NULL
|| locale
[0] == '\0')
311 locale
= getenv ("LC_CTYPE");
312 if (locale
== NULL
|| locale
[0] == '\0')
313 locale
= getenv ("LANG");
315 if (locale
!= NULL
&& locale
[0] != '\0')
317 /* If the locale name contains an encoding after the dot, return
319 const char *dot
= strchr (locale
, '.');
323 const char *modifier
;
326 /* Look for the possible @... trailer and remove it, if any. */
327 modifier
= strchr (dot
, '@');
328 if (modifier
== NULL
)
330 if (modifier
- dot
< sizeof (buf
))
332 memcpy (buf
, dot
, modifier
- dot
);
333 buf
[modifier
- dot
] = '\0';
339 /* Woe32 has a function returning the locale's codepage as a number. */
340 sprintf (buf
, "CP%u", GetACP ());
347 /* On old systems which lack it, use setlocale or getenv. */
348 const char *locale
= NULL
;
350 /* But most old systems don't have a complete set of locales. Some
351 (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't
352 use setlocale here; it would return "C" when it doesn't support the
353 locale name the user has set. */
355 locale
= setlocale (LC_CTYPE
, NULL
);
357 if (locale
== NULL
|| locale
[0] == '\0')
359 locale
= getenv ("LC_ALL");
360 if (locale
== NULL
|| locale
[0] == '\0')
362 locale
= getenv ("LC_CTYPE");
363 if (locale
== NULL
|| locale
[0] == '\0')
364 locale
= getenv ("LANG");
368 /* On some old systems, one used to set locale = "iso8859_1". On others,
369 you set it to "language_COUNTRY.charset". In any case, we resolve it
370 through the charset.alias file. */
375 #elif defined WIN32_NATIVE
377 static char buf
[2 + 10 + 1];
379 /* Woe32 has a function returning the locale's codepage as a number. */
380 sprintf (buf
, "CP%u", GetACP ());
386 static char buf
[2 + 10 + 1];
390 /* Allow user to override the codeset, as set in the operating system,
391 with standard language environment variables. */
392 locale
= getenv ("LC_ALL");
393 if (locale
== NULL
|| locale
[0] == '\0')
395 locale
= getenv ("LC_CTYPE");
396 if (locale
== NULL
|| locale
[0] == '\0')
397 locale
= getenv ("LANG");
399 if (locale
!= NULL
&& locale
[0] != '\0')
401 /* If the locale name contains an encoding after the dot, return it. */
402 const char *dot
= strchr (locale
, '.');
406 const char *modifier
;
409 /* Look for the possible @... trailer and remove it, if any. */
410 modifier
= strchr (dot
, '@');
411 if (modifier
== NULL
)
413 if (modifier
- dot
< sizeof (buf
))
415 memcpy (buf
, dot
, modifier
- dot
);
416 buf
[modifier
- dot
] = '\0';
421 /* Resolve through the charset.alias file. */
426 /* OS/2 has a function returning the locale's codepage as a number. */
427 if (DosQueryCp (sizeof (cp
), cp
, &cplen
))
431 sprintf (buf
, "CP%u", cp
[0]);
439 /* The canonical name cannot be determined. */
443 for (aliases
= get_charset_aliases ();
445 aliases
+= strlen (aliases
) + 1, aliases
+= strlen (aliases
) + 1)
446 if (strcmp (codeset
, aliases
) == 0
447 || (aliases
[0] == '*' && aliases
[1] == '\0'))
449 codeset
= aliases
+ strlen (aliases
) + 1;
453 /* Don't return an empty string. GNU libc and GNU libiconv interpret
454 the empty string as denoting "the locale's character encoding",
455 thus GNU libiconv would call this function a second time. */
456 if (codeset
[0] == '\0')