190423eceSAlexey Zelkin /* 274f2b975SAlexey Zelkin * Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org> 390423eceSAlexey Zelkin * All rights reserved. 490423eceSAlexey Zelkin * 590423eceSAlexey Zelkin * Redistribution and use in source and binary forms, with or without 690423eceSAlexey Zelkin * modification, are permitted provided that the following conditions 790423eceSAlexey Zelkin * are met: 890423eceSAlexey Zelkin * 1. Redistributions of source code must retain the above copyright 990423eceSAlexey Zelkin * notice, this list of conditions and the following disclaimer. 1090423eceSAlexey Zelkin * 2. Redistributions in binary form must reproduce the above copyright 1190423eceSAlexey Zelkin * notice, this list of conditions and the following disclaimer in the 1290423eceSAlexey Zelkin * documentation and/or other materials provided with the distribution. 1390423eceSAlexey Zelkin * 1490423eceSAlexey Zelkin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1590423eceSAlexey Zelkin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1690423eceSAlexey Zelkin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1790423eceSAlexey Zelkin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 1890423eceSAlexey Zelkin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 1990423eceSAlexey Zelkin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2090423eceSAlexey Zelkin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2190423eceSAlexey Zelkin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2290423eceSAlexey Zelkin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2390423eceSAlexey Zelkin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2490423eceSAlexey Zelkin * SUCH DAMAGE. 2590423eceSAlexey Zelkin * 2690423eceSAlexey Zelkin * $FreeBSD$ 2790423eceSAlexey Zelkin */ 2890423eceSAlexey Zelkin 291bd7723dSAlexey Zelkin #include <limits.h> 30831e8f61SAndrey A. Chernov #include <stdlib.h> 3190423eceSAlexey Zelkin #include "lmonetary.h" 3290423eceSAlexey Zelkin #include "ldpart.h" 3390423eceSAlexey Zelkin 3490423eceSAlexey Zelkin extern int __mlocale_changed; 351bd7723dSAlexey Zelkin extern const char * __fix_locale_grouping_str(const char *); 3690423eceSAlexey Zelkin 3790423eceSAlexey Zelkin #define LCMONETARY_SIZE (sizeof(struct lc_monetary_T) / sizeof(char *)) 3890423eceSAlexey Zelkin 3990423eceSAlexey Zelkin static char empty[] = ""; 401bd7723dSAlexey Zelkin static char numempty[] = { CHAR_MAX, '\0'}; 4190423eceSAlexey Zelkin 4290423eceSAlexey Zelkin static const struct lc_monetary_T _C_monetary_locale = { 4390423eceSAlexey Zelkin empty, /* int_curr_symbol */ 4490423eceSAlexey Zelkin empty, /* currency_symbol */ 4554e3bc25SAndrey A. Chernov empty, /* mon_decimal_point */ 4690423eceSAlexey Zelkin empty, /* mon_thousands_sep */ 4790423eceSAlexey Zelkin numempty, /* mon_grouping */ 4890423eceSAlexey Zelkin empty, /* positive_sign */ 4990423eceSAlexey Zelkin empty, /* negative_sign */ 5090423eceSAlexey Zelkin numempty, /* int_frac_digits */ 5190423eceSAlexey Zelkin numempty, /* frac_digits */ 5290423eceSAlexey Zelkin numempty, /* p_cs_precedes */ 5390423eceSAlexey Zelkin numempty, /* p_sep_by_space */ 5490423eceSAlexey Zelkin numempty, /* n_cs_precedes */ 5590423eceSAlexey Zelkin numempty, /* n_sep_by_space */ 5690423eceSAlexey Zelkin numempty, /* p_sign_posn */ 5790423eceSAlexey Zelkin numempty /* n_sign_posn */ 5890423eceSAlexey Zelkin }; 5990423eceSAlexey Zelkin 6090423eceSAlexey Zelkin static struct lc_monetary_T _monetary_locale; 6190423eceSAlexey Zelkin static int _monetary_using_locale; 6274f2b975SAlexey Zelkin static char *_monetary_locale_buf; 6390423eceSAlexey Zelkin 64831e8f61SAndrey A. Chernov static char 65831e8f61SAndrey A. Chernov cnv(const char *str) { 66831e8f61SAndrey A. Chernov int i = strtol(str, NULL, 10); 67831e8f61SAndrey A. Chernov if (i == -1) 68831e8f61SAndrey A. Chernov i = CHAR_MAX; 69831e8f61SAndrey A. Chernov return (char)i; 70831e8f61SAndrey A. Chernov } 71831e8f61SAndrey A. Chernov 7290423eceSAlexey Zelkin int 7390423eceSAlexey Zelkin __monetary_load_locale(const char *name) { 7490423eceSAlexey Zelkin 7590423eceSAlexey Zelkin int ret; 761bd7723dSAlexey Zelkin __mlocale_changed = 1; 7790423eceSAlexey Zelkin ret = __part_load_locale(name, &_monetary_using_locale, 7874f2b975SAlexey Zelkin _monetary_locale_buf, "LC_MONETARY", 7939d2c772SAlexey Zelkin LCMONETARY_SIZE, LCMONETARY_SIZE, 8090423eceSAlexey Zelkin (const char **)&_monetary_locale); 81831e8f61SAndrey A. Chernov if (ret == 0 && _monetary_using_locale) { 821bd7723dSAlexey Zelkin _monetary_locale.mon_grouping = 831bd7723dSAlexey Zelkin __fix_locale_grouping_str(_monetary_locale.mon_grouping); 84831e8f61SAndrey A. Chernov 85831e8f61SAndrey A. Chernov #define M_ASSIGN_CHAR(NAME) (((char *)_monetary_locale.NAME)[0] = \ 86831e8f61SAndrey A. Chernov cnv(_monetary_locale.NAME)) 87831e8f61SAndrey A. Chernov 88831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(int_frac_digits); 89831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(frac_digits); 90831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(p_cs_precedes); 91831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(p_sep_by_space); 92831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(n_cs_precedes); 93831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(n_sep_by_space); 94831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(p_sign_posn); 95831e8f61SAndrey A. Chernov M_ASSIGN_CHAR(n_sign_posn); 96831e8f61SAndrey A. Chernov } 9790423eceSAlexey Zelkin return ret; 9890423eceSAlexey Zelkin } 9990423eceSAlexey Zelkin 10090423eceSAlexey Zelkin struct lc_monetary_T * 10190423eceSAlexey Zelkin __get_current_monetary_locale(void) { 10290423eceSAlexey Zelkin 10390423eceSAlexey Zelkin return (_monetary_using_locale 10490423eceSAlexey Zelkin ? &_monetary_locale 10590423eceSAlexey Zelkin : (struct lc_monetary_T *)&_C_monetary_locale); 10690423eceSAlexey Zelkin } 10790423eceSAlexey Zelkin 10890423eceSAlexey Zelkin #ifdef LOCALE_DEBUG 10990423eceSAlexey Zelkin void 11090423eceSAlexey Zelkin monetdebug() { 11190423eceSAlexey Zelkin printf( "int_curr_symbol = %s\n" 11290423eceSAlexey Zelkin "currency_symbol = %s\n" 11390423eceSAlexey Zelkin "mon_decimal_point = %s\n" 11490423eceSAlexey Zelkin "mon_thousands_sep = %s\n" 11590423eceSAlexey Zelkin "mon_grouping = %s\n" 11690423eceSAlexey Zelkin "positive_sign = %s\n" 11790423eceSAlexey Zelkin "negative_sign = %s\n" 118831e8f61SAndrey A. Chernov "int_frac_digits = %d\n" 119831e8f61SAndrey A. Chernov "frac_digits = %d\n" 120831e8f61SAndrey A. Chernov "p_cs_precedes = %d\n" 121831e8f61SAndrey A. Chernov "p_sep_by_space = %d\n" 122831e8f61SAndrey A. Chernov "n_cs_precedes = %d\n" 123831e8f61SAndrey A. Chernov "n_sep_by_space = %d\n" 124831e8f61SAndrey A. Chernov "p_sign_posn = %d\n" 125831e8f61SAndrey A. Chernov "n_sign_posn = %d\n", 12690423eceSAlexey Zelkin _monetary_locale.int_curr_symbol, 12790423eceSAlexey Zelkin _monetary_locale.currency_symbol, 12890423eceSAlexey Zelkin _monetary_locale.mon_decimal_point, 12990423eceSAlexey Zelkin _monetary_locale.mon_thousands_sep, 13090423eceSAlexey Zelkin _monetary_locale.mon_grouping, 13190423eceSAlexey Zelkin _monetary_locale.positive_sign, 13290423eceSAlexey Zelkin _monetary_locale.negative_sign, 133831e8f61SAndrey A. Chernov _monetary_locale.int_frac_digits[0], 134831e8f61SAndrey A. Chernov _monetary_locale.frac_digits[0], 135831e8f61SAndrey A. Chernov _monetary_locale.p_cs_precedes[0], 136831e8f61SAndrey A. Chernov _monetary_locale.p_sep_by_space[0], 137831e8f61SAndrey A. Chernov _monetary_locale.n_cs_precedes[0], 138831e8f61SAndrey A. Chernov _monetary_locale.n_sep_by_space[0], 139831e8f61SAndrey A. Chernov _monetary_locale.p_sign_posn[0], 140831e8f61SAndrey A. Chernov _monetary_locale.n_sign_posn[0] 14190423eceSAlexey Zelkin ); 14290423eceSAlexey Zelkin } 14390423eceSAlexey Zelkin #endif /* LOCALE_DEBUG */ 144