1 /* dcgettext.c -- implementation of the dcgettext(3) function
2 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
4 This file is part of the GNU C Library. Its master source is NOT part of
5 the C library, however. The master source lives in /gd/gnu/lib.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If
19 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
20 Cambridge, MA 02139, USA. */
26 #include <sys/types.h>
29 # define alloca __builtin_alloca
30 # define HAVE_ALLOCA 1
32 # if defined HAVE_ALLOCA_H || defined _LIBC
50 #if defined STDC_HEADERS || defined _LIBC
61 #if defined HAVE_STRING_H || defined _LIBC
66 #if !HAVE_STRCHR && !defined _LIBC
72 #if defined HAVE_UNISTD_H || defined _LIBC
81 # include "libgettext.h"
83 #include "hash-string.h"
85 /* @@ end of prolog @@ */
88 /* Rename the non ANSI C functions. This is required by the standard
89 because some ANSI C functions will require linking with this object
90 file and the name space must not be polluted. */
91 # define getcwd __getcwd
92 # define stpcpy __stpcpy
94 # if !defined HAVE_GETCWD
96 # define getcwd(buf, max) getwd (buf)
101 static char *stpcpy
PARAMS ((char *dest
, const char *src
));
105 /* Amount to increase buffer size by in each try. */
108 /* The following is from pathmax.h. */
109 /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define
110 PATH_MAX but might cause redefinition warnings when sys/param.h is
111 later included (as on MORE/BSD 4.3). */
112 #if defined(_POSIX_VERSION) || (defined(HAVE_LIMITS_H) && !defined(__GNUC__))
116 #ifndef _POSIX_PATH_MAX
117 # define _POSIX_PATH_MAX 255
120 #if !defined(PATH_MAX) && defined(_PC_PATH_MAX)
121 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
124 /* Don't include sys/param.h if it already has been. */
125 #if defined(HAVE_SYS_PARAM_H) && !defined(PATH_MAX) && !defined(MAXPATHLEN)
126 # include <sys/param.h>
129 #if !defined(PATH_MAX) && defined(MAXPATHLEN)
130 # define PATH_MAX MAXPATHLEN
134 # define PATH_MAX _POSIX_PATH_MAX
137 /* XPG3 defines the result of `setlocale (category, NULL)' as:
138 ``Directs `setlocale()' to query `category' and return the current
139 setting of `local'.''
140 However it does not specify the exact format. And even worse: POSIX
141 defines this not at all. So we can use this feature only on selected
142 system (e.g. those using GNU C Library). */
144 # define HAVE_LOCALE_NULL
147 /* Name of the default domain used for gettext(3) prior any call to
148 textdomain(3). The default value for this is "messages". */
149 const char _nl_default_default_domain
[] = "messages";
151 /* Value used as the default domain for gettext(3). */
152 const char *_nl_current_default_domain
= _nl_default_default_domain
;
154 /* Contains the default location of the message catalogs. */
155 const char _nl_default_dirname
[] = GNULOCALEDIR
;
157 /* List with bindings of specific domains created by bindtextdomain()
159 struct binding
*_nl_domain_bindings
;
161 /* Prototypes for local functions. */
162 static char *find_msg
PARAMS ((struct loaded_l10nfile
*domain_file
,
164 static const char *category_to_name
PARAMS ((int category
));
165 static const char *guess_category_value
PARAMS ((int category
,
166 const char *categoryname
));
169 /* For those loosing systems which don't have `alloca' we have to add
170 some additional code emulating it. */
172 /* Nothing has to be done. */
173 # define ADD_BLOCK(list, address) /* nothing */
174 # define FREE_BLOCKS(list) /* nothing */
179 struct block_list
*next
;
181 # define ADD_BLOCK(list, addr) \
183 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
184 /* If we cannot get a free block we cannot add the new element to \
186 if (newp != NULL) { \
187 newp->address = (addr); \
188 newp->next = (list); \
192 # define FREE_BLOCKS(list) \
194 while (list != NULL) { \
195 struct block_list *old = list; \
201 # define alloca(size) (malloc (size))
202 #endif /* have alloca */
205 /* Names for the libintl functions are a problem. They must not clash
206 with existing names and they should follow ANSI C. But this source
207 code is also used in GNU C Library where the names have a __
208 prefix. So we have to make a difference here. */
210 # define DCGETTEXT __dcgettext
212 # define DCGETTEXT dcgettext__
215 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
218 DCGETTEXT (domainname
, msgid
, category
)
219 const char *domainname
;
224 struct block_list
*alloca_list
= NULL
;
226 struct loaded_l10nfile
*domain
;
227 struct binding
*binding
;
228 const char *categoryname
;
229 const char *categoryvalue
;
230 char *dirname
, *xdomainname
;
233 int saved_errno
= errno
;
235 /* If no real MSGID is given return NULL. */
239 /* If DOMAINNAME is NULL, we are interested in the default domain. If
240 CATEGORY is not LC_MESSAGES this might not make much sense but the
241 defintion left this undefined. */
242 if (domainname
== NULL
)
243 domainname
= _nl_current_default_domain
;
245 /* First find matching binding. */
246 for (binding
= _nl_domain_bindings
; binding
!= NULL
; binding
= binding
->next
)
248 int compare
= strcmp (domainname
, binding
->domainname
);
254 /* It is not in the list. */
261 dirname
= (char *) _nl_default_dirname
;
262 else if (binding
->dirname
[0] == '/')
263 dirname
= binding
->dirname
;
266 /* We have a relative path. Make it absolute now. */
267 size_t dirname_len
= strlen (binding
->dirname
) + 1;
271 path_max
= (unsigned) PATH_MAX
;
272 path_max
+= 2; /* The getcwd docs say to do this. */
274 dirname
= (char *) alloca (path_max
+ dirname_len
);
275 ADD_BLOCK (block_list
, dirname
);
278 while ((ret
= getcwd (dirname
, path_max
)) == NULL
&& errno
== ERANGE
)
280 path_max
+= PATH_INCR
;
281 dirname
= (char *) alloca (path_max
+ dirname_len
);
282 ADD_BLOCK (block_list
, dirname
);
288 /* We cannot get the current working directory. Don't signal an
289 error but simply return the default string. */
290 FREE_BLOCKS (block_list
);
292 return (char *) msgid
;
295 /* We don't want libintl.a to depend on any other library. So
296 we avoid the non-standard function stpcpy. In GNU C Library
297 this function is available, though. Also allow the symbol
298 HAVE_STPCPY to be defined. */
299 stpcpy (stpcpy (strchr (dirname
, '\0'), "/"), binding
->dirname
);
302 /* Now determine the symbolic name of CATEGORY and its value. */
303 categoryname
= category_to_name (category
);
304 categoryvalue
= guess_category_value (category
, categoryname
);
306 xdomainname
= (char *) alloca (strlen (categoryname
)
307 + strlen (domainname
) + 5);
308 ADD_BLOCK (block_list
, xdomainname
);
309 /* We don't want libintl.a to depend on any other library. So we
310 avoid the non-standard function stpcpy. In GNU C Library this
311 function is available, though. Also allow the symbol HAVE_STPCPY
313 stpcpy (stpcpy (stpcpy (stpcpy (xdomainname
, categoryname
), "/"),
317 /* Creating working area. */
318 single_locale
= (char *) alloca (strlen (categoryvalue
) + 1);
319 ADD_BLOCK (block_list
, single_locale
);
322 /* Search for the given string. This is a loop because we perhaps
323 got an ordered list of languages to consider for th translation. */
326 /* Make CATEGORYVALUE point to the next element of the list. */
327 while (categoryvalue
[0] != '\0' && categoryvalue
[0] == ':')
329 if (categoryvalue
[0] == '\0')
331 /* The whole contents of CATEGORYVALUE has been searched but
332 no valid entry has been found. We solve this situation
333 by implicitely appending a "C" entry, i.e. no translation
335 single_locale
[0] = 'C';
336 single_locale
[1] = '\0';
340 char *cp
= single_locale
;
341 while (categoryvalue
[0] != '\0' && categoryvalue
[0] != ':')
342 *cp
++ = *categoryvalue
++;
346 /* If the current locale value is C (or POSIX) we don't load a
347 domain. Return the MSGID. */
348 if (strcmp (single_locale
, "C") == 0
349 || strcmp (single_locale
, "POSIX") == 0)
351 FREE_BLOCKS (block_list
);
353 return (char *) msgid
;
357 /* Find structure describing the message catalog matching the
358 DOMAINNAME and CATEGORY. */
359 domain
= _nl_find_domain (dirname
, single_locale
, xdomainname
);
363 retval
= find_msg (domain
, msgid
);
369 for (cnt
= 0; domain
->successor
[cnt
] != NULL
; ++cnt
)
371 retval
= find_msg (domain
->successor
[cnt
], msgid
);
380 FREE_BLOCKS (block_list
);
390 /* Alias for function name in GNU C Library. */
391 weak_alias (__dcgettext
, dcgettext
);
396 find_msg (domain_file
, msgid
)
397 struct loaded_l10nfile
*domain_file
;
400 size_t top
, act
, bottom
;
401 struct loaded_domain
*domain
;
403 if (domain_file
->decided
== 0)
404 _nl_load_domain (domain_file
);
406 if (domain_file
->data
== NULL
)
409 domain
= (struct loaded_domain
*) domain_file
->data
;
411 /* Locate the MSGID and its translation. */
412 if (domain
->hash_size
> 2 && domain
->hash_tab
!= NULL
)
414 /* Use the hashing table. */
415 nls_uint32 len
= strlen (msgid
);
416 nls_uint32 hash_val
= hash_string (msgid
);
417 nls_uint32 idx
= hash_val
% domain
->hash_size
;
418 nls_uint32 incr
= 1 + (hash_val
% (domain
->hash_size
- 2));
419 nls_uint32 nstr
= W (domain
->must_swap
, domain
->hash_tab
[idx
]);
422 /* Hash table entry is empty. */
425 if (W (domain
->must_swap
, domain
->orig_tab
[nstr
- 1].length
) == len
427 domain
->data
+ W (domain
->must_swap
,
428 domain
->orig_tab
[nstr
- 1].offset
)) == 0)
429 return (char *) domain
->data
+ W (domain
->must_swap
,
430 domain
->trans_tab
[nstr
- 1].offset
);
434 if (idx
>= domain
->hash_size
- incr
)
435 idx
-= domain
->hash_size
- incr
;
439 nstr
= W (domain
->must_swap
, domain
->hash_tab
[idx
]);
441 /* Hash table entry is empty. */
444 if (W (domain
->must_swap
, domain
->orig_tab
[nstr
- 1].length
) == len
446 domain
->data
+ W (domain
->must_swap
,
447 domain
->orig_tab
[nstr
- 1].offset
))
449 return (char *) domain
->data
450 + W (domain
->must_swap
, domain
->trans_tab
[nstr
- 1].offset
);
455 /* Now we try the default method: binary search in the sorted
456 array of messages. */
458 top
= domain
->nstrings
;
463 act
= (bottom
+ top
) / 2;
464 cmp_val
= strcmp (msgid
, domain
->data
465 + W (domain
->must_swap
,
466 domain
->orig_tab
[act
].offset
));
469 else if (cmp_val
> 0)
475 /* If an translation is found return this. */
476 return bottom
>= top
? NULL
: (char *) domain
->data
477 + W (domain
->must_swap
,
478 domain
->trans_tab
[act
].offset
);
482 /* Return string representation of locale CATEGORY. */
484 category_to_name (category
)
493 retval
= "LC_COLLATE";
503 retval
= "LC_MONETARY";
508 retval
= "LC_NUMERIC";
518 retval
= "LC_MESSAGES";
523 retval
= "LC_RESPONSE";
528 /* This might not make sense but is perhaps better than any other
534 /* If you have a better idea for a default value let me know. */
541 /* Guess value of current locale from value of the environment variables. */
542 static const char *guess_category_value (category
, categoryname
)
544 const char *categoryname
;
548 /* The highest priority value is the `LANGUAGE' environment
549 variable. This is a GNU extension. */
550 retval
= getenv ("LANGUAGE");
551 if (retval
!= NULL
&& retval
[0] != '\0')
554 /* `LANGUAGE' is not set. So we have to proceed with the POSIX
555 methods of looking to `LC_ALL', `LC_xxx', and `LANG'. On some
556 systems this can be done by the `setlocale' function itself. */
557 #if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL
558 return setlocale (category
, NULL
);
560 /* Setting of LC_ALL overwrites all other. */
561 retval
= getenv ("LC_ALL");
562 if (retval
!= NULL
&& retval
[0] != '\0')
565 /* Next comes the name of the desired category. */
566 retval
= getenv (categoryname
);
567 if (retval
!= NULL
&& retval
[0] != '\0')
570 /* Last possibility is the LANG environment variable. */
571 retval
= getenv ("LANG");
572 if (retval
!= NULL
&& retval
[0] != '\0')
575 /* We use C as the default domain. POSIX says this is implementation
581 /* @@ begin of epilog @@ */
583 /* We don't want libintl.a to depend on any other library. So we
584 avoid the non-standard function stpcpy. In GNU C Library this
585 function is available, though. Also allow the symbol HAVE_STPCPY
587 #if !_LIBC && !HAVE_STPCPY
593 while ((*dest
++ = *src
++) != '\0')