Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
4 * Silicon Graphics Computer Systems, Inc.
9 * This material is provided "as is", with absolutely no warranty expressed
10 * or implied. Any use is at your own risk.
12 * Permission to use or copy this software for any purpose is hereby granted
13 * without fee, provided the above notices are retained on all copies.
14 * Permission to modify the code and to distribute modified code is granted,
15 * provided the above notices are retained, and a notice that the code was
16 * modified is included with the above copyright notice.
21 * It is impossible to write the C++ locale library in terms of locales
22 * as defined in the C standard. Instead, we write the C++ locale and I/O
23 * library in terms of a low level C-like interface. This file defines
26 * The low-level locale interface can't be written portably; there
27 * must be a version of it for each platform that the C++ library
28 * is ported to. On many systems this interface may be a thin wrapper
29 * for existing functionality.
32 #ifndef _STLP_C_LOCALE_IMPL_H
33 # define _STLP_C_LOCALE_IMPL_H
35 # include <stl/c_locale.h>
36 // # include <wchar.h>
37 # include <stl/_cwchar.h>
39 #define _Locale_MAX_SIMPLE_NAME 256
42 * A number: the maximum length of a simple locale name.
43 * (i.e. a name like like en_US, as opposed to a name like
44 * en_US/de_AT/de_AT/es_MX/en_US/en_US) */
45 #define _Locale_MAX_COMPOSITE_NAME 6*(_Locale_MAX_SIMPLE_NAME+3)
48 * Maximum length of a composite locale.
60 #if defined (__GNUC__) || defined (_KCC) || defined(__ICC)
61 typedef unsigned short int _Locale_mask_t;
63 typedef unsigned int _Locale_mask_t;
66 void * _Locale_ctype_create(const char *);
67 void * _Locale_numeric_create(const char *);
68 void * _Locale_time_create(const char *);
69 void * _Locale_collate_create(const char *);
70 void * _Locale_monetary_create(const char *);
71 void * _Locale_messages_create(const char *);
74 * The char* argument is a simple locale name.
75 * These functions return NULL to indicate failure.
76 * The char* argument is a simple locale name, which may not
77 * be "". These functions return NULL to indicate failure.
80 const char * _Locale_ctype_default(char * __buf);
81 const char * _Locale_numeric_default(char * __buf);
82 const char * _Locale_time_default(char * __buf);
83 const char * _Locale_collate_default(char * __buf);
84 const char * _Locale_monetary_default(char * __buf);
85 const char * _Locale_messages_default(char * __buf);
88 * Returns the name of the user's default locale in each
89 * category, as a null-terminated string. A NULL value
90 * means the default "C" locale.
93 char * _Locale_ctype_name(const void *, char *);
94 char * _Locale_numeric_name(const void *, char *);
95 char * _Locale_time_name(const void *, char *);
96 char * _Locale_collate_name(const void *, char *);
97 char * _Locale_monetary_name(const void *, char *);
98 char * _Locale_messages_name(const void *, char *);
101 * __buf points to a buffer that can hold at least _Locale_MAX_SIMPLE_NAME
102 * characters. These functions store the name, as a null-terminated
106 void _Locale_ctype_destroy(void *);
107 void _Locale_numeric_destroy(void *);
108 void _Locale_time_destroy(void *);
109 void _Locale_collate_destroy(void *);
110 void _Locale_monetary_destroy(void *);
111 void _Locale_messages_destroy(void *);
113 char * _Locale_extract_ctype_name(const char *cname, char *__buf);
114 char * _Locale_extract_numeric_name(const char *cname, char *__buf);
115 char * _Locale_extract_time_name(const char *cname, char *__buf);
116 char * _Locale_extract_collate_name(const char *cname, char *__buf);
117 char * _Locale_extract_monetary_name(const char *cname, char *__buf);
118 char * _Locale_extract_messages_name(const char *cname, char *__buf);
121 * cname is a (possibly composite) locale name---i.e. a name that can
122 * be passed to setlocale. _buf points to an array large enough to
123 * store at least _Locale_MAX_SIMPLE_NAME characters, and each of these
124 * functions extracts the name of a single category, stores it in buf
125 * as a null-terminated string, and returns buf.
128 char * _Locale_compose_name(char *__buf,
129 const char *__Ctype, const char *__Numeric,
130 const char *__Time, const char *__Collate,
131 const char *__Monetary, const char *__Messages,
132 const char *__DefaultName);
135 * The inputs to this function are six null-terminated strings: the
136 * names of a locale's six categories. Locale names for non-standard
137 * categories are taken from __DefaultName.
138 * __buf is a pointer to an array large enough to store at least
139 * _Locale_MAX_COMPOSITE_NAME characters.
140 * This function constructs a (possibly composite) name describing the
141 * locale as a whole, stores that name in buf as a null-terminated
142 * string, and returns buf.
146 * FUNCTIONS THAT USE CTYPE
150 * Narrow character functions:
153 const _Locale_mask_t * _Locale_ctype_table(struct _Locale_ctype *);
156 * Returns a pointer to the beginning of the ctype table. The table is
157 * at least 257 bytes long; if p is the pointer returned by this
158 * function, then p[c] is valid if c is EOF or if p is any value of
159 * type unsigned char.
162 int _Locale_toupper(struct _Locale_ctype *, int);
163 int _Locale_tolower(struct _Locale_ctype *, int);
166 * c is either EOF, or an unsigned char value.
169 # ifndef _STLP_NO_WCHAR_T
171 * Wide character functions:
173 _Locale_mask_t _Locale_wchar_ctype(struct _Locale_ctype *, wint_t,
175 wint_t _Locale_wchar_tolower(struct _Locale_ctype *, wint_t);
176 wint_t _Locale_wchar_toupper(struct _Locale_ctype *, wint_t);
179 # if !defined ( _STLP_NO_MBSTATE_T )
182 * Multibyte functions:
185 int _Locale_mb_cur_max (struct _Locale_ctype *);
187 * Returns the number of bytes of the longest allowed multibyte
188 * character in the current encoding.
191 int _Locale_mb_cur_min (struct _Locale_ctype *);
193 * Returns the number of bytes of the shortest allowed multibyte
194 * character in the current encoding.
197 int _Locale_is_stateless (struct _Locale_ctype *);
199 * Returns 1 if the current multibyte encoding is stateless
200 * and does not require the use of an mbstate_t value.
203 # ifndef _STLP_NO_WCHAR_T
204 wint_t _Locale_btowc(struct _Locale_ctype *, int);
205 int _Locale_wctob(struct _Locale_ctype *, wint_t);
208 * Just like btowc and wctob, from 4.6.5.1 of the C standard, Normative
209 * Addendum 1. (And just like widen/narrow, from clause 22 of the C++
213 size_t _Locale_mbtowc(struct _Locale_ctype *,
215 const char *, size_t, int * chars_write,
219 * Almost identical to mbrtowc, from 4.6.5.3.2 of NA1. The only
220 * important difference is that mbrtowc treats null wide characters
221 * as special, and we don't. Specifically: examines the characters
222 * in [from, from + n), extracts a single wide character, and stores
223 * it in *to. Modifies shift_state if appropriate. The return value,
224 * which is always positive, is the number of characters extracted from
225 * the input sequence. Return value is (size_t) -1 if there was an
226 * encoding error in the input sequence, and (size_t) -2 if
227 * [from, from + n) is correct but not complete. None of the pointer
228 * arguments may be null pointers.
231 size_t _Locale_wctomb(struct _Locale_ctype *,
237 * Again, very similar to wcrtomb. The differences are that (1) it
238 * doesn't treat null characters as special; and (2) it stores at most
239 * n characters. Converts c to a multibyte sequence, stores that
240 * sequence in the array 'to', and returns the length of the sequence.
241 * Modifies shift_state if appropriate. The return value is (size_t) -1
242 * if c is not a valid wide character, and (size_t) -2 if the length of
243 * the multibyte character sequence is greater than n.
247 size_t _Locale_unshift(struct _Locale_ctype *,
249 char *, size_t, char **);
252 * Inserts whatever characters are necessary to restore st to an
253 * initial shift state. Sets *next to buf + m, where m is the number
254 * of characters inserted. (0 <= m <= n.) Returns m to indicate
255 * success, (size_t) -1 to indicate error, (size_t) -2 to indicate
256 * partial success (more than n characters needed). For success or partial
257 * success, sets *next to buf + m.
260 # endif /* _STLP_NO_MBSTATE_T */
263 * FUNCTIONS THAT USE COLLATE
266 int _Locale_strcmp(struct _Locale_collate *,
267 const char *, size_t,
268 const char *, size_t);
269 # ifndef _STLP_NO_WCHAR_T
270 int _Locale_strwcmp(struct _Locale_collate *,
271 const wchar_t *, size_t,
272 const wchar_t *, size_t);
275 * Compares the two sequences [s1, s1 + n1) and [s2, s2 + n2). Neither
276 * sequence is assumed to be null-terminated, and null characters
277 * aren't special. If the two sequences are the same up through
278 * min(n1, n2), then the sequence that compares less is whichever one
282 size_t _Locale_strxfrm(struct _Locale_collate *,
284 const char *, size_t);
286 # ifndef _STLP_NO_WCHAR_T
287 size_t _Locale_strwxfrm(struct _Locale_collate *,
289 const wchar_t *, size_t);
293 * Creates a transformed version of the string [s2, s2 + n2). The
294 * string may contain embedded null characters; nulls aren't special.
295 * The transformed string begins at s1, and contains at most n1
296 * characters. The return value is the length of the transformed
297 * string. If the return value is greater than n1 then this is an
298 * error condition: it indicates that there wasn't enough space. In
299 * that case, the contents of [s1, s1 + n1) is unspecified.
303 * FUNCTIONS THAT USE NUMERIC
306 char _Locale_decimal_point(struct _Locale_numeric *);
307 char _Locale_thousands_sep(struct _Locale_numeric *);
308 const char * _Locale_grouping(struct _Locale_numeric *);
311 * Equivalent to the first three fields in struct lconv. (C standard,
315 const char * _Locale_true(struct _Locale_numeric *);
316 const char * _Locale_false(struct _Locale_numeric *);
319 * Return "true" and "false" in English locales, and something
320 * appropriate in non-English locales.
324 * FUNCTIONS THAT USE MONETARY
327 const char * _Locale_int_curr_symbol(struct _Locale_monetary *);
328 const char * _Locale_currency_symbol(struct _Locale_monetary *);
329 char _Locale_mon_decimal_point(struct _Locale_monetary *);
330 char _Locale_mon_thousands_sep(struct _Locale_monetary *);
331 const char * _Locale_mon_grouping(struct _Locale_monetary *);
332 const char * _Locale_positive_sign(struct _Locale_monetary *);
333 const char * _Locale_negative_sign(struct _Locale_monetary *);
334 char _Locale_int_frac_digits(struct _Locale_monetary *);
335 char _Locale_frac_digits(struct _Locale_monetary *);
336 int _Locale_p_cs_precedes(struct _Locale_monetary *);
337 int _Locale_p_sep_by_space(struct _Locale_monetary *);
338 int _Locale_p_sign_posn(struct _Locale_monetary *);
339 int _Locale_n_cs_precedes(struct _Locale_monetary *);
340 int _Locale_n_sep_by_space(struct _Locale_monetary *);
341 int _Locale_n_sign_posn(struct _Locale_monetary *);
344 * Return the obvious fields of struct lconv.
348 * FUNCTIONS THAT USE TIME
351 const char * _Locale_full_monthname(struct _Locale_time *, int);
352 const char * _Locale_abbrev_monthname(struct _Locale_time *, int);
355 * month is in the range [0, 12).
358 const char * _Locale_full_dayofweek(struct _Locale_time *, int);
359 const char * _Locale_abbrev_dayofweek(struct _Locale_time *, int);
362 * day is in the range [0, 7). Sunday is 0.
365 const char * _Locale_d_t_fmt(struct _Locale_time *);
366 const char * _Locale_d_fmt(struct _Locale_time *);
367 const char * _Locale_t_fmt(struct _Locale_time *);
368 const char * _Locale_long_d_t_fmt(struct _Locale_time*);
369 const char * _Locale_long_d_fmt(struct _Locale_time*);
371 const char * _Locale_am_str(struct _Locale_time *);
372 const char * _Locale_pm_str(struct _Locale_time *);
373 const char * _Locale_t_fmt_ampm(struct _Locale_time *);
377 * FUNCTIONS THAT USE MESSAGES
380 int _Locale_catopen(struct _Locale_messages*, const char*);
383 * Very similar to catopen, except that it uses L to determine
384 * which catalog to open.
387 void _Locale_catclose(struct _Locale_messages*, int);
390 * catalog is a value that was returned by a previous call to
394 const char * _Locale_catgets(struct _Locale_messages *, int,
395 int, int,const char *);
398 * Returns a string, identified by a set index and a message index,
399 * from an opened message catalog. Returns default if no such
408 # endif /* _STLP_C_LOCALE_IMPL_H */