OSDN Git Service

2001-08-27 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / config / locale / moneypunct_members_gnu.cc
1 // std::moneypunct implementation details, GNU version -*- C++ -*-
2
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction.  Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License.  This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 //
31 // ISO C++ 14882: 22.2.6.3.2  moneypunct virtual functions
32 //
33
34 // Written by Benjamin Kosnik <bkoz@redhat.com>
35
36 #include <locale>
37
38 namespace std
39 {
40   template<> 
41     void
42     moneypunct<char>::_M_initialize_moneypunct(__c_locale __cloc)
43     {
44       if (!__cloc)
45         {
46           // "C" locale
47           _M_decimal_point = '.';
48           _M_thousands_sep = ',';
49           _M_grouping = "";
50           _M_curr_symbol = string_type();
51           _M_positive_sign = string_type();
52           _M_negative_sign = string_type();
53           _M_frac_digits = 0;
54           _M_pos_format = money_base::_S_default_pattern;
55           _M_neg_format = money_base::_S_default_pattern;
56         }
57       else
58         {
59           // Named locale.
60           _M_decimal_point = *(__nl_langinfo_l(__MON_DECIMAL_POINT, __cloc));
61           _M_thousands_sep = *(__nl_langinfo_l(__MON_THOUSANDS_SEP, __cloc));
62           _M_grouping = __nl_langinfo_l(__MON_GROUPING, __cloc);
63           _M_positive_sign = __nl_langinfo_l(__POSITIVE_SIGN, __cloc);
64           _M_negative_sign = __nl_langinfo_l(__NEGATIVE_SIGN, __cloc);
65           if (intl)
66             {
67               _M_curr_symbol = __nl_langinfo_l(__INT_CURR_SYMBOL, __cloc);
68               _M_frac_digits = *(__nl_langinfo_l(__INT_FRAC_DIGITS, __cloc));
69               char __ppreceeds = *(__nl_langinfo_l(__INT_P_CS_PRECEDES, 
70                                                    __cloc));
71               char __pspace = *(__nl_langinfo_l(__INT_P_SEP_BY_SPACE, __cloc));
72               char __pposn = *(__nl_langinfo_l(__INT_P_SIGN_POSN, __cloc));
73               _M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, 
74                                                    __pposn);
75               char __npreceeds = *(__nl_langinfo_l(__INT_N_CS_PRECEDES, 
76                                                    __cloc));
77               char __nspace = *(__nl_langinfo_l(__INT_N_SEP_BY_SPACE, __cloc));
78               char __nposn = *(__nl_langinfo_l(__INT_N_SIGN_POSN, __cloc));
79               _M_neg_format = _S_construct_pattern(__npreceeds, __nspace, 
80                                                    __nposn);
81             }
82           else
83             {
84               _M_curr_symbol = __nl_langinfo_l(__CURRENCY_SYMBOL, __cloc);
85               _M_frac_digits = *(__nl_langinfo_l(__FRAC_DIGITS, __cloc));
86               char __ppreceeds = *(__nl_langinfo_l(__P_CS_PRECEDES, __cloc));
87               char __pspace = *(__nl_langinfo_l(__P_SEP_BY_SPACE, __cloc));
88               char __pposn = *(__nl_langinfo_l(__P_SIGN_POSN, __cloc));
89               _M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, 
90                                                    __pposn);
91               char __npreceeds = *(__nl_langinfo_l(__N_CS_PRECEDES, __cloc));
92               char __nspace = *(__nl_langinfo_l(__N_SEP_BY_SPACE, __cloc));
93               char __nposn = *(__nl_langinfo_l(__N_SIGN_POSN, __cloc));
94               _M_neg_format = _S_construct_pattern(__npreceeds, __nspace, 
95                                                    __nposn);
96             }
97         }
98     }
99
100 #ifdef _GLIBCPP_USE_WCHAR_T
101   template<> 
102     void
103     moneypunct<wchar_t>::_M_initialize_moneypunct(__c_locale __cloc)
104     {
105       if (!__cloc)
106         {
107           // "C" locale
108           _M_decimal_point = L'.';
109           _M_thousands_sep = L',';
110           _M_grouping = "";
111           _M_curr_symbol = string_type();
112           _M_positive_sign = string_type();
113           _M_negative_sign = string_type();
114           _M_frac_digits = 0;
115           _M_pos_format = money_base::_S_default_pattern;
116           _M_neg_format = money_base::_S_default_pattern;
117         }
118       else
119         {
120           // Named locale.
121           _M_decimal_point = reinterpret_cast<wchar_t>(__nl_langinfo_l(_NL_NUMERIC_DECIMAL_POINT_WC, __cloc));
122           _M_thousands_sep = reinterpret_cast<wchar_t>(__nl_langinfo_l(_NL_NUMERIC_THOUSANDS_SEP_WC,__cloc));
123           _M_grouping = __nl_langinfo_l(GROUPING, __cloc);
124           _M_positive_sign = reinterpret_cast<wchar_t*>(__nl_langinfo_l(__POSITIVE_SIGN, __cloc));
125           _M_negative_sign = reinterpret_cast<wchar_t*>(__nl_langinfo_l(__NEGATIVE_SIGN, __cloc));
126           if (intl)
127             {
128               _M_curr_symbol = reinterpret_cast<wchar_t*>(__nl_langinfo_l(__INT_CURR_SYMBOL, __cloc));
129               _M_frac_digits = *(__nl_langinfo_l(__INT_FRAC_DIGITS, __cloc));
130               char __ppreceeds = *(__nl_langinfo_l(__INT_P_CS_PRECEDES, 
131                                                    __cloc));
132               char __pspace = *(__nl_langinfo_l(__INT_P_SEP_BY_SPACE, __cloc));
133               char __pposn = *(__nl_langinfo_l(__INT_P_SIGN_POSN, __cloc));
134               _M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, 
135                                                    __pposn);
136               char __npreceeds = *(__nl_langinfo_l(__INT_N_CS_PRECEDES, 
137                                                    __cloc));
138               char __nspace = *(__nl_langinfo_l(__INT_N_SEP_BY_SPACE, __cloc));
139               char __nposn = *(__nl_langinfo_l(__INT_N_SIGN_POSN, __cloc));
140               _M_neg_format = _S_construct_pattern(__npreceeds, __nspace, 
141                                                    __nposn);
142             }
143           else
144             {
145               _M_curr_symbol = reinterpret_cast<wchar_t*>(__nl_langinfo_l(__CURRENCY_SYMBOL, __cloc));
146               _M_frac_digits = *(__nl_langinfo_l(__FRAC_DIGITS, __cloc));
147               char __ppreceeds = *(__nl_langinfo_l(__P_CS_PRECEDES, __cloc));
148               char __pspace = *(__nl_langinfo_l(__P_SEP_BY_SPACE, __cloc));
149               char __pposn = *(__nl_langinfo_l(__P_SIGN_POSN, __cloc));
150               _M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, 
151                                                    __pposn);
152               char __npreceeds = *(__nl_langinfo_l(__N_CS_PRECEDES, __cloc));
153               char __nspace = *(__nl_langinfo_l(__N_SEP_BY_SPACE, __cloc));
154               char __nposn = *(__nl_langinfo_l(__N_SIGN_POSN, __cloc));
155               _M_neg_format = _S_construct_pattern(__npreceeds, __nspace, 
156                                                    __nposn);
157             }
158         }
159     }
160 #endif
161 }