1 /* Implementation of the internal dcigettext function.
2 Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc.
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)
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,
19 /* Tell glibc's <string.h> to provide a prototype for mempcpy().
20 This must come before <config.h> because <config.h> may include
21 <features.h>, and once <features.h> has been included, it's too late. */
23 # define _GNU_SOURCE 1
30 #include <sys/types.h>
33 # define alloca __builtin_alloca
34 # define HAVE_ALLOCA 1
36 # if defined HAVE_ALLOCA_H || defined _LIBC
54 # define __set_errno(val) errno = (val)
61 #if defined HAVE_UNISTD_H || defined _LIBC
67 #if defined HAVE_SYS_PARAM_H || defined _LIBC
68 # include <sys/param.h>
72 #include "plural-exp.h"
76 # include "libgnuintl.h"
78 #include "hash-string.h"
80 /* Thread safetyness. */
82 # include <bits/libc-lock.h>
84 /* Provide dummy implementation if this is outside glibc. */
85 # define __libc_lock_define_initialized(CLASS, NAME)
86 # define __libc_lock_lock(NAME)
87 # define __libc_lock_unlock(NAME)
88 # define __libc_rwlock_define_initialized(CLASS, NAME)
89 # define __libc_rwlock_rdlock(NAME)
90 # define __libc_rwlock_unlock(NAME)
93 /* Alignment of types. */
94 #if defined __GNUC__ && __GNUC__ >= 2
95 # define alignof(TYPE) __alignof__ (TYPE)
97 # define alignof(TYPE) \
98 ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2)
101 /* The internal variables in the standalone libintl.a must have different
102 names than the internal variables in GNU libc, otherwise programs
103 using libintl.a cannot be linked statically. */
105 # define _nl_default_default_domain _nl_default_default_domain__
106 # define _nl_current_default_domain _nl_current_default_domain__
107 # define _nl_default_dirname _nl_default_dirname__
108 # define _nl_domain_bindings _nl_domain_bindings__
111 /* Some compilers, like SunOS4 cc, don't have offsetof in <stddef.h>. */
113 # define offsetof(type,ident) ((size_t)&(((type*)0)->ident))
116 /* @@ end of prolog @@ */
119 /* Rename the non ANSI C functions. This is required by the standard
120 because some ANSI C functions will require linking with this object
121 file and the name space must not be polluted. */
122 # define getcwd __getcwd
124 # define stpcpy __stpcpy
126 # define tfind __tfind
128 # if !defined HAVE_GETCWD
130 # define getcwd(buf, max) getwd (buf)
135 static char *stpcpy
PARAMS ((char *dest
, const char *src
));
137 # ifndef HAVE_MEMPCPY
138 static void *mempcpy
PARAMS ((void *dest
, const void *src
, size_t n
));
142 /* Amount to increase buffer size by in each try. */
145 /* The following is from pathmax.h. */
146 /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define
147 PATH_MAX but might cause redefinition warnings when sys/param.h is
148 later included (as on MORE/BSD 4.3). */
149 #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__)
153 #ifndef _POSIX_PATH_MAX
154 # define _POSIX_PATH_MAX 255
157 #if !defined PATH_MAX && defined _PC_PATH_MAX
158 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
161 /* Don't include sys/param.h if it already has been. */
162 #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
163 # include <sys/param.h>
166 #if !defined PATH_MAX && defined MAXPATHLEN
167 # define PATH_MAX MAXPATHLEN
171 # define PATH_MAX _POSIX_PATH_MAX
175 ISSLASH(C) tests whether C is a directory separator character.
176 IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not,
177 it may be concatenated to a directory pathname.
178 IS_PATH_WITH_DIR(P) tests whether P contains a directory specification.
180 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__
181 /* Win32, OS/2, DOS */
182 # define ISSLASH(C) ((C) == '/' || (C) == '\\')
183 # define HAS_DEVICE(P) \
184 ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \
186 # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P))
187 # define IS_PATH_WITH_DIR(P) \
188 (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))
191 # define ISSLASH(C) ((C) == '/')
192 # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0])
193 # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)
196 /* This is the type used for the search tree where known translations
198 struct known_translation_t
200 /* Domain in which to search. */
206 /* State of the catalog counter at the point the string was found. */
209 /* Catalog where the string was found. */
210 struct loaded_l10nfile
*domain
;
212 /* And finally the translation. */
213 const char *translation
;
214 size_t translation_length
;
216 /* Pointer to the string in question. */
220 /* Root of the search tree with known translations. We can use this
221 only if the system provides the `tsearch' function family. */
222 #if defined HAVE_TSEARCH || defined _LIBC
228 # define tsearch __tsearch
231 /* Function to compare two entries in the table of known translations. */
232 static int transcmp
PARAMS ((const void *p1
, const void *p2
));
238 const struct known_translation_t
*s1
;
239 const struct known_translation_t
*s2
;
242 s1
= (const struct known_translation_t
*) p1
;
243 s2
= (const struct known_translation_t
*) p2
;
245 result
= strcmp (s1
->msgid
, s2
->msgid
);
248 result
= strcmp (s1
->domainname
, s2
->domainname
);
250 /* We compare the category last (though this is the cheapest
251 operation) since it is hopefully always the same (namely
253 result
= s1
->category
- s2
->category
;
260 /* Name of the default domain used for gettext(3) prior any call to
261 textdomain(3). The default value for this is "messages". */
262 const char _nl_default_default_domain
[] = "messages";
264 /* Value used as the default domain for gettext(3). */
265 const char *_nl_current_default_domain
= _nl_default_default_domain
;
267 /* Contains the default location of the message catalogs. */
269 extern const char _nl_default_dirname
[];
271 const char _nl_default_dirname
[] = LOCALEDIR
;
274 /* List with bindings of specific domains created by bindtextdomain()
276 struct binding
*_nl_domain_bindings
;
278 /* Prototypes for local functions. */
279 static char *plural_lookup
PARAMS ((struct loaded_l10nfile
*domain
,
281 const char *translation
,
282 size_t translation_len
))
284 static const char *category_to_name
PARAMS ((int category
)) internal_function
;
285 static const char *guess_category_value
PARAMS ((int category
,
286 const char *categoryname
))
290 /* For those loosing systems which don't have `alloca' we have to add
291 some additional code emulating it. */
293 /* Nothing has to be done. */
294 # define ADD_BLOCK(list, address) /* nothing */
295 # define FREE_BLOCKS(list) /* nothing */
300 struct block_list
*next
;
302 # define ADD_BLOCK(list, addr) \
304 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
305 /* If we cannot get a free block we cannot add the new element to \
307 if (newp != NULL) { \
308 newp->address = (addr); \
309 newp->next = (list); \
313 # define FREE_BLOCKS(list) \
315 while (list != NULL) { \
316 struct block_list *old = list; \
322 # define alloca(size) (malloc (size))
323 #endif /* have alloca */
327 /* List of blocks allocated for translations. */
328 typedef struct transmem_list
330 struct transmem_list
*next
;
333 static struct transmem_list
*transmem_list
;
335 typedef unsigned char transmem_block_t
;
339 /* Names for the libintl functions are a problem. They must not clash
340 with existing names and they should follow ANSI C. But this source
341 code is also used in GNU C Library where the names have a __
342 prefix. So we have to make a difference here. */
344 # define DCIGETTEXT __dcigettext
346 # define DCIGETTEXT dcigettext__
349 /* Lock variable to protect the global data in the gettext implementation. */
351 __libc_rwlock_define_initialized (, _nl_state_lock
)
354 /* Checking whether the binaries runs SUID must be done and glibc provides
355 easier methods therefore we make a difference here. */
357 # define ENABLE_SECURE __libc_enable_secure
358 # define DETERMINE_SECURE
366 # ifndef HAVE_GETEUID
367 # define geteuid() getuid()
369 # ifndef HAVE_GETEGID
370 # define getegid() getgid()
372 static int enable_secure
;
373 # define ENABLE_SECURE (enable_secure == 1)
374 # define DETERMINE_SECURE \
375 if (enable_secure == 0) \
377 if (getuid () != geteuid () || getgid () != getegid ()) \
380 enable_secure = -1; \
384 /* Get the function to evaluate the plural expression. */
385 #include "eval-plural.h"
387 /* Look up MSGID in the DOMAINNAME message catalog for the current
388 CATEGORY locale and, if PLURAL is nonzero, search over string
389 depending on the plural form determined by N. */
391 DCIGETTEXT (domainname
, msgid1
, msgid2
, plural
, n
, category
)
392 const char *domainname
;
400 struct block_list
*block_list
= NULL
;
402 struct loaded_l10nfile
*domain
;
403 struct binding
*binding
;
404 const char *categoryname
;
405 const char *categoryvalue
;
406 char *dirname
, *xdomainname
;
411 #if defined HAVE_TSEARCH || defined _LIBC
412 struct known_translation_t
*search
;
413 struct known_translation_t
**foundp
= NULL
;
416 size_t domainname_len
;
418 /* If no real MSGID is given return NULL. */
422 __libc_rwlock_rdlock (_nl_state_lock
);
424 /* If DOMAINNAME is NULL, we are interested in the default domain. If
425 CATEGORY is not LC_MESSAGES this might not make much sense but the
426 definition left this undefined. */
427 if (domainname
== NULL
)
428 domainname
= _nl_current_default_domain
;
430 /* OS/2 specific: backward compatibility with older libintl versions */
431 #ifdef LC_MESSAGES_COMPAT
432 if (category
== LC_MESSAGES_COMPAT
)
433 category
= LC_MESSAGES
;
436 #if defined HAVE_TSEARCH || defined _LIBC
437 msgid_len
= strlen (msgid1
) + 1;
439 /* Try to find the translation among those which we found at
441 search
= (struct known_translation_t
*)
442 alloca (offsetof (struct known_translation_t
, msgid
) + msgid_len
);
443 memcpy (search
->msgid
, msgid1
, msgid_len
);
444 search
->domainname
= (char *) domainname
;
445 search
->category
= category
;
447 foundp
= (struct known_translation_t
**) tfind (search
, &root
, transcmp
);
448 if (foundp
!= NULL
&& (*foundp
)->counter
== _nl_msg_cat_cntr
)
450 /* Now deal with plural. */
452 retval
= plural_lookup ((*foundp
)->domain
, n
, (*foundp
)->translation
,
453 (*foundp
)->translation_length
);
455 retval
= (char *) (*foundp
)->translation
;
457 __libc_rwlock_unlock (_nl_state_lock
);
462 /* Preserve the `errno' value. */
465 /* See whether this is a SUID binary or not. */
468 /* First find matching binding. */
469 for (binding
= _nl_domain_bindings
; binding
!= NULL
; binding
= binding
->next
)
471 int compare
= strcmp (domainname
, binding
->domainname
);
477 /* It is not in the list. */
484 dirname
= (char *) _nl_default_dirname
;
485 else if (IS_ABSOLUTE_PATH (binding
->dirname
))
486 dirname
= binding
->dirname
;
489 /* We have a relative path. Make it absolute now. */
490 size_t dirname_len
= strlen (binding
->dirname
) + 1;
494 path_max
= (unsigned int) PATH_MAX
;
495 path_max
+= 2; /* The getcwd docs say to do this. */
499 dirname
= (char *) alloca (path_max
+ dirname_len
);
500 ADD_BLOCK (block_list
, dirname
);
503 ret
= getcwd (dirname
, path_max
);
504 if (ret
!= NULL
|| errno
!= ERANGE
)
507 path_max
+= path_max
/ 2;
508 path_max
+= PATH_INCR
;
513 /* We cannot get the current working directory. Don't signal an
514 error but simply return the default string. */
515 FREE_BLOCKS (block_list
);
516 __libc_rwlock_unlock (_nl_state_lock
);
517 __set_errno (saved_errno
);
520 /* Use the Germanic plural rule. */
521 : n
== 1 ? (char *) msgid1
: (char *) msgid2
);
524 stpcpy (stpcpy (strchr (dirname
, '\0'), "/"), binding
->dirname
);
527 /* Now determine the symbolic name of CATEGORY and its value. */
528 categoryname
= category_to_name (category
);
529 categoryvalue
= guess_category_value (category
, categoryname
);
531 domainname_len
= strlen (domainname
);
532 xdomainname
= (char *) alloca (strlen (categoryname
)
533 + domainname_len
+ 5);
534 ADD_BLOCK (block_list
, xdomainname
);
536 stpcpy (mempcpy (stpcpy (stpcpy (xdomainname
, categoryname
), "/"),
537 domainname
, domainname_len
),
540 /* Creating working area. */
541 single_locale
= (char *) alloca (strlen (categoryvalue
) + 1);
542 ADD_BLOCK (block_list
, single_locale
);
545 /* Search for the given string. This is a loop because we perhaps
546 got an ordered list of languages to consider for the translation. */
549 /* Make CATEGORYVALUE point to the next element of the list. */
550 while (categoryvalue
[0] != '\0' && categoryvalue
[0] == ':')
552 if (categoryvalue
[0] == '\0')
554 /* The whole contents of CATEGORYVALUE has been searched but
555 no valid entry has been found. We solve this situation
556 by implicitly appending a "C" entry, i.e. no translation
558 single_locale
[0] = 'C';
559 single_locale
[1] = '\0';
563 char *cp
= single_locale
;
564 while (categoryvalue
[0] != '\0' && categoryvalue
[0] != ':')
565 *cp
++ = *categoryvalue
++;
568 /* When this is a SUID binary we must not allow accessing files
569 outside the dedicated directories. */
570 if (ENABLE_SECURE
&& IS_PATH_WITH_DIR (single_locale
))
571 /* Ingore this entry. */
575 /* If the current locale value is C (or POSIX) we don't load a
576 domain. Return the MSGID. */
577 if (strcmp (single_locale
, "C") == 0
578 || strcmp (single_locale
, "POSIX") == 0)
580 FREE_BLOCKS (block_list
);
581 __libc_rwlock_unlock (_nl_state_lock
);
582 __set_errno (saved_errno
);
585 /* Use the Germanic plural rule. */
586 : n
== 1 ? (char *) msgid1
: (char *) msgid2
);
590 /* Find structure describing the message catalog matching the
591 DOMAINNAME and CATEGORY. */
592 domain
= _nl_find_domain (dirname
, single_locale
, xdomainname
, binding
);
596 retval
= _nl_find_msg (domain
, binding
, msgid1
, &retlen
);
602 for (cnt
= 0; domain
->successor
[cnt
] != NULL
; ++cnt
)
604 retval
= _nl_find_msg (domain
->successor
[cnt
], binding
,
609 domain
= domain
->successor
[cnt
];
617 /* Found the translation of MSGID1 in domain DOMAIN:
618 starting at RETVAL, RETLEN bytes. */
619 FREE_BLOCKS (block_list
);
620 __set_errno (saved_errno
);
621 #if defined HAVE_TSEARCH || defined _LIBC
624 /* Create a new entry and add it to the search tree. */
625 struct known_translation_t
*newp
;
627 newp
= (struct known_translation_t
*)
628 malloc (offsetof (struct known_translation_t
, msgid
)
629 + msgid_len
+ domainname_len
+ 1);
633 mempcpy (newp
->msgid
, msgid1
, msgid_len
);
634 memcpy (newp
->domainname
, domainname
, domainname_len
+ 1);
635 newp
->category
= category
;
636 newp
->counter
= _nl_msg_cat_cntr
;
637 newp
->domain
= domain
;
638 newp
->translation
= retval
;
639 newp
->translation_length
= retlen
;
641 /* Insert the entry in the search tree. */
642 foundp
= (struct known_translation_t
**)
643 tsearch (newp
, &root
, transcmp
);
645 || __builtin_expect (*foundp
!= newp
, 0))
646 /* The insert failed. */
652 /* We can update the existing entry. */
653 (*foundp
)->counter
= _nl_msg_cat_cntr
;
654 (*foundp
)->domain
= domain
;
655 (*foundp
)->translation
= retval
;
656 (*foundp
)->translation_length
= retlen
;
659 /* Now deal with plural. */
661 retval
= plural_lookup (domain
, n
, retval
, retlen
);
663 __libc_rwlock_unlock (_nl_state_lock
);
674 _nl_find_msg (domain_file
, domainbinding
, msgid
, lengthp
)
675 struct loaded_l10nfile
*domain_file
;
676 struct binding
*domainbinding
;
680 struct loaded_domain
*domain
;
685 if (domain_file
->decided
== 0)
686 _nl_load_domain (domain_file
, domainbinding
);
688 if (domain_file
->data
== NULL
)
691 domain
= (struct loaded_domain
*) domain_file
->data
;
693 /* Locate the MSGID and its translation. */
694 if (domain
->hash_size
> 2 && domain
->hash_tab
!= NULL
)
696 /* Use the hashing table. */
697 nls_uint32 len
= strlen (msgid
);
698 nls_uint32 hash_val
= hash_string (msgid
);
699 nls_uint32 idx
= hash_val
% domain
->hash_size
;
700 nls_uint32 incr
= 1 + (hash_val
% (domain
->hash_size
- 2));
704 nls_uint32 nstr
= W (domain
->must_swap
, domain
->hash_tab
[idx
]);
707 /* Hash table entry is empty. */
710 /* Compare msgid with the original string at index nstr-1.
711 We compare the lengths with >=, not ==, because plural entries
712 are represented by strings with an embedded NUL. */
713 if (W (domain
->must_swap
, domain
->orig_tab
[nstr
- 1].length
) >= len
715 domain
->data
+ W (domain
->must_swap
,
716 domain
->orig_tab
[nstr
- 1].offset
))
723 if (idx
>= domain
->hash_size
- incr
)
724 idx
-= domain
->hash_size
- incr
;
732 /* Try the default method: binary search in the sorted array of
737 top
= domain
->nstrings
;
742 act
= (bottom
+ top
) / 2;
743 cmp_val
= strcmp (msgid
, (domain
->data
744 + W (domain
->must_swap
,
745 domain
->orig_tab
[act
].offset
)));
748 else if (cmp_val
> 0)
753 /* No translation was found. */
758 /* The translation was found at index ACT. If we have to convert the
759 string to use a different character set, this is the time. */
760 result
= ((char *) domain
->data
761 + W (domain
->must_swap
, domain
->trans_tab
[act
].offset
));
762 resultlen
= W (domain
->must_swap
, domain
->trans_tab
[act
].length
) + 1;
764 #if defined _LIBC || HAVE_ICONV
765 if (domain
->codeset_cntr
766 != (domainbinding
!= NULL
? domainbinding
->codeset_cntr
: 0))
768 /* The domain's codeset has changed through bind_textdomain_codeset()
769 since the message catalog was initialized or last accessed. We
770 have to reinitialize the converter. */
771 _nl_free_domain_conv (domain
);
772 _nl_init_domain_conv (domain_file
, domain
, domainbinding
);
777 domain
->conv
!= (__gconv_t
) -1
780 domain
->conv
!= (iconv_t
) -1
785 /* We are supposed to do a conversion. First allocate an
786 appropriate table with the same structure as the table
787 of translations in the file, where we can put the pointers
788 to the converted strings in.
789 There is a slight complication with plural entries. They
790 are represented by consecutive NUL terminated strings. We
791 handle this case by converting RESULTLEN bytes, including
794 if (domain
->conv_tab
== NULL
795 && ((domain
->conv_tab
= (char **) calloc (domain
->nstrings
,
798 /* Mark that we didn't succeed allocating a table. */
799 domain
->conv_tab
= (char **) -1;
801 if (__builtin_expect (domain
->conv_tab
== (char **) -1, 0))
802 /* Nothing we can do, no more memory. */
805 if (domain
->conv_tab
[act
] == NULL
)
807 /* We haven't used this string so far, so it is not
808 translated yet. Do this now. */
809 /* We use a bit more efficient memory handling.
810 We allocate always larger blocks which get used over
811 time. This is faster than many small allocations. */
812 __libc_lock_define_initialized (static, lock
)
813 # define INITIAL_BLOCK_SIZE 4080
814 static unsigned char *freemem
;
815 static size_t freemem_size
;
817 const unsigned char *inbuf
;
818 unsigned char *outbuf
;
821 transmem_block_t
*transmem_list
= NULL
;
824 __libc_lock_lock (lock
);
826 inbuf
= (const unsigned char *) result
;
827 outbuf
= freemem
+ sizeof (size_t);
832 transmem_block_t
*newmem
;
834 size_t non_reversible
;
837 if (freemem_size
< sizeof (size_t))
840 res
= __gconv (domain
->conv
,
841 &inbuf
, inbuf
+ resultlen
,
843 outbuf
+ freemem_size
- sizeof (size_t),
846 if (res
== __GCONV_OK
|| res
== __GCONV_EMPTY_INPUT
)
849 if (res
!= __GCONV_FULL_OUTPUT
)
851 __libc_lock_unlock (lock
);
858 const char *inptr
= (const char *) inbuf
;
859 size_t inleft
= resultlen
;
860 char *outptr
= (char *) outbuf
;
863 if (freemem_size
< sizeof (size_t))
866 outleft
= freemem_size
- sizeof (size_t);
867 if (iconv (domain
->conv
,
868 (ICONV_CONST
char **) &inptr
, &inleft
,
872 outbuf
= (unsigned char *) outptr
;
877 __libc_lock_unlock (lock
);
884 /* We must allocate a new buffer or resize the old one. */
885 if (malloc_count
> 0)
888 freemem_size
= malloc_count
* INITIAL_BLOCK_SIZE
;
889 newmem
= (transmem_block_t
*) realloc (transmem_list
,
893 transmem_list
= transmem_list
->next
;
896 struct transmem_list
*old
= transmem_list
;
898 transmem_list
= transmem_list
->next
;
906 freemem_size
= INITIAL_BLOCK_SIZE
;
907 newmem
= (transmem_block_t
*) malloc (freemem_size
);
909 if (__builtin_expect (newmem
== NULL
, 0))
913 __libc_lock_unlock (lock
);
918 /* Add the block to the list of blocks we have to free
920 newmem
->next
= transmem_list
;
921 transmem_list
= newmem
;
923 freemem
= newmem
->data
;
924 freemem_size
-= offsetof (struct transmem_list
, data
);
926 transmem_list
= newmem
;
930 outbuf
= freemem
+ sizeof (size_t);
933 /* We have now in our buffer a converted string. Put this
934 into the table of conversions. */
935 *(size_t *) freemem
= outbuf
- freemem
- sizeof (size_t);
936 domain
->conv_tab
[act
] = (char *) freemem
;
937 /* Shrink freemem, but keep it aligned. */
938 freemem_size
-= outbuf
- freemem
;
940 freemem
+= freemem_size
& (alignof (size_t) - 1);
941 freemem_size
= freemem_size
& ~ (alignof (size_t) - 1);
943 __libc_lock_unlock (lock
);
946 /* Now domain->conv_tab[act] contains the translation of all
947 the plural variants. */
948 result
= domain
->conv_tab
[act
] + sizeof (size_t);
949 resultlen
= *(size_t *) domain
->conv_tab
[act
];
953 /* The result string is converted. */
955 #endif /* _LIBC || HAVE_ICONV */
957 *lengthp
= resultlen
;
962 /* Look up a plural variant. */
965 plural_lookup (domain
, n
, translation
, translation_len
)
966 struct loaded_l10nfile
*domain
;
968 const char *translation
;
969 size_t translation_len
;
971 struct loaded_domain
*domaindata
= (struct loaded_domain
*) domain
->data
;
972 unsigned long int index
;
975 index
= plural_eval (domaindata
->plural
, n
);
976 if (index
>= domaindata
->nplurals
)
977 /* This should never happen. It means the plural expression and the
978 given maximum value do not match. */
981 /* Skip INDEX strings at TRANSLATION. */
986 p
= __rawmemchr (p
, '\0');
988 p
= strchr (p
, '\0');
990 /* And skip over the NUL byte. */
993 if (p
>= translation
+ translation_len
)
994 /* This should never happen. It means the plural expression
995 evaluated to a value larger than the number of variants
996 available for MSGID1. */
997 return (char *) translation
;
1003 /* Return string representation of locale CATEGORY. */
1006 category_to_name (category
)
1015 retval
= "LC_COLLATE";
1020 retval
= "LC_CTYPE";
1025 retval
= "LC_MONETARY";
1030 retval
= "LC_NUMERIC";
1040 retval
= "LC_MESSAGES";
1045 retval
= "LC_RESPONSE";
1050 /* This might not make sense but is perhaps better than any other
1056 /* If you have a better idea for a default value let me know. */
1063 /* Guess value of current locale from value of the environment variables. */
1066 guess_category_value (category
, categoryname
)
1068 const char *categoryname
;
1070 const char *language
;
1073 /* The highest priority value is the `LANGUAGE' environment
1074 variable. But we don't use the value if the currently selected
1075 locale is the C locale. This is a GNU extension. */
1076 language
= getenv ("LANGUAGE");
1077 if (language
!= NULL
&& language
[0] == '\0')
1080 /* We have to proceed with the POSIX methods of looking to `LC_ALL',
1081 `LC_xxx', and `LANG'. On some systems this can be done by the
1082 `setlocale' function itself. */
1084 retval
= setlocale (category
, NULL
);
1086 retval
= _nl_locale_name (category
, categoryname
);
1089 /* Ignore LANGUAGE if the locale is set to "C" because
1090 1. "C" locale usually uses the ASCII encoding, and most international
1091 messages use non-ASCII characters. These characters get displayed
1092 as question marks (if using glibc's iconv()) or as invalid 8-bit
1093 characters (because other iconv()s refuse to convert most non-ASCII
1094 characters to ASCII). In any case, the output is ugly.
1095 2. The precise output of some programs in the "C" locale is specified
1096 by POSIX and should not depend on environment variables like
1097 "LANGUAGE". We allow such programs to use gettext(). */
1098 return language
!= NULL
&& strcmp (retval
, "C") != 0 ? language
: retval
;
1101 /* @@ begin of epilog @@ */
1103 /* We don't want libintl.a to depend on any other library. So we
1104 avoid the non-standard function stpcpy. In GNU C Library this
1105 function is available, though. Also allow the symbol HAVE_STPCPY
1107 #if !_LIBC && !HAVE_STPCPY
1113 while ((*dest
++ = *src
++) != '\0')
1119 #if !_LIBC && !HAVE_MEMPCPY
1121 mempcpy (dest
, src
, n
)
1126 return (void *) ((char *) memcpy (dest
, src
, n
) + n
);
1132 /* If we want to free all resources we have to do some work at
1134 static void __attribute__ ((unused
))
1139 while (_nl_domain_bindings
!= NULL
)
1141 struct binding
*oldp
= _nl_domain_bindings
;
1142 _nl_domain_bindings
= _nl_domain_bindings
->next
;
1143 if (oldp
->dirname
!= _nl_default_dirname
)
1144 /* Yes, this is a pointer comparison. */
1145 free (oldp
->dirname
);
1146 free (oldp
->codeset
);
1150 if (_nl_current_default_domain
!= _nl_default_default_domain
)
1151 /* Yes, again a pointer comparison. */
1152 free ((char *) _nl_current_default_domain
);
1154 /* Remove the search tree with the known translations. */
1155 __tdestroy (root
, free
);
1158 while (transmem_list
!= NULL
)
1160 old
= transmem_list
;
1161 transmem_list
= transmem_list
->next
;
1166 text_set_element (__libc_subfreeres
, free_mem
);