Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 # ifndef LIBSTDCPPWSD_H
21 # define LIBSTDCPPWSD_H
23 # include "stlport_prefix.h"
25 #include "locale_impl.h"
29 #include "aligned_buffer.h"
31 #include <stl/_codecvt.h>
32 #include <stl/_collate.h>
33 #include <stl/_ctype.h>
34 #include <stl/_monetary.h>
35 #include "message_facets.h"
37 #include <clocale> // C locale header file.
40 #include <stl/_locale.h>
44 #include <stl/_alloc.h>
45 #include <stl/_fstream.h>
47 #include "complex_impl.h"
51 # include "message_facets.h"
58 extern void* GetGlobalTlsData();
60 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
61 void* SetBackendHeap();
62 void ReSetUserHeap(void* oldHeap);
68 #define MAX_LOCALE_CLASSIC_FACETS 128
70 //These are copied from locale_catalog.cpp
71 //Changing names to aviod compilation errors
73 bool operator()(const char* s1, const char* s2) const
74 { return strcmp(s1, s2) == 0; }
82 _Messages Locale_impl_Null_messages;
84 locale::facet* Locale_impl_S_classic_facets[MAX_LOCALE_CLASSIC_FACETS];
86 locale::id collate_char_id;
88 locale::id ctype_char_id;
90 # ifndef _STLP_NO_MBSTATE_T
91 locale::id codecvt_char_char_mbstate_id;
92 # ifndef _STLP_NO_WCHAR_T
93 locale::id codecvt_wchar_char_mbstate_id;
97 locale::id moneypunct_char_true_id;
99 locale::id moneypunct_char_false_id;
101 locale::id messages_char_id;
103 locale::id numpunct_char_id;
105 # ifndef _STLP_NO_WCHAR_T
106 locale::id collate_wchar_id;
108 locale::id ctype_wchar_id;
110 locale::id moneypunct_wchar_true_id;
112 locale::id moneypunct_wchar_false_id;
114 locale::id numpunct_wchar_id;
116 locale::id messages_wchar_id;
118 locale::id num_get_wchar_istreambuf_iterator_id;
120 locale::id num_get_wchar_wchar_const_id;
122 locale::id num_put_wchar_ostreambuf_iterator_id;
124 locale::id num_put_wchar_wchar_id;
126 locale::id time_get_wchar_istreambuf_iterator_id;
128 locale::id time_get_wchar_wchar_const_id;
130 locale::id time_put_wchar_ostreambuf_iterator_id;
132 locale::id time_put_wchar_wchar_id;
134 locale::id money_get_wchar_istreambuf_iterator_id;
136 locale::id money_get_wchar_wchar_const_id;
138 locale::id money_put_wchar_ostreambuf_iterator_id;
140 locale::id money_put_wchar_wchar_id;
143 locale::id time_get_char_istreambuf_iterator_id;
145 locale::id time_get_char_char_const_id;
147 locale::id time_put_char_ostreambuf_iterator_id;
149 locale::id time_put_char_char_id;
151 locale::id num_get_char_istreambuf_iterator_id;
153 locale::id num_get_char_char_const_id;
155 locale::id num_put_char_ostreambuf_iterator_id;
157 locale::id num_put_char_char_id;
159 locale::id num_put_char_back_insert_iterator_id;
161 locale::id money_get_char_istreambuf_iterator_id;
163 locale::id money_get_char_char_const_id;
165 locale::id money_put_char_ostreambuf_iterator_id;
167 locale::id money_put_char_char_id;
169 _Stl_aligned_buffer<_Locale_impl> Locale_impl_S_classic_locale;
171 _Stl_aligned_buffer<collate<char> > Locale_impl_S_collate_char;
173 _Stl_aligned_buffer<ctype<char> > Locale_impl_S_ctype_char;
175 # ifndef _STLP_NO_MBSTATE_T
176 _Stl_aligned_buffer<codecvt<char, char, mbstate_t> > Locale_impl_S_codecvt_char;
179 _Stl_aligned_buffer<moneypunct<char, true> > Locale_impl_S_moneypunct_true_char;
180 _Stl_aligned_buffer<moneypunct<char, false> > Locale_impl_S_moneypunct_false_char;
181 _Stl_aligned_buffer<numpunct<char> > Locale_impl_S_numpunct_char;
182 _Stl_aligned_buffer<messages<char> > Locale_impl_S_messages_char;
184 _Stl_aligned_buffer<money_get<char, istreambuf_iterator<char, char_traits<char> > > > Locale_impl_S_money_get_char;
185 _Stl_aligned_buffer<money_put<char, ostreambuf_iterator<char, char_traits<char> > > > Locale_impl_S_money_put_char;
186 _Stl_aligned_buffer<num_get<char, istreambuf_iterator<char, char_traits<char> > > > Locale_impl_S_num_get_char;
187 _Stl_aligned_buffer<num_put<char, ostreambuf_iterator<char, char_traits<char> > > > Locale_impl_S_num_put_char;
188 _Stl_aligned_buffer<time_get<char, istreambuf_iterator<char, char_traits<char> > > > Locale_impl_S_time_get_char;
189 _Stl_aligned_buffer<time_put<char, ostreambuf_iterator<char, char_traits<char> > > > Locale_impl_S_time_put_char;
191 _Stl_aligned_buffer<money_get<char, const char*> > Locale_impl_S_money_get_char_const_char;
192 _Stl_aligned_buffer<money_put<char, char*> > Locale_impl_S_money_put_char_char;
193 _Stl_aligned_buffer<num_get<char, const char*> > Locale_impl_S_num_get_char_const_char;
194 _Stl_aligned_buffer<num_put<char, char*> > Locale_impl_S_num_put_char_char;
195 _Stl_aligned_buffer<num_put<char, back_insert_iterator<string> > > Locale_impl_S_num_put_char_back_insert_iterator;
196 _Stl_aligned_buffer<time_get<char, const char*> > Locale_impl_S_time_get_char_const_char;
197 _Stl_aligned_buffer<time_put<char, char*> > Locale_impl_S_time_put_char_char;
199 # ifndef _STLP_NO_WCHAR_T
200 _Stl_aligned_buffer<collate<wchar_t> > Locale_impl_S_collate_wchar;
201 _Stl_aligned_buffer<ctype<wchar_t> > Locale_impl_S_ctype_wchar;
202 # ifndef _STLP_NO_MBSTATE_T
203 _Stl_aligned_buffer<codecvt<wchar_t, char, mbstate_t> > Locale_impl_S_codecvt_wchar;
206 _Stl_aligned_buffer<moneypunct<wchar_t, true> > Locale_impl_S_moneypunct_true_wchar;
207 _Stl_aligned_buffer<moneypunct<wchar_t, false> > Locale_impl_S_moneypunct_false_wchar;
208 _Stl_aligned_buffer<numpunct<wchar_t> > Locale_impl_S_numpunct_wchar;
209 _Stl_aligned_buffer<messages<wchar_t> > Locale_impl_S_messages_wchar;
211 _Stl_aligned_buffer<money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > > Locale_impl_S_money_get_wchar;
212 _Stl_aligned_buffer<money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > > Locale_impl_S_money_put_wchar;
213 _Stl_aligned_buffer<num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > > Locale_impl_S_num_get_wchar;
214 _Stl_aligned_buffer<num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > > Locale_impl_S_num_put_wchar;
215 _Stl_aligned_buffer<time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > > Locale_impl_S_time_get_wchar;
216 _Stl_aligned_buffer<time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > > Locale_impl_S_time_put_wchar;
219 _Stl_aligned_buffer<money_get<wchar_t, const wchar_t*> > Locale_impl_S_money_get_wchar_const_wchar;
220 _Stl_aligned_buffer<money_put<wchar_t, wchar_t*> > Locale_impl_S_money_put_wchar_wchar;
221 _Stl_aligned_buffer<num_get<wchar_t, const wchar_t*> > Locale_impl_S_num_get_wchar_const_wchar;
222 _Stl_aligned_buffer<num_put<wchar_t, wchar_t*> > Locale_impl_S_num_put_wchar_wchar;
223 _Stl_aligned_buffer<time_get<wchar_t, const wchar_t*> > Locale_impl_S_time_get_wchar_const_wchar;
224 _Stl_aligned_buffer<time_put<wchar_t, wchar_t*> > Locale_impl_S_time_put_wchar_wchar;
227 _Stl_aligned_buffer<locale> Locale_impl_S_b_classic;
229 string locale_impl_nameless;
232 size_t locale_id_S_max;
235 _Locale_impl* Locale_impl_S_global_impl;
236 _STLP_STATIC_MUTEX Locale_impl_S_global_locale_lock;
239 size_t fstream_Filebuf_base_M_page_size;
242 _STLP_STATIC_MUTEX ios_xalloc_L;
243 long ios_iword_dummy;
244 void* ios_pword_dummy;
247 float complex_exp_float_ln10_inv;
248 double complex_exp_double_ln10_inv;
249 long double complex_exp_long_double_ln10_inv;
252 char num_get_narrow_digits[11];
253 char num_get_narrow_xdigits[13];
256 _STLP_STATIC_MUTEX locale_Index_lock;
259 bool ios_base_S_was_synced;
260 int ios_base_S_index;
261 long ios_base_Init_S_count; //ios_base::Init class
262 long ios_base_Loc_init_S_count; //ios_base::_Loc_init class
263 ios_base::_Loc_init *_LocInit;
264 ios_base::Init *_IosInit;
268 hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* locale_catalog_ctype_hash;
269 hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* locale_catalog_numeric_hash;
270 hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* locale_catalog_time_hash;
271 hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* locale_catalog_collate_hash;
272 hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* locale_catalog_monetary_hash;
273 hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* locale_catalog_messages_hash;
274 _STLP_STATIC_MUTEX locale_catalog_category_hash_lock;
277 string numpunct_char_m_truename;
278 string numpunct_char_m_falsename;
279 string numpunct_char_m_grouping;
280 # ifndef _STLP_NO_WCHAR_T
281 wstring numpunct_wchar_m_truename;
282 wstring numpunct_wchar_m_falsename;
283 string numpunct_wchar_m_grouping;
292 #ifndef _STLP_NO_WCHAR_T
300 float complex_trig_float_limit;
301 double complex_trig_double_limit;
304 string monetary_S_empty_string;
305 # ifndef _STLP_NO_WCHAR_T
306 wstring monetary_S_empty_wstring;
307 # endif //_STLP_NO_WCHAR_T
308 new_handler _new_handler;
309 //variable to check whether lib is initialized
316 map<string, locale::id> ctype_charT_ids; //for ctype<charT>
317 map<string, locale::id> numpunct_charT_ids; //for numpunct<charT>
318 map<string, locale::id> moneypunct_charT_ids;//for moneypunct<charT>
322 extern _Libcpp_wsd* g_libcpp_wsd;
326 //return the global class pointer
330 //get the TLS pointer
332 void* oldHeap = SetBackendHeap();
334 _Libcpp_wsd* g_libcpp_wsd = (_Libcpp_wsd*)GetGlobalTlsData();
336 void* oldHeap = SetBackendHeap();
337 if(g_libcpp_wsd == NULL)
339 g_libcpp_wsd = new _Libcpp_wsd();
340 g_libcpp_wsd->is_Initialized = false;
344 if(g_libcpp_wsd->is_Initialized != true)
346 //this has to be here to avoid infinite recursion
347 g_libcpp_wsd->is_Initialized = true;
348 g_libcpp_wsd->_LocInit = new ios_base::_Loc_init();
349 g_libcpp_wsd->_IosInit = new ios_base::Init();
351 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
352 ReSetUserHeap(oldHeap);
354 return (*g_libcpp_wsd);
357 #define LIBCPP_WSD_PTR ( get_libcpp_wsdptr())
359 inline _Locale_impl*&
360 get_locale_impl_S_global_impl()
362 return get_libcpp_wsdptr().Locale_impl_S_global_impl;
365 inline _STLP_STATIC_MUTEX&
366 get_locale_impl_S_global_locale_lock()
368 return get_libcpp_wsdptr().Locale_impl_S_global_locale_lock;
372 get_locale_impl_messages()
374 return get_libcpp_wsdptr().Locale_impl_Null_messages;
377 inline locale::facet**
378 get_locale_impl_S_classic_facets()
380 return get_libcpp_wsdptr().Locale_impl_S_classic_facets;
383 # ifndef _STLP_NO_MBSTATE_T
384 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
385 codecvt<char, char, mbstate_t>::GetFacetLocaleId()
387 return get_libcpp_wsdptr().codecvt_char_char_mbstate_id;
389 # ifndef _STLP_NO_WCHAR_T
391 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
392 codecvt<wchar_t, char, mbstate_t>::GetFacetLocaleId()
394 return get_libcpp_wsdptr().codecvt_wchar_char_mbstate_id;
396 # endif//_STLP_NO_WCHAR_T
397 # endif//_STLP_NO_MBSTATE_T
399 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
400 collate<char>::GetFacetLocaleId()
402 return get_libcpp_wsdptr().collate_char_id;
405 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
406 ctype<char>::GetFacetLocaleId()
408 return get_libcpp_wsdptr().ctype_char_id;
411 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
412 moneypunct<char, true>::GetFacetLocaleId()
414 return get_libcpp_wsdptr().moneypunct_char_true_id;
417 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
418 moneypunct<char, false>::GetFacetLocaleId()
420 return get_libcpp_wsdptr().moneypunct_char_false_id;
423 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
424 messages<char>::GetFacetLocaleId()
426 return get_libcpp_wsdptr().messages_char_id;
429 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
430 numpunct<char>::GetFacetLocaleId()
432 return get_libcpp_wsdptr().numpunct_char_id;
435 # ifndef _STLP_NO_WCHAR_T
436 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
437 collate<wchar_t>::GetFacetLocaleId()
439 return get_libcpp_wsdptr().collate_wchar_id;
442 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
443 ctype<wchar_t>::GetFacetLocaleId()
445 return get_libcpp_wsdptr().ctype_wchar_id;
448 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
449 moneypunct<wchar_t, true>::GetFacetLocaleId()
451 return get_libcpp_wsdptr().moneypunct_wchar_true_id;
454 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
455 moneypunct<wchar_t, false>::GetFacetLocaleId()
457 return get_libcpp_wsdptr().moneypunct_wchar_false_id;
460 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
461 numpunct<wchar_t>::GetFacetLocaleId()
463 return get_libcpp_wsdptr().numpunct_wchar_id;
466 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
467 messages<wchar_t>::GetFacetLocaleId()
469 return get_libcpp_wsdptr().messages_wchar_id;
472 template <class _CharT, class _InputIter>
473 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
474 num_get<_CharT, _InputIter>::GetFacetLocaleId(istreambuf_iterator<wchar_t, char_traits<wchar_t> >* )
476 return get_libcpp_wsdptr().num_get_wchar_istreambuf_iterator_id;
479 template <class _CharT, class _InputIter>
480 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
481 num_get<_CharT, _InputIter>::GetFacetLocaleId(const wchar_t**)
483 return get_libcpp_wsdptr().num_get_wchar_wchar_const_id;
486 template <class _CharT, class _OutputIter>
487 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
488 num_put<_CharT, _OutputIter>::GetFacetLocaleId(ostreambuf_iterator<wchar_t, char_traits<wchar_t> > *)
490 return get_libcpp_wsdptr().num_put_wchar_ostreambuf_iterator_id;
493 template <class _CharT, class _OutputIter>
494 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
495 num_put<_CharT, _OutputIter>::GetFacetLocaleId(wchar_t**)
497 return get_libcpp_wsdptr().num_put_wchar_wchar_id;
500 template <class _CharT, class _InputIter>
501 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
502 time_get<_CharT, _InputIter>::GetFacetLocaleId(istreambuf_iterator<wchar_t, char_traits<wchar_t> >*)
504 return get_libcpp_wsdptr().time_get_wchar_istreambuf_iterator_id;
507 template <class _CharT, class _InputIter>
508 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
509 time_get<_CharT, _InputIter>::GetFacetLocaleId(const wchar_t**)
511 return get_libcpp_wsdptr().time_get_wchar_wchar_const_id;
514 template <class _CharT, class _OutputIter>
515 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
516 time_put<_CharT, _OutputIter>::GetFacetLocaleId(ostreambuf_iterator<wchar_t, char_traits<wchar_t> >*)
518 return get_libcpp_wsdptr().time_put_wchar_ostreambuf_iterator_id;
521 template <class _CharT, class _OutputIter>
522 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
523 time_put<_CharT, _OutputIter>::GetFacetLocaleId(wchar_t**)
525 return get_libcpp_wsdptr().time_put_wchar_wchar_id;
528 template <class _CharT, class _InputIter>
529 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
530 money_get<_CharT, _InputIter>::GetFacetLocaleId(istreambuf_iterator<wchar_t, char_traits<wchar_t> >*)
532 return get_libcpp_wsdptr().money_get_wchar_istreambuf_iterator_id;
535 template <class _CharT, class _InputIter>
536 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
537 money_get<_CharT, _InputIter>::GetFacetLocaleId(const wchar_t**)
539 return get_libcpp_wsdptr().money_get_wchar_wchar_const_id;
542 template <class _CharT, class _OutputIter>
543 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
544 money_put<_CharT, _OutputIter>::GetFacetLocaleId(ostreambuf_iterator<wchar_t, char_traits<wchar_t> >*)
546 return get_libcpp_wsdptr().money_put_wchar_ostreambuf_iterator_id;
549 template <class _CharT, class _OutputIter>
550 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
551 money_put<_CharT, _OutputIter>::GetFacetLocaleId(wchar_t**)
553 return get_libcpp_wsdptr().money_put_wchar_wchar_id;
555 # endif //_STLP_NO_WCHAR_T
557 template <class _CharT, class _InputIter>
558 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
559 num_get<_CharT, _InputIter>::GetFacetLocaleId()
561 _InputIter* dummyPtr = NULL;
562 return GetFacetLocaleId(dummyPtr);
565 template <class _CharT, class _OutputIter>
566 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
567 num_put<_CharT, _OutputIter>::GetFacetLocaleId()
569 _OutputIter* dummyPtr = NULL;
570 return GetFacetLocaleId(dummyPtr);
573 template <class _CharT, class _InputIter>
574 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
575 time_get<_CharT, _InputIter>::GetFacetLocaleId()
577 _InputIter* dummyPtr = NULL;
578 return GetFacetLocaleId(dummyPtr);
581 template <class _CharT, class _OutputIter>
582 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
583 time_put<_CharT, _OutputIter>::GetFacetLocaleId()
585 _OutputIter* dummyPtr = NULL;
586 return GetFacetLocaleId(dummyPtr);
589 template <class _CharT, class _InputIter>
590 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
591 money_get<_CharT, _InputIter>::GetFacetLocaleId()
593 _InputIter* dummyPtr = NULL;
594 return GetFacetLocaleId(dummyPtr);
596 template <class _CharT, class _OutputIter>
597 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
598 money_put<_CharT, _OutputIter>::GetFacetLocaleId()
600 _OutputIter* dummyPtr = NULL;
601 return GetFacetLocaleId(dummyPtr);
604 template <class _CharT, class _InputIter>
605 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
606 money_get<_CharT, _InputIter>::GetFacetLocaleId(istreambuf_iterator<char, char_traits<char> >*)
608 return get_libcpp_wsdptr().money_get_char_istreambuf_iterator_id;
611 template <class _CharT, class _InputIter>
612 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
613 money_get<_CharT, _InputIter>::GetFacetLocaleId(const char **)
615 return get_libcpp_wsdptr().money_get_char_char_const_id;
618 template <class _CharT, class _OutputIter>
619 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
620 money_put<_CharT, _OutputIter>::GetFacetLocaleId(ostreambuf_iterator<char, char_traits<char> >*)
622 return get_libcpp_wsdptr().money_put_char_ostreambuf_iterator_id;
625 template <class _CharT, class _OutputIter>
626 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
627 money_put<_CharT, _OutputIter>::GetFacetLocaleId(char**)
629 return get_libcpp_wsdptr().money_put_char_char_id;
632 template <class _CharT, class _InputIter>
633 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
634 num_get<_CharT, _InputIter>::GetFacetLocaleId(istreambuf_iterator<char, char_traits<char> >* )
636 return get_libcpp_wsdptr().num_get_char_istreambuf_iterator_id;
639 template <class _CharT, class _InputIter>
640 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
641 num_get<_CharT, _InputIter>::GetFacetLocaleId(const char**)
643 return get_libcpp_wsdptr().num_get_char_char_const_id;
646 template <class _CharT, class _OutputIter>
647 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
648 num_put<_CharT, _OutputIter>::GetFacetLocaleId(ostreambuf_iterator<char, char_traits<char> > *)
650 return get_libcpp_wsdptr().num_put_char_ostreambuf_iterator_id;
653 template <class _CharT, class _OutputIter>
654 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
655 num_put<_CharT, _OutputIter>::GetFacetLocaleId(char**)
657 return get_libcpp_wsdptr().num_put_char_char_id;
660 template <class _CharT, class _OutputIter>
661 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
662 num_put<_CharT, _OutputIter>::GetFacetLocaleId(back_insert_iterator<string> *)
664 return get_libcpp_wsdptr().num_put_char_back_insert_iterator_id;
667 template <class _CharT, class _InputIter>
668 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
669 time_get<_CharT, _InputIter>::GetFacetLocaleId(istreambuf_iterator<char, char_traits<char> >*)
671 return get_libcpp_wsdptr().time_get_char_istreambuf_iterator_id;
674 template <class _CharT, class _InputIter>
675 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
676 time_get<_CharT, _InputIter>::GetFacetLocaleId(const char**)
678 return get_libcpp_wsdptr().time_get_char_char_const_id;
681 template <class _CharT, class _OutputIter>
682 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
683 time_put<_CharT, _OutputIter>::GetFacetLocaleId(ostreambuf_iterator<char, char_traits<char> >*)
685 return get_libcpp_wsdptr().time_put_char_ostreambuf_iterator_id;
688 template <class _CharT, class _OutputIter>
689 _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id&
690 time_put<_CharT, _OutputIter>::GetFacetLocaleId(char**)
692 return get_libcpp_wsdptr().time_put_char_char_id;
695 inline _STLP_EXP_DECLSPEC locale::id&
696 Ctype_charT_GetFacetLocaleId(const char* type)
698 if((get_libcpp_wsdptr().ctype_charT_ids).find(type)!= (get_libcpp_wsdptr().ctype_charT_ids).end())
699 return (get_libcpp_wsdptr().ctype_charT_ids)[type];
703 id._M_index = (size_t)-1;
704 //(get_libcpp_wsdptr().ctype_charT_ids)[type] = id;
705 memmove((void*)&get_libcpp_wsdptr().ctype_charT_ids[type],&id, sizeof(id));
707 return (get_libcpp_wsdptr().ctype_charT_ids)[type];
711 inline _STLP_EXP_DECLSPEC locale::id&
712 Numpunct_charT_GetFacetLocaleId(const char* type)
714 if((get_libcpp_wsdptr().numpunct_charT_ids).find(type)!= (get_libcpp_wsdptr().numpunct_charT_ids).end())
715 return (get_libcpp_wsdptr().numpunct_charT_ids)[type];
719 id._M_index = (size_t)-1;
720 //(get_libcpp_wsdptr().numpunct_charT_ids)[type] = id;
721 memmove((void*)&get_libcpp_wsdptr().numpunct_charT_ids[type],&id, sizeof(id));
723 return (get_libcpp_wsdptr().numpunct_charT_ids)[type];
726 inline _STLP_EXP_DECLSPEC locale::id&
727 Moneypunct_charT_GetFacetLocaleId(const char* type)
729 if((get_libcpp_wsdptr().moneypunct_charT_ids).find(type)!= (get_libcpp_wsdptr().moneypunct_charT_ids).end())
730 return (get_libcpp_wsdptr().moneypunct_charT_ids)[type];
734 id._M_index = (size_t)-1;
735 //(get_libcpp_wsdptr().moneypunct_charT_ids)[type] = id;
736 memmove((void*)&get_libcpp_wsdptr().moneypunct_charT_ids[type],&id, sizeof(id));
737 return (get_libcpp_wsdptr().moneypunct_charT_ids)[type];
741 inline _Stl_aligned_buffer<_Locale_impl>&
742 get_locale_impl_S_classic_locale()
744 return get_libcpp_wsdptr().Locale_impl_S_classic_locale;
747 inline _Stl_aligned_buffer<collate<char> >&
748 get_locale_impl_S_collate_char()
750 return get_libcpp_wsdptr().Locale_impl_S_collate_char;
753 inline _Stl_aligned_buffer<ctype<char> >&
754 get_locale_impl_S_ctype_char()
756 return get_libcpp_wsdptr().Locale_impl_S_ctype_char;
759 # ifndef _STLP_NO_MBSTATE_T
760 inline _Stl_aligned_buffer<codecvt<char, char, mbstate_t> >&
761 get_locale_impl_S_codecvt_char()
763 return get_libcpp_wsdptr().Locale_impl_S_codecvt_char;
767 inline _Stl_aligned_buffer<moneypunct<char, true> >&
768 get_locale_impl_S_moneypunct_true_char()
770 return get_libcpp_wsdptr().Locale_impl_S_moneypunct_true_char;
773 inline _Stl_aligned_buffer<moneypunct<char, false> >&
774 get_locale_impl_S_moneypunct_false_char()
776 return get_libcpp_wsdptr().Locale_impl_S_moneypunct_false_char;
779 inline _Stl_aligned_buffer<numpunct<char> >&
780 get_locale_impl_S_numpunct_char()
782 return get_libcpp_wsdptr().Locale_impl_S_numpunct_char;
785 inline _Stl_aligned_buffer<messages<char> >&
786 get_locale_impl_S_messages_char()
788 return get_libcpp_wsdptr().Locale_impl_S_messages_char;
791 inline _Stl_aligned_buffer<money_get<char, istreambuf_iterator<char, char_traits<char> > > >&
792 get_locale_impl_S_money_get_char()
794 return get_libcpp_wsdptr().Locale_impl_S_money_get_char;
797 inline _Stl_aligned_buffer<money_put<char, ostreambuf_iterator<char, char_traits<char> > > >&
798 get_locale_impl_S_money_put_char()
800 return get_libcpp_wsdptr().Locale_impl_S_money_put_char;
803 inline _Stl_aligned_buffer<num_get<char, istreambuf_iterator<char, char_traits<char> > > >&
804 get_locale_impl_S_num_get_char()
806 return get_libcpp_wsdptr().Locale_impl_S_num_get_char;
809 inline _Stl_aligned_buffer<num_put<char, ostreambuf_iterator<char, char_traits<char> > > >&
810 get_locale_impl_S_num_put_char()
812 return get_libcpp_wsdptr().Locale_impl_S_num_put_char;
815 inline _Stl_aligned_buffer<time_get<char, istreambuf_iterator<char, char_traits<char> > > >&
816 get_locale_impl_S_time_get_char()
818 return get_libcpp_wsdptr().Locale_impl_S_time_get_char;
821 inline _Stl_aligned_buffer<time_put<char, ostreambuf_iterator<char, char_traits<char> > > >&
822 get_locale_impl_S_time_put_char()
824 return get_libcpp_wsdptr().Locale_impl_S_time_put_char;
827 inline _Stl_aligned_buffer<money_get<char, const char*> >&
828 get_locale_impl_S_money_get_char_const_char()
830 return get_libcpp_wsdptr().Locale_impl_S_money_get_char_const_char;
833 inline _Stl_aligned_buffer<money_put<char, char*> >&
834 get_locale_impl_S_money_put_char_char()
836 return get_libcpp_wsdptr().Locale_impl_S_money_put_char_char;
839 inline _Stl_aligned_buffer<num_get<char, const char*> >&
840 get_locale_impl_S_num_get_char_const_char()
842 return get_libcpp_wsdptr().Locale_impl_S_num_get_char_const_char;
845 inline _Stl_aligned_buffer<num_put<char, char*> >&
846 get_locale_impl_S_num_put_char_char()
848 return get_libcpp_wsdptr().Locale_impl_S_num_put_char_char;
851 inline _Stl_aligned_buffer<num_put<char,back_insert_iterator<string> > >&
852 get_locale_impl_S_num_put_char_back_insert_iterator()
854 return get_libcpp_wsdptr().Locale_impl_S_num_put_char_back_insert_iterator;
857 inline _Stl_aligned_buffer<time_get<char, const char*> >&
858 get_locale_impl_S_time_get_char_const_char()
860 return get_libcpp_wsdptr().Locale_impl_S_time_get_char_const_char;
863 inline _Stl_aligned_buffer<time_put<char, char*> >&
864 get_locale_impl_S_time_put_char_char()
866 return get_libcpp_wsdptr().Locale_impl_S_time_put_char_char;
869 # ifndef _STLP_NO_WCHAR_T
870 inline _Stl_aligned_buffer<collate<wchar_t> >&
871 get_locale_impl_S_collate_wchar()
873 return get_libcpp_wsdptr().Locale_impl_S_collate_wchar;
876 inline _Stl_aligned_buffer<ctype<wchar_t> >&
877 get_locale_impl_S_ctype_wchar()
879 return get_libcpp_wsdptr().Locale_impl_S_ctype_wchar;
881 # ifndef _STLP_NO_MBSTATE_T
882 inline _Stl_aligned_buffer<codecvt<wchar_t, char, mbstate_t> >&
883 get_locale_impl_S_codecvt_wchar()
885 return get_libcpp_wsdptr().Locale_impl_S_codecvt_wchar;
887 # endif //!_STLP_NO_MBSTATE_T
889 inline _Stl_aligned_buffer<moneypunct<wchar_t, true> >&
890 get_locale_impl_S_moneypunct_true_wchar()
892 return get_libcpp_wsdptr().Locale_impl_S_moneypunct_true_wchar;
895 inline _Stl_aligned_buffer<moneypunct<wchar_t, false> >&
896 get_locale_impl_S_moneypunct_false_wchar()
898 return get_libcpp_wsdptr().Locale_impl_S_moneypunct_false_wchar;
901 inline _Stl_aligned_buffer<numpunct<wchar_t> >&
902 get_locale_impl_S_numpunct_wchar()
904 return get_libcpp_wsdptr().Locale_impl_S_numpunct_wchar;
907 inline _Stl_aligned_buffer<messages<wchar_t> >&
908 get_locale_impl_S_messages_wchar()
910 return get_libcpp_wsdptr().Locale_impl_S_messages_wchar;
913 inline _Stl_aligned_buffer<money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > >&
914 get_locale_impl_S_money_get_wchar()
916 return get_libcpp_wsdptr().Locale_impl_S_money_get_wchar;
919 inline _Stl_aligned_buffer<money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > >&
920 get_locale_impl_S_money_put_wchar()
922 return get_libcpp_wsdptr().Locale_impl_S_money_put_wchar;
925 inline _Stl_aligned_buffer<num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > >&
926 get_locale_impl_S_num_get_wchar()
928 return get_libcpp_wsdptr().Locale_impl_S_num_get_wchar;
931 inline _Stl_aligned_buffer<num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > >&
932 get_locale_impl_S_num_put_wchar()
934 return get_libcpp_wsdptr().Locale_impl_S_num_put_wchar;
937 inline _Stl_aligned_buffer<time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > >&
938 get_locale_impl_S_time_get_wchar()
940 return get_libcpp_wsdptr().Locale_impl_S_time_get_wchar;
943 inline _Stl_aligned_buffer<time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > >&
944 get_locale_impl_S_time_put_wchar()
946 return get_libcpp_wsdptr().Locale_impl_S_time_put_wchar;
949 inline _Stl_aligned_buffer<money_get<wchar_t, const wchar_t*> >&
950 get_locale_impl_S_money_get_wchar_const_wchar()
952 return get_libcpp_wsdptr().Locale_impl_S_money_get_wchar_const_wchar;
955 inline _Stl_aligned_buffer<money_put<wchar_t, wchar_t*> >&
956 get_locale_impl_S_money_put_wchar_wchar()
958 return get_libcpp_wsdptr().Locale_impl_S_money_put_wchar_wchar;
961 inline _Stl_aligned_buffer<num_get<wchar_t, const wchar_t*> >&
962 get_locale_impl_S_num_get_wchar_const_wchar()
964 return get_libcpp_wsdptr().Locale_impl_S_num_get_wchar_const_wchar;
967 inline _Stl_aligned_buffer<num_put<wchar_t, wchar_t*> >&
968 get_locale_impl_S_num_put_wchar_wchar()
970 return get_libcpp_wsdptr().Locale_impl_S_num_put_wchar_wchar;
973 inline _Stl_aligned_buffer<time_get<wchar_t, const wchar_t*> >&
974 get_locale_impl_S_time_get_wchar_const_wchar()
976 return get_libcpp_wsdptr().Locale_impl_S_time_get_wchar_const_wchar;
979 inline _Stl_aligned_buffer<time_put<wchar_t, wchar_t*> >&
980 get_locale_impl_S_time_put_wchar_wchar()
982 return get_libcpp_wsdptr().Locale_impl_S_time_put_wchar_wchar;
984 # endif //!_STLP_NO_WCHAR_T
986 inline _Stl_aligned_buffer<locale>&
987 get_locale_impl_S_b_classic()
989 return get_libcpp_wsdptr().Locale_impl_S_b_classic;
993 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC size_t&
994 get_locale_id_S_max()
996 return get_libcpp_wsdptr().locale_id_S_max;
1000 inline _STLP_EXPORT_DECLSPEC size_t&
1001 get_fstream_Filebuf_Base_GetPageSize()
1003 return get_libcpp_wsdptr().fstream_Filebuf_base_M_page_size;
1007 inline _STLP_STATIC_MUTEX&
1010 return get_libcpp_wsdptr().ios_xalloc_L;
1014 get_ios_iword_dummy()
1016 return get_libcpp_wsdptr().ios_iword_dummy;
1020 get_ios_pword_dummy()
1022 return get_libcpp_wsdptr().ios_pword_dummy;
1027 get_complex_exp_float_ln10_inv()
1029 return get_libcpp_wsdptr().complex_exp_float_ln10_inv;
1033 get_complex_exp_double_ln10_inv()
1035 return get_libcpp_wsdptr().complex_exp_double_ln10_inv;
1039 get_complex_exp_long_double_ln10_inv()
1041 return get_libcpp_wsdptr().complex_exp_long_double_ln10_inv;
1046 get_num_get_narrow_digits()
1048 return get_libcpp_wsdptr().num_get_narrow_digits;
1052 get_num_get_narrow_xdigits()
1054 return get_libcpp_wsdptr().num_get_narrow_xdigits;
1058 inline _STLP_STATIC_MUTEX&
1059 get_locale_Index_lock()
1061 return get_libcpp_wsdptr().locale_Index_lock;
1066 get_ios_base_S_was_synced()
1068 return get_libcpp_wsdptr().ios_base_S_was_synced;
1072 get_ios_base_S_index()
1074 return get_libcpp_wsdptr().ios_base_S_index;
1078 get_ios_base_Init_S_count()
1080 return get_libcpp_wsdptr().ios_base_Init_S_count;
1084 get_ios_base_Loc_init_S_count()
1086 return get_libcpp_wsdptr().ios_base_Loc_init_S_count;
1089 //locale_catalog.cpp
1090 inline hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*&
1091 get_locale_catalog_ctype_hash()
1093 return get_libcpp_wsdptr().locale_catalog_ctype_hash;
1096 inline hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*&
1097 get_locale_catalog_numeric_hash()
1099 return get_libcpp_wsdptr().locale_catalog_numeric_hash;
1102 inline hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*&
1103 get_locale_catalog_time_hash()
1105 return get_libcpp_wsdptr().locale_catalog_time_hash;
1108 inline hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*&
1109 get_locale_catalog_collate_hash()
1111 return get_libcpp_wsdptr().locale_catalog_collate_hash;
1114 inline hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*&
1115 get_locale_catalog_monetary_hash()
1117 return get_libcpp_wsdptr().locale_catalog_monetary_hash;
1120 inline hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*&
1121 get_locale_catalog_messages_hash()
1123 return get_libcpp_wsdptr().locale_catalog_messages_hash;
1126 inline _STLP_STATIC_MUTEX&
1127 get_locale_catalog_category_hash_lock()
1129 return get_libcpp_wsdptr().locale_catalog_category_hash_lock;
1133 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC string&
1134 numpunct<char>::GetNumPunct_M_truename()
1136 return get_libcpp_wsdptr().numpunct_char_m_truename;
1138 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC string&
1139 numpunct<char>::GetNumPunct_M_falsename()
1141 return get_libcpp_wsdptr().numpunct_char_m_falsename;
1144 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC string&
1145 numpunct<char>::GetNumPunct_M_grouping()
1147 return get_libcpp_wsdptr().numpunct_char_m_grouping;
1150 # ifndef _STLP_NO_WCHAR_T
1151 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC wstring&
1152 numpunct<wchar_t>::GetNumPunct_M_Wchar_truename()
1154 return get_libcpp_wsdptr().numpunct_wchar_m_truename;
1157 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC wstring&
1158 numpunct<wchar_t>::GetNumPunct_M_Wchar_falsename()
1160 return get_libcpp_wsdptr().numpunct_wchar_m_falsename;
1163 inline _STLP_STATIC_MEMBER_EXP_DECLSPEC string&
1164 numpunct<wchar_t>::GetNumPunct_M_Wchar_grouping()
1166 return get_libcpp_wsdptr().numpunct_wchar_m_grouping;
1173 return get_libcpp_wsdptr().cerr;
1179 return get_libcpp_wsdptr().cout;
1185 return get_libcpp_wsdptr().clog;
1191 return get_libcpp_wsdptr().cin;
1194 #ifndef _STLP_NO_WCHAR_T
1198 return get_libcpp_wsdptr().wcerr;
1204 return get_libcpp_wsdptr().wcout;
1210 return get_libcpp_wsdptr().wclog;
1216 return get_libcpp_wsdptr().wcin;
1218 #endif //_STLP_NO_WCHAR_T
1221 get_complex_trig_float_limit()
1223 return get_libcpp_wsdptr().complex_trig_float_limit;
1227 get_complex_trig_double_limit()
1229 return get_libcpp_wsdptr().complex_trig_double_limit;
1234 get_locale_impl_nameless()
1236 return get_libcpp_wsdptr().locale_impl_nameless;
1241 get_monetary_S_empty_string()
1243 return get_libcpp_wsdptr().monetary_S_empty_string;
1246 # ifndef _STLP_NO_WCHAR_T
1248 get_monetary_S_empty_wstring()
1250 return get_libcpp_wsdptr().monetary_S_empty_wstring;
1252 #endif //_STLP_NO_WCHAR_T
1253 inline new_handler& get_new_handler()
1255 return get_libcpp_wsdptr()._new_handler;
1259 # endif //LIBSTDCPPWSD_H