Spaces:
Running
Running
/* Convenience header for conditional use of GNU <libintl.h>. | |
Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2020 Free Software | |
Foundation, Inc. | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU Lesser General Public License as published by | |
the Free Software Foundation; either version 2.1 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
GNU Lesser General Public License for more details. | |
You should have received a copy of the GNU Lesser General Public License | |
along with this program. If not, see <https://www.gnu.org/licenses/>. */ | |
/* NLS can be disabled through the configure --disable-nls option | |
or through "#define ENABLE NLS 0" before including this file. */ | |
/* Get declarations of GNU message catalog functions. */ | |
/* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by | |
the gettext() and ngettext() macros. This is an alternative to calling | |
textdomain(), and is useful for libraries. */ | |
/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which | |
chokes if dcgettext is defined as a macro. So include it now, to make | |
later inclusions of <locale.h> a NOP. We don't include <libintl.h> | |
as well because people using "gettext.h" will not include <libintl.h>, | |
and also including <libintl.h> would fail on SunOS 4, whereas <locale.h> | |
is OK. */ | |
/* Many header files from the libstdc++ coming with g++ 3.3 or newer include | |
<libintl.h>, which chokes if dcgettext is defined as a macro. So include | |
it now, to make later inclusions of <libintl.h> a NOP. */ | |
/* Disabled NLS. | |
The casts to 'const char *' serve the purpose of producing warnings | |
for invalid uses of the value returned from these functions. | |
On pre-ANSI systems without 'const', the config.h file is supposed to | |
contain "#define const". */ | |
/* Prefer gnulib's setlocale override over libintl's setlocale override. */ | |
/* A pseudo function call that serves as a marker for the automated | |
extraction of messages, but does not call gettext(). The run-time | |
translation is done at a different place in the code. | |
The argument, String, should be a literal string. Concatenated strings | |
and other string expressions won't work. | |
The macro's expansion is not parenthesized, so that it is suitable as | |
initializer for static 'char[]' or 'const char[]' variables. */ | |
/* The separator between msgctxt and msgid in a .mo file. */ | |
/* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a | |
MSGID. MSGCTXT and MSGID must be string literals. MSGCTXT should be | |
short and rarely need to change. | |
The letter 'p' stands for 'particular' or 'special'. */ | |
__inline | |
inline | |
static const char * | |
pgettext_aux (const char *domain, | |
const char *msg_ctxt_id, const char *msgid, | |
int category) | |
{ | |
const char *translation = dcgettext (domain, msg_ctxt_id, category); | |
if (translation == msg_ctxt_id) | |
return msgid; | |
else | |
return translation; | |
} | |
__inline | |
inline | |
static const char * | |
npgettext_aux (const char *domain, | |
const char *msg_ctxt_id, const char *msgid, | |
const char *msgid_plural, unsigned long int n, | |
int category) | |
{ | |
const char *translation = | |
dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); | |
if (translation == msg_ctxt_id || translation == msgid_plural) | |
return (n == 1 ? msgid : msgid_plural); | |
else | |
return translation; | |
} | |
/* The same thing extended for non-constant arguments. Here MSGCTXT and MSGID | |
can be arbitrary expressions. But for string literals these macros are | |
less efficient than those above. */ | |
/* GNULIB_NO_VLA can be defined to disable use of VLAs even if supported. | |
This relates to the -Wvla and -Wvla-larger-than warnings, enabled in | |
the default GCC many warnings set. This allows programs to disable use | |
of VLAs, which may be unintended, or may be awkward to support portably, | |
or may have security implications due to non-deterministic stack usage. */ | |
__inline | |
inline | |
static const char * | |
dcpgettext_expr (const char *domain, | |
const char *msgctxt, const char *msgid, | |
int category) | |
{ | |
size_t msgctxt_len = strlen (msgctxt) + 1; | |
size_t msgid_len = strlen (msgid) + 1; | |
const char *translation; | |
char msg_ctxt_id[msgctxt_len + msgid_len]; | |
char buf[1024]; | |
char *msg_ctxt_id = | |
(msgctxt_len + msgid_len <= sizeof (buf) | |
? buf | |
: (char *) malloc (msgctxt_len + msgid_len)); | |
if (msg_ctxt_id != NULL) | |
{ | |
int found_translation; | |
memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); | |
msg_ctxt_id[msgctxt_len - 1] = '\004'; | |
memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); | |
translation = dcgettext (domain, msg_ctxt_id, category); | |
found_translation = (translation != msg_ctxt_id); | |
if (msg_ctxt_id != buf) | |
free (msg_ctxt_id); | |
if (found_translation) | |
return translation; | |
} | |
return msgid; | |
} | |
__inline | |
inline | |
static const char * | |
dcnpgettext_expr (const char *domain, | |
const char *msgctxt, const char *msgid, | |
const char *msgid_plural, unsigned long int n, | |
int category) | |
{ | |
size_t msgctxt_len = strlen (msgctxt) + 1; | |
size_t msgid_len = strlen (msgid) + 1; | |
const char *translation; | |
char msg_ctxt_id[msgctxt_len + msgid_len]; | |
char buf[1024]; | |
char *msg_ctxt_id = | |
(msgctxt_len + msgid_len <= sizeof (buf) | |
? buf | |
: (char *) malloc (msgctxt_len + msgid_len)); | |
if (msg_ctxt_id != NULL) | |
{ | |
int found_translation; | |
memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); | |
msg_ctxt_id[msgctxt_len - 1] = '\004'; | |
memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); | |
translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); | |
found_translation = !(translation == msg_ctxt_id || translation == msgid_plural); | |
if (msg_ctxt_id != buf) | |
free (msg_ctxt_id); | |
if (found_translation) | |
return translation; | |
} | |
return (n == 1 ? msgid : msgid_plural); | |
} | |