explodename.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* Copyright (C) 1995-1998, 2000-2001, 2003, 2005 Free Software Foundation, Inc.
  2. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
  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. #ifdef HAVE_CONFIG_H
  16. # include <config.h>
  17. #endif
  18. #include <stdlib.h>
  19. #include <string.h>
  20. #include <sys/types.h>
  21. #include "loadinfo.h"
  22. /* On some strange systems still no definition of NULL is found. Sigh! */
  23. #ifndef NULL
  24. # if defined __STDC__ && __STDC__
  25. # define NULL ((void *) 0)
  26. # else
  27. # define NULL 0
  28. # endif
  29. #endif
  30. /* @@ end of prolog @@ */
  31. /* Split a locale name NAME into a leading language part and all the
  32. rest. Return a pointer to the first character after the language,
  33. i.e. to the first byte of the rest. */
  34. static char *_nl_find_language (const char *name);
  35. static char *
  36. _nl_find_language (const char *name)
  37. {
  38. while (name[0] != '\0' && name[0] != '_' && name[0] != '@' && name[0] != '.')
  39. ++name;
  40. return (char *) name;
  41. }
  42. int
  43. _nl_explode_name (char *name,
  44. const char **language, const char **modifier,
  45. const char **territory, const char **codeset,
  46. const char **normalized_codeset)
  47. {
  48. char *cp;
  49. int mask;
  50. *modifier = NULL;
  51. *territory = NULL;
  52. *codeset = NULL;
  53. *normalized_codeset = NULL;
  54. /* Now we determine the single parts of the locale name. First
  55. look for the language. Termination symbols are `_', '.', and `@'. */
  56. mask = 0;
  57. *language = cp = name;
  58. cp = _nl_find_language (*language);
  59. if (*language == cp)
  60. /* This does not make sense: language has to be specified. Use
  61. this entry as it is without exploding. Perhaps it is an alias. */
  62. cp = strchr (*language, '\0');
  63. else
  64. {
  65. if (cp[0] == '_')
  66. {
  67. /* Next is the territory. */
  68. cp[0] = '\0';
  69. *territory = ++cp;
  70. while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@')
  71. ++cp;
  72. mask |= XPG_TERRITORY;
  73. }
  74. if (cp[0] == '.')
  75. {
  76. /* Next is the codeset. */
  77. cp[0] = '\0';
  78. *codeset = ++cp;
  79. while (cp[0] != '\0' && cp[0] != '@')
  80. ++cp;
  81. mask |= XPG_CODESET;
  82. if (*codeset != cp && (*codeset)[0] != '\0')
  83. {
  84. *normalized_codeset = _nl_normalize_codeset (*codeset,
  85. cp - *codeset);
  86. if (strcmp (*codeset, *normalized_codeset) == 0)
  87. free ((char *) *normalized_codeset);
  88. else
  89. mask |= XPG_NORM_CODESET;
  90. }
  91. }
  92. }
  93. if (cp[0] == '@')
  94. {
  95. /* Next is the modifier. */
  96. cp[0] = '\0';
  97. *modifier = ++cp;
  98. if (cp[0] != '\0')
  99. mask |= XPG_MODIFIER;
  100. }
  101. if (*territory != NULL && (*territory)[0] == '\0')
  102. mask &= ~XPG_TERRITORY;
  103. if (*codeset != NULL && (*codeset)[0] == '\0')
  104. mask &= ~XPG_CODESET;
  105. return mask;
  106. }