xref: /freebsd/lib/libc/locale/lmonetary.c (revision f4da1a754daf3d4c20b8747729c0685cd2488bd6)
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 
27333fc21eSDavid E. O'Brien #include <sys/cdefs.h>
28333fc21eSDavid E. O'Brien __FBSDID("$FreeBSD$");
29333fc21eSDavid E. O'Brien 
301bd7723dSAlexey Zelkin #include <limits.h>
31f4da1a75STim J. Robbins #include <stddef.h>
32831e8f61SAndrey A. Chernov #include <stdlib.h>
3390423eceSAlexey Zelkin #include "lmonetary.h"
3490423eceSAlexey Zelkin #include "ldpart.h"
3590423eceSAlexey Zelkin 
3690423eceSAlexey Zelkin extern int __mlocale_changed;
371bd7723dSAlexey Zelkin extern const char * __fix_locale_grouping_str(const char *);
3890423eceSAlexey Zelkin 
3990423eceSAlexey Zelkin #define LCMONETARY_SIZE (sizeof(struct lc_monetary_T) / sizeof(char *))
4090423eceSAlexey Zelkin 
4190423eceSAlexey Zelkin static char	empty[] = "";
421bd7723dSAlexey Zelkin static char	numempty[] = { CHAR_MAX, '\0'};
4390423eceSAlexey Zelkin 
4490423eceSAlexey Zelkin static const struct lc_monetary_T _C_monetary_locale = {
4590423eceSAlexey Zelkin 	empty,		/* int_curr_symbol */
4690423eceSAlexey Zelkin 	empty,		/* currency_symbol */
4754e3bc25SAndrey A. Chernov 	empty,		/* mon_decimal_point */
4890423eceSAlexey Zelkin 	empty,		/* mon_thousands_sep */
4990423eceSAlexey Zelkin 	numempty,	/* mon_grouping */
5090423eceSAlexey Zelkin 	empty,		/* positive_sign */
5190423eceSAlexey Zelkin 	empty,		/* negative_sign */
5290423eceSAlexey Zelkin 	numempty,	/* int_frac_digits */
5390423eceSAlexey Zelkin 	numempty,	/* frac_digits */
5490423eceSAlexey Zelkin 	numempty,	/* p_cs_precedes */
5590423eceSAlexey Zelkin 	numempty,	/* p_sep_by_space */
5690423eceSAlexey Zelkin 	numempty,	/* n_cs_precedes */
5790423eceSAlexey Zelkin 	numempty,	/* n_sep_by_space */
5890423eceSAlexey Zelkin 	numempty,	/* p_sign_posn */
59f4da1a75STim J. Robbins 	numempty,	/* n_sign_posn */
60f4da1a75STim J. Robbins 	numempty,	/* int_p_cs_precedes */
61f4da1a75STim J. Robbins 	numempty,	/* int_n_cs_precedes */
62f4da1a75STim J. Robbins 	numempty,	/* int_p_sep_by_space */
63f4da1a75STim J. Robbins 	numempty,	/* int_n_sep_by_space */
64f4da1a75STim J. Robbins 	numempty,	/* int_p_sign_posn */
65f4da1a75STim J. Robbins 	numempty	/* int_n_sign_posn */
6690423eceSAlexey Zelkin };
6790423eceSAlexey Zelkin 
6890423eceSAlexey Zelkin static struct lc_monetary_T _monetary_locale;
6990423eceSAlexey Zelkin static int	_monetary_using_locale;
7074f2b975SAlexey Zelkin static char	*_monetary_locale_buf;
7190423eceSAlexey Zelkin 
72831e8f61SAndrey A. Chernov static char
73ecc4c620SAndrey A. Chernov cnv(const char *str)
74ecc4c620SAndrey A. Chernov {
75831e8f61SAndrey A. Chernov 	int i = strtol(str, NULL, 10);
76ecc4c620SAndrey A. Chernov 
77831e8f61SAndrey A. Chernov 	if (i == -1)
78831e8f61SAndrey A. Chernov 		i = CHAR_MAX;
79ecc4c620SAndrey A. Chernov 	return ((char)i);
80831e8f61SAndrey A. Chernov }
81831e8f61SAndrey A. Chernov 
8290423eceSAlexey Zelkin int
83ecc4c620SAndrey A. Chernov __monetary_load_locale(const char *name)
84ecc4c620SAndrey A. Chernov {
8590423eceSAlexey Zelkin 	int ret;
86ecc4c620SAndrey A. Chernov 
8790423eceSAlexey Zelkin 	ret = __part_load_locale(name, &_monetary_using_locale,
8874f2b975SAlexey Zelkin 		_monetary_locale_buf, "LC_MONETARY",
89f4da1a75STim J. Robbins 		LCMONETARY_SIZE,
90f4da1a75STim J. Robbins 		offsetof(struct lc_monetary_T, int_p_cs_precedes) /
91f4da1a75STim J. Robbins 		    sizeof(char *),
9290423eceSAlexey Zelkin 		(const char **)&_monetary_locale);
9376692b80SAndrey A. Chernov 	if (ret != _LDP_ERROR)
9476692b80SAndrey A. Chernov 		__mlocale_changed = 1;
9576692b80SAndrey A. Chernov 	if (ret == _LDP_LOADED) {
961bd7723dSAlexey Zelkin 		_monetary_locale.mon_grouping =
971bd7723dSAlexey Zelkin 		     __fix_locale_grouping_str(_monetary_locale.mon_grouping);
98831e8f61SAndrey A. Chernov 
99831e8f61SAndrey A. Chernov #define M_ASSIGN_CHAR(NAME) (((char *)_monetary_locale.NAME)[0] = \
100831e8f61SAndrey A. Chernov 			     cnv(_monetary_locale.NAME))
101831e8f61SAndrey A. Chernov 
102831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(int_frac_digits);
103831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(frac_digits);
104831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(p_cs_precedes);
105831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(p_sep_by_space);
106831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(n_cs_precedes);
107831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(n_sep_by_space);
108831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(p_sign_posn);
109831e8f61SAndrey A. Chernov 		M_ASSIGN_CHAR(n_sign_posn);
110f4da1a75STim J. Robbins 
111f4da1a75STim J. Robbins 		/*
112f4da1a75STim J. Robbins 		 * The six additional C99 international monetary formatting
113f4da1a75STim J. Robbins 		 * parameters default to the national parameters when
114f4da1a75STim J. Robbins 		 * reading FreeBSD 4 LC_MONETARY data files.
115f4da1a75STim J. Robbins 		 */
116f4da1a75STim J. Robbins #define	M_ASSIGN_ICHAR(NAME)						\
117f4da1a75STim J. Robbins 		do {							\
118f4da1a75STim J. Robbins 			if (_monetary_locale.int_##NAME == NULL)	\
119f4da1a75STim J. Robbins 				_monetary_locale.int_##NAME =		\
120f4da1a75STim J. Robbins 				    _monetary_locale.NAME;		\
121f4da1a75STim J. Robbins 			else						\
122f4da1a75STim J. Robbins 				M_ASSIGN_CHAR(int_##NAME);		\
123f4da1a75STim J. Robbins 		} while (0)
124f4da1a75STim J. Robbins 
125f4da1a75STim J. Robbins 		M_ASSIGN_ICHAR(p_cs_precedes);
126f4da1a75STim J. Robbins 		M_ASSIGN_ICHAR(n_cs_precedes);
127f4da1a75STim J. Robbins 		M_ASSIGN_ICHAR(p_sep_by_space);
128f4da1a75STim J. Robbins 		M_ASSIGN_ICHAR(n_sep_by_space);
129f4da1a75STim J. Robbins 		M_ASSIGN_ICHAR(p_sign_posn);
130f4da1a75STim J. Robbins 		M_ASSIGN_ICHAR(n_sign_posn);
131831e8f61SAndrey A. Chernov 	}
132ecc4c620SAndrey A. Chernov 	return (ret);
13390423eceSAlexey Zelkin }
13490423eceSAlexey Zelkin 
13590423eceSAlexey Zelkin struct lc_monetary_T *
136ecc4c620SAndrey A. Chernov __get_current_monetary_locale(void)
137ecc4c620SAndrey A. Chernov {
13890423eceSAlexey Zelkin 	return (_monetary_using_locale
13990423eceSAlexey Zelkin 		? &_monetary_locale
14090423eceSAlexey Zelkin 		: (struct lc_monetary_T *)&_C_monetary_locale);
14190423eceSAlexey Zelkin }
14290423eceSAlexey Zelkin 
14390423eceSAlexey Zelkin #ifdef LOCALE_DEBUG
14490423eceSAlexey Zelkin void
14590423eceSAlexey Zelkin monetdebug() {
14690423eceSAlexey Zelkin printf(	"int_curr_symbol = %s\n"
14790423eceSAlexey Zelkin 	"currency_symbol = %s\n"
14890423eceSAlexey Zelkin 	"mon_decimal_point = %s\n"
14990423eceSAlexey Zelkin 	"mon_thousands_sep = %s\n"
15090423eceSAlexey Zelkin 	"mon_grouping = %s\n"
15190423eceSAlexey Zelkin 	"positive_sign = %s\n"
15290423eceSAlexey Zelkin 	"negative_sign = %s\n"
153831e8f61SAndrey A. Chernov 	"int_frac_digits = %d\n"
154831e8f61SAndrey A. Chernov 	"frac_digits = %d\n"
155831e8f61SAndrey A. Chernov 	"p_cs_precedes = %d\n"
156831e8f61SAndrey A. Chernov 	"p_sep_by_space = %d\n"
157831e8f61SAndrey A. Chernov 	"n_cs_precedes = %d\n"
158831e8f61SAndrey A. Chernov 	"n_sep_by_space = %d\n"
159831e8f61SAndrey A. Chernov 	"p_sign_posn = %d\n"
160831e8f61SAndrey A. Chernov 	"n_sign_posn = %d\n",
16190423eceSAlexey Zelkin 	_monetary_locale.int_curr_symbol,
16290423eceSAlexey Zelkin 	_monetary_locale.currency_symbol,
16390423eceSAlexey Zelkin 	_monetary_locale.mon_decimal_point,
16490423eceSAlexey Zelkin 	_monetary_locale.mon_thousands_sep,
16590423eceSAlexey Zelkin 	_monetary_locale.mon_grouping,
16690423eceSAlexey Zelkin 	_monetary_locale.positive_sign,
16790423eceSAlexey Zelkin 	_monetary_locale.negative_sign,
168831e8f61SAndrey A. Chernov 	_monetary_locale.int_frac_digits[0],
169831e8f61SAndrey A. Chernov 	_monetary_locale.frac_digits[0],
170831e8f61SAndrey A. Chernov 	_monetary_locale.p_cs_precedes[0],
171831e8f61SAndrey A. Chernov 	_monetary_locale.p_sep_by_space[0],
172831e8f61SAndrey A. Chernov 	_monetary_locale.n_cs_precedes[0],
173831e8f61SAndrey A. Chernov 	_monetary_locale.n_sep_by_space[0],
174831e8f61SAndrey A. Chernov 	_monetary_locale.p_sign_posn[0],
175831e8f61SAndrey A. Chernov 	_monetary_locale.n_sign_posn[0]
17690423eceSAlexey Zelkin );
17790423eceSAlexey Zelkin }
17890423eceSAlexey Zelkin #endif /* LOCALE_DEBUG */
179