cat-compat.c
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:6k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /* Compatibility code for gettext-using-catgets interface.
  2.    Copyright (C) 1995, 1997 Free Software Foundation, Inc.
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    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
  10.    GNU General Public License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with this program; if not, write to the Free Software Foundation,
  13.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  14. #ifdef HAVE_CONFIG_H
  15. # include <config.h>
  16. #endif
  17. #include <stdio.h>
  18. #ifdef STDC_HEADERS
  19. # include <stdlib.h>
  20. # include <string.h>
  21. #else
  22. char *getenv ();
  23. # ifdef HAVE_MALLOC_H
  24. #  include <malloc.h>
  25. # endif
  26. #endif
  27. #ifdef HAVE_NL_TYPES_H
  28. # include <nl_types.h>
  29. #endif
  30. #include "libgettext.h"
  31. /* @@ end of prolog @@ */
  32. /* XPG3 defines the result of `setlocale (category, NULL)' as:
  33.    ``Directs `setlocale()' to query `category' and return the current
  34.      setting of `local'.''
  35.    However it does not specify the exact format.  And even worse: POSIX
  36.    defines this not at all.  So we can use this feature only on selected
  37.    system (e.g. those using GNU C Library).  */
  38. #ifdef _LIBC
  39. # define HAVE_LOCALE_NULL
  40. #endif
  41. /* The catalog descriptor.  */
  42. static nl_catd catalog = (nl_catd) -1;
  43. /* Name of the default catalog.  */
  44. static const char default_catalog_name[] = "messages";
  45. /* Name of currently used catalog.  */
  46. static const char *catalog_name = default_catalog_name;
  47. /* Get ID for given string.  If not found return -1.  */
  48. static int msg_to_cat_id PARAMS ((const char *msg));
  49. /* Substitution for systems lacking this function in their C library.  */
  50. #if !_LIBC && !HAVE_STPCPY
  51. static char *stpcpy PARAMS ((char *dest, const char *src));
  52. #endif
  53. /* Set currently used domain/catalog.  */
  54. char *
  55. textdomain (domainname)
  56.      const char *domainname;
  57. {
  58.   nl_catd new_catalog;
  59.   char *new_name;
  60.   size_t new_name_len;
  61.   char *lang;
  62. #if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES 
  63.     && defined HAVE_LOCALE_NULL
  64.   lang = setlocale (LC_MESSAGES, NULL);
  65. #else
  66.   lang = getenv ("LC_ALL");
  67.   if (lang == NULL || lang[0] == '')
  68.     {
  69.       lang = getenv ("LC_MESSAGES");
  70.       if (lang == NULL || lang[0] == '')
  71. lang = getenv ("LANG");
  72.     }
  73. #endif
  74.   if (lang == NULL || lang[0] == '')
  75.     lang = "C";
  76.   /* See whether name of currently used domain is asked.  */
  77.   if (domainname == NULL)
  78.     return (char *) catalog_name;
  79.   if (domainname[0] == '')
  80.     domainname = default_catalog_name;
  81.   /* Compute length of added path element.  */
  82.   new_name_len = sizeof (LOCALEDIR) - 1 + 1 + strlen (lang)
  83.  + sizeof ("/LC_MESSAGES/") - 1 + sizeof (PACKAGE) - 1
  84.  + sizeof (".cat");
  85.   new_name = (char *) malloc (new_name_len);
  86.   if (new_name == NULL)
  87.     return NULL;
  88.   strcpy (new_name, PACKAGE);
  89.   new_catalog = catopen (new_name, 0);
  90.   if (new_catalog == (nl_catd) -1)
  91.     {
  92.       /* NLSPATH search didn't work, try absolute path */
  93.       sprintf (new_name, "%s/%s/LC_MESSAGES/%s.cat", LOCALEDIR, lang,
  94.        PACKAGE);
  95.       new_catalog = catopen (new_name, 0);
  96.       if (new_catalog == (nl_catd) -1)
  97. {
  98.   free (new_name);
  99.   return (char *) catalog_name;
  100. }
  101.     }
  102.   /* Close old catalog.  */
  103.   if (catalog != (nl_catd) -1)
  104.     catclose (catalog);
  105.   if (catalog_name != default_catalog_name)
  106.     free ((char *) catalog_name);
  107.   catalog = new_catalog;
  108.   catalog_name = new_name;
  109.   return (char *) catalog_name;
  110. }
  111. char *
  112. bindtextdomain (domainname, dirname)
  113.      const char *domainname;
  114.      const char *dirname;
  115. {
  116. #if HAVE_SETENV || HAVE_PUTENV
  117.   char *old_val, *new_val, *cp;
  118.   size_t new_val_len;
  119.   /* This does not make much sense here but to be compatible do it.  */
  120.   if (domainname == NULL)
  121.     return NULL;
  122.   /* Compute length of added path element.  If we use setenv we don't need
  123.      the first byts for NLSPATH=, but why complicate the code for this
  124.      peanuts.  */
  125.   new_val_len = sizeof ("NLSPATH=") - 1 + strlen (dirname)
  126. + sizeof ("/%L/LC_MESSAGES/%N.cat");
  127.   old_val = getenv ("NLSPATH");
  128.   if (old_val == NULL || old_val[0] == '')
  129.     {
  130.       old_val = NULL;
  131.       new_val_len += 1 + sizeof (LOCALEDIR) - 1
  132.              + sizeof ("/%L/LC_MESSAGES/%N.cat");
  133.     }
  134.   else
  135.     new_val_len += strlen (old_val);
  136.   new_val = (char *) malloc (new_val_len);
  137.   if (new_val == NULL)
  138.     return NULL;
  139. # if HAVE_SETENV
  140.   cp = new_val;
  141. # else
  142.   cp = stpcpy (new_val, "NLSPATH=");
  143. # endif
  144.   cp = stpcpy (cp, dirname);
  145.   cp = stpcpy (cp, "/%L/LC_MESSAGES/%N.cat:");
  146.   if (old_val == NULL)
  147.     {
  148. # if __STDC__
  149.       stpcpy (cp, LOCALEDIR "/%L/LC_MESSAGES/%N.cat");
  150. # else
  151.       cp = stpcpy (cp, LOCALEDIR);
  152.       stpcpy (cp, "/%L/LC_MESSAGES/%N.cat");
  153. # endif
  154.     }
  155.   else
  156.     stpcpy (cp, old_val);
  157. # if HAVE_SETENV
  158.   setenv ("NLSPATH", new_val, 1);
  159.   free (new_val);
  160. # else
  161.   putenv (new_val);
  162.   /* Do *not* free the environment entry we just entered.  It is used
  163.      from now on.   */
  164. # endif
  165. #endif
  166.   return (char *) domainname;
  167. }
  168. #undef gettext
  169. char *
  170. gettext (msg)
  171.      const char *msg;
  172. {
  173.   int msgid;
  174.   if (msg == NULL || catalog == (nl_catd) -1)
  175.     return (char *) msg;
  176.   /* Get the message from the catalog.  We always use set number 1.
  177.      The message ID is computed by the function `msg_to_cat_id'
  178.      which works on the table generated by `po-to-tbl'.  */
  179.   msgid = msg_to_cat_id (msg);
  180.   if (msgid == -1)
  181.     return (char *) msg;
  182.   return catgets (catalog, 1, msgid, (char *) msg);
  183. }
  184. /* Look through the table `_msg_tbl' which has `_msg_tbl_length' entries
  185.    for the one equal to msg.  If it is found return the ID.  In case when
  186.    the string is not found return -1.  */
  187. static int
  188. msg_to_cat_id (msg)
  189.      const char *msg;
  190. {
  191.   int cnt;
  192.   for (cnt = 0; cnt < _msg_tbl_length; ++cnt)
  193.     if (strcmp (msg, _msg_tbl[cnt]._msg) == 0)
  194.       return _msg_tbl[cnt]._msg_number;
  195.   return -1;
  196. }
  197. /* @@ begin of epilog @@ */
  198. /* We don't want libintl.a to depend on any other library.  So we
  199.    avoid the non-standard function stpcpy.  In GNU C Library this
  200.    function is available, though.  Also allow the symbol HAVE_STPCPY
  201.    to be defined.  */
  202. #if !_LIBC && !HAVE_STPCPY
  203. static char *
  204. stpcpy (dest, src)
  205.      char *dest;
  206.      const char *src;
  207. {
  208.   while ((*dest++ = *src++) != '')
  209.     /* Do nothing. */ ;
  210.   return dest - 1;
  211. }
  212. #endif