gettextP.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /* Header describing internals of libintl library.
  2. Copyright (C) 1995-1999, 2000-2005 Free Software Foundation, Inc.
  3. Written by Ulrich Drepper <drepper@cygnus.com>, 1995.
  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)
  7. any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this program; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  15. USA. */
  16. #ifndef _GETTEXTP_H
  17. #define _GETTEXTP_H
  18. #include <stddef.h> /* Get size_t. */
  19. #ifdef _LIBC
  20. # include "../iconv/gconv_int.h"
  21. #else
  22. # if HAVE_ICONV
  23. # include <iconv.h>
  24. # endif
  25. #endif
  26. #ifdef _LIBC
  27. extern char *__gettext (const char *__msgid);
  28. extern char *__dgettext (const char *__domainname, const char *__msgid);
  29. extern char *__dcgettext (const char *__domainname, const char *__msgid,
  30. int __category);
  31. extern char *__ngettext (const char *__msgid1, const char *__msgid2,
  32. unsigned long int __n);
  33. extern char *__dngettext (const char *__domainname,
  34. const char *__msgid1, const char *__msgid2,
  35. unsigned long int n);
  36. extern char *__dcngettext (const char *__domainname,
  37. const char *__msgid1, const char *__msgid2,
  38. unsigned long int __n, int __category);
  39. extern char *__dcigettext (const char *__domainname,
  40. const char *__msgid1, const char *__msgid2,
  41. int __plural, unsigned long int __n,
  42. int __category);
  43. extern char *__textdomain (const char *__domainname);
  44. extern char *__bindtextdomain (const char *__domainname,
  45. const char *__dirname);
  46. extern char *__bind_textdomain_codeset (const char *__domainname,
  47. const char *__codeset);
  48. extern void _nl_finddomain_subfreeres (void) attribute_hidden;
  49. extern void _nl_unload_domain (struct loaded_domain *__domain)
  50. internal_function attribute_hidden;
  51. #else
  52. /* Declare the exported libintl_* functions, in a way that allows us to
  53. call them under their real name. */
  54. # undef _INTL_REDIRECT_INLINE
  55. # undef _INTL_REDIRECT_MACROS
  56. # define _INTL_REDIRECT_MACROS
  57. # include "libgnuintl.h"
  58. # ifdef IN_LIBGLOCALE
  59. extern char *gl_dcigettext (const char *__domainname,
  60. const char *__msgid1, const char *__msgid2,
  61. int __plural, unsigned long int __n,
  62. int __category,
  63. const char *__localename, const char *__encoding);
  64. # else
  65. extern char *libintl_dcigettext (const char *__domainname,
  66. const char *__msgid1, const char *__msgid2,
  67. int __plural, unsigned long int __n,
  68. int __category);
  69. # endif
  70. #endif
  71. #include "loadinfo.h"
  72. #include "gmo.h" /* Get nls_uint32. */
  73. /* @@ end of prolog @@ */
  74. #ifndef internal_function
  75. # define internal_function
  76. #endif
  77. #ifndef attribute_hidden
  78. # define attribute_hidden
  79. #endif
  80. /* Tell the compiler when a conditional or integer expression is
  81. almost always true or almost always false. */
  82. #ifndef HAVE_BUILTIN_EXPECT
  83. # define __builtin_expect(expr, val) (expr)
  84. #endif
  85. #ifndef W
  86. # define W(flag, data) ((flag) ? SWAP (data) : (data))
  87. #endif
  88. #ifdef _LIBC
  89. # include <byteswap.h>
  90. # define SWAP(i) bswap_32 (i)
  91. #else
  92. static inline nls_uint32
  93. SWAP (i)
  94. nls_uint32 i;
  95. {
  96. return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24);
  97. }
  98. #endif
  99. /* In-memory representation of system dependent string. */
  100. struct sysdep_string_desc
  101. {
  102. /* Length of addressed string, including the trailing NUL. */
  103. size_t length;
  104. /* Pointer to addressed string. */
  105. const char *pointer;
  106. };
  107. /* Cache of translated strings after charset conversion.
  108. Note: The strings are converted to the target encoding only on an as-needed
  109. basis. */
  110. struct converted_domain
  111. {
  112. /* The target encoding name. */
  113. const char *encoding;
  114. /* The descriptor for conversion from the message catalog's encoding to
  115. this target encoding. */
  116. #ifdef _LIBC
  117. __gconv_t conv;
  118. #else
  119. # if HAVE_ICONV
  120. iconv_t conv;
  121. # endif
  122. #endif
  123. /* The table of translated strings after charset conversion. */
  124. char **conv_tab;
  125. };
  126. /* The representation of an opened message catalog. */
  127. struct loaded_domain
  128. {
  129. /* Pointer to memory containing the .mo file. */
  130. const char *data;
  131. /* 1 if the memory is mmap()ed, 0 if the memory is malloc()ed. */
  132. int use_mmap;
  133. /* Size of mmap()ed memory. */
  134. size_t mmap_size;
  135. /* 1 if the .mo file uses a different endianness than this machine. */
  136. int must_swap;
  137. /* Pointer to additional malloc()ed memory. */
  138. void *malloced;
  139. /* Number of static strings pairs. */
  140. nls_uint32 nstrings;
  141. /* Pointer to descriptors of original strings in the file. */
  142. const struct string_desc *orig_tab;
  143. /* Pointer to descriptors of translated strings in the file. */
  144. const struct string_desc *trans_tab;
  145. /* Number of system dependent strings pairs. */
  146. nls_uint32 n_sysdep_strings;
  147. /* Pointer to descriptors of original sysdep strings. */
  148. const struct sysdep_string_desc *orig_sysdep_tab;
  149. /* Pointer to descriptors of translated sysdep strings. */
  150. const struct sysdep_string_desc *trans_sysdep_tab;
  151. /* Size of hash table. */
  152. nls_uint32 hash_size;
  153. /* Pointer to hash table. */
  154. const nls_uint32 *hash_tab;
  155. /* 1 if the hash table uses a different endianness than this machine. */
  156. int must_swap_hash_tab;
  157. /* Cache of charset conversions of the translated strings. */
  158. struct converted_domain *conversions;
  159. size_t nconversions;
  160. struct expression *plural;
  161. unsigned long int nplurals;
  162. };
  163. /* We want to allocate a string at the end of the struct. But ISO C
  164. doesn't allow zero sized arrays. */
  165. #ifdef __GNUC__
  166. # define ZERO 0
  167. #else
  168. # define ZERO 1
  169. #endif
  170. /* A set of settings bound to a message domain. Used to store settings
  171. from bindtextdomain() and bind_textdomain_codeset(). */
  172. struct binding
  173. {
  174. struct binding *next;
  175. char *dirname;
  176. char *codeset;
  177. char domainname[ZERO];
  178. };
  179. /* A counter which is incremented each time some previous translations
  180. become invalid.
  181. This variable is part of the external ABI of the GNU libintl. */
  182. #ifdef IN_LIBGLOCALE
  183. # include <glocale/config.h>
  184. extern LIBGLOCALE_DLL_EXPORTED int _nl_msg_cat_cntr;
  185. #else
  186. extern LIBINTL_DLL_EXPORTED int _nl_msg_cat_cntr;
  187. #endif
  188. #ifndef _LIBC
  189. const char *_nl_language_preferences_default (void);
  190. const char *_nl_locale_name_posix (int category, const char *categoryname);
  191. const char *_nl_locale_name_default (void);
  192. const char *_nl_locale_name (int category, const char *categoryname);
  193. #endif
  194. struct loaded_l10nfile *_nl_find_domain (const char *__dirname, char *__locale,
  195. const char *__domainname,
  196. struct binding *__domainbinding)
  197. internal_function;
  198. void _nl_load_domain (struct loaded_l10nfile *__domain,
  199. struct binding *__domainbinding)
  200. internal_function;
  201. #ifdef IN_LIBGLOCALE
  202. char *_nl_find_msg (struct loaded_l10nfile *domain_file,
  203. struct binding *domainbinding, const char *encoding,
  204. const char *msgid,
  205. size_t *lengthp)
  206. internal_function;
  207. #else
  208. char *_nl_find_msg (struct loaded_l10nfile *domain_file,
  209. struct binding *domainbinding, const char *msgid,
  210. int convert, size_t *lengthp)
  211. internal_function;
  212. #endif
  213. /* @@ begin of epilog @@ */
  214. #endif /* gettextP.h */