]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/localename.cc
c++config (std::size_t, [...]): Provide typedefs.
[thirdparty/gcc.git] / libstdc++-v3 / src / localename.cc
CommitLineData
4ba851b5 1// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
bc2631e0 2// 2006, 2007, 2008, 2009
8dba028f 3// Free Software Foundation, Inc.
b2dad0e3
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
b2dad0e3
BK
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
748086b7
JJ
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
b2dad0e3 19
748086b7
JJ
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
b2dad0e3 24
54c1bf78
BK
25#include <clocale>
26#include <cstring>
4ba851b5 27#include <cstdlib>
54c1bf78 28#include <locale>
b2dad0e3 29
3cbc7af0
BK
30_GLIBCXX_BEGIN_NAMESPACE(std)
31
a7817e1d 32 using namespace __gnu_cxx;
d3a193e3 33
26c691a8 34 locale::locale(const char* __s) : _M_impl(0)
e4cc8659 35 {
c755e77d 36 if (__s)
91675f9d 37 {
c755e77d
BK
38 _S_initialize();
39 if (std::strcmp(__s, "C") == 0 || std::strcmp(__s, "POSIX") == 0)
40 (_M_impl = _S_classic)->_M_add_reference();
41 else if (std::strcmp(__s, "") != 0)
42 _M_impl = new _Impl(__s, 1);
43 else
91675f9d 44 {
c755e77d
BK
45 // Get it from the environment.
46 char* __env = std::getenv("LC_ALL");
47 // If LC_ALL is set we are done.
48 if (__env && std::strcmp(__env, "") != 0)
49 {
50 if (std::strcmp(__env, "C") == 0
51 || std::strcmp(__env, "POSIX") == 0)
52 (_M_impl = _S_classic)->_M_add_reference();
53 else
54 _M_impl = new _Impl(__env, 1);
55 }
56 else
57 {
c755e77d 58 // LANG may set a default different from "C".
17c08c32
PC
59 string __lang;
60 __env = std::getenv("LANG");
c755e77d
BK
61 if (!__env || std::strcmp(__env, "") == 0
62 || std::strcmp(__env, "C") == 0
63 || std::strcmp(__env, "POSIX") == 0)
17c08c32 64 __lang = "C";
c755e77d 65 else
17c08c32 66 __lang = __env;
c755e77d
BK
67
68 // Scan the categories looking for the first one
69 // different from LANG.
70 size_t __i = 0;
17c08c32 71 if (__lang == "C")
c755e77d
BK
72 for (; __i < _S_categories_size; ++__i)
73 {
74 __env = std::getenv(_S_categories[__i]);
75 if (__env && std::strcmp(__env, "") != 0
76 && std::strcmp(__env, "C") != 0
77 && std::strcmp(__env, "POSIX") != 0)
78 break;
79 }
80 else
81 for (; __i < _S_categories_size; ++__i)
82 {
83 __env = std::getenv(_S_categories[__i]);
84 if (__env && std::strcmp(__env, "") != 0
17c08c32 85 && __lang != __env)
c755e77d
BK
86 break;
87 }
88
89 // If one is found, build the complete string of
90 // the form LC_CTYPE=xxx;LC_NUMERIC=yyy; and so on...
91 if (__i < _S_categories_size)
92 {
93 string __str;
4df9c41d 94 __str.reserve(128);
c755e77d
BK
95 for (size_t __j = 0; __j < __i; ++__j)
96 {
97 __str += _S_categories[__j];
98 __str += '=';
17c08c32 99 __str += __lang;
c755e77d
BK
100 __str += ';';
101 }
102 __str += _S_categories[__i];
103 __str += '=';
104 __str += __env;
105 __str += ';';
17c08c32 106 ++__i;
c755e77d
BK
107 for (; __i < _S_categories_size; ++__i)
108 {
109 __env = std::getenv(_S_categories[__i]);
17c08c32 110 __str += _S_categories[__i];
c755e77d
BK
111 if (!__env || std::strcmp(__env, "") == 0)
112 {
c755e77d 113 __str += '=';
17c08c32 114 __str += __lang;
c755e77d
BK
115 __str += ';';
116 }
117 else if (std::strcmp(__env, "C") == 0
118 || std::strcmp(__env, "POSIX") == 0)
17c08c32 119 __str += "=C;";
c755e77d
BK
120 else
121 {
c755e77d
BK
122 __str += '=';
123 __str += __env;
124 __str += ';';
125 }
126 }
127 __str.erase(__str.end() - 1);
128 _M_impl = new _Impl(__str.c_str(), 1);
129 }
130 // ... otherwise either an additional instance of
131 // the "C" locale or LANG.
17c08c32 132 else if (__lang == "C")
c755e77d
BK
133 (_M_impl = _S_classic)->_M_add_reference();
134 else
17c08c32 135 _M_impl = new _Impl(__lang.c_str(), 1);
c755e77d 136 }
91675f9d 137 }
73c4dcc6 138 }
c755e77d 139 else
8fc81078 140 __throw_runtime_error(__N("locale::locale null not valid"));
c755e77d
BK
141 }
142
143 locale::locale(const locale& __base, const char* __s, category __cat)
26c691a8 144 : _M_impl(0)
c755e77d
BK
145 {
146 // NB: There are complicated, yet more efficient ways to do
147 // this. Building up locales on a per-category way is tedious, so
148 // let's do it this way until people complain.
149 locale __add(__s);
150 _M_coalesce(__base, __add, __cat);
151 }
152
153 locale::locale(const locale& __base, const locale& __add, category __cat)
26c691a8 154 : _M_impl(0)
3ecaae52 155 { _M_coalesce(__base, __add, __cat); }
c755e77d
BK
156
157 void
158 locale::_M_coalesce(const locale& __base, const locale& __add,
159 category __cat)
160 {
161 __cat = _S_normalize_category(__cat);
162 _M_impl = new _Impl(*__base._M_impl, 1);
163
bc2631e0 164 __try
c755e77d 165 { _M_impl->_M_replace_categories(__add._M_impl, __cat); }
bf4967a1 166 __catch(...)
c755e77d
BK
167 {
168 _M_impl->_M_remove_reference();
73c4dcc6
BK
169 __throw_exception_again;
170 }
e4cc8659
BK
171 }
172
d3a193e3 173 // Construct named _Impl.
22b9554c 174 locale::_Impl::
17c08c32 175 _Impl(const char* __s, size_t __refs)
26c691a8 176 : _M_refcount(__refs), _M_facets(0), _M_facets_size(_GLIBCXX_NUM_FACETS),
17c08c32 177 _M_caches(0), _M_names(0)
7dc08a20 178 {
215f9e28
BK
179 // Initialize the underlying locale model, which also checks to
180 // see if the given name is valid.
def9790d 181 __c_locale __cloc;
d3a193e3 182 locale::facet::_S_create_c_locale(__cloc, __s);
c8036448 183 __c_locale __clocm = __cloc;
def9790d 184
bc2631e0 185 __try
215f9e28 186 {
91675f9d 187 _M_facets = new const facet*[_M_facets_size];
70863cbd
PC
188 for (size_t __i = 0; __i < _M_facets_size; ++__i)
189 _M_facets[__i] = 0;
91675f9d 190 _M_caches = new const facet*[_M_facets_size];
95b147fe
SM
191 for (size_t __j = 0; __j < _M_facets_size; ++__j)
192 _M_caches[__j] = 0;
91675f9d 193 _M_names = new char*[_S_categories_size];
95b147fe
SM
194 for (size_t __k = 0; __k < _S_categories_size; ++__k)
195 _M_names[__k] = 0;
215f9e28 196
4df9c41d 197 // Name the categories.
c8036448 198 const char* __smon = __s;
91675f9d 199 const size_t __len = std::strlen(__s);
17c08c32 200 if (!std::memchr(__s, ';', __len))
aa53f832 201 {
4df9c41d 202 _M_names[0] = new char[__len + 1];
c8036448 203 std::memcpy(_M_names[0], __s, __len + 1);
aa53f832 204 }
91675f9d 205 else
aa53f832 206 {
2d91a076 207 const char* __end = __s;
c8036448
PC
208 bool __found_ctype = false;
209 bool __found_monetary = false;
210 size_t __ci = 0, __mi = 0;
91675f9d
PC
211 for (size_t __i = 0; __i < _S_categories_size; ++__i)
212 {
2d91a076
PC
213 const char* __beg = std::strchr(__end + 1, '=') + 1;
214 __end = std::strchr(__beg, ';');
91675f9d
PC
215 if (!__end)
216 __end = __s + __len;
4df9c41d
PC
217 _M_names[__i] = new char[__end - __beg + 1];
218 std::memcpy(_M_names[__i], __beg, __end - __beg);
219 _M_names[__i][__end - __beg] = '\0';
c8036448
PC
220 if (!__found_ctype
221 && *(__beg - 2) == 'E' && *(__beg - 3) == 'P')
222 {
223 __found_ctype = true;
224 __ci = __i;
225 }
226 else if (!__found_monetary && *(__beg - 2) == 'Y')
227 {
228 __found_monetary = true;
229 __mi = __i;
230 }
231 }
232
233 if (std::strcmp(_M_names[__ci], _M_names[__mi]))
234 {
235 __smon = _M_names[__mi];
236 __clocm = locale::facet::_S_lc_ctype_c_locale(__cloc,
237 __smon);
91675f9d 238 }
aa53f832 239 }
70863cbd
PC
240
241 // Construct all standard facets and add them to _M_facets.
242 _M_init_facet(new std::ctype<char>(__cloc, 0, false));
243 _M_init_facet(new codecvt<char, char, mbstate_t>(__cloc));
244 _M_init_facet(new numpunct<char>(__cloc));
245 _M_init_facet(new num_get<char>);
246 _M_init_facet(new num_put<char>);
247 _M_init_facet(new std::collate<char>(__cloc));
c8036448
PC
248 _M_init_facet(new moneypunct<char, false>(__cloc, 0));
249 _M_init_facet(new moneypunct<char, true>(__cloc, 0));
70863cbd
PC
250 _M_init_facet(new money_get<char>);
251 _M_init_facet(new money_put<char>);
252 _M_init_facet(new __timepunct<char>(__cloc, __s));
253 _M_init_facet(new time_get<char>);
254 _M_init_facet(new time_put<char>);
255 _M_init_facet(new std::messages<char>(__cloc, __s));
256
257#ifdef _GLIBCXX_USE_WCHAR_T
258 _M_init_facet(new std::ctype<wchar_t>(__cloc));
259 _M_init_facet(new codecvt<wchar_t, char, mbstate_t>(__cloc));
260 _M_init_facet(new numpunct<wchar_t>(__cloc));
261 _M_init_facet(new num_get<wchar_t>);
262 _M_init_facet(new num_put<wchar_t>);
263 _M_init_facet(new std::collate<wchar_t>(__cloc));
c8036448
PC
264 _M_init_facet(new moneypunct<wchar_t, false>(__clocm, __smon));
265 _M_init_facet(new moneypunct<wchar_t, true>(__clocm, __smon));
70863cbd
PC
266 _M_init_facet(new money_get<wchar_t>);
267 _M_init_facet(new money_put<wchar_t>);
268 _M_init_facet(new __timepunct<wchar_t>(__cloc, __s));
269 _M_init_facet(new time_get<wchar_t>);
270 _M_init_facet(new time_put<wchar_t>);
271 _M_init_facet(new std::messages<wchar_t>(__cloc, __s));
272#endif
273 locale::facet::_S_destroy_c_locale(__cloc);
c8036448
PC
274 if (__clocm != __cloc)
275 locale::facet::_S_destroy_c_locale(__clocm);
aa53f832 276 }
bc2631e0 277 __catch(...)
91675f9d 278 {
70863cbd 279 locale::facet::_S_destroy_c_locale(__cloc);
c8036448
PC
280 if (__clocm != __cloc)
281 locale::facet::_S_destroy_c_locale(__clocm);
91675f9d
PC
282 this->~_Impl();
283 __throw_exception_again;
70863cbd 284 }
b2dad0e3 285 }
d3a193e3 286
e4cc8659
BK
287 void
288 locale::_Impl::
d358ecd0 289 _M_replace_categories(const _Impl* __imp, category __cat)
e4cc8659 290 {
4df9c41d 291 category __mask = 1;
3ecaae52
PC
292 if (!_M_names[0] || !__imp->_M_names[0])
293 {
294 if (_M_names[0])
295 {
296 delete [] _M_names[0];
297 _M_names[0] = 0; // Unnamed.
298 }
299
300 for (size_t __ix = 0; __ix < _S_categories_size; ++__ix, __mask <<= 1)
301 {
302 if (__mask & __cat)
303 // Need to replace entry in _M_facets with other locale's info.
304 _M_replace_category(__imp, _S_facet_categories[__ix]);
305 }
306 }
307 else
e4cc8659 308 {
3ecaae52 309 if (!_M_names[1])
e4cc8659 310 {
3ecaae52
PC
311 // A full set of _M_names must be prepared, all identical
312 // to _M_names[0] to begin with. Then, below, a few will
313 // be replaced by the corresponding __imp->_M_names. I.e.,
314 // not a "simple" locale anymore (see locale::operator==).
315 const size_t __len = std::strlen(_M_names[0]) + 1;
316 for (size_t __i = 1; __i < _S_categories_size; ++__i)
aa53f832 317 {
3ecaae52
PC
318 _M_names[__i] = new char[__len];
319 std::memcpy(_M_names[__i], _M_names[0], __len);
320 }
321 }
322
323 for (size_t __ix = 0; __ix < _S_categories_size; ++__ix, __mask <<= 1)
324 {
325 if (__mask & __cat)
326 {
327 // Need to replace entry in _M_facets with other locale's info.
328 _M_replace_category(__imp, _S_facet_categories[__ix]);
6ae72522
PC
329
330 // FIXME: Hack for libstdc++/29217: the numerical encodings
331 // of the time and collate categories are swapped vs the
332 // order of the names in locale::_S_categories. We'd like to
333 // adjust the former (the latter is dictated by compatibility
334 // with glibc) but we can't for binary compatibility.
335 size_t __ix_name = __ix;
336 if (__ix == 2 || __ix == 3)
337 __ix_name = 5 - __ix;
338
339 char* __src = __imp->_M_names[__ix_name] ?
340 __imp->_M_names[__ix_name] : __imp->_M_names[0];
4df9c41d
PC
341 const size_t __len = std::strlen(__src) + 1;
342 char* __new = new char[__len];
343 std::memcpy(__new, __src, __len);
6ae72522
PC
344 delete [] _M_names[__ix_name];
345 _M_names[__ix_name] = __new;
aa53f832 346 }
e4cc8659
BK
347 }
348 }
349 }
3cbc7af0
BK
350
351_GLIBCXX_END_NAMESPACE