]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/config/locale/gnu/numeric_members.cc
acconfig.h: Remove _GLIBCXX_USE_LONG_DOUBLE entry, not used anymore.
[thirdparty/gcc.git] / libstdc++-v3 / config / locale / gnu / numeric_members.cc
1 // std::numpunct implementation details, GNU version -*- C++ -*-
2
3 // Copyright (C) 2001, 2002, 2003, 2004 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.3.1.2 numpunct virtual functions
32 //
33
34 // Written by Benjamin Kosnik <bkoz@redhat.com>
35
36 #include <locale>
37 #include <bits/c++locale_internal.h>
38
39 namespace std
40 {
41 template<>
42 void
43 numpunct<char>::_M_initialize_numpunct(__c_locale __cloc)
44 {
45 if (!_M_data)
46 _M_data = new __numpunct_cache<char>;
47
48 if (!__cloc)
49 {
50 // "C" locale
51 _M_data->_M_grouping = "";
52 _M_data->_M_grouping_size = 0;
53 _M_data->_M_use_grouping = false;
54
55 _M_data->_M_decimal_point = '.';
56 _M_data->_M_thousands_sep = ',';
57
58 for (size_t __i = 0; __i < __num_base::_S_oend; ++__i)
59 _M_data->_M_atoms_out[__i] = __num_base::_S_atoms_out[__i];
60
61 for (size_t __i = 0; __i < __num_base::_S_iend; ++__i)
62 _M_data->_M_atoms_in[__i] = __num_base::_S_atoms_in[__i];
63 }
64 else
65 {
66 // Named locale.
67 _M_data->_M_decimal_point = *(__nl_langinfo_l(DECIMAL_POINT, __cloc));
68 _M_data->_M_thousands_sep = *(__nl_langinfo_l(THOUSANDS_SEP, __cloc));
69
70 // Check for NULL, which implies no grouping.
71 if (_M_data->_M_thousands_sep == '\0')
72 _M_data->_M_grouping = "";
73 else
74 _M_data->_M_grouping = __nl_langinfo_l(GROUPING, __cloc);
75 _M_data->_M_grouping_size = strlen(_M_data->_M_grouping);
76 }
77
78 // NB: There is no way to extact this info from posix locales.
79 // _M_truename = __nl_langinfo_l(YESSTR, __cloc);
80 _M_data->_M_truename = "true";
81 _M_data->_M_truename_size = 4;
82 // _M_falsename = __nl_langinfo_l(NOSTR, __cloc);
83 _M_data->_M_falsename = "false";
84 _M_data->_M_falsename_size = 5;
85 }
86
87 template<>
88 numpunct<char>::~numpunct()
89 { delete _M_data; }
90
91 #ifdef _GLIBCXX_USE_WCHAR_T
92 template<>
93 void
94 numpunct<wchar_t>::_M_initialize_numpunct(__c_locale __cloc)
95 {
96 if (!_M_data)
97 _M_data = new __numpunct_cache<wchar_t>;
98
99 if (!__cloc)
100 {
101 // "C" locale
102 _M_data->_M_grouping = "";
103 _M_data->_M_grouping_size = 0;
104 _M_data->_M_use_grouping = false;
105
106 _M_data->_M_decimal_point = L'.';
107 _M_data->_M_thousands_sep = L',';
108
109 // Use ctype::widen code without the facet...
110 for (size_t __i = 0; __i < __num_base::_S_oend; ++__i)
111 _M_data->_M_atoms_out[__i] =
112 static_cast<wchar_t>(__num_base::_S_atoms_out[__i]);
113
114 for (size_t __i = 0; __i < __num_base::_S_iend; ++__i)
115 _M_data->_M_atoms_in[__i] =
116 static_cast<wchar_t>(__num_base::_S_atoms_in[__i]);
117 }
118 else
119 {
120 // Named locale.
121 union __s_and_w { const char *__s; unsigned int __w; } __u;
122 __u.__s = __nl_langinfo_l(_NL_NUMERIC_DECIMAL_POINT_WC, __cloc);
123 _M_data->_M_decimal_point = static_cast<wchar_t>(__u.__w);
124
125 __u.__s = __nl_langinfo_l(_NL_NUMERIC_THOUSANDS_SEP_WC, __cloc);
126 _M_data->_M_thousands_sep = static_cast<wchar_t>(__u.__w);
127
128 if (_M_data->_M_thousands_sep == L'\0')
129 _M_data->_M_grouping = "";
130 else
131 _M_data->_M_grouping = __nl_langinfo_l(GROUPING, __cloc);
132 _M_data->_M_grouping_size = strlen(_M_data->_M_grouping);
133 }
134
135 // NB: There is no way to extact this info from posix locales.
136 // _M_truename = __nl_langinfo_l(YESSTR, __cloc);
137 _M_data->_M_truename = L"true";
138 _M_data->_M_truename_size = 4;
139 // _M_falsename = __nl_langinfo_l(NOSTR, __cloc);
140 _M_data->_M_falsename = L"false";
141 _M_data->_M_falsename_size = 5;
142 }
143
144 template<>
145 numpunct<wchar_t>::~numpunct()
146 { delete _M_data; }
147 #endif
148 }