2017-12-07 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / intl / explodename.c
blobc577c54f529646f08d2547802bb3c60fd44fae19
1 /* Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
2 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published
6 by the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301,
17 USA. */
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
23 #include <stdlib.h>
24 #include <string.h>
25 #include <sys/types.h>
27 #include "loadinfo.h"
29 /* On some strange systems still no definition of NULL is found. Sigh! */
30 #ifndef NULL
31 # if defined __STDC__ && __STDC__
32 # define NULL ((void *) 0)
33 # else
34 # define NULL 0
35 # endif
36 #endif
38 /* @@ end of prolog @@ */
40 char *
41 _nl_find_language (name)
42 const char *name;
44 while (name[0] != '\0' && name[0] != '_' && name[0] != '@'
45 && name[0] != '+' && name[0] != ',')
46 ++name;
48 return (char *) name;
52 int
53 _nl_explode_name (name, language, modifier, territory, codeset,
54 normalized_codeset, special, sponsor, revision)
55 char *name;
56 const char **language;
57 const char **modifier;
58 const char **territory;
59 const char **codeset;
60 const char **normalized_codeset;
61 const char **special;
62 const char **sponsor;
63 const char **revision;
65 enum { undecided, xpg, cen } syntax;
66 char *cp;
67 int mask;
69 *modifier = NULL;
70 *territory = NULL;
71 *codeset = NULL;
72 *normalized_codeset = NULL;
73 *special = NULL;
74 *sponsor = NULL;
75 *revision = NULL;
77 /* Now we determine the single parts of the locale name. First
78 look for the language. Termination symbols are `_' and `@' if
79 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
80 mask = 0;
81 syntax = undecided;
82 *language = cp = name;
83 cp = _nl_find_language (*language);
85 if (*language == cp)
86 /* This does not make sense: language has to be specified. Use
87 this entry as it is without exploding. Perhaps it is an alias. */
88 cp = strchr (*language, '\0');
89 else if (cp[0] == '_')
91 /* Next is the territory. */
92 cp[0] = '\0';
93 *territory = ++cp;
95 while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@'
96 && cp[0] != '+' && cp[0] != ',' && cp[0] != '_')
97 ++cp;
99 mask |= TERRITORY;
101 if (cp[0] == '.')
103 /* Next is the codeset. */
104 syntax = xpg;
105 cp[0] = '\0';
106 *codeset = ++cp;
108 while (cp[0] != '\0' && cp[0] != '@')
109 ++cp;
111 mask |= XPG_CODESET;
113 if (*codeset != cp && (*codeset)[0] != '\0')
115 *normalized_codeset = _nl_normalize_codeset (*codeset,
116 cp - *codeset);
117 if (strcmp (*codeset, *normalized_codeset) == 0)
118 free ((char *) *normalized_codeset);
119 else
120 mask |= XPG_NORM_CODESET;
125 if (cp[0] == '@' || (syntax != xpg && cp[0] == '+'))
127 /* Next is the modifier. */
128 syntax = cp[0] == '@' ? xpg : cen;
129 cp[0] = '\0';
130 *modifier = ++cp;
132 while (syntax == cen && cp[0] != '\0' && cp[0] != '+'
133 && cp[0] != ',' && cp[0] != '_')
134 ++cp;
136 mask |= XPG_MODIFIER | CEN_AUDIENCE;
139 if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_'))
141 syntax = cen;
143 if (cp[0] == '+')
145 /* Next is special application (CEN syntax). */
146 cp[0] = '\0';
147 *special = ++cp;
149 while (cp[0] != '\0' && cp[0] != ',' && cp[0] != '_')
150 ++cp;
152 mask |= CEN_SPECIAL;
155 if (cp[0] == ',')
157 /* Next is sponsor (CEN syntax). */
158 cp[0] = '\0';
159 *sponsor = ++cp;
161 while (cp[0] != '\0' && cp[0] != '_')
162 ++cp;
164 mask |= CEN_SPONSOR;
167 if (cp[0] == '_')
169 /* Next is revision (CEN syntax). */
170 cp[0] = '\0';
171 *revision = ++cp;
173 mask |= CEN_REVISION;
177 /* For CEN syntax values it might be important to have the
178 separator character in the file name, not for XPG syntax. */
179 if (syntax == xpg)
181 if (*territory != NULL && (*territory)[0] == '\0')
182 mask &= ~TERRITORY;
184 if (*codeset != NULL && (*codeset)[0] == '\0')
185 mask &= ~XPG_CODESET;
187 if (*modifier != NULL && (*modifier)[0] == '\0')
188 mask &= ~XPG_MODIFIER;
191 return mask;