lmonetary.c revision 72272
113250Sgraichen/*
250472Speter * Copyright (c) 2000, 2001 Alexey Zelkin
313250Sgraichen * All rights reserved.
4114745Sgad *
5114745Sgad * Redistribution and use in source and binary forms, with or without
6114745Sgad * modification, are permitted provided that the following conditions
7118637Sfjoe * are met:
8114745Sgad * 1. Redistributions of source code must retain the above copyright
9114745Sgad *    notice, this list of conditions and the following disclaimer.
10114745Sgad * 2. Redistributions in binary form must reproduce the above copyright
11221382Sru *    notice, this list of conditions and the following disclaimer in the
12114745Sgad *    documentation and/or other materials provided with the distribution.
1382758Srwatson *
1482758Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1582758Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1682758Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1782758Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1882758Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19114745Sgad * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20250579Seadler * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21250579Seadler * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22250579Seadler * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23250579Seadler * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24250579Seadler * SUCH DAMAGE.
25250579Seadler *
26250579Seadler * $FreeBSD: head/lib/libc/locale/lmonetary.c 72272 2001-02-10 01:38:18Z ache $
27250579Seadler */
28250579Seadler
29250579Seadler#include "lmonetary.h"
30250579Seadler#include "ldpart.h"
31250579Seadler
32250579Seadlerextern int __mlocale_changed;
33250579Seadler
34250579Seadler#define LCMONETARY_SIZE (sizeof(struct lc_monetary_T) / sizeof(char *))
35250579Seadler
36244522Smarkjstatic char	empty[] = "";
37202218Sedstatic char     numempty[] = "127"; /* XXX: CHAR_MAX supposed here */
38250579Seadler
39250579Seadlerstatic const struct lc_monetary_T _C_monetary_locale = {
40	empty ,		/* int_curr_symbol */
41	empty ,		/* currency_symbol */
42	"." , 		/* mon_decimal_point */
43	empty ,		/* mon_thousands_sep */
44	numempty ,	/* mon_grouping */
45	empty ,		/* positive_sign */
46	empty ,		/* negative_sign */
47	numempty ,	/* int_frac_digits */
48	numempty ,	/* frac_digits */
49	numempty ,	/* p_cs_precedes */
50	numempty ,	/* p_sep_by_space */
51	numempty ,	/* n_cs_precedes */
52	numempty ,	/* n_sep_by_space */
53	numempty ,	/* p_sign_posn */
54	numempty	/* n_sign_posn */
55};
56
57static struct lc_monetary_T _monetary_locale;
58static int	_monetary_using_locale;
59static char *	monetary_locale_buf;
60
61int
62__monetary_load_locale(const char *name) {
63
64	int ret;
65	ret = __part_load_locale(name, &_monetary_using_locale,
66		monetary_locale_buf, "LC_MONETARY", LCMONETARY_SIZE,
67		(const char **)&_monetary_locale);
68	if (!ret)
69		__mlocale_changed = 1;
70	return ret;
71}
72
73struct lc_monetary_T *
74__get_current_monetary_locale(void) {
75
76	return (_monetary_using_locale
77		? &_monetary_locale
78		: (struct lc_monetary_T *)&_C_monetary_locale);
79}
80
81#ifdef LOCALE_DEBUG
82void
83monetdebug() {
84printf(	"int_curr_symbol = %s\n"
85	"currency_symbol = %s\n"
86	"mon_decimal_point = %s\n"
87	"mon_thousands_sep = %s\n"
88	"mon_grouping = %s\n"
89	"positive_sign = %s\n"
90	"negative_sign = %s\n"
91	"int_frac_digits = %s\n"
92	"frac_digits = %s\n"
93	"p_cs_precedes = %s\n"
94	"p_sep_by_space = %s\n"
95	"n_cs_precedes = %s\n"
96	"n_sep_by_space = %s\n"
97	"p_sign_posn = %s\n"
98	"n_sign_posn = %s\n",
99	_monetary_locale.int_curr_symbol,
100	_monetary_locale.currency_symbol,
101	_monetary_locale.mon_decimal_point,
102	_monetary_locale.mon_thousands_sep,
103	_monetary_locale.mon_grouping,
104	_monetary_locale.positive_sign,
105	_monetary_locale.negative_sign,
106	_monetary_locale.int_frac_digits,
107	_monetary_locale.frac_digits,
108	_monetary_locale.p_cs_precedes,
109	_monetary_locale.p_sep_by_space,
110	_monetary_locale.n_cs_precedes,
111	_monetary_locale.n_sep_by_space,
112	_monetary_locale.p_sign_posn,
113	_monetary_locale.n_sign_posn
114);
115}
116#endif /* LOCALE_DEBUG */
117