localcharset.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. /* Determine a canonical name for the current locale's character encoding.
  2. Copyright (C) 2000-2006 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. /* Written by Bruno Haible <bruno@clisp.org>. */
  16. #include <config.h>
  17. /* Specification. */
  18. #include "localcharset.h"
  19. #include <stddef.h>
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include <stdlib.h>
  23. #if defined _WIN32 || defined __WIN32__
  24. # define WIN32_NATIVE
  25. #endif
  26. #if defined __EMX__
  27. /* Assume EMX program runs on OS/2, even if compiled under DOS. */
  28. # define OS2
  29. #endif
  30. #if !defined WIN32_NATIVE
  31. # if HAVE_LANGINFO_CODESET
  32. # include <langinfo.h>
  33. # else
  34. # if 0 /* see comment below */
  35. # include <locale.h>
  36. # endif
  37. # endif
  38. # ifdef __CYGWIN__
  39. # define WIN32_LEAN_AND_MEAN
  40. # include <windows.h>
  41. # endif
  42. #elif defined WIN32_NATIVE
  43. # define WIN32_LEAN_AND_MEAN
  44. # include <windows.h>
  45. #endif
  46. #if defined OS2
  47. # define INCL_DOS
  48. # include <os2.h>
  49. #endif
  50. #if ENABLE_RELOCATABLE
  51. # include "relocatable.h"
  52. #else
  53. # define relocate(pathname) (pathname)
  54. #endif
  55. /* Get LIBDIR. */
  56. #ifndef LIBDIR
  57. # include "configmake.h"
  58. #endif
  59. #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__
  60. /* Win32, Cygwin, OS/2, DOS */
  61. # define ISSLASH(C) ((C) == '/' || (C) == '\\')
  62. #endif
  63. #ifndef DIRECTORY_SEPARATOR
  64. # define DIRECTORY_SEPARATOR '/'
  65. #endif
  66. #ifndef ISSLASH
  67. # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR)
  68. #endif
  69. #if HAVE_DECL_GETC_UNLOCKED
  70. # undef getc
  71. # define getc getc_unlocked
  72. #endif
  73. /* The following static variable is declared 'volatile' to avoid a
  74. possible multithread problem in the function get_charset_aliases. If we
  75. are running in a threaded environment, and if two threads initialize
  76. 'charset_aliases' simultaneously, both will produce the same value,
  77. and everything will be ok if the two assignments to 'charset_aliases'
  78. are atomic. But I don't know what will happen if the two assignments mix. */
  79. #if __STDC__ != 1
  80. # define volatile /* empty */
  81. #endif
  82. /* Pointer to the contents of the charset.alias file, if it has already been
  83. read, else NULL. Its format is:
  84. ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0' */
  85. static const char * volatile charset_aliases;
  86. /* Return a pointer to the contents of the charset.alias file. */
  87. static const char *
  88. get_charset_aliases (void)
  89. {
  90. const char *cp;
  91. cp = charset_aliases;
  92. if (cp == NULL)
  93. {
  94. #if !(defined VMS || defined WIN32_NATIVE || defined __CYGWIN__)
  95. FILE *fp;
  96. const char *dir;
  97. const char *base = "charset.alias";
  98. char *file_name;
  99. /* Make it possible to override the charset.alias location. This is
  100. necessary for running the testsuite before "make install". */
  101. dir = getenv ("CHARSETALIASDIR");
  102. if (dir == NULL || dir[0] == '\0')
  103. dir = relocate (LIBDIR);
  104. /* Concatenate dir and base into freshly allocated file_name. */
  105. {
  106. size_t dir_len = strlen (dir);
  107. size_t base_len = strlen (base);
  108. int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1]));
  109. file_name = (char *) malloc (dir_len + add_slash + base_len + 1);
  110. if (file_name != NULL)
  111. {
  112. memcpy (file_name, dir, dir_len);
  113. if (add_slash)
  114. file_name[dir_len] = DIRECTORY_SEPARATOR;
  115. memcpy (file_name + dir_len + add_slash, base, base_len + 1);
  116. }
  117. }
  118. if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL)
  119. /* Out of memory or file not found, treat it as empty. */
  120. cp = "";
  121. else
  122. {
  123. /* Parse the file's contents. */
  124. char *res_ptr = NULL;
  125. size_t res_size = 0;
  126. for (;;)
  127. {
  128. int c;
  129. char buf1[50+1];
  130. char buf2[50+1];
  131. size_t l1, l2;
  132. char *old_res_ptr;
  133. c = getc (fp);
  134. if (c == EOF)
  135. break;
  136. if (c == '\n' || c == ' ' || c == '\t')
  137. continue;
  138. if (c == '#')
  139. {
  140. /* Skip comment, to end of line. */
  141. do
  142. c = getc (fp);
  143. while (!(c == EOF || c == '\n'));
  144. if (c == EOF)
  145. break;
  146. continue;
  147. }
  148. ungetc (c, fp);
  149. if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
  150. break;
  151. l1 = strlen (buf1);
  152. l2 = strlen (buf2);
  153. old_res_ptr = res_ptr;
  154. if (res_size == 0)
  155. {
  156. res_size = l1 + 1 + l2 + 1;
  157. res_ptr = (char *) malloc (res_size + 1);
  158. }
  159. else
  160. {
  161. res_size += l1 + 1 + l2 + 1;
  162. res_ptr = (char *) realloc (res_ptr, res_size + 1);
  163. }
  164. if (res_ptr == NULL)
  165. {
  166. /* Out of memory. */
  167. res_size = 0;
  168. if (old_res_ptr != NULL)
  169. free (old_res_ptr);
  170. break;
  171. }
  172. strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
  173. strcpy (res_ptr + res_size - (l2 + 1), buf2);
  174. }
  175. fclose (fp);
  176. if (res_size == 0)
  177. cp = "";
  178. else
  179. {
  180. *(res_ptr + res_size) = '\0';
  181. cp = res_ptr;
  182. }
  183. }
  184. if (file_name != NULL)
  185. free (file_name);
  186. #else
  187. # if defined VMS
  188. /* To avoid the troubles of an extra file charset.alias_vms in the
  189. sources of many GNU packages, simply inline the aliases here. */
  190. /* The list of encodings is taken from the OpenVMS 7.3-1 documentation
  191. "Compaq C Run-Time Library Reference Manual for OpenVMS systems"
  192. section 10.7 "Handling Different Character Sets". */
  193. cp = "ISO8859-1" "\0" "ISO-8859-1" "\0"
  194. "ISO8859-2" "\0" "ISO-8859-2" "\0"
  195. "ISO8859-5" "\0" "ISO-8859-5" "\0"
  196. "ISO8859-7" "\0" "ISO-8859-7" "\0"
  197. "ISO8859-8" "\0" "ISO-8859-8" "\0"
  198. "ISO8859-9" "\0" "ISO-8859-9" "\0"
  199. /* Japanese */
  200. "eucJP" "\0" "EUC-JP" "\0"
  201. "SJIS" "\0" "SHIFT_JIS" "\0"
  202. "DECKANJI" "\0" "DEC-KANJI" "\0"
  203. "SDECKANJI" "\0" "EUC-JP" "\0"
  204. /* Chinese */
  205. "eucTW" "\0" "EUC-TW" "\0"
  206. "DECHANYU" "\0" "DEC-HANYU" "\0"
  207. "DECHANZI" "\0" "GB2312" "\0"
  208. /* Korean */
  209. "DECKOREAN" "\0" "EUC-KR" "\0";
  210. # endif
  211. # if defined WIN32_NATIVE || defined __CYGWIN__
  212. /* To avoid the troubles of installing a separate file in the same
  213. directory as the DLL and of retrieving the DLL's directory at
  214. runtime, simply inline the aliases here. */
  215. cp = "CP936" "\0" "GBK" "\0"
  216. "CP1361" "\0" "JOHAB" "\0"
  217. "CP20127" "\0" "ASCII" "\0"
  218. "CP20866" "\0" "KOI8-R" "\0"
  219. "CP20936" "\0" "GB2312" "\0"
  220. "CP21866" "\0" "KOI8-RU" "\0"
  221. "CP28591" "\0" "ISO-8859-1" "\0"
  222. "CP28592" "\0" "ISO-8859-2" "\0"
  223. "CP28593" "\0" "ISO-8859-3" "\0"
  224. "CP28594" "\0" "ISO-8859-4" "\0"
  225. "CP28595" "\0" "ISO-8859-5" "\0"
  226. "CP28596" "\0" "ISO-8859-6" "\0"
  227. "CP28597" "\0" "ISO-8859-7" "\0"
  228. "CP28598" "\0" "ISO-8859-8" "\0"
  229. "CP28599" "\0" "ISO-8859-9" "\0"
  230. "CP28605" "\0" "ISO-8859-15" "\0"
  231. "CP38598" "\0" "ISO-8859-8" "\0"
  232. "CP51932" "\0" "EUC-JP" "\0"
  233. "CP51936" "\0" "GB2312" "\0"
  234. "CP51949" "\0" "EUC-KR" "\0"
  235. "CP51950" "\0" "EUC-TW" "\0"
  236. "CP54936" "\0" "GB18030" "\0"
  237. "CP65001" "\0" "UTF-8" "\0";
  238. # endif
  239. #endif
  240. charset_aliases = cp;
  241. }
  242. return cp;
  243. }
  244. /* Determine the current locale's character encoding, and canonicalize it
  245. into one of the canonical names listed in config.charset.
  246. The result must not be freed; it is statically allocated.
  247. If the canonical name cannot be determined, the result is a non-canonical
  248. name. */
  249. #ifdef STATIC
  250. STATIC
  251. #endif
  252. const char *
  253. locale_charset (void)
  254. {
  255. const char *codeset;
  256. const char *aliases;
  257. #if !(defined WIN32_NATIVE || defined OS2)
  258. # if HAVE_LANGINFO_CODESET
  259. /* Most systems support nl_langinfo (CODESET) nowadays. */
  260. codeset = nl_langinfo (CODESET);
  261. # ifdef __CYGWIN__
  262. /* Cygwin 2006 does not have locales. nl_langinfo (CODESET) always
  263. returns "US-ASCII". As long as this is not fixed, return the suffix
  264. of the locale name from the environment variables (if present) or
  265. the codepage as a number. */
  266. if (codeset != NULL && strcmp (codeset, "US-ASCII") == 0)
  267. {
  268. const char *locale;
  269. static char buf[2 + 10 + 1];
  270. locale = getenv ("LC_ALL");
  271. if (locale == NULL || locale[0] == '\0')
  272. {
  273. locale = getenv ("LC_CTYPE");
  274. if (locale == NULL || locale[0] == '\0')
  275. locale = getenv ("LANG");
  276. }
  277. if (locale != NULL && locale[0] != '\0')
  278. {
  279. /* If the locale name contains an encoding after the dot, return
  280. it. */
  281. const char *dot = strchr (locale, '.');
  282. if (dot != NULL)
  283. {
  284. const char *modifier;
  285. dot++;
  286. /* Look for the possible @... trailer and remove it, if any. */
  287. modifier = strchr (dot, '@');
  288. if (modifier == NULL)
  289. return dot;
  290. if (modifier - dot < sizeof (buf))
  291. {
  292. memcpy (buf, dot, modifier - dot);
  293. buf [modifier - dot] = '\0';
  294. return buf;
  295. }
  296. }
  297. }
  298. /* Woe32 has a function returning the locale's codepage as a number. */
  299. sprintf (buf, "CP%u", GetACP ());
  300. codeset = buf;
  301. }
  302. # endif
  303. # else
  304. /* On old systems which lack it, use setlocale or getenv. */
  305. const char *locale = NULL;
  306. /* But most old systems don't have a complete set of locales. Some
  307. (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't
  308. use setlocale here; it would return "C" when it doesn't support the
  309. locale name the user has set. */
  310. # if 0
  311. locale = setlocale (LC_CTYPE, NULL);
  312. # endif
  313. if (locale == NULL || locale[0] == '\0')
  314. {
  315. locale = getenv ("LC_ALL");
  316. if (locale == NULL || locale[0] == '\0')
  317. {
  318. locale = getenv ("LC_CTYPE");
  319. if (locale == NULL || locale[0] == '\0')
  320. locale = getenv ("LANG");
  321. }
  322. }
  323. /* On some old systems, one used to set locale = "iso8859_1". On others,
  324. you set it to "language_COUNTRY.charset". In any case, we resolve it
  325. through the charset.alias file. */
  326. codeset = locale;
  327. # endif
  328. #elif defined WIN32_NATIVE
  329. static char buf[2 + 10 + 1];
  330. /* Woe32 has a function returning the locale's codepage as a number. */
  331. sprintf (buf, "CP%u", GetACP ());
  332. codeset = buf;
  333. #elif defined OS2
  334. const char *locale;
  335. static char buf[2 + 10 + 1];
  336. ULONG cp[3];
  337. ULONG cplen;
  338. /* Allow user to override the codeset, as set in the operating system,
  339. with standard language environment variables. */
  340. locale = getenv ("LC_ALL");
  341. if (locale == NULL || locale[0] == '\0')
  342. {
  343. locale = getenv ("LC_CTYPE");
  344. if (locale == NULL || locale[0] == '\0')
  345. locale = getenv ("LANG");
  346. }
  347. if (locale != NULL && locale[0] != '\0')
  348. {
  349. /* If the locale name contains an encoding after the dot, return it. */
  350. const char *dot = strchr (locale, '.');
  351. if (dot != NULL)
  352. {
  353. const char *modifier;
  354. dot++;
  355. /* Look for the possible @... trailer and remove it, if any. */
  356. modifier = strchr (dot, '@');
  357. if (modifier == NULL)
  358. return dot;
  359. if (modifier - dot < sizeof (buf))
  360. {
  361. memcpy (buf, dot, modifier - dot);
  362. buf [modifier - dot] = '\0';
  363. return buf;
  364. }
  365. }
  366. /* Resolve through the charset.alias file. */
  367. codeset = locale;
  368. }
  369. else
  370. {
  371. /* OS/2 has a function returning the locale's codepage as a number. */
  372. if (DosQueryCp (sizeof (cp), cp, &cplen))
  373. codeset = "";
  374. else
  375. {
  376. sprintf (buf, "CP%u", cp[0]);
  377. codeset = buf;
  378. }
  379. }
  380. #endif
  381. if (codeset == NULL)
  382. /* The canonical name cannot be determined. */
  383. codeset = "";
  384. /* Resolve alias. */
  385. for (aliases = get_charset_aliases ();
  386. *aliases != '\0';
  387. aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1)
  388. if (strcmp (codeset, aliases) == 0
  389. || (aliases[0] == '*' && aliases[1] == '\0'))
  390. {
  391. codeset = aliases + strlen (aliases) + 1;
  392. break;
  393. }
  394. /* Don't return an empty string. GNU libc and GNU libiconv interpret
  395. the empty string as denoting "the locale's character encoding",
  396. thus GNU libiconv would call this function a second time. */
  397. if (codeset[0] == '\0')
  398. codeset = "ASCII";
  399. return codeset;
  400. }