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 sl@0: #include sl@0: #include "locale_impl.h" sl@0: #include "c_locale.h" sl@0: sl@0: #include "locale_nonclassic.h" sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: #include "libstdcppwsd.h" sl@0: #endif sl@0: sl@0: _STLP_BEGIN_NAMESPACE sl@0: sl@0: // those wrappers are needed to avoid extern "C" sl@0: sl@0: void* _Loc_ctype_create(const char * s) sl@0: { return (void*)_Locale_ctype_create(s); } sl@0: void* _Loc_numeric_create(const char * s) sl@0: { return (void*)_Locale_numeric_create(s); } sl@0: void* _Loc_time_create(const char * s) sl@0: { return (void*)_Locale_time_create(s); } sl@0: void* _Loc_collate_create(const char * s) sl@0: { return (void*)_Locale_collate_create(s); } sl@0: void* _Loc_monetary_create(const char * s) sl@0: { return (void*)_Locale_monetary_create(s); } sl@0: void* _Loc_messages_create(const char * s) sl@0: { return (void*)_Locale_messages_create(s); } sl@0: sl@0: char* _Loc_ctype_name(const void* l, char* s) sl@0: { return _Locale_ctype_name(l, s); } sl@0: char* _Loc_numeric_name(const void* l, char* s) sl@0: { return _Locale_numeric_name(l, s); } sl@0: char* _Loc_time_name(const void* l, char* s) sl@0: { return _Locale_time_name(l,s); } sl@0: char* _Loc_collate_name( const void* l, char* s) sl@0: { return _Locale_collate_name(l,s); } sl@0: char* _Loc_monetary_name(const void* l, char* s) sl@0: { return _Locale_monetary_name(l,s); } sl@0: char* _Loc_messages_name(const void* l, char* s) sl@0: { return _Locale_messages_name(l,s); } sl@0: sl@0: const char* _Loc_ctype_default(char* p) { return _Locale_ctype_default(p); } sl@0: const char* _Loc_numeric_default(char * p) { return _Locale_numeric_default(p); } sl@0: const char* _Loc_time_default(char* p) { return _Locale_time_default(p); } sl@0: const char* _Loc_collate_default(char* p) { return _Locale_collate_default(p); } sl@0: const char* _Loc_monetary_default(char* p) { return _Locale_monetary_default(p); } sl@0: const char* _Loc_messages_default(char* p) { return _Locale_messages_default(p); } sl@0: sl@0: void _Loc_ctype_destroy(void* p) {_Locale_ctype_destroy(p); } sl@0: void _Loc_numeric_destroy(void* p) {_Locale_numeric_destroy(p); } sl@0: void _Loc_time_destroy(void* p) {_Locale_time_destroy(p);} sl@0: void _Loc_collate_destroy(void* p) {_Locale_collate_destroy(p);} sl@0: void _Loc_monetary_destroy(void* p) {_Locale_monetary_destroy(p);} sl@0: void _Loc_messages_destroy(void* p) {_Locale_messages_destroy(p);} sl@0: sl@0: typedef void* (*loc_create_func_t)(const char *); sl@0: typedef char* (*loc_name_func_t)(const void* l, char* s); sl@0: typedef void (*loc_destroy_func_t)(void* l); sl@0: typedef const char* (*loc_default_name_func_t)(char* s); sl@0: sl@0: //---------------------------------------------------------------------- sl@0: // Acquire and release low-level category objects. The whole point of sl@0: // this is so that we don't allocate (say) four different _Locale_ctype sl@0: // objects for a single locale. sl@0: # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: struct __eqstr { sl@0: bool operator()(const char* s1, const char* s2) const sl@0: { return strcmp(s1, s2) == 0; } sl@0: }; sl@0: # endif sl@0: sl@0: struct __ptr_hash { sl@0: size_t operator()(const void* p) const sl@0: { return __REINTERPRET_CAST(size_t,p); } sl@0: }; sl@0: sl@0: template sl@0: struct __destroy_fun { sl@0: typedef void (*_fun_type)(_Category_ptr); sl@0: _fun_type _M_fun; sl@0: __destroy_fun(_fun_type __f) : _M_fun(__f) {} sl@0: void operator()(_Category_ptr __c) { _M_fun(__c); } sl@0: }; sl@0: sl@0: // Global hash tables for category objects. sl@0: typedef hash_map, hash, __eqstr> Category_Map; sl@0: sl@0: # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: // Look up a category by name sl@0: static hash_map, hash, __eqstr>* ctype_hash; sl@0: static hash_map, hash, __eqstr>* numeric_hash; sl@0: static hash_map, hash, __eqstr>* time_hash; sl@0: static hash_map, hash, __eqstr>* collate_hash; sl@0: static hash_map, hash, __eqstr>* monetary_hash; sl@0: static hash_map, hash, __eqstr>* messages_hash; sl@0: # endif sl@0: sl@0: // We have a single lock for all of the hash tables. We may wish to sl@0: // replace it with six different locks. sl@0: /* REFERENCED */ sl@0: # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _STLP_STATIC_MUTEX __category_hash_lock _STLP_MUTEX_INITIALIZER; sl@0: # endif sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: void locale_catalog_category_hash_lock_init() sl@0: { sl@0: get_locale_catalog_category_hash_lock()._M_lock.iState = _ENeedsNormalInit; sl@0: get_locale_catalog_category_hash_lock()._M_lock.iPtr = 0; sl@0: get_locale_catalog_category_hash_lock()._M_lock.iReentry = 0; sl@0: } sl@0: # endif sl@0: sl@0: static void* sl@0: __acquire_category(const char* name, loc_create_func_t create_obj, sl@0: loc_default_name_func_t default_obj, Category_Map ** M) sl@0: { sl@0: typedef Category_Map::iterator Category_iterator; sl@0: pair result; sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _STLP_auto_lock sentry(get_locale_catalog_category_hash_lock()); sl@0: # else sl@0: _STLP_auto_lock sentry(__category_hash_lock); sl@0: # endif sl@0: sl@0: typedef const char* key_type; sl@0: sl@0: sl@0: if (!*M) sl@0: *M = new Category_Map(); sl@0: sl@0: #if defined(__SC__) //*TY 06/01/2000 - added workaround for SCpp sl@0: if(!*M) delete *M; //*TY 06/01/2000 - it forgets to generate dtor for Category_Map class. This fake code forces to generate one. sl@0: #endif //*TY 06/01/2000 - sl@0: sl@0: // Find what name to look for. Be careful if user requests the default. sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: if (name == 0 || name[0] == 0) sl@0: name = default_obj(buf); sl@0: if (name == 0 || name[0] == 0) sl@0: name = "C"; sl@0: sl@0: pair > __e(name, pair((void*)0,size_t(0))); sl@0: sl@0: // Look for an existing entry with that name. sl@0: sl@0: result = (*M)->insert_noresize(__e); sl@0: sl@0: // There was no entry in the map already. Create the category. sl@0: if (result.second) sl@0: (*result.first).second.first = create_obj(name); sl@0: sl@0: // Increment the reference count. sl@0: ++((*result.first).second.second); sl@0: sl@0: return (*result.first).second.first; sl@0: } sl@0: sl@0: sl@0: static void sl@0: __release_category(void* cat, sl@0: loc_destroy_func_t destroy_fun, sl@0: loc_name_func_t get_name, sl@0: Category_Map** M) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: _STLP_auto_lock sentry(get_locale_catalog_category_hash_lock()); sl@0: # else sl@0: _STLP_auto_lock sentry(__category_hash_lock); sl@0: # endif sl@0: sl@0: if (cat && (*M)) { sl@0: // Find the name of the category object. sl@0: char buf[_Locale_MAX_SIMPLE_NAME + 1]; sl@0: char* name = get_name(cat, buf); sl@0: sl@0: if (name != 0) { sl@0: Category_Map::iterator it = (*M)->find(name); sl@0: if (it != (*M)->end()) { sl@0: // Decrement the ref count. If it goes to zero, delete this category sl@0: // from the map. sl@0: if (--((*it).second.second) == 0) { sl@0: void* cat1 = (*it).second.first; sl@0: destroy_fun(cat1); sl@0: (*M)->erase(it); sl@0: delete (*M); sl@0: *M = NULL; sl@0: } sl@0: } sl@0: } sl@0: } sl@0: } sl@0: sl@0: _Locale_ctype* _STLP_CALL __acquire_ctype(const char* name) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& ctype_hash = get_locale_catalog_ctype_hash(); sl@0: # endif sl@0: return __REINTERPRET_CAST(_Locale_ctype*, sl@0: __acquire_category(name, _Loc_ctype_create, _Loc_ctype_default, &ctype_hash)); sl@0: } sl@0: sl@0: _Locale_numeric* _STLP_CALL __acquire_numeric(const char* name) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& numeric_hash = get_locale_catalog_numeric_hash(); sl@0: # endif sl@0: return __REINTERPRET_CAST(_Locale_numeric*, sl@0: __acquire_category(name, _Loc_numeric_create, _Loc_numeric_default, &numeric_hash)); } sl@0: _STLP_EXP_DECLSPEC _Locale_time* _STLP_CALL __acquire_time(const char* name) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& time_hash = get_locale_catalog_time_hash(); sl@0: # endif sl@0: return __REINTERPRET_CAST(_Locale_time*, sl@0: __acquire_category(name, _Loc_time_create, _Loc_time_default, &time_hash)); } sl@0: _Locale_collate* _STLP_CALL __acquire_collate(const char* name) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& collate_hash = get_locale_catalog_collate_hash(); sl@0: # endif sl@0: return __REINTERPRET_CAST(_Locale_collate*, sl@0: __acquire_category(name, _Loc_collate_create, _Loc_collate_default, &collate_hash)); } sl@0: _Locale_monetary* _STLP_CALL __acquire_monetary(const char* name) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& monetary_hash = get_locale_catalog_monetary_hash(); sl@0: # endif sl@0: return __REINTERPRET_CAST(_Locale_monetary*, sl@0: __acquire_category(name, _Loc_monetary_create, _Loc_monetary_default, &monetary_hash)); } sl@0: _Locale_messages* _STLP_CALL __acquire_messages(const char* name) sl@0: { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& messages_hash = get_locale_catalog_messages_hash(); sl@0: # endif sl@0: return __REINTERPRET_CAST(_Locale_messages*, sl@0: __acquire_category(name, _Loc_messages_create, _Loc_messages_default, &messages_hash)); } sl@0: sl@0: void _STLP_CALL __release_ctype(_Locale_ctype* cat) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& ctype_hash = get_locale_catalog_ctype_hash(); sl@0: __release_category(cat, _Loc_ctype_destroy, _Loc_ctype_name, &ctype_hash); sl@0: # else sl@0: __release_category(cat, _Loc_ctype_destroy, _Loc_ctype_name, &ctype_hash); sl@0: # endif sl@0: } sl@0: void _STLP_CALL __release_numeric(_Locale_numeric* cat) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& numeric_hash = get_locale_catalog_numeric_hash(); sl@0: __release_category(cat, _Loc_numeric_destroy, _Loc_numeric_name, &numeric_hash); sl@0: # else sl@0: __release_category(cat, _Loc_numeric_destroy, _Loc_numeric_name, &numeric_hash); sl@0: # endif sl@0: } sl@0: _STLP_EXP_DECLSPEC void _STLP_CALL __release_time(_Locale_time* cat) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& time_hash = get_locale_catalog_time_hash(); sl@0: __release_category(cat, _Loc_time_destroy, _Loc_time_name, &time_hash); sl@0: # else sl@0: __release_category(cat, _Loc_time_destroy, _Loc_time_name, &time_hash); sl@0: # endif sl@0: } sl@0: void _STLP_CALL __release_collate(_Locale_collate* cat) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& collate_hash = get_locale_catalog_collate_hash(); sl@0: __release_category(cat, _Loc_collate_destroy, _Loc_collate_name, &collate_hash); sl@0: # else sl@0: __release_category(cat, _Loc_collate_destroy, _Loc_collate_name, &collate_hash); sl@0: # endif sl@0: } sl@0: void _STLP_CALL __release_monetary(_Locale_monetary* cat) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& monetary_hash = get_locale_catalog_monetary_hash(); sl@0: __release_category(cat, _Loc_monetary_destroy, _Loc_monetary_name, &monetary_hash); sl@0: # else sl@0: __release_category(cat, _Loc_monetary_destroy, _Loc_monetary_name, &monetary_hash); sl@0: # endif sl@0: } sl@0: void _STLP_CALL __release_messages(_Locale_messages* cat) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: hash_map, hash, __eqstr>*& messages_hash = get_locale_catalog_messages_hash(); sl@0: __release_category(cat, _Loc_messages_destroy, _Loc_messages_name, &messages_hash); sl@0: # else sl@0: __release_category(cat, _Loc_messages_destroy, _Loc_messages_name, &messages_hash); sl@0: # endif sl@0: } sl@0: sl@0: sl@0: // sl@0: // content which is dependent on the name sl@0: // sl@0: sl@0: template sl@0: inline locale::facet* sl@0: _Locale_insert(_Locale* __that, Facet* f) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: return __that->insert(f, Facet::GetFacetLocaleId()._M_index, false); sl@0: #else sl@0: return __that->insert(f, Facet::id._M_index, false); sl@0: #endif sl@0: } sl@0: sl@0: // Give L a name where all facets except those in category c sl@0: // are taken from name1, and those in category c are taken from name2. sl@0: void _Stl_loc_combine_names(_Locale* L, sl@0: const char* name1, const char* name2, sl@0: locale::category c) sl@0: { sl@0: if ((c & locale::all) == 0 || strcmp(name1, name2) == 0) sl@0: L->name = name1; sl@0: else if ((c & locale::all) == locale::all) sl@0: L->name = name2; sl@0: else { sl@0: // Decompose the names. sl@0: char ctype_buf[_Locale_MAX_SIMPLE_NAME]; sl@0: char numeric_buf[_Locale_MAX_SIMPLE_NAME]; sl@0: char time_buf[_Locale_MAX_SIMPLE_NAME]; sl@0: char collate_buf[_Locale_MAX_SIMPLE_NAME]; sl@0: char monetary_buf[_Locale_MAX_SIMPLE_NAME]; sl@0: char messages_buf[_Locale_MAX_SIMPLE_NAME]; sl@0: sl@0: _Locale_extract_ctype_name((c & locale::ctype) ? name2 : name1, sl@0: ctype_buf); sl@0: _Locale_extract_numeric_name((c & locale::numeric) ? name2 : name1, sl@0: numeric_buf); sl@0: _Locale_extract_time_name((c & locale::time) ? name2 : name1, sl@0: time_buf); sl@0: _Locale_extract_collate_name((c & locale::collate) ? name2 : name1, sl@0: collate_buf); sl@0: _Locale_extract_monetary_name((c & locale::monetary) ? name2 : name1, sl@0: monetary_buf); sl@0: _Locale_extract_messages_name((c & locale::messages) ? name2 : name1, sl@0: messages_buf); sl@0: sl@0: // Construct a new composite name. sl@0: char composite_buf[_Locale_MAX_COMPOSITE_NAME]; sl@0: _Locale_compose_name(composite_buf, sl@0: ctype_buf, numeric_buf, time_buf, sl@0: collate_buf, monetary_buf, messages_buf, sl@0: name1); sl@0: L->name = composite_buf; sl@0: } sl@0: } sl@0: sl@0: sl@0: // Create a locale from a name. sl@0: _STLP_EXP_DECLSPEC locale::locale(const char* name) sl@0: : _M_impl(0) sl@0: { sl@0: if (!name) sl@0: _M_throw_runtime_error(0); sl@0: else if(strcmp(name,"")==0) sl@0: name = _Locale_ctype_default(NULL); sl@0: sl@0: _Locale* impl = 0; sl@0: sl@0: _STLP_TRY { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl = new _Locale(get_locale_id_S_max(), name); sl@0: # else sl@0: impl = new _Locale(locale::id::_S_max, name); sl@0: # endif sl@0: sl@0: sl@0: // Insert categories one at a time. sl@0: impl->insert_ctype_facets(name); sl@0: impl->insert_numeric_facets(name); sl@0: impl->insert_time_facets(name); sl@0: impl->insert_collate_facets(name); sl@0: impl->insert_monetary_facets(name); sl@0: impl->insert_messages_facets(name); sl@0: // reassign impl sl@0: _M_impl = impl; sl@0: } sl@0: _STLP_UNWIND(delete impl); sl@0: } sl@0: sl@0: // Create a locale that's a copy of L, except that all of the facets sl@0: // in category c are instead constructed by name. sl@0: _STLP_EXP_DECLSPEC locale::locale(const locale& L, const char* name, locale::category c) sl@0: : _M_impl(0) sl@0: { sl@0: if (name == 0 || strcmp(name, "*") == 0) sl@0: _M_throw_runtime_error(name); sl@0: sl@0: _Locale* impl = 0; sl@0: sl@0: _STLP_TRY { sl@0: impl = new _Locale(*L._M_impl); sl@0: _Stl_loc_combine_names(impl, L._M_impl->name.c_str(), name, c); sl@0: sl@0: if (c & locale::ctype) sl@0: impl->insert_ctype_facets(name); sl@0: if (c & locale::numeric) sl@0: impl->insert_numeric_facets(name); sl@0: if (c & locale::time) sl@0: impl->insert_time_facets(name); sl@0: if (c & locale::collate) sl@0: impl->insert_collate_facets(name); sl@0: if (c & locale::monetary) sl@0: impl->insert_monetary_facets(name); sl@0: if (c & locale::messages) sl@0: impl->insert_messages_facets(name); sl@0: _M_impl = impl; sl@0: } sl@0: _STLP_UNWIND(delete impl) sl@0: sl@0: } sl@0: sl@0: // Contruct a new locale where all facets that aren't in category c sl@0: // come from L1, and all those that are in category c come from L2. sl@0: _STLP_EXP_DECLSPEC locale::locale(const locale& L1, const locale& L2, category c) sl@0: : _M_impl(0) sl@0: { sl@0: _Locale* impl = new _Locale(*L1._M_impl); sl@0: sl@0: _Locale_impl* i2 = L2._M_impl; sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: const string nameless("*"); sl@0: # else sl@0: static string nameless("*"); sl@0: # endif sl@0: sl@0: if (L1.name() != nameless && L2.name() != nameless) sl@0: _Stl_loc_combine_names(impl, sl@0: L1._M_impl->name.c_str(), L2._M_impl->name.c_str(), sl@0: c); sl@0: else { sl@0: impl->name = "*"; sl@0: } sl@0: sl@0: if (c & collate) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::collate::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::collate::id); sl@0: #endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::collate::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::collate::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: if (c & ctype) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::codecvt::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::ctype::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::codecvt::id); sl@0: impl->insert( i2, _STLP_STD::ctype::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::ctype::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::codecvt::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::ctype::id); sl@0: impl->insert( i2, _STLP_STD::codecvt::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: if (c & monetary) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::moneypunct::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::moneypunct::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::money_get > >::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::money_put > >::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::moneypunct::id); sl@0: impl->insert( i2, _STLP_STD::moneypunct::id); sl@0: impl->insert( i2, _STLP_STD::money_get > >::id); sl@0: impl->insert( i2, _STLP_STD::money_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::moneypunct::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::moneypunct::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::money_get > >::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::money_put > >::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::moneypunct::id); sl@0: impl->insert( i2, _STLP_STD::moneypunct::id); sl@0: impl->insert( i2, _STLP_STD::money_get > >::id); sl@0: impl->insert( i2, _STLP_STD::money_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: if (c & numeric) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::numpunct::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::num_get > >::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::num_put > >::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::numpunct::id); sl@0: impl->insert( i2, _STLP_STD::num_get > >::id); sl@0: impl->insert( i2, _STLP_STD::num_put > >::id); sl@0: #endif sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert(i2, _STLP_STD::numpunct::GetFacetLocaleId()); sl@0: impl->insert( i2, num_get > >::GetFacetLocaleId()); sl@0: impl->insert( i2, num_put > >::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::numpunct::id); sl@0: impl->insert( i2, num_get > >::id); sl@0: impl->insert( i2, num_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: if (c & time) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::time_get > >::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::time_put > >::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::time_get > >::id); sl@0: impl->insert( i2, _STLP_STD::time_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::time_get > >::GetFacetLocaleId()); sl@0: impl->insert( i2, _STLP_STD::time_put > >::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::time_get > >::id); sl@0: impl->insert( i2, _STLP_STD::time_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: if (c & messages) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::messages::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::messages::id); sl@0: #endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: impl->insert( i2, _STLP_STD::messages::GetFacetLocaleId()); sl@0: #else sl@0: impl->insert( i2, _STLP_STD::messages::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //_STLP_NO_WCHAR_T sl@0: } sl@0: _M_impl = impl; sl@0: } sl@0: sl@0: // Six functions, one for each category. Each of them takes a sl@0: // _Locale* and a name, constructs that appropriate category sl@0: // facets by name, and inserts them into the locale. sl@0: sl@0: void _Locale::insert_ctype_facets(const char* pname) sl@0: { sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: _Locale_impl* i2 = locale::classic()._M_impl; sl@0: sl@0: if (pname == 0 || pname[0] == 0) sl@0: pname = _Locale_ctype_default(buf); sl@0: sl@0: if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, ctype::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, ctype::id); sl@0: #endif sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, codecvt::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, codecvt::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_MBSTATE_T sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, ctype::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, ctype::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, codecvt::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, codecvt::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_MBSTATE_T sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: else { sl@0: ctype* ct = 0; sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: codecvt* cvt = 0; sl@0: # endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: ctype* wct = 0; sl@0: codecvt* wcvt = 0; sl@0: # endif sl@0: _STLP_TRY { sl@0: ct = new ctype_byname(pname); sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: cvt = new codecvt_byname(pname); sl@0: # endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: wct = new ctype_byname(pname); sl@0: wcvt = new codecvt_byname(pname); sl@0: # endif sl@0: } sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: # ifdef _STLP_NO_MBSTATE_T sl@0: _STLP_UNWIND(delete ct; delete wct; delete wcvt); sl@0: # else sl@0: _STLP_UNWIND(delete ct; delete wct; delete cvt; delete wcvt); sl@0: # endif sl@0: # else sl@0: # ifdef _STLP_NO_MBSTATE_T sl@0: _STLP_UNWIND(delete ct); sl@0: # else sl@0: _STLP_UNWIND(delete ct; delete cvt); sl@0: # endif sl@0: # endif sl@0: _Locale_insert(this, ct); sl@0: # ifndef _STLP_NO_MBSTATE_T sl@0: _Locale_insert(this, cvt); sl@0: # endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _Locale_insert(this, wct); sl@0: _Locale_insert(this, wcvt); sl@0: # endif sl@0: } sl@0: } sl@0: sl@0: void _Locale::insert_numeric_facets(const char* pname) sl@0: { sl@0: _Locale_impl* i2 = locale::classic()._M_impl; sl@0: sl@0: numpunct* punct = 0; sl@0: num_get > >* get = 0; sl@0: num_put > >* put = 0; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: numpunct* wpunct = 0; sl@0: num_get > >* wget = 0; sl@0: num_put > >* wput = 0; sl@0: # endif sl@0: sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: if (pname == 0 || pname[0] == 0) sl@0: pname = _Locale_numeric_default(buf); sl@0: sl@0: if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, numpunct::GetFacetLocaleId()); sl@0: this->insert(i2, num_put > >::GetFacetLocaleId()); sl@0: this->insert(i2, num_get > >::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, numpunct::id); sl@0: this->insert(i2, num_put > >::id); sl@0: this->insert(i2, num_get > >::id); sl@0: #endif sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, numpunct::GetFacetLocaleId()); sl@0: this->insert(i2, num_get > >::GetFacetLocaleId()); sl@0: this->insert(i2, num_put > >::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, numpunct::id); sl@0: this->insert(i2, num_get > >::id); sl@0: this->insert(i2, num_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: else { sl@0: _STLP_TRY { sl@0: punct = new numpunct_byname(pname); sl@0: get = new num_get > >; sl@0: put = new num_put > >; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: wpunct = new numpunct_byname(pname); sl@0: wget = new num_get > >; sl@0: wput = new num_put > >; sl@0: # endif sl@0: } sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_UNWIND(delete punct; delete wpunct; delete get; delete wget; sl@0: delete put; delete wput); sl@0: # else sl@0: _STLP_UNWIND(delete punct; delete get;delete put); sl@0: # endif sl@0: sl@0: _Locale_insert(this,punct); sl@0: _Locale_insert(this,get); sl@0: _Locale_insert(this,put); sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _Locale_insert(this,wpunct); sl@0: _Locale_insert(this,wget); sl@0: _Locale_insert(this,wput); sl@0: # endif sl@0: } sl@0: } sl@0: sl@0: void _Locale::insert_time_facets(const char* pname) sl@0: { sl@0: _Locale_impl* i2 = locale::classic()._M_impl; sl@0: time_get > >* get = 0; sl@0: time_put > >* put = 0; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: time_get > >* wget = 0; sl@0: time_put > >* wput = 0; sl@0: # endif sl@0: sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: if (pname == 0 || pname[0] == 0) sl@0: pname = _Locale_time_default(buf); sl@0: sl@0: if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) { sl@0: sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, sl@0: time_get > >::GetFacetLocaleId()); sl@0: this->insert(i2, sl@0: time_put > >::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, sl@0: time_get > >::id); sl@0: this->insert(i2, sl@0: time_put > >::id); sl@0: #endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, sl@0: time_get > >::GetFacetLocaleId()); sl@0: this->insert(i2, sl@0: time_put > >::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, sl@0: time_get > >::id); sl@0: this->insert(i2, sl@0: time_put > >::id); sl@0: #endif sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: else { sl@0: _STLP_TRY { sl@0: get = new time_get_byname > >(pname); sl@0: put = new time_put_byname > >(pname); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: wget = new time_get_byname > >(pname); sl@0: wput = new time_put_byname > >(pname); sl@0: # endif sl@0: } sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_UNWIND(delete get; delete wget; delete put; delete wput); sl@0: # else sl@0: _STLP_UNWIND(delete get; delete put); sl@0: # endif sl@0: _Locale_insert(this,get); sl@0: _Locale_insert(this,put); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _Locale_insert(this,wget); sl@0: _Locale_insert(this,wput); sl@0: # endif sl@0: } sl@0: } sl@0: sl@0: void _Locale::insert_collate_facets(const char* nam) sl@0: { sl@0: _Locale_impl* i2 = locale::classic()._M_impl; sl@0: sl@0: collate* col = 0; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: collate* wcol = 0; sl@0: # endif sl@0: sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: if (nam == 0 || nam[0] == 0) sl@0: nam = _Locale_collate_default(buf); sl@0: sl@0: if (nam == 0 || nam[0] == 0 || strcmp(nam, "C") == 0) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, collate::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, collate::id); sl@0: #endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, collate::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, collate::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif//_STLP_NO_WCHAR_T sl@0: } sl@0: else { sl@0: _STLP_TRY { sl@0: col = new collate_byname(nam); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: wcol = new collate_byname(nam); sl@0: # endif sl@0: } sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_UNWIND(delete col; delete wcol); sl@0: # else sl@0: _STLP_UNWIND(delete col); sl@0: # endif sl@0: _Locale_insert(this,col); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _Locale_insert(this,wcol); sl@0: # endif sl@0: } sl@0: } sl@0: sl@0: void _Locale::insert_monetary_facets(const char* pname) sl@0: { sl@0: _Locale_impl* i2 = locale::classic()._M_impl; sl@0: sl@0: moneypunct* punct = 0; sl@0: moneypunct* ipunct = 0; sl@0: money_get > >* get = 0; sl@0: money_put > >* put = 0; sl@0: sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: moneypunct* wpunct = 0; sl@0: moneypunct* wipunct = 0; sl@0: money_get > >* wget = 0; sl@0: money_put > >* wput = 0; sl@0: # endif sl@0: sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: if (pname == 0 || pname[0] == 0) sl@0: pname = _Locale_monetary_default(buf); sl@0: sl@0: if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, moneypunct::GetFacetLocaleId()); sl@0: this->insert(i2, moneypunct::GetFacetLocaleId()); sl@0: this->insert(i2, money_get > >::GetFacetLocaleId()); sl@0: this->insert(i2, money_put > >::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, moneypunct::id); sl@0: this->insert(i2, moneypunct::id); sl@0: this->insert(i2, money_get > >::id); sl@0: this->insert(i2, money_put > >::id); sl@0: #endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert( i2, moneypunct::GetFacetLocaleId()); sl@0: this->insert( i2, moneypunct::GetFacetLocaleId()); sl@0: this->insert(i2, money_get > >::GetFacetLocaleId()); sl@0: this->insert(i2, money_put > >::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, moneypunct::id); sl@0: this->insert(i2, moneypunct::id); sl@0: this->insert(i2, money_get > >::id); sl@0: this->insert(i2, money_put > >::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif sl@0: } sl@0: else { sl@0: _STLP_TRY { sl@0: punct = new moneypunct_byname(pname); sl@0: ipunct = new moneypunct_byname(pname); sl@0: get = new money_get > >; sl@0: put = new money_put > >; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: wpunct = new moneypunct_byname(pname); sl@0: wipunct = new moneypunct_byname(pname); sl@0: wget = new money_get > >; sl@0: wput = new money_put > >; sl@0: # endif sl@0: } sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_UNWIND(delete punct; delete ipunct; delete wpunct; delete wipunct; sl@0: delete get; delete wget; delete put; delete wput); sl@0: # else sl@0: _STLP_UNWIND(delete punct; delete ipunct; delete get; delete put); sl@0: # endif sl@0: _Locale_insert(this,punct); sl@0: _Locale_insert(this,ipunct); sl@0: _Locale_insert(this,get); sl@0: _Locale_insert(this,put); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _Locale_insert(this,wget); sl@0: _Locale_insert(this,wpunct); sl@0: _Locale_insert(this,wipunct); sl@0: _Locale_insert(this,wput); sl@0: # endif sl@0: } sl@0: } sl@0: sl@0: sl@0: void _Locale::insert_messages_facets(const char* pname) sl@0: { sl@0: _Locale_impl* i2 = locale::classic()._M_impl; sl@0: messages* msg = 0; sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: messages* wmsg = 0; sl@0: # endif sl@0: sl@0: char buf[_Locale_MAX_SIMPLE_NAME]; sl@0: if (pname == 0 || pname[0] == 0) sl@0: pname = _Locale_messages_default(buf); sl@0: sl@0: if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) { sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, messages::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, messages::id); sl@0: #endif sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_) sl@0: this->insert(i2, messages::GetFacetLocaleId()); sl@0: #else sl@0: this->insert(i2, messages::id); sl@0: #endif //__LIBSTD_CPP_SYMBIAN32_WSD__ sl@0: # endif //!_STLP_NO_WCHAR_T sl@0: } sl@0: else { sl@0: _STLP_TRY { sl@0: msg = new messages_byname(pname); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: wmsg = new messages_byname(pname); sl@0: # endif sl@0: } sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _STLP_UNWIND(delete msg; delete wmsg); sl@0: # else sl@0: _STLP_UNWIND(delete msg); sl@0: # endif sl@0: _Locale_insert(this,msg); sl@0: # ifndef _STLP_NO_WCHAR_T sl@0: _Locale_insert(this,wmsg); sl@0: # endif sl@0: } sl@0: } sl@0: sl@0: _STLP_END_NAMESPACE sl@0: sl@0: sl@0: