3 /* Implementation of the internal dcigettext function.
4 Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Library General Public License as published
8 by the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 /* Tell glibc's <string.h> to provide a prototype for mempcpy().
22 This must come before <config.h> because <config.h> may include
23 <features.h>, and once <features.h> has been included, it's too late. */
25 # define _GNU_SOURCE 1
32 #include <sys/types.h>
35 # define alloca __builtin_alloca
36 # define HAVE_ALLOCA 1
40 # define alloca _alloca
42 # if defined HAVE_ALLOCA_H || defined _LIBC
61 # define __set_errno(val) errno = (val)
68 #if defined HAVE_UNISTD_H || defined _LIBC
75 /* Guess whether integer division by zero raises signal SIGFPE.
76 Set to 1 only if you know for sure. In case of doubt, set to 0. */
77 # if defined __alpha__ || defined __arm__ || defined __i386__ \
78 || defined __m68k__ || defined __s390__
79 # define INTDIV0_RAISES_SIGFPE 1
81 # define INTDIV0_RAISES_SIGFPE 0
84 #if !INTDIV0_RAISES_SIGFPE
88 #if defined HAVE_SYS_PARAM_H || defined _LIBC
89 # include <sys/param.h>
93 #include "plural-exp.h"
97 # include "libgnuintl.h"
99 #include "hash-string.h"
101 /* Thread safetyness. */
103 # include <bits/libc-lock.h>
105 /* Provide dummy implementation if this is outside glibc. */
106 # define __libc_lock_define_initialized(CLASS, NAME)
107 # define __libc_lock_lock(NAME)
108 # define __libc_lock_unlock(NAME)
109 # define __libc_rwlock_define_initialized(CLASS, NAME)
110 # define __libc_rwlock_rdlock(NAME)
111 # define __libc_rwlock_unlock(NAME)
114 /* Alignment of types. */
115 #if defined __GNUC__ && __GNUC__ >= 2
116 # define alignof(TYPE) __alignof__ (TYPE)
118 # define alignof(TYPE) \
119 ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2)
122 /* The internal variables in the standalone libintl.a must have different
123 names than the internal variables in GNU libc, otherwise programs
124 using libintl.a cannot be linked statically. */
126 # define _nl_default_default_domain libintl_nl_default_default_domain
127 # define _nl_current_default_domain libintl_nl_current_default_domain
128 # define _nl_default_dirname libintl_nl_default_dirname
129 # define _nl_domain_bindings libintl_nl_domain_bindings
132 /* Some compilers, like SunOS4 cc, don't have offsetof in <stddef.h>. */
134 # define offsetof(type,ident) ((size_t)&(((type*)0)->ident))
137 /* @@ end of prolog @@ */
140 /* Rename the non ANSI C functions. This is required by the standard
141 because some ANSI C functions will require linking with this object
142 file and the name space must not be polluted. */
143 # define getcwd __getcwd
145 # define stpcpy __stpcpy
147 # define tfind __tfind
149 # if !defined HAVE_GETCWD
151 # define getcwd(buf, max) getwd (buf)
154 # define getcwd(buf, max) (getcwd) (buf, max, 0)
160 static char *stpcpy (char *dest
, const char *src
);
162 # ifndef HAVE_MEMPCPY
163 static void *mempcpy (void *dest
, const void *src
, size_t n
);
167 /* Amount to increase buffer size by in each try. */
170 /* The following is from pathmax.h. */
171 /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define
172 PATH_MAX but might cause redefinition warnings when sys/param.h is
173 later included (as on MORE/BSD 4.3). */
174 #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__)
178 #ifndef _POSIX_PATH_MAX
179 # define _POSIX_PATH_MAX 255
182 #if !defined PATH_MAX && defined _PC_PATH_MAX
183 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
186 /* Don't include sys/param.h if it already has been. */
187 #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
188 # include <sys/param.h>
191 #if !defined PATH_MAX && defined MAXPATHLEN
192 # define PATH_MAX MAXPATHLEN
196 # define PATH_MAX _POSIX_PATH_MAX
200 ISSLASH(C) tests whether C is a directory separator character.
201 IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not,
202 it may be concatenated to a directory pathname.
203 IS_PATH_WITH_DIR(P) tests whether P contains a directory specification.
205 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__
206 /* Win32, OS/2, DOS */
207 # define ISSLASH(C) ((C) == '/' || (C) == '\\')
208 # define HAS_DEVICE(P) \
209 ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \
211 # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P))
212 # define IS_PATH_WITH_DIR(P) \
213 (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))
216 # define ISSLASH(C) ((C) == '/')
217 # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0])
218 # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)
221 /* This is the type used for the search tree where known translations
223 struct known_translation_t
225 /* Domain in which to search. */
231 /* State of the catalog counter at the point the string was found. */
234 /* Catalog where the string was found. */
235 struct loaded_l10nfile
*domain
;
237 /* And finally the translation. */
238 const char *translation
;
239 size_t translation_length
;
241 /* Pointer to the string in question. */
245 /* Root of the search tree with known translations. We can use this
246 only if the system provides the `tsearch' function family. */
247 #if defined HAVE_TSEARCH || defined _LIBC
253 # define tsearch __tsearch
256 /* Function to compare two entries in the table of known translations. */
258 transcmp (const void *p1
, const void *p2
)
260 const struct known_translation_t
*s1
;
261 const struct known_translation_t
*s2
;
264 s1
= (const struct known_translation_t
*) p1
;
265 s2
= (const struct known_translation_t
*) p2
;
267 result
= strcmp (s1
->msgid
, s2
->msgid
);
270 result
= strcmp (s1
->domainname
, s2
->domainname
);
272 /* We compare the category last (though this is the cheapest
273 operation) since it is hopefully always the same (namely
275 result
= s1
->category
- s2
->category
;
283 # define INTVARDEF(name)
286 # define INTUSE(name) name
289 /* Name of the default domain used for gettext(3) prior any call to
290 textdomain(3). The default value for this is "messages". */
291 const char _nl_default_default_domain
[] attribute_hidden
= "messages";
293 /* Value used as the default domain for gettext(3). */
294 const char *_nl_current_default_domain attribute_hidden
295 = _nl_default_default_domain
;
297 /* Contains the default location of the message catalogs. */
299 extern const char _nl_default_dirname
[];
301 const char _nl_default_dirname
[] = LOCALEDIR
;
302 INTVARDEF (_nl_default_dirname
)
305 /* List with bindings of specific domains created by bindtextdomain()
307 struct binding
*_nl_domain_bindings
;
309 /* Prototypes for local functions. */
310 static char *plural_lookup (struct loaded_l10nfile
*domain
,
312 const char *translation
, size_t translation_len
)
314 static const char *guess_category_value (int category
,
315 const char *categoryname
)
318 # include "../locale/localeinfo.h"
319 # define category_to_name(category) _nl_category_names[category]
321 static const char *category_to_name (int category
) internal_function
;
325 /* For those loosing systems which don't have `alloca' we have to add
326 some additional code emulating it. */
328 /* Nothing has to be done. */
329 # define freea(p) /* nothing */
330 # define ADD_BLOCK(list, address) /* nothing */
331 # define FREE_BLOCKS(list) /* nothing */
336 struct block_list
*next
;
338 # define ADD_BLOCK(list, addr) \
340 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
341 /* If we cannot get a free block we cannot add the new element to \
343 if (newp != NULL) { \
344 newp->address = (addr); \
345 newp->next = (list); \
349 # define FREE_BLOCKS(list) \
351 while (list != NULL) { \
352 struct block_list *old = list; \
354 free (old->address); \
359 # define alloca(size) (malloc (size))
360 # define freea(p) free (p)
361 #endif /* have alloca */
365 /* List of blocks allocated for translations. */
366 typedef struct transmem_list
368 struct transmem_list
*next
;
371 static struct transmem_list
*transmem_list
;
373 typedef unsigned char transmem_block_t
;
377 /* Names for the libintl functions are a problem. They must not clash
378 with existing names and they should follow ANSI C. But this source
379 code is also used in GNU C Library where the names have a __
380 prefix. So we have to make a difference here. */
382 # define DCIGETTEXT __dcigettext
384 # define DCIGETTEXT libintl_dcigettext
387 /* Lock variable to protect the global data in the gettext implementation. */
389 __libc_rwlock_define_initialized (, _nl_state_lock attribute_hidden
)
392 /* Checking whether the binaries runs SUID must be done and glibc provides
393 easier methods therefore we make a difference here. */
395 # define ENABLE_SECURE __libc_enable_secure
396 # define DETERMINE_SECURE
404 # ifndef HAVE_GETEUID
405 # define geteuid() getuid()
407 # ifndef HAVE_GETEGID
408 # define getegid() getgid()
410 static int enable_secure
;
411 # define ENABLE_SECURE (enable_secure == 1)
412 # define DETERMINE_SECURE \
413 if (enable_secure == 0) \
415 if (getuid () != geteuid () || getgid () != getegid ()) \
418 enable_secure = -1; \
422 /* Get the function to evaluate the plural expression. */
423 #include "eval-plural.h"
425 /* Look up MSGID in the DOMAINNAME message catalog for the current
426 CATEGORY locale and, if PLURAL is nonzero, search over string
427 depending on the plural form determined by N. */
429 DCIGETTEXT (const char *domainname
, const char *msgid1
, const char *msgid2
,
430 int plural
, unsigned long int n
, int category
)
433 struct block_list
*block_list
= NULL
;
435 struct loaded_l10nfile
*domain
;
436 struct binding
*binding
;
437 const char *categoryname
;
438 const char *categoryvalue
;
439 char *dirname
, *xdomainname
;
444 #if defined HAVE_TSEARCH || defined _LIBC
445 struct known_translation_t
*search
;
446 struct known_translation_t
**foundp
= NULL
;
449 size_t domainname_len
;
451 /* If no real MSGID is given return NULL. */
456 if (category
< 0 || category
>= __LC_LAST
|| category
== LC_ALL
)
460 /* Use the Germanic plural rule. */
461 : n
== 1 ? (char *) msgid1
: (char *) msgid2
);
464 __libc_rwlock_rdlock (_nl_state_lock
);
466 /* If DOMAINNAME is NULL, we are interested in the default domain. If
467 CATEGORY is not LC_MESSAGES this might not make much sense but the
468 definition left this undefined. */
469 if (domainname
== NULL
)
470 domainname
= _nl_current_default_domain
;
472 /* OS/2 specific: backward compatibility with older libintl versions */
473 #ifdef LC_MESSAGES_COMPAT
474 if (category
== LC_MESSAGES_COMPAT
)
475 category
= LC_MESSAGES
;
478 #if defined HAVE_TSEARCH || defined _LIBC
479 msgid_len
= strlen (msgid1
) + 1;
481 /* Try to find the translation among those which we found at
483 search
= (struct known_translation_t
*)
484 alloca (offsetof (struct known_translation_t
, msgid
) + msgid_len
);
485 memcpy (search
->msgid
, msgid1
, msgid_len
);
486 search
->domainname
= (char *) domainname
;
487 search
->category
= category
;
489 foundp
= (struct known_translation_t
**) tfind (search
, &root
, transcmp
);
491 if (foundp
!= NULL
&& (*foundp
)->counter
== _nl_msg_cat_cntr
)
493 /* Now deal with plural. */
495 retval
= plural_lookup ((*foundp
)->domain
, n
, (*foundp
)->translation
,
496 (*foundp
)->translation_length
);
498 retval
= (char *) (*foundp
)->translation
;
500 __libc_rwlock_unlock (_nl_state_lock
);
505 /* Preserve the `errno' value. */
508 /* See whether this is a SUID binary or not. */
511 /* First find matching binding. */
512 for (binding
= _nl_domain_bindings
; binding
!= NULL
; binding
= binding
->next
)
514 int compare
= strcmp (domainname
, binding
->domainname
);
520 /* It is not in the list. */
527 dirname
= (char *) INTUSE(_nl_default_dirname
);
528 else if (IS_ABSOLUTE_PATH (binding
->dirname
))
529 dirname
= binding
->dirname
;
532 /* We have a relative path. Make it absolute now. */
533 size_t dirname_len
= strlen (binding
->dirname
) + 1;
537 path_max
= (unsigned int) PATH_MAX
;
538 path_max
+= 2; /* The getcwd docs say to do this. */
542 dirname
= (char *) alloca (path_max
+ dirname_len
);
543 ADD_BLOCK (block_list
, dirname
);
546 ret
= getcwd (dirname
, path_max
);
547 if (ret
!= NULL
|| errno
!= ERANGE
)
550 path_max
+= path_max
/ 2;
551 path_max
+= PATH_INCR
;
555 /* We cannot get the current working directory. Don't signal an
556 error but simply return the default string. */
557 goto return_untranslated
;
559 stpcpy (stpcpy (strchr (dirname
, '\0'), "/"), binding
->dirname
);
562 /* Now determine the symbolic name of CATEGORY and its value. */
563 categoryname
= category_to_name (category
);
564 categoryvalue
= guess_category_value (category
, categoryname
);
566 domainname_len
= strlen (domainname
);
567 xdomainname
= (char *) alloca (strlen (categoryname
)
568 + domainname_len
+ 5);
569 ADD_BLOCK (block_list
, xdomainname
);
571 stpcpy (mempcpy (stpcpy (stpcpy (xdomainname
, categoryname
), "/"),
572 domainname
, domainname_len
),
575 /* Creating working area. */
576 single_locale
= (char *) alloca (strlen (categoryvalue
) + 1);
577 ADD_BLOCK (block_list
, single_locale
);
580 /* Search for the given string. This is a loop because we perhaps
581 got an ordered list of languages to consider for the translation. */
584 /* Make CATEGORYVALUE point to the next element of the list. */
585 while (categoryvalue
[0] != '\0' && categoryvalue
[0] == ':')
587 if (categoryvalue
[0] == '\0')
589 /* The whole contents of CATEGORYVALUE has been searched but
590 no valid entry has been found. We solve this situation
591 by implicitly appending a "C" entry, i.e. no translation
593 single_locale
[0] = 'C';
594 single_locale
[1] = '\0';
598 char *cp
= single_locale
;
599 while (categoryvalue
[0] != '\0' && categoryvalue
[0] != ':')
600 *cp
++ = *categoryvalue
++;
603 /* When this is a SUID binary we must not allow accessing files
604 outside the dedicated directories. */
605 if (ENABLE_SECURE
&& IS_PATH_WITH_DIR (single_locale
))
606 /* Ingore this entry. */
610 /* If the current locale value is C (or POSIX) we don't load a
611 domain. Return the MSGID. */
612 if (strcmp (single_locale
, "C") == 0
613 || strcmp (single_locale
, "POSIX") == 0)
616 /* Find structure describing the message catalog matching the
617 DOMAINNAME and CATEGORY. */
618 domain
= _nl_find_domain (dirname
, single_locale
, xdomainname
, binding
);
622 retval
= _nl_find_msg (domain
, binding
, msgid1
, &retlen
);
628 for (cnt
= 0; domain
->successor
[cnt
] != NULL
; ++cnt
)
630 retval
= _nl_find_msg (domain
->successor
[cnt
], binding
,
635 domain
= domain
->successor
[cnt
];
643 /* Found the translation of MSGID1 in domain DOMAIN:
644 starting at RETVAL, RETLEN bytes. */
645 FREE_BLOCKS (block_list
);
646 #if defined HAVE_TSEARCH || defined _LIBC
649 /* Create a new entry and add it to the search tree. */
650 struct known_translation_t
*newp
;
652 newp
= (struct known_translation_t
*)
653 malloc (offsetof (struct known_translation_t
, msgid
)
654 + msgid_len
+ domainname_len
+ 1);
658 mempcpy (newp
->msgid
, msgid1
, msgid_len
);
659 memcpy (newp
->domainname
, domainname
, domainname_len
+ 1);
660 newp
->category
= category
;
661 newp
->counter
= _nl_msg_cat_cntr
;
662 newp
->domain
= domain
;
663 newp
->translation
= retval
;
664 newp
->translation_length
= retlen
;
666 /* Insert the entry in the search tree. */
667 foundp
= (struct known_translation_t
**)
668 tsearch (newp
, &root
, transcmp
);
670 || __builtin_expect (*foundp
!= newp
, 0))
671 /* The insert failed. */
677 /* We can update the existing entry. */
678 (*foundp
)->counter
= _nl_msg_cat_cntr
;
679 (*foundp
)->domain
= domain
;
680 (*foundp
)->translation
= retval
;
681 (*foundp
)->translation_length
= retlen
;
684 __set_errno (saved_errno
);
686 /* Now deal with plural. */
688 retval
= plural_lookup (domain
, n
, retval
, retlen
);
690 __libc_rwlock_unlock (_nl_state_lock
);
697 /* Return the untranslated MSGID. */
698 FREE_BLOCKS (block_list
);
699 __libc_rwlock_unlock (_nl_state_lock
);
703 extern void _nl_log_untranslated (const char *logfilename
,
704 const char *domainname
,
705 const char *msgid1
, const char *msgid2
,
707 const char *logfilename
= getenv ("GETTEXT_LOG_UNTRANSLATED");
709 if (logfilename
!= NULL
&& logfilename
[0] != '\0')
710 _nl_log_untranslated (logfilename
, domainname
, msgid1
, msgid2
, plural
);
713 __set_errno (saved_errno
);
716 /* Use the Germanic plural rule. */
717 : n
== 1 ? (char *) msgid1
: (char *) msgid2
);
723 _nl_find_msg (struct loaded_l10nfile
*domain_file
,
724 struct binding
*domainbinding
, const char *msgid
,
727 struct loaded_domain
*domain
;
733 if (domain_file
->decided
== 0)
734 _nl_load_domain (domain_file
, domainbinding
);
736 if (domain_file
->data
== NULL
)
739 domain
= (struct loaded_domain
*) domain_file
->data
;
741 nstrings
= domain
->nstrings
;
743 /* Locate the MSGID and its translation. */
744 if (domain
->hash_tab
!= NULL
)
746 /* Use the hashing table. */
747 nls_uint32 len
= strlen (msgid
);
748 nls_uint32 hash_val
= hash_string (msgid
);
749 nls_uint32 idx
= hash_val
% domain
->hash_size
;
750 nls_uint32 incr
= 1 + (hash_val
% (domain
->hash_size
- 2));
755 W (domain
->must_swap_hash_tab
, domain
->hash_tab
[idx
]);
758 /* Hash table entry is empty. */
763 /* Compare msgid with the original string at index nstr.
764 We compare the lengths with >=, not ==, because plural entries
765 are represented by strings with an embedded NUL. */
767 ? W (domain
->must_swap
, domain
->orig_tab
[nstr
].length
) >= len
769 domain
->data
+ W (domain
->must_swap
,
770 domain
->orig_tab
[nstr
].offset
))
772 : domain
->orig_sysdep_tab
[nstr
- nstrings
].length
> len
774 domain
->orig_sysdep_tab
[nstr
- nstrings
].pointer
)
781 if (idx
>= domain
->hash_size
- incr
)
782 idx
-= domain
->hash_size
- incr
;
790 /* Try the default method: binary search in the sorted array of
800 act
= (bottom
+ top
) / 2;
801 cmp_val
= strcmp (msgid
, (domain
->data
802 + W (domain
->must_swap
,
803 domain
->orig_tab
[act
].offset
)));
806 else if (cmp_val
> 0)
811 /* No translation was found. */
816 /* The translation was found at index ACT. If we have to convert the
817 string to use a different character set, this is the time. */
821 (domain
->data
+ W (domain
->must_swap
, domain
->trans_tab
[act
].offset
));
822 resultlen
= W (domain
->must_swap
, domain
->trans_tab
[act
].length
) + 1;
826 result
= (char *) domain
->trans_sysdep_tab
[act
- nstrings
].pointer
;
827 resultlen
= domain
->trans_sysdep_tab
[act
- nstrings
].length
;
830 #if defined _LIBC || HAVE_ICONV
831 if (domain
->codeset_cntr
832 != (domainbinding
!= NULL
? domainbinding
->codeset_cntr
: 0))
834 /* The domain's codeset has changed through bind_textdomain_codeset()
835 since the message catalog was initialized or last accessed. We
836 have to reinitialize the converter. */
837 _nl_free_domain_conv (domain
);
838 _nl_init_domain_conv (domain_file
, domain
, domainbinding
);
843 domain
->conv
!= (__gconv_t
) -1
846 domain
->conv
!= (iconv_t
) -1
851 /* We are supposed to do a conversion. First allocate an
852 appropriate table with the same structure as the table
853 of translations in the file, where we can put the pointers
854 to the converted strings in.
855 There is a slight complication with plural entries. They
856 are represented by consecutive NUL terminated strings. We
857 handle this case by converting RESULTLEN bytes, including
860 if (domain
->conv_tab
== NULL
861 && ((domain
->conv_tab
=
862 (char **) calloc (nstrings
+ domain
->n_sysdep_strings
,
865 /* Mark that we didn't succeed allocating a table. */
866 domain
->conv_tab
= (char **) -1;
868 if (__builtin_expect (domain
->conv_tab
== (char **) -1, 0))
869 /* Nothing we can do, no more memory. */
872 if (domain
->conv_tab
[act
] == NULL
)
874 /* We haven't used this string so far, so it is not
875 translated yet. Do this now. */
876 /* We use a bit more efficient memory handling.
877 We allocate always larger blocks which get used over
878 time. This is faster than many small allocations. */
879 __libc_lock_define_initialized (static, lock
)
880 # define INITIAL_BLOCK_SIZE 4080
881 static unsigned char *freemem
;
882 static size_t freemem_size
;
884 const unsigned char *inbuf
;
885 unsigned char *outbuf
;
888 transmem_block_t
*transmem_list
= NULL
;
891 __libc_lock_lock (lock
);
893 inbuf
= (const unsigned char *) result
;
894 outbuf
= freemem
+ sizeof (size_t);
899 transmem_block_t
*newmem
;
901 size_t non_reversible
;
904 if (freemem_size
< sizeof (size_t))
907 res
= __gconv (domain
->conv
,
908 &inbuf
, inbuf
+ resultlen
,
910 outbuf
+ freemem_size
- sizeof (size_t),
913 if (res
== __GCONV_OK
|| res
== __GCONV_EMPTY_INPUT
)
916 if (res
!= __GCONV_FULL_OUTPUT
)
918 __libc_lock_unlock (lock
);
925 const char *inptr
= (const char *) inbuf
;
926 size_t inleft
= resultlen
;
927 char *outptr
= (char *) outbuf
;
930 if (freemem_size
< sizeof (size_t))
933 outleft
= freemem_size
- sizeof (size_t);
934 if (iconv (domain
->conv
,
935 (ICONV_CONST
char **) &inptr
, &inleft
,
939 outbuf
= (unsigned char *) outptr
;
944 __libc_lock_unlock (lock
);
951 /* We must allocate a new buffer or resize the old one. */
952 if (malloc_count
> 0)
955 freemem_size
= malloc_count
* INITIAL_BLOCK_SIZE
;
956 newmem
= (transmem_block_t
*) realloc (transmem_list
,
960 transmem_list
= transmem_list
->next
;
963 struct transmem_list
*old
= transmem_list
;
965 transmem_list
= transmem_list
->next
;
973 freemem_size
= INITIAL_BLOCK_SIZE
;
974 newmem
= (transmem_block_t
*) malloc (freemem_size
);
976 if (__builtin_expect (newmem
== NULL
, 0))
980 __libc_lock_unlock (lock
);
985 /* Add the block to the list of blocks we have to free
987 newmem
->next
= transmem_list
;
988 transmem_list
= newmem
;
990 freemem
= newmem
->data
;
991 freemem_size
-= offsetof (struct transmem_list
, data
);
993 transmem_list
= newmem
;
997 outbuf
= freemem
+ sizeof (size_t);
1000 /* We have now in our buffer a converted string. Put this
1001 into the table of conversions. */
1002 *(size_t *) freemem
= outbuf
- freemem
- sizeof (size_t);
1003 domain
->conv_tab
[act
] = (char *) freemem
;
1004 /* Shrink freemem, but keep it aligned. */
1005 freemem_size
-= outbuf
- freemem
;
1007 freemem
+= freemem_size
& (alignof (size_t) - 1);
1008 freemem_size
= freemem_size
& ~ (alignof (size_t) - 1);
1010 __libc_lock_unlock (lock
);
1013 /* Now domain->conv_tab[act] contains the translation of all
1014 the plural variants. */
1015 result
= domain
->conv_tab
[act
] + sizeof (size_t);
1016 resultlen
= *(size_t *) domain
->conv_tab
[act
];
1020 /* The result string is converted. */
1022 #endif /* _LIBC || HAVE_ICONV */
1024 *lengthp
= resultlen
;
1029 /* Look up a plural variant. */
1032 plural_lookup (struct loaded_l10nfile
*domain
, unsigned long int n
,
1033 const char *translation
, size_t translation_len
)
1035 struct loaded_domain
*domaindata
= (struct loaded_domain
*) domain
->data
;
1036 unsigned long int index
;
1039 index
= plural_eval (domaindata
->plural
, n
);
1040 if (index
>= domaindata
->nplurals
)
1041 /* This should never happen. It means the plural expression and the
1042 given maximum value do not match. */
1045 /* Skip INDEX strings at TRANSLATION. */
1050 p
= __rawmemchr (p
, '\0');
1052 p
= strchr (p
, '\0');
1054 /* And skip over the NUL byte. */
1057 if (p
>= translation
+ translation_len
)
1058 /* This should never happen. It means the plural expression
1059 evaluated to a value larger than the number of variants
1060 available for MSGID1. */
1061 return (char *) translation
;
1067 /* Return string representation of locale CATEGORY. */
1070 category_to_name (int category
)
1078 retval
= "LC_COLLATE";
1083 retval
= "LC_CTYPE";
1088 retval
= "LC_MONETARY";
1093 retval
= "LC_NUMERIC";
1103 retval
= "LC_MESSAGES";
1108 retval
= "LC_RESPONSE";
1113 /* This might not make sense but is perhaps better than any other
1119 /* If you have a better idea for a default value let me know. */
1127 /* Guess value of current locale from value of the environment variables. */
1130 guess_category_value (int category
, const char *categoryname
)
1132 const char *language
;
1135 /* The highest priority value is the `LANGUAGE' environment
1136 variable. But we don't use the value if the currently selected
1137 locale is the C locale. This is a GNU extension. */
1138 language
= getenv ("LANGUAGE");
1139 if (language
!= NULL
&& language
[0] == '\0')
1142 /* We have to proceed with the POSIX methods of looking to `LC_ALL',
1143 `LC_xxx', and `LANG'. On some systems this can be done by the
1144 `setlocale' function itself. */
1146 retval
= __current_locale_name (category
);
1148 retval
= _nl_locale_name (category
, categoryname
);
1151 /* Ignore LANGUAGE if the locale is set to "C" because
1152 1. "C" locale usually uses the ASCII encoding, and most international
1153 messages use non-ASCII characters. These characters get displayed
1154 as question marks (if using glibc's iconv()) or as invalid 8-bit
1155 characters (because other iconv()s refuse to convert most non-ASCII
1156 characters to ASCII). In any case, the output is ugly.
1157 2. The precise output of some programs in the "C" locale is specified
1158 by POSIX and should not depend on environment variables like
1159 "LANGUAGE". We allow such programs to use gettext(). */
1160 return language
!= NULL
&& strcmp (retval
, "C") != 0 ? language
: retval
;
1163 /* @@ begin of epilog @@ */
1165 /* We don't want libintl.a to depend on any other library. So we
1166 avoid the non-standard function stpcpy. In GNU C Library this
1167 function is available, though. Also allow the symbol HAVE_STPCPY
1169 #if !_LIBC && !HAVE_STPCPY
1171 stpcpy (char *dest
, const char *src
)
1173 while ((*dest
++ = *src
++) != '\0')
1179 #if !_LIBC && !HAVE_MEMPCPY
1181 mempcpy (void *dest
, const void *src
, size_t n
)
1183 return (void *) ((char *) memcpy (dest
, src
, n
) + n
);
1189 /* If we want to free all resources we have to do some work at
1191 libc_freeres_fn (free_mem
)
1195 while (_nl_domain_bindings
!= NULL
)
1197 struct binding
*oldp
= _nl_domain_bindings
;
1198 _nl_domain_bindings
= _nl_domain_bindings
->next
;
1199 if (oldp
->dirname
!= INTUSE(_nl_default_dirname
))
1200 /* Yes, this is a pointer comparison. */
1201 free (oldp
->dirname
);
1202 free (oldp
->codeset
);
1206 if (_nl_current_default_domain
!= _nl_default_default_domain
)
1207 /* Yes, again a pointer comparison. */
1208 free ((char *) _nl_current_default_domain
);
1210 /* Remove the search tree with the known translations. */
1211 __tdestroy (root
, free
);
1214 while (transmem_list
!= NULL
)
1216 old
= transmem_list
;
1217 transmem_list
= transmem_list
->next
;