nls.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* nls.c -- skeletal internationalization code. */
  2. /* Copyright (C) 1996 Free Software Foundation, Inc.
  3.    This file is part of the GNU Readline Library, a library for
  4.    reading lines of text with interactive input and history editing.
  5.    The GNU Readline Library is free software; you can redistribute it
  6.    and/or modify it under the terms of the GNU General Public License
  7.    as published by the Free Software Foundation; either version 1, or
  8.    (at your option) any later version.
  9.    The GNU Readline Library is distributed in the hope that it will be
  10.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  11.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.    The GNU General Public License is often shipped with GNU software, and
  14.    is generally kept in a file called COPYING or LICENSE.  If you do not
  15.    have a copy of the license, write to the Free Software Foundation,
  16.    675 Mass Ave, Cambridge, MA 02139, USA. */
  17. #define READLINE_LIBRARY
  18. #if defined (HAVE_CONFIG_H)
  19. #  include <config.h>
  20. #endif
  21. #include <sys/types.h>
  22. #if defined (HAVE_UNISTD_H)
  23. #  include <unistd.h>
  24. #endif /* HAVE_UNISTD_H */
  25. #if defined (HAVE_STDLIB_H)
  26. #  include <stdlib.h>
  27. #else
  28. #  include "ansi_stdlib.h"
  29. #endif /* HAVE_STDLIB_H */
  30. #if defined (HAVE_LOCALE_H)
  31. #  include <locale.h>
  32. #endif
  33. #include <ctype.h>
  34. #include "rldefs.h"
  35. extern int _rl_convert_meta_chars_to_ascii;
  36. extern int _rl_output_meta_chars;
  37. extern int _rl_meta_flag;
  38. /* Functions imported from shell.c */
  39. extern char *get_env_value ();
  40. #if !defined (HAVE_SETLOCALE)    
  41. /* A list of legal values for the LANG or LC_CTYPE environment variables.
  42.    If a locale name in this list is the value for the LC_ALL, LC_CTYPE,
  43.    or LANG environment variable (using the first of those with a value),
  44.    readline eight-bit mode is enabled. */
  45. static char *legal_lang_values[] =
  46. {
  47.  "iso88591",
  48.  "iso88592",
  49.  "iso88593",
  50.  "iso88594",
  51.  "iso88595",
  52.  "iso88596",
  53.  "iso88597",
  54.  "iso88598",
  55.  "iso88599",
  56.  "iso885910",
  57.  "koi8r",
  58.  "koi8-r", 
  59.   0
  60. };
  61. static char *normalize_codeset ();
  62. static char *find_codeset ();
  63. #endif /* !HAVE_SETLOCALE */
  64. /* Check for LC_ALL, LC_CTYPE, and LANG and use the first with a value
  65.    to decide the defaults for 8-bit character input and output.  Returns
  66.    1 if we set eight-bit mode. */
  67. int
  68. _rl_init_eightbit ()
  69. {
  70. /* If we have setlocale(3), just check the current LC_CTYPE category
  71.    value, and go into eight-bit mode if it's not C or POSIX. */
  72. #if defined (HAVE_SETLOCALE)
  73.   char *t;
  74.   /* Set the LC_CTYPE locale category from environment variables. */
  75.   t = setlocale (LC_CTYPE, "");
  76.   if (t && *t && (t[0] != 'C' || t[1]) && (STREQ (t, "POSIX") == 0))
  77.     {
  78.       _rl_meta_flag = 1;
  79.       _rl_convert_meta_chars_to_ascii = 0;
  80.       _rl_output_meta_chars = 1;
  81.       return (1);
  82.     }
  83.   else
  84.     return (0);
  85. #else /* !HAVE_SETLOCALE */
  86.   char *lspec, *t;
  87.   int i;
  88.   /* We don't have setlocale.  Finesse it.  Check the environment for the
  89.      appropriate variables and set eight-bit mode if they have the right
  90.      values. */
  91.   lspec = get_env_value ("LC_ALL");
  92.   if (lspec == 0) lspec = get_env_value ("LC_CTYPE");
  93.   if (lspec == 0) lspec = get_env_value ("LANG");
  94.   if (lspec == 0 || (t = normalize_codeset (lspec)) == 0)
  95.     return (0);
  96.   for (i = 0; t && legal_lang_values[i]; i++)
  97.     if (STREQ (t, legal_lang_values[i]))
  98.       {
  99. _rl_meta_flag = 1;
  100. _rl_convert_meta_chars_to_ascii = 0;
  101. _rl_output_meta_chars = 1;
  102. break;
  103.       }
  104.   free (t);
  105.   return (legal_lang_values[i] ? 1 : 0);
  106. #endif /* !HAVE_SETLOCALE */
  107. }
  108. #if !defined (HAVE_SETLOCALE)
  109. static char *
  110. normalize_codeset (codeset)
  111.      char *codeset;
  112. {
  113.   size_t namelen, i;
  114.   int len, all_digits;
  115.   char *wp, *retval;
  116.   codeset = find_codeset (codeset, &namelen);
  117.   if (codeset == 0)
  118.     return (codeset);
  119.   all_digits = 1;
  120.   for (len = 0, i = 0; i < namelen; i++)
  121.     {
  122.       if (isalnum (codeset[i]))
  123. {
  124.   len++;
  125.   all_digits &= isdigit (codeset[i]);
  126. }
  127.     }
  128.   retval = (char *)malloc ((all_digits ? 3 : 0) + len + 1);
  129.   if (retval == 0)
  130.     return ((char *)0);
  131.   wp = retval;
  132.   /* Add `iso' to beginning of an all-digit codeset */
  133.   if (all_digits)
  134.     {
  135.       *wp++ = 'i';
  136.       *wp++ = 's';
  137.       *wp++ = 'o';
  138.     }
  139.   for (i = 0; i < namelen; i++)
  140.     if (isalpha (codeset[i]))
  141.       *wp++ = (isupper (codeset[i])) ? tolower (codeset[i]) : codeset[i];
  142.     else if (isdigit (codeset[i]))
  143.       *wp++ = codeset[i];
  144.   *wp = '';
  145.   return retval;
  146. }
  147. /* Isolate codeset portion of locale specification. */
  148. static char *
  149. find_codeset (name, lenp)
  150.      char *name;
  151.      size_t *lenp;
  152. {
  153.   char *cp, *language, *result;
  154.   cp = language = name;
  155.   result = (char *)0;
  156.   while (*cp && *cp != '_' && *cp != '@' && *cp != '+' && *cp != ',')
  157.     cp++;
  158.   /* This does not make sense: language has to be specified.  As
  159.      an exception we allow the variable to contain only the codeset
  160.      name.  Perhaps there are funny codeset names.  */
  161.   if (language == cp) 
  162.     {
  163.       *lenp = strlen (language);
  164.       result = language;
  165.     }
  166.   else
  167.     {
  168.       /* Next is the territory. */
  169.       if (*cp == '_')
  170. do
  171.   ++cp;
  172. while (*cp && *cp != '.' && *cp != '@' && *cp != '+' && *cp != ',' && *cp != '_');
  173.       /* Now, finally, is the codeset. */
  174.       result = cp;
  175.       if (*cp == '.')
  176. do
  177.   ++cp;
  178. while (*cp && *cp != '@');
  179.       if (cp - result > 2)
  180. {
  181.   result++;
  182.   *lenp = cp - result;
  183. }
  184.       else
  185. {
  186.   *lenp = strlen (language);
  187.   result = language;
  188. }
  189.     }
  190.   return result;
  191. }
  192. #endif /* !HAVE_SETLOCALE */