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

Email客户端

开发平台:

Unix_Linux

  1. /* Handle list of needed message catalogs
  2.    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
  3.    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
  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, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software Foundation,
  14.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  15. #ifdef HAVE_CONFIG_H
  16. # include <config.h>
  17. #endif
  18. #include <ctype.h>
  19. #include <errno.h>
  20. #include <stdio.h>
  21. #include <sys/types.h>
  22. #if defined STDC_HEADERS || defined _LIBC
  23. # include <stdlib.h>
  24. #else
  25. # ifdef HAVE_MALLOC_H
  26. #  include <malloc.h>
  27. # else
  28. void free ();
  29. # endif
  30. #endif
  31. #if defined HAVE_STRING_H || defined _LIBC
  32. # include <string.h>
  33. #else
  34. # include <strings.h>
  35. # ifndef memcpy
  36. #  define memcpy(Dst, Src, Num) bcopy (Src, Dst, Num)
  37. # endif
  38. #endif
  39. #if !HAVE_STRCHR && !defined _LIBC
  40. # ifndef strchr
  41. #  define strchr index
  42. # endif
  43. #endif
  44. #if defined HAVE_UNISTD_H || defined _LIBC
  45. # include <unistd.h>
  46. #endif
  47. #include "gettext.h"
  48. #include "gettextP.h"
  49. #ifdef _LIBC
  50. # include <libintl.h>
  51. #else
  52. # include "libgettext.h"
  53. #endif
  54. /* @@ end of prolog @@ */
  55. /* List of already loaded domains.  */
  56. static struct loaded_l10nfile *_nl_loaded_domains;
  57. /* Return a data structure describing the message catalog described by
  58.    the DOMAINNAME and CATEGORY parameters with respect to the currently
  59.    established bindings.  */
  60. struct loaded_l10nfile *
  61. internal_function
  62. _nl_find_domain (dirname, locale, domainname)
  63.      const char *dirname;
  64.      char *locale;
  65.      const char *domainname;
  66. {
  67.   struct loaded_l10nfile *retval;
  68.   const char *language;
  69.   const char *modifier;
  70.   const char *territory;
  71.   const char *codeset;
  72.   const char *normalized_codeset;
  73.   const char *special;
  74.   const char *sponsor;
  75.   const char *revision;
  76.   const char *alias_value;
  77.   int mask;
  78.   /* LOCALE can consist of up to four recognized parts for the XPG syntax:
  79. language[_territory[.codeset]][@modifier]
  80.      and six parts for the CEN syntax:
  81. language[_territory][+audience][+special][,[sponsor][_revision]]
  82.      Beside the first part all of them are allowed to be missing.  If
  83.      the full specified locale is not found, the less specific one are
  84.      looked for.  The various parts will be stripped off according to
  85.      the following order:
  86. (1) revision
  87. (2) sponsor
  88. (3) special
  89. (4) codeset
  90. (5) normalized codeset
  91. (6) territory
  92. (7) audience/modifier
  93.    */
  94.   /* If we have already tested for this locale entry there has to
  95.      be one data set in the list of loaded domains.  */
  96.   retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
  97.        strlen (dirname) + 1, 0, locale, NULL, NULL,
  98.        NULL, NULL, NULL, NULL, NULL, domainname, 0);
  99.   if (retval != NULL)
  100.     {
  101.       /* We know something about this locale.  */
  102.       int cnt;
  103.       if (retval->decided == 0)
  104. _nl_load_domain (retval);
  105.       if (retval->data != NULL)
  106. return retval;
  107.       for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
  108. {
  109.   if (retval->successor[cnt]->decided == 0)
  110.     _nl_load_domain (retval->successor[cnt]);
  111.   if (retval->successor[cnt]->data != NULL)
  112.     break;
  113. }
  114.       return cnt >= 0 ? retval : NULL;
  115.       /* NOTREACHED */
  116.     }
  117.   /* See whether the locale value is an alias.  If yes its value
  118.      *overwrites* the alias name.  No test for the original value is
  119.      done.  */
  120.   alias_value = _nl_expand_alias (locale);
  121.   if (alias_value != NULL)
  122.     {
  123. #if defined _LIBC || defined HAVE_STRDUP
  124.       locale = strdup (alias_value);
  125.       if (locale == NULL)
  126. return NULL;
  127. #else
  128.       size_t len = strlen (alias_value) + 1;
  129.       locale = (char *) malloc (len);
  130.       if (locale == NULL)
  131. return NULL;
  132.       memcpy (locale, alias_value, len);
  133. #endif
  134.     }
  135.   /* Now we determine the single parts of the locale name.  First
  136.      look for the language.  Termination symbols are `_' and `@' if
  137.      we use XPG4 style, and `_', `+', and `,' if we use CEN syntax.  */
  138.   mask = _nl_explode_name (locale, &language, &modifier, &territory,
  139.    &codeset, &normalized_codeset, &special,
  140.    &sponsor, &revision);
  141.   /* Create all possible locale entries which might be interested in
  142.      generalization.  */
  143.   retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname,
  144.        strlen (dirname) + 1, mask, language, territory,
  145.        codeset, normalized_codeset, modifier, special,
  146.        sponsor, revision, domainname, 1);
  147.   if (retval == NULL)
  148.     /* This means we are out of core.  */
  149.     return NULL;
  150.   if (retval->decided == 0)
  151.     _nl_load_domain (retval);
  152.   if (retval->data == NULL)
  153.     {
  154.       int cnt;
  155.       for (cnt = 0; retval->successor[cnt] != NULL; ++cnt)
  156. {
  157.   if (retval->successor[cnt]->decided == 0)
  158.     _nl_load_domain (retval->successor[cnt]);
  159.   if (retval->successor[cnt]->data != NULL)
  160.     break;
  161. }
  162.     }
  163.   /* The room for an alias was dynamically allocated.  Free it now.  */
  164.   if (alias_value != NULL)
  165.     free (locale);
  166.   return retval;
  167. }
  168. #ifdef _LIBC
  169. static void __attribute__ ((unused))
  170. free_mem (void)
  171. {
  172.   struct loaded_l10nfile *runp = _nl_loaded_domains;
  173.   while (runp != NULL)
  174.     {
  175.       struct loaded_l10nfile *here = runp;
  176.       if (runp->data != NULL)
  177. _nl_unload_domain ((struct loaded_domain *) runp->data);
  178.       runp = runp->next;
  179.       free (here);
  180.     }
  181. }
  182. text_set_element (__libc_subfreeres, free_mem);
  183. #endif