sl@0: /* sl@0: * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved. sl@0: * sl@0: * Copyright (c) 1999 sl@0: * Silicon Graphics Computer Systems, Inc. sl@0: * sl@0: * Copyright (c) 1999 sl@0: * Boris Fomitchev sl@0: * sl@0: * This material is provided "as is", with absolutely no warranty expressed sl@0: * or implied. Any use is at your own risk. sl@0: * sl@0: * Permission to use or copy this software for any purpose is hereby granted sl@0: * without fee, provided the above notices are retained on all copies. sl@0: * Permission to modify the code and to distribute modified code is granted, sl@0: * provided the above notices are retained, and a notice that the code was sl@0: * modified is included with the above copyright notice. sl@0: * sl@0: */ sl@0: # include "stlport_prefix.h" sl@0: sl@0: #include "locale_impl.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include "c_locale.h" sl@0: #include "aligned_buffer.h" sl@0: #include sl@0: sl@0: #include "locale_impl.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "message_facets.h" sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: #include "libstdcppwsd.h" sl@0: _STLP_BEGIN_NAMESPACE sl@0: extern void filebuf_page_size_init(); sl@0: extern void num_get_array_init(); sl@0: extern void locale_mutex_lock_init(); sl@0: extern void ios_base_S_index_init(); sl@0: extern void ios_base_Init_S_count_init(); sl@0: extern void ios_base_S_was_synced_init(); sl@0: extern void numpunct_name_init(); sl@0: extern void locale_catalog_category_hash_lock_init(); sl@0: extern void complex_trig_limit_init(); sl@0: extern void monetary_empty_string_init(); sl@0: //forward declaraions sl@0: void ios_base_Loc_init_S_count_init(); sl@0: void locale_impl_init(); sl@0: void locale_impl_string_init(); sl@0: _STLP_END_NAMESPACE sl@0: # endif sl@0: sl@0: #ifdef __WINSCW__ sl@0: extern void SetGlobalTlsData(void* aData); sl@0: #endif sl@0: sl@0: _STLP_BEGIN_NAMESPACE sl@0: sl@0: sl@0: // #ifdef _STLP_USE_OWN_NAMESPACE sl@0: // using _STLP_VENDOR_EXCEPT_STD::bad_cast; sl@0: // #endif sl@0: sl@0: _Locale_impl::_Locale_impl(const char* s) : name(s) {} sl@0: _Locale_impl::~_Locale_impl() {} sl@0: void _Locale_impl::incr() {} sl@0: void _Locale_impl::decr() {} sl@0: sl@0: // _Locale_impl non-inline member functions. sl@0: void _STLP_CALL sl@0: _Locale_impl::_M_throw_bad_cast() sl@0: { sl@0: _STLP_THROW(bad_cast()); sl@0: } sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: static void global_iostream_init() sl@0: { sl@0: _Libcpp_wsd* libwsd = &get_libcpp_wsdptr(); sl@0: //initialize the pointer members sl@0: libwsd->cin = new istream(0); sl@0: libwsd->cout = new ostream(0); sl@0: libwsd->cerr = new ostream(0); sl@0: libwsd->clog = new ostream(0); sl@0: #ifndef _STLP_NO_WCHAR_T sl@0: libwsd->wcin = new wistream(0); sl@0: libwsd->wcout = new wostream(0); sl@0: libwsd->wcerr = new wostream(0); sl@0: libwsd->wclog = new wostream(0); sl@0: #endif //_STLP_NO_WCHAR_T sl@0: } sl@0: sl@0: //WSD class constructor sl@0: _Libcpp_wsd::_Libcpp_wsd() sl@0: { sl@0: ios_base_Init_S_count = 0; sl@0: ios_base_Loc_init_S_count = 0; sl@0: locale_catalog_ctype_hash = NULL; sl@0: locale_catalog_numeric_hash = NULL; sl@0: locale_catalog_time_hash = NULL; sl@0: locale_catalog_collate_hash = NULL; sl@0: locale_catalog_monetary_hash = NULL; sl@0: locale_catalog_messages_hash = NULL; sl@0: _LocInit = NULL; sl@0: _IosInit = NULL; sl@0: ios_pword_dummy = NULL; sl@0: Locale_impl_S_global_impl = NULL; sl@0: sl@0: //initialize the global stream pointers sl@0: cin = NULL; sl@0: cout = NULL; sl@0: cerr = NULL; sl@0: clog = NULL; sl@0: #ifndef _STLP_NO_WCHAR_T sl@0: wcin = NULL; sl@0: wcout = NULL; sl@0: wcerr = NULL; sl@0: wclog = NULL; sl@0: #endif sl@0: _new_handler = NULL; sl@0: } sl@0: sl@0: //WSd class destructor sl@0: _Libcpp_wsd::~_Libcpp_wsd() sl@0: { sl@0: delete _LocInit; sl@0: delete _IosInit; sl@0: delete cin; sl@0: delete cout; sl@0: delete cerr; sl@0: delete clog; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: delete wcin; sl@0: delete wcout; sl@0: delete wcerr; sl@0: delete wclog; sl@0: # endif sl@0: } sl@0: sl@0: void CallCloseStdLib() sl@0: { sl@0: _Libcpp_wsd* wsd = &get_libcpp_wsdptr(); sl@0: #ifdef __WINSCW__ sl@0: SetGlobalTlsData(NULL); sl@0: #endif //__WINSCW__ sl@0: delete wsd; sl@0: } sl@0: sl@0: # endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: static void sl@0: _Stl_loc_assign_ids() { sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: //initialize wsd obj pointer sl@0: locale_impl_init(); sl@0: # endif sl@0: sl@0: // This assigns ids to every facet that is a member of a category, sl@0: // and also to money_get/put, num_get/put, and time_get/put sl@0: // instantiated using ordinary pointers as the input/output sl@0: // iterators. (The default is [io]streambuf_iterator.) sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: sl@0: collate::GetFacetLocaleId()._M_index = 1; sl@0: sl@0: ctype::GetFacetLocaleId()._M_index = 2; sl@0: sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: codecvt::GetFacetLocaleId()._M_index = 3; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: codecvt::GetFacetLocaleId()._M_index = 22; sl@0: # endif//!_STLP_NO_WCHAR_T sl@0: # endif//!_STLP_NO_MBSTATE_T sl@0: sl@0: moneypunct::GetFacetLocaleId()._M_index = 4; sl@0: moneypunct::GetFacetLocaleId()._M_index = 5; sl@0: messages::GetFacetLocaleId()._M_index = 7; sl@0: numpunct::GetFacetLocaleId()._M_index = 6; sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: collate::GetFacetLocaleId()._M_index = 20; sl@0: ctype::GetFacetLocaleId()._M_index = 21; sl@0: sl@0: moneypunct::GetFacetLocaleId()._M_index = 23; sl@0: moneypunct::GetFacetLocaleId()._M_index = 24; sl@0: sl@0: numpunct::GetFacetLocaleId()._M_index = 25; sl@0: messages::GetFacetLocaleId()._M_index = 26; sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: sl@0: sl@0: money_get > >::GetFacetLocaleId()._M_index = 8; sl@0: money_get::GetFacetLocaleId()._M_index = 9; sl@0: money_put > >::GetFacetLocaleId()._M_index = 10; sl@0: money_put::GetFacetLocaleId()._M_index = 11; sl@0: sl@0: num_get > >::GetFacetLocaleId()._M_index = 12; sl@0: num_get::GetFacetLocaleId()._M_index = 13; sl@0: num_put > >::GetFacetLocaleId()._M_index = 14; sl@0: num_put::GetFacetLocaleId()._M_index = 15; sl@0: time_get > >::GetFacetLocaleId()._M_index = 16; sl@0: time_get::GetFacetLocaleId()._M_index = 17; sl@0: time_put > >::GetFacetLocaleId()._M_index = 18; sl@0: time_put::GetFacetLocaleId()._M_index = 19; sl@0: //adding new iterator type sl@0: num_put >::GetFacetLocaleId()._M_index = 40; sl@0: #else sl@0: money_get > >::id._M_index = 8; sl@0: money_get::id._M_index = 9; sl@0: money_put > >::id._M_index = 10; sl@0: money_put::id._M_index = 11; sl@0: sl@0: num_get > >::id._M_index = 12; sl@0: num_get::id._M_index = 13; sl@0: num_put > >::id._M_index = 14; sl@0: num_put::id._M_index = 15; sl@0: time_get > >::id._M_index = 16; sl@0: time_get::id._M_index = 17; sl@0: time_put > >::id._M_index = 18; sl@0: time_put::id._M_index = 19; sl@0: #endif sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: money_get > >::GetFacetLocaleId()._M_index = 27; sl@0: money_get::GetFacetLocaleId()._M_index = 28; sl@0: money_put > >::GetFacetLocaleId()._M_index = 29; sl@0: money_put::GetFacetLocaleId()._M_index = 30; sl@0: sl@0: num_get > >::GetFacetLocaleId()._M_index = 31; sl@0: num_get::GetFacetLocaleId()._M_index = 32; sl@0: num_put > > ::GetFacetLocaleId()._M_index = 33; sl@0: num_put::GetFacetLocaleId()._M_index = 34; sl@0: time_get > >::GetFacetLocaleId()._M_index = 35; sl@0: time_get::GetFacetLocaleId()._M_index = 36; sl@0: time_put > >::GetFacetLocaleId()._M_index = 37; sl@0: time_put::GetFacetLocaleId()._M_index = 38; sl@0: #else sl@0: money_get > >::id._M_index = 27; sl@0: money_get::id._M_index = 28; sl@0: money_put > >::id._M_index = 29; sl@0: money_put::id._M_index = 30; sl@0: sl@0: num_get > >::id._M_index = 31; sl@0: num_get::id._M_index = 32; sl@0: num_put > > ::id._M_index = 33; sl@0: num_put::id._M_index = 34; sl@0: time_get > >::id._M_index = 35; sl@0: time_get::id._M_index = 36; sl@0: time_put > >::id._M_index = 37; sl@0: time_put::id._M_index = 38; sl@0: #endif sl@0: // messages::id._M_index = 38; sl@0: # endif sl@0: sl@0: // locale::id::_S_max = 39; sl@0: } sl@0: sl@0: # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: static _Stl_aligned_buffer<_Locale_impl> _S_classic_locale; sl@0: sl@0: static _Stl_aligned_buffer > _S_collate_char; sl@0: static _Stl_aligned_buffer > _S_ctype_char; sl@0: sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: static _Stl_aligned_buffer > _S_codecvt_char; sl@0: # endif sl@0: sl@0: static _Stl_aligned_buffer > _S_moneypunct_true_char; sl@0: static _Stl_aligned_buffer > _S_moneypunct_false_char; sl@0: static _Stl_aligned_buffer > _S_numpunct_char; sl@0: static _Stl_aligned_buffer > _S_messages_char; sl@0: sl@0: static _Stl_aligned_buffer > > > _S_money_get_char; sl@0: static _Stl_aligned_buffer > > > _S_money_put_char; sl@0: static _Stl_aligned_buffer > > > _S_num_get_char; sl@0: static _Stl_aligned_buffer > > > _S_num_put_char; sl@0: static _Stl_aligned_buffer > > > _S_time_get_char; sl@0: static _Stl_aligned_buffer > > > _S_time_put_char; sl@0: sl@0: static _Stl_aligned_buffer > _S_money_get_char_const_char; sl@0: static _Stl_aligned_buffer > _S_money_put_char_char; sl@0: static _Stl_aligned_buffer > _S_num_get_char_const_char; sl@0: static _Stl_aligned_buffer > _S_num_put_char_char; sl@0: static _Stl_aligned_buffer > _S_time_get_char_const_char; sl@0: static _Stl_aligned_buffer > _S_time_put_char_char; sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: static _Stl_aligned_buffer > _S_collate_wchar; sl@0: static _Stl_aligned_buffer > _S_ctype_wchar; sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: static _Stl_aligned_buffer > _S_codecvt_wchar; sl@0: # endif //!_STLP_NO_MBSTATE_T sl@0: static _Stl_aligned_buffer > _S_moneypunct_true_wchar; sl@0: static _Stl_aligned_buffer > _S_moneypunct_false_wchar; sl@0: static _Stl_aligned_buffer > _S_numpunct_wchar; sl@0: static _Stl_aligned_buffer > _S_messages_wchar; sl@0: sl@0: static _Stl_aligned_buffer > > > _S_money_get_wchar; sl@0: static _Stl_aligned_buffer > > > _S_money_put_wchar; sl@0: static _Stl_aligned_buffer > > > _S_num_get_wchar; sl@0: static _Stl_aligned_buffer > > > _S_num_put_wchar; sl@0: static _Stl_aligned_buffer > > > _S_time_get_wchar; sl@0: static _Stl_aligned_buffer > > > _S_time_put_wchar; sl@0: sl@0: static _Stl_aligned_buffer > _S_money_get_wchar_const_wchar; sl@0: static _Stl_aligned_buffer > _S_money_put_wchar_wchar; sl@0: static _Stl_aligned_buffer > _S_num_get_wchar_const_wchar; sl@0: static _Stl_aligned_buffer > _S_num_put_wchar_wchar; sl@0: static _Stl_aligned_buffer > _S_time_get_wchar_const_wchar; sl@0: static _Stl_aligned_buffer > _S_time_put_wchar_wchar; sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: sl@0: static _Messages _Null_messages; sl@0: sl@0: static locale::facet* _S_classic_facets[] = { sl@0: __REINTERPRET_CAST(locale::facet*,0), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_collate_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_ctype_char), sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: __REINTERPRET_CAST(locale::facet*,&_S_codecvt_char), sl@0: # else sl@0: __REINTERPRET_CAST(locale::facet*,0), sl@0: # endif //!_STLP_NO_MBSTATE_T sl@0: __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_true_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_false_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_numpunct_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_messages_char), sl@0: sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_get_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_get_char_const_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_put_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_put_char_char), sl@0: sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_get_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_get_char_const_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_put_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_put_char_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_get_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_get_char_const_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_put_char), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_put_char_char), sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: __REINTERPRET_CAST(locale::facet*,&_S_collate_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_ctype_wchar), sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: __REINTERPRET_CAST(locale::facet*,&_S_codecvt_wchar), sl@0: # else sl@0: __REINTERPRET_CAST(locale::facet*,0) sl@0: # endif //!_STLP_NO_MBSTATE_T sl@0: __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_true_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_false_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_numpunct_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_messages_wchar), sl@0: sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_get_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_get_wchar_const_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_put_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_money_put_wchar_wchar), sl@0: sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_get_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_get_wchar_const_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_put_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_num_put_wchar_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_get_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_get_wchar_const_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_put_wchar), sl@0: __REINTERPRET_CAST(locale::facet*,&_S_time_put_wchar_wchar), sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: 0 sl@0: }; sl@0: # endif //!__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: //Put all static variable initialization in this file sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: sl@0: #ifndef __WINSCW__ sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC _Libcpp_wsd* g_libcpp_wsd = NULL; sl@0: #endif sl@0: sl@0: void locale_impl_init() sl@0: { sl@0: int index = 0; sl@0: sl@0: #ifdef __WINSCW__ sl@0: _Libcpp_wsd* g_libcpp_wsd = &get_libcpp_wsdptr(); sl@0: #else sl@0: g_libcpp_wsd = &get_libcpp_wsdptr(); sl@0: #endif sl@0: sl@0: if (!g_libcpp_wsd) sl@0: return; sl@0: sl@0: //initialize _S_max sl@0: get_locale_id_S_max() = 39; sl@0: sl@0: get_locale_impl_S_global_impl() = 0; sl@0: sl@0: //initialize the page size sl@0: filebuf_page_size_init(); sl@0: sl@0: //initialize the array in num_get sl@0: num_get_array_init(); sl@0: sl@0: //initialize the mutex lock in locale.cpp sl@0: locale_mutex_lock_init(); sl@0: sl@0: //initialize _S_index in ios.cpp sl@0: ios_base_S_index_init(); sl@0: sl@0: //initialize _S_count of _Loc_init sl@0: ios_base_Loc_init_S_count_init(); sl@0: sl@0: //initialize _S_count of Init sl@0: ios_base_Init_S_count_init(); sl@0: sl@0: //initialize S_was_synced of ios_base sl@0: ios_base_S_was_synced_init(); sl@0: sl@0: //initialize the mutex in locale_catalog.cpp sl@0: locale_catalog_category_hash_lock_init(); sl@0: sl@0: //initialize float and double limits in complex_trig.cpp sl@0: complex_trig_limit_init(); sl@0: sl@0: //initialize the string sl@0: locale_impl_string_init(); sl@0: sl@0: //initialize empty string in monetary.cpp sl@0: monetary_empty_string_init(); sl@0: sl@0: //initialize true/false name in numpunct.cpp sl@0: numpunct_name_init(); sl@0: sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,0); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_collate_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_ctype_char()); sl@0: sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_codecvt_char()); sl@0: # else sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,0); sl@0: # endif sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_true_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_false_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_numpunct_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_messages_char()); sl@0: sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_char_const_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_char_char()); sl@0: sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_char_const_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_char_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_char_const_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_char()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_char_char()); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_collate_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_ctype_wchar()); sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_codecvt_wchar()); sl@0: # else sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,0); sl@0: # endif //!_STLP_NO_MBSTATE_T sl@0: sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_true_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_false_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_numpunct_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_messages_wchar()); sl@0: sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_wchar_const_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_wchar_wchar()); sl@0: sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_wchar_const_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_wchar_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_wchar_const_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_wchar()); sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_wchar_wchar()); sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: //support for back_insert iterator sl@0: get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_char_back_insert_iterator()); sl@0: get_locale_impl_S_classic_facets()[index] = 0; sl@0: } sl@0: # endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: _Locale_impl* sl@0: _Locale_impl::make_classic_locale() { sl@0: // The classic locale contains every facet that belongs to a category. sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _Locale_impl* classic = __REINTERPRET_CAST(_Locale_impl*, &get_locale_impl_S_classic_locale()); sl@0: # else sl@0: _Locale_impl* classic = __REINTERPRET_CAST(_Locale_impl*, &_S_classic_locale); sl@0: # endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: new (classic) _Locale_impl("C"); sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: classic->facets = get_locale_impl_S_classic_facets(); sl@0: classic->_M_size = get_locale_id_S_max(); sl@0: # else sl@0: classic->facets = _S_classic_facets; sl@0: classic->_M_size = locale::id::_S_max; sl@0: # endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: // ctype category sl@0: new(&get_locale_impl_S_ctype_char()) ctype(0, false, 1); sl@0: // collate category sl@0: new(&get_locale_impl_S_collate_char()) collate(1); sl@0: new(&get_locale_impl_S_codecvt_char()) codecvt(1); sl@0: // numeric category sl@0: new(&get_locale_impl_S_numpunct_char()) numpunct(1); sl@0: new (&get_locale_impl_S_num_get_char()) num_get > >(1); sl@0: new (&get_locale_impl_S_num_put_char()) num_put > >(1); sl@0: new (&get_locale_impl_S_time_get_char()) time_get > >(1); sl@0: new (&get_locale_impl_S_time_put_char()) time_put > >(1); sl@0: new (&get_locale_impl_S_num_get_char_const_char()) num_get(1); sl@0: new (&get_locale_impl_S_num_put_char_char()) num_put(1); sl@0: new (&get_locale_impl_S_num_put_char_back_insert_iterator()) num_put >(1); sl@0: new (&get_locale_impl_S_time_get_char_const_char()) time_get(1); sl@0: new (&get_locale_impl_S_time_put_char_char()) time_put(1); sl@0: sl@0: // monetary category sl@0: new (&get_locale_impl_S_moneypunct_true_char()) moneypunct(1); sl@0: new (&get_locale_impl_S_moneypunct_false_char()) moneypunct(1); sl@0: new (&get_locale_impl_S_money_get_char()) money_get > >(1); sl@0: new (&get_locale_impl_S_money_put_char()) money_put > >(1); sl@0: new (&get_locale_impl_S_money_get_char_const_char()) money_get(1); sl@0: new (&get_locale_impl_S_money_put_char_char()) money_put(1); sl@0: sl@0: // messages category sl@0: new (&get_locale_impl_S_messages_char())messages(&get_locale_impl_messages()); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: // ctype category sl@0: new(&get_locale_impl_S_ctype_wchar()) ctype(1); sl@0: // collate category sl@0: new(&get_locale_impl_S_collate_wchar()) collate(1); sl@0: new(&get_locale_impl_S_codecvt_wchar()) codecvt(1); sl@0: // numeric category sl@0: new(&get_locale_impl_S_numpunct_wchar()) numpunct(1); sl@0: new (&get_locale_impl_S_num_get_wchar()) num_get > >(1); sl@0: new (&get_locale_impl_S_num_put_wchar()) num_put > >(1); sl@0: new (&get_locale_impl_S_time_get_wchar()) time_get > >(1); sl@0: new (&get_locale_impl_S_time_put_wchar()) time_put > >(1); sl@0: new (&get_locale_impl_S_messages_wchar())messages(&get_locale_impl_messages()); sl@0: new (&get_locale_impl_S_num_get_wchar_const_wchar()) num_get(1); sl@0: new (&get_locale_impl_S_num_put_wchar_wchar()) num_put(1); sl@0: new (&get_locale_impl_S_time_get_wchar_const_wchar()) time_get(1); sl@0: new (&get_locale_impl_S_time_put_wchar_wchar()) time_put(1); sl@0: // monetary category sl@0: new (&get_locale_impl_S_moneypunct_true_wchar()) moneypunct(1); sl@0: new (&get_locale_impl_S_moneypunct_false_wchar()) moneypunct(1); sl@0: new (&get_locale_impl_S_money_get_wchar()) money_get > >(1); sl@0: new (&get_locale_impl_S_money_put_wchar()) money_put > >(1); sl@0: new (&get_locale_impl_S_money_get_wchar_const_wchar()) money_get(1); sl@0: new (&get_locale_impl_S_money_put_wchar_wchar()) money_put(1); sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: # else //!__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: // ctype category sl@0: new(&_S_ctype_char) ctype(0, false, 1); sl@0: // collate category sl@0: new(&_S_collate_char) collate(1); sl@0: new(&_S_codecvt_char) codecvt(1); sl@0: // numeric category sl@0: new(&_S_numpunct_char) numpunct(1); sl@0: new (&_S_num_get_char) num_get > >(1); sl@0: new (&_S_num_put_char) num_put > >(1); sl@0: new (&_S_time_get_char) time_get > >(1); sl@0: new (&_S_time_put_char) time_put > >(1); sl@0: new (&_S_num_get_char_const_char) num_get(1); sl@0: new (&_S_num_put_char_char) num_put(1); sl@0: new (&_S_time_get_char_const_char) time_get(1); sl@0: new (&_S_time_put_char_char) time_put(1); sl@0: // monetary category sl@0: new (&_S_moneypunct_true_char) moneypunct(1); sl@0: new (&_S_moneypunct_false_char) moneypunct(1); sl@0: new (&_S_money_get_char) money_get > >(1); sl@0: new (&_S_money_put_char) money_put > >(1); sl@0: new (&_S_money_get_char_const_char) money_get(1); sl@0: new (&_S_money_put_char_char) money_put(1); sl@0: // messages category sl@0: new (&_S_messages_char)messages(&_Null_messages); sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: // ctype category sl@0: new(&_S_ctype_wchar) ctype(1); sl@0: // collate category sl@0: new(&_S_collate_wchar) collate(1); sl@0: new(&_S_codecvt_wchar) codecvt(1); sl@0: // numeric category sl@0: new(&_S_numpunct_wchar) numpunct(1); sl@0: new (&_S_num_get_wchar) num_get > >(1); sl@0: new (&_S_num_put_wchar) num_put > >(1); sl@0: new (&_S_time_get_wchar) time_get > >(1); sl@0: new (&_S_time_put_wchar) time_put > >(1); sl@0: new (&_S_messages_wchar)messages(&_Null_messages); sl@0: new (&_S_num_get_wchar_const_wchar) num_get(1); sl@0: new (&_S_num_put_wchar_wchar) num_put(1); sl@0: new (&_S_time_get_wchar_const_wchar) time_get(1); sl@0: new (&_S_time_put_wchar_wchar) time_put(1); sl@0: // monetary category sl@0: new (&_S_moneypunct_true_wchar) moneypunct(1); sl@0: new (&_S_moneypunct_false_wchar) moneypunct(1); sl@0: new (&_S_money_get_wchar) money_get > >(1); sl@0: new (&_S_money_put_wchar) money_put > >(1); sl@0: new (&_S_money_get_wchar_const_wchar) money_get(1); sl@0: new (&_S_money_put_wchar_wchar) money_put(1); sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: sl@0: # endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: return classic; sl@0: } sl@0: sl@0: sl@0: //---------------------------------------------------------------------- sl@0: sl@0: // Declarations of (non-template) facets' static data members sl@0: # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: sl@0: size_t locale::id::_S_max = 39; sl@0: sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id collate::id = { 1 }; sl@0: sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id ctype::id = { 2 }; sl@0: sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id codecvt::id = { 3 }; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id codecvt::id = { 22 }; sl@0: # endif//!_STLP_NO_WCHAR_T sl@0: # endif//!_STLP_NO_MBSTATE_T sl@0: sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct::id = { 4 }; sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct::id = { 5 }; sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id messages::id = { 7 }; sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id numpunct::id = { 6 } ; sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id collate::id = { 20 }; sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id ctype::id = { 21 }; sl@0: sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct::id = { 23 } ; sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct::id = { 24 } ; sl@0: sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id numpunct::id = { 25 }; sl@0: _STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id messages::id = { 26 }; sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: # endif //!__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: // sl@0: // locale class sl@0: // sl@0: sl@0: _STLP_EXP_DECLSPEC locale::facet::~facet() {} sl@0: sl@0: # if ! defined ( _STLP_MEMBER_TEMPLATES ) || defined (_STLP_INLINE_MEMBER_TEMPLATES) sl@0: // members that fail to be templates sl@0: bool locale::operator()(const string& __x, sl@0: const string& __y) const { sl@0: return __locale_do_operator_call(this, __x, __y); sl@0: } sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: bool locale::operator()(const wstring& __x, sl@0: const wstring& __y) const { sl@0: return __locale_do_operator_call(this, __x, __y); sl@0: } sl@0: # endif sl@0: # endif sl@0: sl@0: # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _Locale_impl* _Locale_impl::_S_global_impl = 0; sl@0: static _Stl_aligned_buffer _S_b_classic; sl@0: _STLP_STATIC_MUTEX _Locale_impl::_S_global_locale_lock _STLP_MUTEX_INITIALIZER; sl@0: // locale _Locale_impl::_S_classic(__REINTERPRET_CAST(_Locale_impl*, &_S_classic_locale)); sl@0: # endif sl@0: sl@0: sl@0: sl@0: sl@0: //---------------------------------------------------------------------- sl@0: // class locale sl@0: sl@0: _STLP_EXP_DECLSPEC void _STLP_CALL sl@0: locale::_M_throw_runtime_error(const char* name) sl@0: { sl@0: char buf[256]; sl@0: sl@0: if (name) { sl@0: const char* prefix = "bad locale name: "; sl@0: strcpy(buf, prefix); sl@0: strncat(buf, name, 256 - strlen(prefix)); sl@0: buf[255] = '\0'; sl@0: } sl@0: else { sl@0: strcpy(buf, "locale error"); sl@0: } sl@0: _STLP_THROW(runtime_error(buf)); sl@0: } sl@0: sl@0: #if defined(__SYMBIAN32__) || (!( defined (__BORLANDC__) && defined(_RTLDLL))) sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: void ios_base_Loc_init_S_count_init() sl@0: { sl@0: get_ios_base_Loc_init_S_count() = 0; sl@0: } sl@0: # else sl@0: long ios_base::_Loc_init::_S_count = 0; sl@0: # endif sl@0: sl@0: _STLP_EXP_DECLSPEC ios_base::_Loc_init::_Loc_init() { sl@0: // if (_S_count++ == 0) sl@0: locale::_S_initialize(); sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC ios_base::_Loc_init::~_Loc_init() { sl@0: // if (--_S_count == 0) sl@0: locale::_S_uninitialize(); sl@0: } sl@0: sl@0: #endif /* _RTLDLL */ sl@0: sl@0: // Initialization of the locale system. This must be called before sl@0: // any locales are constructed. (Meaning that it must be called when sl@0: // the I/O library itself is initialized.) sl@0: void _STLP_CALL sl@0: locale::_S_initialize() sl@0: { sl@0: // additional check for singleton count : linker may choose to alter the order of function calls on initialization sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: if (get_ios_base_Loc_init_S_count()++ > 0 ) sl@0: return; sl@0: # else sl@0: if (ios_base::_Loc_init::_S_count++ > 0 ) sl@0: return; sl@0: # endif sl@0: sl@0: _Stl_loc_assign_ids(); sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: get_locale_impl_S_global_impl() = _Locale_impl::make_classic_locale(); sl@0: locale* loc = __REINTERPRET_CAST(locale*, &get_locale_impl_S_b_classic()); sl@0: new (loc) locale (get_locale_impl_S_global_impl()); sl@0: global_iostream_init(); sl@0: # else sl@0: _Locale_impl::_S_global_impl = _Locale_impl::make_classic_locale(); sl@0: locale* loc = __REINTERPRET_CAST(locale*, &_S_b_classic); sl@0: new (loc) locale (_Locale_impl::_S_global_impl); sl@0: # endif sl@0: sl@0: } sl@0: sl@0: void _STLP_CALL sl@0: locale::_S_uninitialize() sl@0: { sl@0: // additional check for singleton count : linker may choose to alter the order of function calls on initialization sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: if (--get_ios_base_Loc_init_S_count() != 0 ) sl@0: return; sl@0: # else sl@0: if (--ios_base::_Loc_init::_S_count != 0 ) sl@0: return; sl@0: # endif sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: get_locale_impl_S_global_impl()->decr(); sl@0: # else sl@0: _Locale_impl::_S_global_impl->decr(); sl@0: # endif sl@0: } sl@0: sl@0: // Default constructor: create a copy of the global locale. sl@0: _STLP_EXP_DECLSPEC locale::locale() : _M_impl(0) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _M_impl = _S_copy_impl(get_locale_impl_S_global_impl()); sl@0: # else sl@0: _M_impl = _S_copy_impl(_Locale_impl::_S_global_impl); sl@0: # endif sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC locale::locale(_Locale_impl* impl) : _M_impl(impl) sl@0: {} sl@0: sl@0: // Copy constructor sl@0: _STLP_EXP_DECLSPEC locale::locale(const locale& L) _STLP_NOTHROW sl@0: : _M_impl(0) sl@0: { sl@0: _M_impl = _S_copy_impl(L._M_impl); sl@0: } sl@0: sl@0: // Destructor. sl@0: _STLP_EXP_DECLSPEC locale::~locale() _STLP_NOTHROW sl@0: { sl@0: if (_M_impl) { sl@0: _M_impl->decr(); sl@0: _M_impl = 0; sl@0: } sl@0: } sl@0: sl@0: // Assignment operator. Much like the copy constructor: just a bit of sl@0: // pointer twiddling. sl@0: _STLP_EXP_DECLSPEC const locale& locale::operator=(const locale& L) _STLP_NOTHROW sl@0: { sl@0: if (this->_M_impl != L._M_impl) { sl@0: this->_M_impl->decr(); sl@0: this->_M_impl = _S_copy_impl(L._M_impl); sl@0: } sl@0: return *this; sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC locale::facet* locale::_M_get_facet(const locale::id& n) const sl@0: { sl@0: return n._M_index < _M_impl->size() sl@0: ? __REINTERPRET_CAST(locale::facet*,_M_impl->facets[n._M_index]) sl@0: : __REINTERPRET_CAST(locale::facet*, 0); sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC locale::facet* locale::_M_use_facet(const locale::id& n) const sl@0: { sl@0: locale::facet* f = (n._M_index < _M_impl->size() sl@0: ? __REINTERPRET_CAST(locale::facet*,_M_impl->facets[n._M_index]) sl@0: : __REINTERPRET_CAST(locale::facet*, 0)); sl@0: if (!f) sl@0: _M_impl->_M_throw_bad_cast(); sl@0: return f; sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC string locale::name() const { sl@0: return _M_impl->name; sl@0: } sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: void locale_impl_string_init() sl@0: { sl@0: get_locale_impl_nameless().copy("*", 1); sl@0: } sl@0: # else sl@0: static string _Nameless("*"); sl@0: # endif sl@0: sl@0: // Compare two locales for equality. sl@0: _STLP_EXP_DECLSPEC bool locale::operator==(const locale& L) const { sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: return this->_M_impl == L._M_impl || sl@0: (this->name() == L.name() && this->name() != get_locale_impl_nameless()); sl@0: # else sl@0: return this->_M_impl == L._M_impl || sl@0: (this->name() == L.name() && this->name() != _Nameless); sl@0: # endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC bool locale::operator!=(const locale& L) const { sl@0: return !(*this == L); sl@0: } sl@0: sl@0: // Static member functions. sl@0: _STLP_EXP_DECLSPEC const locale& _STLP_CALL sl@0: locale::classic() { sl@0: // return _Locale_impl::_S_classic; sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: return *__REINTERPRET_CAST(const locale*, &get_locale_impl_S_b_classic()); sl@0: # else sl@0: return *__REINTERPRET_CAST(const locale*, &_S_b_classic); sl@0: # endif sl@0: } sl@0: sl@0: _STLP_EXP_DECLSPEC locale _STLP_CALL sl@0: locale::global(const locale& L) sl@0: { sl@0: locale old; // A copy of the old global locale. sl@0: sl@0: L._M_impl->incr(); sl@0: { sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _STLP_auto_lock lock(get_locale_impl_S_global_locale_lock());\ sl@0: get_locale_impl_S_global_impl()->decr(); // We made a copy, so it can't be zero. sl@0: get_locale_impl_S_global_impl() = L._M_impl; sl@0: # else sl@0: _STLP_auto_lock lock(_Locale_impl::_S_global_locale_lock);\ sl@0: _Locale_impl::_S_global_impl->decr(); // We made a copy, so it can't be zero. sl@0: _Locale_impl::_S_global_impl = L._M_impl; sl@0: # endif sl@0: } sl@0: sl@0: // Set the global C locale, if appropriate. sl@0: #if !defined(_STLP_WINCE) sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: if (L.name() != get_locale_impl_nameless()) sl@0: # else sl@0: if (L.name() != _Nameless) sl@0: # endif sl@0: setlocale(LC_ALL, L.name().c_str()); sl@0: #endif sl@0: sl@0: return old; sl@0: } sl@0: sl@0: sl@0: // static data members. sl@0: sl@0: # if !defined (_STLP_STATIC_CONST_INIT_BUG) && ! defined (_STLP_USE_DECLSPEC) sl@0: sl@0: const locale::category locale::none; sl@0: const locale::category locale::collate; sl@0: const locale::category locale::ctype; sl@0: const locale::category locale::monetary; sl@0: const locale::category locale::numeric; sl@0: const locale::category locale::time; sl@0: const locale::category locale::messages; sl@0: const locale::category locale::all; sl@0: sl@0: # endif sl@0: sl@0: sl@0: #if defined(__SYMBIAN32__) && defined( __WINSCW__) sl@0: sl@0: extern "C" bool __uncaught_exception(void); sl@0: sl@0: _STLP_EXP_DECLSPEC bool uncaught_exception() sl@0: { sl@0: // providing default implementation sl@0: sl@0: #if __MWERKS__ > 0x3200 sl@0: return __uncaught_exception(); sl@0: #else sl@0: // no uncaught_exception() implementation on CW 2.4.7 sl@0: return false; sl@0: #endif sl@0: sl@0: } sl@0: #endif sl@0: sl@0: _STLP_END_NAMESPACE sl@0: sl@0: // sl@0: // Facets included in classic locale : sl@0: // sl@0: sl@0: sl@0: