/* * Copyright (c) 1999 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * */ /* * It is impossible to write the C++ locale library in terms of locales * as defined in the C standard. Instead, we write the C++ locale and I/O * library in terms of a low level C-like interface. This file defines * that interface. * * The low-level locale interface can't be written portably; there * must be a version of it for each platform that the C++ library * is ported to. On many systems this interface may be a thin wrapper * for existing functionality. */ #ifndef __STL_C_LOCALE_H # define __STL_C_LOCALE_H /* * Implementation dependent definitions */ #ifdef __cplusplus # include #endif #if defined(__sgi) # if defined(ROOT_65) /* IRIX 6.5.x */ # include # include # include # include #else /* IRIX pre-6.5 */ # include # include #if !defined(_SIZE_T) && !defined(_SIZE_T_) #define _SIZE_T #if (_MIPS_SZLONG == 32) typedef unsigned int size_t; #endif #if (_MIPS_SZLONG == 64) typedef unsigned long size_t; #endif #endif #ifndef _WCHAR_T #define _WCHAR_T #if (_MIPS_SZLONG == 32) typedef long wchar_t; #endif #if (_MIPS_SZLONG == 64) typedef __int32_t wchar_t; #endif #endif /* _WCHAR_T */ #ifndef _WINT_T # define _WINT_T #if (_MIPS_SZLONG == 32) typedef long wint_t; #endif #if (_MIPS_SZLONG == 64) typedef __int32_t wint_t; #endif #endif /* _WINT_T */ #ifndef _MBSTATE_T # define _MBSTATE_T typedef char mbstate_t; #endif /* _MBSTATE_T */ # endif #else # ifdef __cplusplus # include # include # include # else # include # include # include # endif #endif /* __sgi */ /* * GENERAL FRAMEWORK */ struct _Locale_ctype; struct _Locale_numeric; struct _Locale_time; struct _Locale_collate; struct _Locale_monetary; struct _Locale_messages; #ifdef __cplusplus __STL_BEGIN_NAMESPACE extern "C" { #endif #define _Locale_MAX_SIMPLE_NAME 256 /* * A number: the maximum length of a simple locale name. * (i.e. a name like like en_US, as opposed to a name like * en_US/de_AT/de_AT/es_MX/en_US/en_US) */ #define _Locale_MAX_COMPOSITE_NAME 6*(_Locale_MAX_SIMPLE_NAME+3) /* * Maximum length of a composite locale. */ void * _Locale_ctype_create(const char *); void * _Locale_numeric_create(const char *); void * _Locale_time_create(const char *); void * _Locale_collate_create(const char *); void * _Locale_monetary_create(const char *); void * _Locale_messages_create(const char *); /* * The char* argument is a simple locale name. * These functions return NULL to indicate failure. * The char* argument is a simple locale name, which may not * be "". These functions return NULL to indicate failure. */ const char * _Locale_ctype_default(char * __buf); const char * _Locale_numeric_default(char * __buf); const char * _Locale_time_default(char * __buf); const char * _Locale_collate_default(char * __buf); const char * _Locale_monetary_default(char * __buf); const char * _Locale_messages_default(char * __buf); /* * Returns the name of the user's default locale in each * category, as a null-terminated string. A NULL value * means the default "C" locale. */ char * _Locale_ctype_name(const void *, char *); char * _Locale_numeric_name(const void *, char *); char * _Locale_time_name(const void *, char *); char * _Locale_collate_name(const void *, char *); char * _Locale_monetary_name(const void *, char *); char * _Locale_messages_name(const void *, char *); /* * __buf points to a buffer that can hold at least _Locale_MAX_SIMPLE_NAME * characters. These functions store the name, as a null-terminated * string, in __buf. */ void _Locale_ctype_destroy(void *); void _Locale_numeric_destroy(void *); void _Locale_time_destroy(void *); void _Locale_collate_destroy(void *); void _Locale_monetary_destroy(void *); void _Locale_messages_destroy(void *); char * _Locale_extract_ctype_name(const char *cname, char *__buf); char * _Locale_extract_numeric_name(const char *cname, char *__buf); char * _Locale_extract_time_name(const char *cname, char *__buf); char * _Locale_extract_collate_name(const char *cname, char *__buf); char * _Locale_extract_monetary_name(const char *cname, char *__buf); char * _Locale_extract_messages_name(const char *cname, char *__buf); /* * cname is a (possibly composite) locale name---i.e. a name that can * be passed to setlocale. _buf points to an array large enough to * store at least _Locale_MAX_SIMPLE_NAME characters, and each of these * functions extracts the name of a single category, stores it in buf * as a null-terminated string, and returns buf. */ char * _Locale_compose_name(char *__buf, const char *__Ctype, const char *__Numeric, const char *__Time, const char *__Collate, const char *__Monetary, const char *__Messages); /* * The inputs to this function are six null-terminated strings: the * names of a locale's six categories. __buf is a pointer to an array * large enough to store at least _Locale_MAX_COMPOSITE_NAME characters. * This function constructs a (possibly composite) name describing the * locale as a whole, stores that name in buf as a null-terminated * string, and returns buf. */ /* * FUNCTIONS THAT USE CTYPE */ /* * For narrow characters, we expose the lookup table interface. */ /* Bitmask macros. */ /* Internal bitmask macros, os-specific. */ #if defined(__sgi) /* IRIX */ #define _Locale_S 0x00000008 /* Spacing character */ #define _Locale_A 0x00004000 /* Alphabetical characters only */ #define _Locale_B 0x00000040 /* Obsolete: was space char only */ #define _Locale_PR 0x00008000 /* Printable characters only */ #define _Locale_G 0x40000000 /* Graphic characters only */ #define _Locale_BL 0x80000000 /* The blank character class */ /* Public bitmask macros, must be defined for every OS. These values, of * course, are specific to IRIX. */ #define _Locale_CNTRL 0x00000020 /* Control character */ #define _Locale_UPPER 0x00000001 /* Upper case */ #define _Locale_LOWER 0x00000002 /* Lower case */ #define _Locale_DIGIT 0x00000004 /* Numeral (digit) */ #define _Locale_XDIGIT 0x00000080 /* heXadecimal digit */ #define _Locale_PUNCT 0x00000010 /* Punctuation */ #define _Locale_SPACE (_Locale_S | _Locale_BL) #define _Locale_PRINT (_Locale_PUNCT | _Locale_UPPER | _Locale_LOWER | \ _Locale_DIGIT | _Locale_A | _Locale_XDIGIT | \ _Locale_PR) #define _Locale_ALPHA _Locale_A /* * All of these except for graph and blank are from the C standard; * graph and blank are XPG4. (graph in XPG4 doesn't mean quite the * same thing as graph in the C++ library) */ #endif /* IRIX */ #if defined(__GNUC__) # if defined (__CYGWIN__) # define _Locale_CNTRL 040 # define _Locale_UPPER 02 # define _Locale_LOWER 01 # define _Locale_DIGIT 04 # define _Locale_XDIGIT ( 0100 | _Locale_DIGIT ) # define _Locale_PUNCT 020 # define _Locale_SPACE 010 # define _Locale_ALPHA (_Locale_UPPER | _Locale_LOWER) # define _Locale_PRINT (_Locale_ALPHA | _Locale_DIGIT | _Locale_PUNCT | 0200 ) # elif defined (__FreeBSD__) # define _Locale_CNTRL _CTYPE_C # define _Locale_UPPER _CTYPE_U # define _Locale_LOWER _CTYPE_L # define _Locale_DIGIT _CTYPE_D # define _Locale_XDIGIT _CTYPE_X # define _Locale_PUNCT _CTYPE_P # define _Locale_SPACE _CTYPE_S # define _Locale_PRINT _CTYPE_R # define _Locale_ALPHA _CTYPE_A # elif defined(__STL_USE_GLIBC) /* linux, using the gnu compiler */ /* This section uses macros defined in the gnu libc ctype.h header */ # define _Locale_CNTRL _IScntrl # define _Locale_UPPER _ISupper # define _Locale_LOWER _ISlower # define _Locale_DIGIT _ISdigit # define _Locale_XDIGIT _ISxdigit # define _Locale_PUNCT _ISpunct # define _Locale_SPACE _ISspace # define _Locale_PRINT _ISprint # define _Locale_ALPHA _ISalpha # endif /* GLIBC */ #endif /* gnu */ #if ( defined(__sun) && defined (__SVR4) ) \ || (defined (__digital__) && defined (__unix__)) \ || defined(__xlC__) /* fbp : condition from AT&T code*/ #if !(defined(__XPG4_CHAR_CLASS__) || defined(_XPG4_2) || \ (defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4))) && ! defined (_ISCNTRL) /* fbp : on 2.5.1, the defines are different ;( */ // # if ( defined (__sun) && defined (__SVR4) && ! defined (_ISCNTRL) ) # define _ISCNTRL _C # define _ISUPPER _U # define _ISLOWER _L # define _ISDIGIT _N # define _ISXDIGIT _X # define _ISPUNCT _P # define _ISSPACE _S # define _ISPRINT (_P | _U | _L | _N | _B) # define _ISALPHA (_U | _L) # endif # define _Locale_CNTRL _ISCNTRL # define _Locale_UPPER _ISUPPER # define _Locale_LOWER _ISLOWER # define _Locale_DIGIT _ISDIGIT # define _Locale_XDIGIT _ISXDIGIT # define _Locale_PUNCT _ISPUNCT # define _Locale_SPACE _ISSPACE # define _Locale_PRINT _ISPRINT # define _Locale_ALPHA _ISALPHA #elif defined (__MWERKS__) # define _Locale_CNTRL __control_char # define _Locale_UPPER __upper_case # define _Locale_LOWER __lower_case # define _Locale_DIGIT __digit # define _Locale_XDIGIT __hex_digit # define _Locale_PUNCT __punctuation # define _Locale_SPACE __space_char # define _Locale_PRINT __printable # define _Locale_ALPHA __alphanumeric #elif defined (__BORLANDC__) # define _Locale_CNTRL _IS_CTL # define _Locale_UPPER _IS_UPP # define _Locale_LOWER _IS_LOW # define _Locale_DIGIT _IS_DIG # define _Locale_XDIGIT _IS_HEX # define _Locale_PUNCT _IS_PUN # define _Locale_SPACE _IS_SP # define _Locale_PRINT (_IS_SP|_IS_PUN|_IS_UPP|_IS_LOW|_IS_DIG) # define _Locale_ALPHA _IS_ALPHA #elif defined (_MSC_VER) || defined (__MINGW32__) # define _Locale_CNTRL _CONTROL # define _Locale_UPPER _UPPER # define _Locale_LOWER _LOWER # define _Locale_DIGIT _DIGIT # define _Locale_XDIGIT _HEX # define _Locale_PUNCT _PUNCT # define _Locale_SPACE _SPACE # define _Locale_PRINT (_ALPHA | _DIGIT | _SPACE | _PUNCT) /* was : (_BLANK|_PUNCT|_UPPER|_LOWER|_DIGIT) */ # define _Locale_ALPHA ( _ALPHA & ~ (_UPPER | _LOWER )) #elif defined(__MRC__) || defined(__SC__) //*TY 02/24/2000 - added support for MPW # define _Locale_CNTRL _CTL # define _Locale_UPPER _UPP # define _Locale_LOWER _LOW # define _Locale_DIGIT _DIG # define _Locale_XDIGIT _HEX # define _Locale_PUNCT _PUN # define _Locale_SPACE _BLA # define _Locale_PRINT (_UPP | _LOW | _DIG | _PUN | _BLA) # define _Locale_ALPHA (_UPP | _LOW) #elif defined(__MLCCPP__) # define _Locale_CNTRL 1 # define _Locale_UPPER 2 # define _Locale_LOWER 4 # define _Locale_DIGIT 8 # define _Locale_XDIGIT 16 # define _Locale_PUNCT 32 # define _Locale_SPACE 64 # define _Locale_PRINT 128 # define _Locale_ALPHA 256 # elif defined (__hpux) || defined (__osf__) # define _Locale_CNTRL _ISCNTRL # define _Locale_UPPER _ISUPPER # define _Locale_LOWER _ISLOWER # define _Locale_DIGIT _ISDIGIT # define _Locale_XDIGIT _ISXDIGIT # define _Locale_PUNCT _ISPUNCT # define _Locale_SPACE _ISSPACE # define _Locale_PRINT _ISPRINT # define _Locale_ALPHA _ISALPHA # elif defined (__DJGPP) # define _Locale_CNTRL __dj_ISCNTRL # define _Locale_UPPER __dj_ISUPPER # define _Locale_LOWER __dj_ISLOWER # define _Locale_DIGIT __dj_ISDIGIT # define _Locale_XDIGIT __dj_ISXDIGIT # define _Locale_PUNCT __dj_ISPUNCT # define _Locale_SPACE __dj_ISSPACE # define _Locale_PRINT __dj_ISPRINT # define _Locale_ALPHA __dj_ISALPHA #endif /* * Typedefs: */ #ifdef __GNUC__ typedef unsigned short int _Locale_mask_t; #else typedef unsigned int _Locale_mask_t; #endif /* * Narrow character functions: */ _Locale_mask_t * _Locale_ctype_table(struct _Locale_ctype *); /* * Returns a pointer to the beginning of the ctype table. The table is * at least 257 bytes long; if p is the pointer returned by this * function, then p[c] is valid if c is EOF or if p is any value of * type unsigned char. */ int _Locale_toupper(struct _Locale_ctype *, int); int _Locale_tolower(struct _Locale_ctype *, int); /* * c is either EOF, or an unsigned char value. */ # ifndef __STL_NO_WCHAR_T /* * Wide character functions: */ _Locale_mask_t _Locale_wchar_ctype(struct _Locale_ctype *, wint_t); wint_t _Locale_wchar_tolower(struct _Locale_ctype *, wint_t); wint_t _Locale_wchar_toupper(struct _Locale_ctype *, wint_t); # endif # ifndef __STL_NO_MBSTATE_T /* * Multibyte functions: */ int _Locale_mb_cur_max (struct _Locale_ctype *); /* * Returns the number of bytes of the longest allowed multibyte * character in the current encoding. */ int _Locale_mb_cur_min (struct _Locale_ctype *); /* * Returns the number of bytes of the shortest allowed multibyte * character in the current encoding. */ int _Locale_is_stateless (struct _Locale_ctype *); /* * Returns 1 if the current multibyte encoding is stateless * and does not require the use of an mbstate_t value. */ wint_t _Locale_btowc(struct _Locale_ctype *, int); int _Locale_wctob(struct _Locale_ctype *, wint_t); /* * Just like btowc and wctob, from 4.6.5.1 of the C standard, Normative * Addendum 1. (And just like widen/narrow, from clause 22 of the C++ * standard.) */ size_t _Locale_mbtowc(struct _Locale_ctype *, wchar_t *, const char *, size_t, mbstate_t *); /* * Almost identical to mbrtowc, from 4.6.5.3.2 of NA1. The only * important difference is that mbrtowc treats null wide characters * as special, and we don't. Specifically: examines the characters * in [from, from + n), extracts a single wide character, and stores * it in *to. Modifies shift_state if appropriate. The return value, * which is always positive, is the number of characters extracted from * the input sequence. Return value is (size_t) -1 if there was an * encoding error in the input sequence, and (size_t) -2 if * [from, from + n) is correct but not complete. None of the pointer * arguments may be null pointers. */ size_t _Locale_wctomb(struct _Locale_ctype *, char *, size_t, const wchar_t, mbstate_t *); /* * Again, very similar to wcrtomb. The differences are that (1) it * doesn't treat null characters as special; and (2) it stores at most * n characters. Converts c to a multibyte sequence, stores that * sequence in the array 'to', and returns the length of the sequence. * Modifies shift_state if appropriate. The return value is (size_t) -1 * if c is not a valid wide character, and (size_t) -2 if the length of * the multibyte character sequence is greater than n. */ size_t _Locale_unshift(struct _Locale_ctype *, mbstate_t *, char *, size_t, char **); /* * Inserts whatever characters are necessary to restore st to an * initial shift state. Sets *next to buf + m, where m is the number * of characters inserted. (0 <= m <= n.) Returns m to indicate * success, (size_t) -1 to indicate error, (size_t) -2 to indicate * partial success (more than n characters needed). For success or partial * success, sets *next to buf + m. */ # endif /* __STL_NO_MBSTATE_T */ /* * FUNCTIONS THAT USE COLLATE */ int _Locale_strcmp(struct _Locale_collate *, const char *, size_t, const char *, size_t); # ifndef __STL_NO_WCHAR_T int _Locale_strwcmp(struct _Locale_collate *, const wchar_t *, size_t, const wchar_t *, size_t); # endif /* * Compares the two sequences [s1, s1 + n1) and [s2, s2 + n2). Neither * sequence is assumed to be null-terminated, and null characters * aren't special. If the two sequences are the same up through * min(n1, n2), then the sequence that compares less is whichever one * is shorter. */ size_t _Locale_strxfrm(struct _Locale_collate *, char *, size_t, const char *, size_t); # ifndef __STL_NO_WCHAR_T size_t _Locale_strwxfrm(struct _Locale_collate *, wchar_t *, size_t, const wchar_t *, size_t); # endif /* * Creates a transformed version of the string [s2, s2 + n2). The * string may contain embedded null characters; nulls aren't special. * The transformed string begins at s1, and contains at most n1 * characters. The return value is the length of the transformed * string. If the return value is greater than n1 then this is an * error condition: it indicates that there wasn't enough space. In * that case, the contents of [s1, s1 + n1) is unspecified. */ /* * FUNCTIONS THAT USE NUMERIC */ char _Locale_decimal_point(struct _Locale_numeric *); char _Locale_thousands_sep(struct _Locale_numeric *); const char * _Locale_grouping(struct _Locale_numeric *); /* * Equivalent to the first three fields in struct lconv. (C standard, * section 7.4.) */ const char * _Locale_true(struct _Locale_numeric *); const char * _Locale_false(struct _Locale_numeric *); /* * Return "true" and "false" in English locales, and something * appropriate in non-English locales. */ /* * FUNCTIONS THAT USE MONETARY */ const char * _Locale_int_curr_symbol(struct _Locale_monetary *); const char * _Locale_currency_symbol(struct _Locale_monetary *); char _Locale_mon_decimal_point(struct _Locale_monetary *); char _Locale_mon_thousands_sep(struct _Locale_monetary *); const char * _Locale_mon_grouping(struct _Locale_monetary *); const char * _Locale_positive_sign(struct _Locale_monetary *); const char * _Locale_negative_sign(struct _Locale_monetary *); char _Locale_int_frac_digits(struct _Locale_monetary *); char _Locale_frac_digits(struct _Locale_monetary *); int _Locale_p_cs_precedes(struct _Locale_monetary *); int _Locale_p_sep_by_space(struct _Locale_monetary *); int _Locale_p_sign_posn(struct _Locale_monetary *); int _Locale_n_cs_precedes(struct _Locale_monetary *); int _Locale_n_sep_by_space(struct _Locale_monetary *); int _Locale_n_sign_posn(struct _Locale_monetary *); /* * Return the obvious fields of struct lconv. */ /* * FUNCTIONS THAT USE TIME */ const char ** _Locale_full_monthname(struct _Locale_time *); const char ** _Locale_abbrev_monthname(struct _Locale_time *); /* * month is in the range [0, 12). */ const char ** _Locale_full_dayofweek(struct _Locale_time *); const char ** _Locale_abbrev_dayofweek(struct _Locale_time *); /* * day is in the range [0, 7). Sunday is 0. */ const char * _Locale_d_t_fmt(struct _Locale_time *); const char * _Locale_d_fmt(struct _Locale_time *); const char * _Locale_t_fmt(struct _Locale_time *); const char * _Locale_am_str(struct _Locale_time *); const char * _Locale_pm_str(struct _Locale_time *); const char * _Locale_t_fmt_ampm(struct _Locale_time *); /* * FUNCTIONS THAT USE MESSAGES */ int _Locale_catopen(struct _Locale_messages*, const char*); /* * Very similar to catopen, except that it uses L to determine * which catalog to open. */ void _Locale_catclose(struct _Locale_messages*, int); /* * catalog is a value that was returned by a previous call to * _Locale_catopen */ const char * _Locale_catgets(struct _Locale_messages *, int, int, int,const char *); /* * Returns a string, identified by a set index and a message index, * from an opened message catalog. Returns default if no such * string exists. */ # ifdef __cplusplus } __STL_END_NAMESPACE # endif # endif /* __STL_C_LOCALE_H */