gettext.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. /* Convenience header for conditional use of GNU <libintl.h>.
  2. Copyright (C) 1995-1998, 2000-2002, 2004-2006 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. #ifndef _LIBGETTEXT_H
  16. #define _LIBGETTEXT_H 1
  17. /* NLS can be disabled through the configure --disable-nls option. */
  18. #if ENABLE_NLS
  19. /* Get declarations of GNU message catalog functions. */
  20. # include <libintl.h>
  21. /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by
  22. the gettext() and ngettext() macros. This is an alternative to calling
  23. textdomain(), and is useful for libraries. */
  24. # ifdef DEFAULT_TEXT_DOMAIN
  25. # undef gettext
  26. # define gettext(Msgid) \
  27. dgettext (DEFAULT_TEXT_DOMAIN, Msgid)
  28. # undef ngettext
  29. # define ngettext(Msgid1, Msgid2, N) \
  30. dngettext (DEFAULT_TEXT_DOMAIN, Msgid1, Msgid2, N)
  31. # endif
  32. #else
  33. /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
  34. chokes if dcgettext is defined as a macro. So include it now, to make
  35. later inclusions of <locale.h> a NOP. We don't include <libintl.h>
  36. as well because people using "gettext.h" will not include <libintl.h>,
  37. and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
  38. is OK. */
  39. #if defined(__sun)
  40. # include <locale.h>
  41. #endif
  42. /* Many header files from the libstdc++ coming with g++ 3.3 or newer include
  43. <libintl.h>, which chokes if dcgettext is defined as a macro. So include
  44. it now, to make later inclusions of <libintl.h> a NOP. */
  45. #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3)
  46. # include <cstdlib>
  47. # if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H
  48. # include <libintl.h>
  49. # endif
  50. #endif
  51. /* Disabled NLS.
  52. The casts to 'const char *' serve the purpose of producing warnings
  53. for invalid uses of the value returned from these functions.
  54. On pre-ANSI systems without 'const', the config.h file is supposed to
  55. contain "#define const". */
  56. # define gettext(Msgid) ((const char *) (Msgid))
  57. # define dgettext(Domainname, Msgid) ((const char *) (Msgid))
  58. # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
  59. # define ngettext(Msgid1, Msgid2, N) \
  60. ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
  61. # define dngettext(Domainname, Msgid1, Msgid2, N) \
  62. ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
  63. # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
  64. ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
  65. # define textdomain(Domainname) ((const char *) (Domainname))
  66. # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
  67. # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
  68. #endif
  69. /* A pseudo function call that serves as a marker for the automated
  70. extraction of messages, but does not call gettext(). The run-time
  71. translation is done at a different place in the code.
  72. The argument, String, should be a literal string. Concatenated strings
  73. and other string expressions won't work.
  74. The macro's expansion is not parenthesized, so that it is suitable as
  75. initializer for static 'char[]' or 'const char[]' variables. */
  76. #define gettext_noop(String) String
  77. /* The separator between msgctxt and msgid in a .mo file. */
  78. #define GETTEXT_CONTEXT_GLUE "\004"
  79. /* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a
  80. MSGID. MSGCTXT and MSGID must be string literals. MSGCTXT should be
  81. short and rarely need to change.
  82. The letter 'p' stands for 'particular' or 'special'. */
  83. #ifdef DEFAULT_TEXT_DOMAIN
  84. # define pgettext(Msgctxt, Msgid) \
  85. pgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
  86. #else
  87. # define pgettext(Msgctxt, Msgid) \
  88. pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
  89. #endif
  90. #define dpgettext(Domainname, Msgctxt, Msgid) \
  91. pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
  92. #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \
  93. pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
  94. #ifdef DEFAULT_TEXT_DOMAIN
  95. # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \
  96. npgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
  97. #else
  98. # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \
  99. npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
  100. #endif
  101. #define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N) \
  102. npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
  103. #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \
  104. npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
  105. #ifdef __GNUC__
  106. __inline
  107. #else
  108. #ifdef __cplusplus
  109. inline
  110. #endif
  111. #endif
  112. static const char *
  113. pgettext_aux (const char *domain,
  114. const char *msg_ctxt_id, const char *msgid,
  115. int category)
  116. {
  117. const char *translation = dcgettext (domain, msg_ctxt_id, category);
  118. if (translation == msg_ctxt_id)
  119. return msgid;
  120. else
  121. return translation;
  122. }
  123. #ifdef __GNUC__
  124. __inline
  125. #else
  126. #ifdef __cplusplus
  127. inline
  128. #endif
  129. #endif
  130. static const char *
  131. npgettext_aux (const char *domain,
  132. const char *msg_ctxt_id, const char *msgid,
  133. const char *msgid_plural, unsigned long int n,
  134. int category)
  135. {
  136. const char *translation =
  137. dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
  138. if (translation == msg_ctxt_id || translation == msgid_plural)
  139. return (n == 1 ? msgid : msgid_plural);
  140. else
  141. return translation;
  142. }
  143. /* The same thing extended for non-constant arguments. Here MSGCTXT and MSGID
  144. can be arbitrary expressions. But for string literals these macros are
  145. less efficient than those above. */
  146. #include <string.h>
  147. #define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS \
  148. (__GNUC__ >= 3 || __GNUG__ >= 2 /* || __STDC_VERSION__ >= 199901L */ )
  149. #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
  150. #include <stdlib.h>
  151. #endif
  152. #define pgettext_expr(Msgctxt, Msgid) \
  153. dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES)
  154. #define dpgettext_expr(Domainname, Msgctxt, Msgid) \
  155. dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES)
  156. #ifdef __GNUC__
  157. __inline
  158. #else
  159. #ifdef __cplusplus
  160. inline
  161. #endif
  162. #endif
  163. static const char *
  164. dcpgettext_expr (const char *domain,
  165. const char *msgctxt, const char *msgid,
  166. int category)
  167. {
  168. size_t msgctxt_len = strlen (msgctxt) + 1;
  169. size_t msgid_len = strlen (msgid) + 1;
  170. const char *translation;
  171. #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
  172. char msg_ctxt_id[msgctxt_len + msgid_len];
  173. #else
  174. char buf[1024];
  175. char *msg_ctxt_id =
  176. (msgctxt_len + msgid_len <= sizeof (buf)
  177. ? buf
  178. : (char *) malloc (msgctxt_len + msgid_len));
  179. if (msg_ctxt_id != NULL)
  180. #endif
  181. {
  182. memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1);
  183. msg_ctxt_id[msgctxt_len - 1] = '\004';
  184. memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);
  185. translation = dcgettext (domain, msg_ctxt_id, category);
  186. #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
  187. if (msg_ctxt_id != buf)
  188. free (msg_ctxt_id);
  189. #endif
  190. if (translation != msg_ctxt_id)
  191. return translation;
  192. }
  193. return msgid;
  194. }
  195. #define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N) \
  196. dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)
  197. #define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \
  198. dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)
  199. #ifdef __GNUC__
  200. __inline
  201. #else
  202. #ifdef __cplusplus
  203. inline
  204. #endif
  205. #endif
  206. static const char *
  207. dcnpgettext_expr (const char *domain,
  208. const char *msgctxt, const char *msgid,
  209. const char *msgid_plural, unsigned long int n,
  210. int category)
  211. {
  212. size_t msgctxt_len = strlen (msgctxt) + 1;
  213. size_t msgid_len = strlen (msgid) + 1;
  214. const char *translation;
  215. #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
  216. char msg_ctxt_id[msgctxt_len + msgid_len];
  217. #else
  218. char buf[1024];
  219. char *msg_ctxt_id =
  220. (msgctxt_len + msgid_len <= sizeof (buf)
  221. ? buf
  222. : (char *) malloc (msgctxt_len + msgid_len));
  223. if (msg_ctxt_id != NULL)
  224. #endif
  225. {
  226. memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1);
  227. msg_ctxt_id[msgctxt_len - 1] = '\004';
  228. memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);
  229. translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
  230. #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
  231. if (msg_ctxt_id != buf)
  232. free (msg_ctxt_id);
  233. #endif
  234. if (!(translation == msg_ctxt_id || translation == msgid_plural))
  235. return translation;
  236. }
  237. return (n == 1 ? msgid : msgid_plural);
  238. }
  239. #endif /* _LIBGETTEXT_H */