os/ossrv/stdcpp/src/locale_catalog.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1999
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */ 
sl@0
    20
# include "stlport_prefix.h"
sl@0
    21
sl@0
    22
// #include <locale>
sl@0
    23
#include <hash_map>
sl@0
    24
#include "locale_impl.h"
sl@0
    25
#include "c_locale.h"
sl@0
    26
sl@0
    27
#include "locale_nonclassic.h"
sl@0
    28
sl@0
    29
sl@0
    30
#include <stl/_codecvt.h>
sl@0
    31
#include <stl/_collate.h>
sl@0
    32
#include <stl/_ctype.h>
sl@0
    33
#include <stl/_monetary.h>
sl@0
    34
#include <stl/_time_facets.h>
sl@0
    35
#include <stl/_messages_facets.h>
sl@0
    36
#include <stl/_istream.h>
sl@0
    37
#include <stl/_num_get.h>
sl@0
    38
#include <stl/_num_put.h>
sl@0
    39
sl@0
    40
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    41
#include "libstdcppwsd.h"
sl@0
    42
#endif
sl@0
    43
sl@0
    44
_STLP_BEGIN_NAMESPACE
sl@0
    45
sl@0
    46
// those wrappers are needed to avoid extern "C"
sl@0
    47
sl@0
    48
 void* _Loc_ctype_create(const char * s)
sl@0
    49
  { return (void*)_Locale_ctype_create(s); }
sl@0
    50
 void* _Loc_numeric_create(const char * s)
sl@0
    51
  { return (void*)_Locale_numeric_create(s); }
sl@0
    52
 void* _Loc_time_create(const char * s)
sl@0
    53
  { return (void*)_Locale_time_create(s); }
sl@0
    54
 void* _Loc_collate_create(const char * s)
sl@0
    55
  { return (void*)_Locale_collate_create(s); }
sl@0
    56
 void* _Loc_monetary_create(const char * s)
sl@0
    57
  { return (void*)_Locale_monetary_create(s); }
sl@0
    58
 void* _Loc_messages_create(const char * s)
sl@0
    59
  { return (void*)_Locale_messages_create(s); }
sl@0
    60
sl@0
    61
 char* _Loc_ctype_name(const void* l, char* s)
sl@0
    62
  { return _Locale_ctype_name(l, s); }
sl@0
    63
 char* _Loc_numeric_name(const void* l, char* s)
sl@0
    64
  { return _Locale_numeric_name(l, s); }
sl@0
    65
 char* _Loc_time_name(const void* l, char* s)
sl@0
    66
  { return _Locale_time_name(l,s); }
sl@0
    67
 char* _Loc_collate_name( const void* l, char* s)
sl@0
    68
  { return _Locale_collate_name(l,s); }
sl@0
    69
 char* _Loc_monetary_name(const void* l, char* s)
sl@0
    70
  { return _Locale_monetary_name(l,s); }
sl@0
    71
 char* _Loc_messages_name(const void* l, char* s)
sl@0
    72
  { return _Locale_messages_name(l,s); }
sl@0
    73
sl@0
    74
 const char* _Loc_ctype_default(char* p)    { return _Locale_ctype_default(p); }
sl@0
    75
 const char* _Loc_numeric_default(char * p) { return _Locale_numeric_default(p); }
sl@0
    76
 const char* _Loc_time_default(char* p)     { return _Locale_time_default(p); }
sl@0
    77
 const char* _Loc_collate_default(char* p)  { return _Locale_collate_default(p); }
sl@0
    78
 const char* _Loc_monetary_default(char* p) { return _Locale_monetary_default(p); }
sl@0
    79
 const char* _Loc_messages_default(char* p) { return _Locale_messages_default(p); }
sl@0
    80
sl@0
    81
 void _Loc_ctype_destroy(void* p)    {_Locale_ctype_destroy(p); }
sl@0
    82
 void _Loc_numeric_destroy(void* p)  {_Locale_numeric_destroy(p); }
sl@0
    83
 void _Loc_time_destroy(void* p)     {_Locale_time_destroy(p);}
sl@0
    84
 void _Loc_collate_destroy(void* p)  {_Locale_collate_destroy(p);}
sl@0
    85
 void _Loc_monetary_destroy(void* p) {_Locale_monetary_destroy(p);}
sl@0
    86
 void _Loc_messages_destroy(void* p) {_Locale_messages_destroy(p);}
sl@0
    87
sl@0
    88
typedef void* (*loc_create_func_t)(const char *);
sl@0
    89
typedef char* (*loc_name_func_t)(const void* l, char* s);
sl@0
    90
typedef void (*loc_destroy_func_t)(void* l);
sl@0
    91
typedef const char* (*loc_default_name_func_t)(char* s);
sl@0
    92
sl@0
    93
//----------------------------------------------------------------------
sl@0
    94
// Acquire and release low-level category objects.  The whole point of
sl@0
    95
// this is so that we don't allocate (say) four different _Locale_ctype
sl@0
    96
// objects for a single locale.
sl@0
    97
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    98
struct __eqstr {
sl@0
    99
  bool operator()(const char* s1, const char* s2) const
sl@0
   100
    { return strcmp(s1, s2) == 0; }
sl@0
   101
};
sl@0
   102
# endif
sl@0
   103
sl@0
   104
struct __ptr_hash {
sl@0
   105
  size_t operator()(const void* p) const
sl@0
   106
    { return __REINTERPRET_CAST(size_t,p); }
sl@0
   107
};
sl@0
   108
sl@0
   109
template <class _Category_ptr>
sl@0
   110
struct __destroy_fun {
sl@0
   111
  typedef void (*_fun_type)(_Category_ptr);
sl@0
   112
  _fun_type _M_fun;
sl@0
   113
  __destroy_fun(_fun_type __f) : _M_fun(__f) {}
sl@0
   114
  void operator()(_Category_ptr __c) { _M_fun(__c); }  
sl@0
   115
};
sl@0
   116
sl@0
   117
// Global hash tables for category objects.
sl@0
   118
typedef hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr> Category_Map;
sl@0
   119
sl@0
   120
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   121
// Look up a category by name
sl@0
   122
static hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* ctype_hash;
sl@0
   123
static hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* numeric_hash;
sl@0
   124
static hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* time_hash;
sl@0
   125
static hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* collate_hash;
sl@0
   126
static hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* monetary_hash;
sl@0
   127
static hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>* messages_hash;
sl@0
   128
# endif
sl@0
   129
sl@0
   130
// We have a single lock for all of the hash tables.  We may wish to 
sl@0
   131
// replace it with six different locks.
sl@0
   132
/* REFERENCED */
sl@0
   133
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   134
_STLP_STATIC_MUTEX __category_hash_lock _STLP_MUTEX_INITIALIZER;
sl@0
   135
# endif
sl@0
   136
sl@0
   137
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   138
void locale_catalog_category_hash_lock_init()
sl@0
   139
{
sl@0
   140
   get_locale_catalog_category_hash_lock()._M_lock.iState = _ENeedsNormalInit;
sl@0
   141
   get_locale_catalog_category_hash_lock()._M_lock.iPtr = 0;
sl@0
   142
   get_locale_catalog_category_hash_lock()._M_lock.iReentry = 0;   	
sl@0
   143
}
sl@0
   144
# endif
sl@0
   145
sl@0
   146
static void*
sl@0
   147
__acquire_category(const char* name, loc_create_func_t create_obj,
sl@0
   148
                   loc_default_name_func_t default_obj, Category_Map ** M)
sl@0
   149
{
sl@0
   150
  typedef Category_Map::iterator Category_iterator;
sl@0
   151
  pair<Category_iterator, bool> result;
sl@0
   152
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   153
	_STLP_auto_lock sentry(get_locale_catalog_category_hash_lock());
sl@0
   154
# else
sl@0
   155
	_STLP_auto_lock sentry(__category_hash_lock);
sl@0
   156
# endif    
sl@0
   157
sl@0
   158
  typedef const char* key_type; 
sl@0
   159
sl@0
   160
sl@0
   161
  if (!*M)
sl@0
   162
    *M = new Category_Map();
sl@0
   163
sl@0
   164
#if defined(__SC__)		//*TY 06/01/2000 - added workaround for SCpp
sl@0
   165
  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
   166
#endif					//*TY 06/01/2000 - 
sl@0
   167
sl@0
   168
  // Find what name to look for.  Be careful if user requests the default.
sl@0
   169
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   170
  if (name == 0 || name[0] == 0)
sl@0
   171
    name = default_obj(buf);
sl@0
   172
  if (name == 0 || name[0] == 0)
sl@0
   173
    name = "C";
sl@0
   174
  
sl@0
   175
    pair<const key_type, pair<void*,size_t> > __e(name, pair<void*,size_t>((void*)0,size_t(0)));
sl@0
   176
sl@0
   177
  // Look for an existing entry with that name.
sl@0
   178
sl@0
   179
  result = (*M)->insert_noresize(__e);
sl@0
   180
sl@0
   181
  // There was no entry in the map already.  Create the category.
sl@0
   182
  if (result.second) 
sl@0
   183
    (*result.first).second.first = create_obj(name);
sl@0
   184
sl@0
   185
  // Increment the reference count.
sl@0
   186
  ++((*result.first).second.second);
sl@0
   187
sl@0
   188
  return (*result.first).second.first;
sl@0
   189
}
sl@0
   190
sl@0
   191
sl@0
   192
static void 
sl@0
   193
__release_category(void* cat,
sl@0
   194
                 loc_destroy_func_t destroy_fun,
sl@0
   195
                 loc_name_func_t get_name,
sl@0
   196
                 Category_Map** M)
sl@0
   197
{
sl@0
   198
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   199
	_STLP_auto_lock sentry(get_locale_catalog_category_hash_lock());
sl@0
   200
# else
sl@0
   201
	_STLP_auto_lock sentry(__category_hash_lock);
sl@0
   202
# endif    
sl@0
   203
sl@0
   204
  if (cat && (*M)) {
sl@0
   205
    // Find the name of the category object.
sl@0
   206
    char buf[_Locale_MAX_SIMPLE_NAME + 1];
sl@0
   207
    char* name = get_name(cat, buf);
sl@0
   208
sl@0
   209
    if (name != 0) {
sl@0
   210
      Category_Map::iterator it = (*M)->find(name);
sl@0
   211
      if (it != (*M)->end()) {
sl@0
   212
        // Decrement the ref count.  If it goes to zero, delete this category
sl@0
   213
        // from the map.
sl@0
   214
        if (--((*it).second.second) == 0) {
sl@0
   215
          void* cat1 = (*it).second.first;
sl@0
   216
          destroy_fun(cat1);
sl@0
   217
          (*M)->erase(it);
sl@0
   218
	   delete (*M);
sl@0
   219
	   *M = NULL;
sl@0
   220
        }
sl@0
   221
      }
sl@0
   222
    }
sl@0
   223
  }
sl@0
   224
}
sl@0
   225
sl@0
   226
_Locale_ctype* _STLP_CALL __acquire_ctype(const char* name)
sl@0
   227
{ 
sl@0
   228
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   229
hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& ctype_hash = get_locale_catalog_ctype_hash();
sl@0
   230
# endif
sl@0
   231
return __REINTERPRET_CAST(_Locale_ctype*,
sl@0
   232
                            __acquire_category(name, _Loc_ctype_create, _Loc_ctype_default, &ctype_hash)); 
sl@0
   233
}
sl@0
   234
              
sl@0
   235
_Locale_numeric* _STLP_CALL __acquire_numeric(const char* name)
sl@0
   236
{
sl@0
   237
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   238
hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& numeric_hash = get_locale_catalog_numeric_hash();
sl@0
   239
# endif
sl@0
   240
 return __REINTERPRET_CAST(_Locale_numeric*,
sl@0
   241
                            __acquire_category(name, _Loc_numeric_create, _Loc_numeric_default, &numeric_hash)); }
sl@0
   242
_STLP_EXP_DECLSPEC _Locale_time* _STLP_CALL __acquire_time(const char* name)
sl@0
   243
{ 
sl@0
   244
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   245
hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& time_hash = get_locale_catalog_time_hash();
sl@0
   246
# endif
sl@0
   247
return __REINTERPRET_CAST(_Locale_time*,
sl@0
   248
                            __acquire_category(name, _Loc_time_create, _Loc_time_default, &time_hash)); }
sl@0
   249
_Locale_collate* _STLP_CALL __acquire_collate(const char* name)
sl@0
   250
{ 
sl@0
   251
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   252
hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& collate_hash = get_locale_catalog_collate_hash();
sl@0
   253
# endif
sl@0
   254
return __REINTERPRET_CAST(_Locale_collate*,
sl@0
   255
                            __acquire_category(name, _Loc_collate_create, _Loc_collate_default, &collate_hash)); }
sl@0
   256
_Locale_monetary* _STLP_CALL __acquire_monetary(const char* name)
sl@0
   257
{ 
sl@0
   258
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   259
hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& monetary_hash = get_locale_catalog_monetary_hash();
sl@0
   260
# endif
sl@0
   261
return __REINTERPRET_CAST(_Locale_monetary*,
sl@0
   262
                            __acquire_category(name, _Loc_monetary_create, _Loc_monetary_default, &monetary_hash)); }
sl@0
   263
_Locale_messages* _STLP_CALL __acquire_messages(const char* name)
sl@0
   264
{
sl@0
   265
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   266
hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& messages_hash = get_locale_catalog_messages_hash();
sl@0
   267
# endif
sl@0
   268
 return __REINTERPRET_CAST(_Locale_messages*,
sl@0
   269
                            __acquire_category(name, _Loc_messages_create, _Loc_messages_default, &messages_hash)); }
sl@0
   270
sl@0
   271
void  _STLP_CALL __release_ctype(_Locale_ctype* cat) {
sl@0
   272
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   273
  hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& ctype_hash = get_locale_catalog_ctype_hash();
sl@0
   274
  __release_category(cat, _Loc_ctype_destroy, _Loc_ctype_name, &ctype_hash);
sl@0
   275
# else
sl@0
   276
  __release_category(cat, _Loc_ctype_destroy, _Loc_ctype_name, &ctype_hash);
sl@0
   277
# endif
sl@0
   278
}
sl@0
   279
void _STLP_CALL __release_numeric(_Locale_numeric* cat) {
sl@0
   280
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   281
  hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& numeric_hash = get_locale_catalog_numeric_hash();
sl@0
   282
  __release_category(cat, _Loc_numeric_destroy, _Loc_numeric_name, &numeric_hash);
sl@0
   283
# else
sl@0
   284
  __release_category(cat, _Loc_numeric_destroy, _Loc_numeric_name, &numeric_hash);
sl@0
   285
# endif
sl@0
   286
}
sl@0
   287
_STLP_EXP_DECLSPEC void _STLP_CALL __release_time(_Locale_time* cat) {
sl@0
   288
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   289
  hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& time_hash = get_locale_catalog_time_hash();
sl@0
   290
  __release_category(cat, _Loc_time_destroy, _Loc_time_name, &time_hash);
sl@0
   291
# else
sl@0
   292
  __release_category(cat, _Loc_time_destroy, _Loc_time_name, &time_hash);	
sl@0
   293
# endif  
sl@0
   294
}
sl@0
   295
void _STLP_CALL __release_collate(_Locale_collate* cat) {
sl@0
   296
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   297
   hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& collate_hash = get_locale_catalog_collate_hash();
sl@0
   298
   __release_category(cat, _Loc_collate_destroy, _Loc_collate_name, &collate_hash);
sl@0
   299
# else
sl@0
   300
   __release_category(cat, _Loc_collate_destroy, _Loc_collate_name, &collate_hash);
sl@0
   301
# endif  
sl@0
   302
}
sl@0
   303
void _STLP_CALL __release_monetary(_Locale_monetary* cat) {
sl@0
   304
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   305
  hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& monetary_hash = get_locale_catalog_monetary_hash();
sl@0
   306
  __release_category(cat, _Loc_monetary_destroy, _Loc_monetary_name, &monetary_hash);	
sl@0
   307
# else
sl@0
   308
  __release_category(cat, _Loc_monetary_destroy, _Loc_monetary_name, &monetary_hash);
sl@0
   309
# endif
sl@0
   310
}
sl@0
   311
void _STLP_CALL __release_messages(_Locale_messages* cat) {
sl@0
   312
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   313
  hash_map<const char*, pair<void*, size_t>, hash<const char*>, __eqstr>*& messages_hash = get_locale_catalog_messages_hash();
sl@0
   314
  __release_category(cat, _Loc_messages_destroy, _Loc_messages_name, &messages_hash);
sl@0
   315
# else
sl@0
   316
  __release_category(cat, _Loc_messages_destroy, _Loc_messages_name, &messages_hash);
sl@0
   317
# endif
sl@0
   318
}
sl@0
   319
sl@0
   320
sl@0
   321
//
sl@0
   322
// <locale> content which is dependent on the name 
sl@0
   323
//
sl@0
   324
sl@0
   325
template <class Facet>
sl@0
   326
inline locale::facet* 
sl@0
   327
_Locale_insert(_Locale* __that, Facet* f) {
sl@0
   328
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   329
  return __that->insert(f, Facet::GetFacetLocaleId()._M_index, false);
sl@0
   330
#else
sl@0
   331
  return __that->insert(f, Facet::id._M_index, false);
sl@0
   332
#endif
sl@0
   333
}
sl@0
   334
sl@0
   335
// Give L a name where all facets except those in category c
sl@0
   336
// are taken from name1, and those in category c are taken from name2.
sl@0
   337
void _Stl_loc_combine_names(_Locale* L,
sl@0
   338
                   const char* name1, const char* name2,
sl@0
   339
                   locale::category c)
sl@0
   340
{
sl@0
   341
  if ((c & locale::all) == 0 || strcmp(name1, name2) == 0)
sl@0
   342
    L->name = name1;
sl@0
   343
  else if ((c & locale::all) == locale::all)
sl@0
   344
    L->name = name2;
sl@0
   345
  else {
sl@0
   346
    // Decompose the names.
sl@0
   347
    char ctype_buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   348
    char numeric_buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   349
    char time_buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   350
    char collate_buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   351
    char monetary_buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   352
    char messages_buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   353
sl@0
   354
    _Locale_extract_ctype_name((c & locale::ctype) ? name2 : name1,
sl@0
   355
                               ctype_buf); 
sl@0
   356
    _Locale_extract_numeric_name((c & locale::numeric) ? name2 : name1,
sl@0
   357
                                 numeric_buf); 
sl@0
   358
    _Locale_extract_time_name((c & locale::time) ? name2 : name1,
sl@0
   359
                              time_buf); 	
sl@0
   360
    _Locale_extract_collate_name((c & locale::collate) ? name2 : name1,
sl@0
   361
                                 collate_buf); 
sl@0
   362
    _Locale_extract_monetary_name((c & locale::monetary) ? name2 : name1,
sl@0
   363
                                  monetary_buf); 
sl@0
   364
    _Locale_extract_messages_name((c & locale::messages) ? name2 : name1,
sl@0
   365
                                  messages_buf); 
sl@0
   366
    
sl@0
   367
    // Construct a new composite name.
sl@0
   368
    char composite_buf[_Locale_MAX_COMPOSITE_NAME];
sl@0
   369
    _Locale_compose_name(composite_buf,
sl@0
   370
                         ctype_buf, numeric_buf, time_buf,
sl@0
   371
                         collate_buf, monetary_buf, messages_buf,
sl@0
   372
                         name1);
sl@0
   373
    L->name = composite_buf;
sl@0
   374
  }
sl@0
   375
}
sl@0
   376
sl@0
   377
sl@0
   378
// Create a locale from a name.
sl@0
   379
_STLP_EXP_DECLSPEC locale::locale(const char* name)
sl@0
   380
  : _M_impl(0)
sl@0
   381
{
sl@0
   382
  if (!name)
sl@0
   383
    _M_throw_runtime_error(0);
sl@0
   384
  else if(strcmp(name,"")==0)
sl@0
   385
	name = _Locale_ctype_default(NULL);
sl@0
   386
  
sl@0
   387
  _Locale* impl = 0;
sl@0
   388
sl@0
   389
  _STLP_TRY {
sl@0
   390
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   391
	impl = new _Locale(get_locale_id_S_max(), name);
sl@0
   392
# else  
sl@0
   393
	impl = new _Locale(locale::id::_S_max, name);
sl@0
   394
# endif
sl@0
   395
    
sl@0
   396
sl@0
   397
    // Insert categories one at a time.
sl@0
   398
    impl->insert_ctype_facets(name);
sl@0
   399
    impl->insert_numeric_facets(name);
sl@0
   400
    impl->insert_time_facets(name);
sl@0
   401
    impl->insert_collate_facets(name);
sl@0
   402
    impl->insert_monetary_facets(name);
sl@0
   403
    impl->insert_messages_facets(name);
sl@0
   404
    // reassign impl
sl@0
   405
    _M_impl = impl;
sl@0
   406
  }
sl@0
   407
  _STLP_UNWIND(delete impl);
sl@0
   408
}
sl@0
   409
sl@0
   410
// Create a locale that's a copy of L, except that all of the facets
sl@0
   411
// in category c are instead constructed by name.
sl@0
   412
_STLP_EXP_DECLSPEC locale::locale(const locale& L, const char* name, locale::category c)
sl@0
   413
  : _M_impl(0)
sl@0
   414
{
sl@0
   415
  if (name == 0 || strcmp(name, "*") == 0)
sl@0
   416
    _M_throw_runtime_error(name);
sl@0
   417
sl@0
   418
  _Locale* impl = 0;
sl@0
   419
sl@0
   420
  _STLP_TRY {
sl@0
   421
    impl = new _Locale(*L._M_impl);
sl@0
   422
    _Stl_loc_combine_names(impl, L._M_impl->name.c_str(), name, c);
sl@0
   423
sl@0
   424
    if (c & locale::ctype)
sl@0
   425
      impl->insert_ctype_facets(name);
sl@0
   426
    if (c & locale::numeric)
sl@0
   427
      impl->insert_numeric_facets(name);
sl@0
   428
    if (c & locale::time)
sl@0
   429
      impl->insert_time_facets(name);
sl@0
   430
    if (c & locale::collate)
sl@0
   431
      impl->insert_collate_facets(name);
sl@0
   432
    if (c & locale::monetary)
sl@0
   433
      impl->insert_monetary_facets(name);
sl@0
   434
    if (c & locale::messages)
sl@0
   435
      impl->insert_messages_facets(name);
sl@0
   436
    _M_impl = impl;
sl@0
   437
  }
sl@0
   438
  _STLP_UNWIND(delete impl)
sl@0
   439
sl@0
   440
}
sl@0
   441
sl@0
   442
// Contruct a new locale where all facets that aren't in category c
sl@0
   443
// come from L1, and all those that are in category c come from L2.
sl@0
   444
_STLP_EXP_DECLSPEC locale::locale(const locale& L1, const locale& L2, category c)
sl@0
   445
  : _M_impl(0)
sl@0
   446
{
sl@0
   447
  _Locale* impl = new _Locale(*L1._M_impl);
sl@0
   448
  
sl@0
   449
  _Locale_impl* i2 = L2._M_impl;
sl@0
   450
  
sl@0
   451
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   452
	const string nameless("*");
sl@0
   453
# else
sl@0
   454
	static string nameless("*");	
sl@0
   455
# endif
sl@0
   456
  
sl@0
   457
  if (L1.name() != nameless && L2.name() != nameless)
sl@0
   458
    _Stl_loc_combine_names(impl,
sl@0
   459
                  L1._M_impl->name.c_str(), L2._M_impl->name.c_str(),
sl@0
   460
                  c);
sl@0
   461
  else {
sl@0
   462
    impl->name = "*";
sl@0
   463
  }
sl@0
   464
sl@0
   465
  if (c & collate) {
sl@0
   466
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   467
    impl->insert( i2, _STLP_STD::collate<char>::GetFacetLocaleId());
sl@0
   468
#else
sl@0
   469
    impl->insert( i2, _STLP_STD::collate<char>::id);  
sl@0
   470
#endif    
sl@0
   471
# ifndef _STLP_NO_WCHAR_T
sl@0
   472
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   473
	impl->insert( i2, _STLP_STD::collate<wchar_t>::GetFacetLocaleId());
sl@0
   474
#else
sl@0
   475
    impl->insert( i2, _STLP_STD::collate<wchar_t>::id);
sl@0
   476
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   477
# endif //!_STLP_NO_WCHAR_T
sl@0
   478
  }
sl@0
   479
  if (c & ctype) {
sl@0
   480
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   481
	impl->insert( i2, _STLP_STD::codecvt<char, char, mbstate_t>::GetFacetLocaleId());
sl@0
   482
	impl->insert( i2, _STLP_STD::ctype<char>::GetFacetLocaleId());
sl@0
   483
#else
sl@0
   484
	impl->insert( i2, _STLP_STD::codecvt<char, char, mbstate_t>::id);
sl@0
   485
    impl->insert( i2, _STLP_STD::ctype<char>::id);
sl@0
   486
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   487
sl@0
   488
# ifndef _STLP_NO_WCHAR_T
sl@0
   489
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   490
	impl->insert( i2, _STLP_STD::ctype<wchar_t>::GetFacetLocaleId());
sl@0
   491
	impl->insert( i2, _STLP_STD::codecvt<wchar_t, char, mbstate_t>::GetFacetLocaleId());	
sl@0
   492
#else
sl@0
   493
    impl->insert( i2, _STLP_STD::ctype<wchar_t>::id);
sl@0
   494
    impl->insert( i2, _STLP_STD::codecvt<wchar_t, char, mbstate_t>::id);
sl@0
   495
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__   
sl@0
   496
# endif //!_STLP_NO_WCHAR_T
sl@0
   497
  }
sl@0
   498
  if (c & monetary) {
sl@0
   499
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   500
	impl->insert( i2, _STLP_STD::moneypunct<char, true>::GetFacetLocaleId());
sl@0
   501
	impl->insert( i2, _STLP_STD::moneypunct<char, false>::GetFacetLocaleId());
sl@0
   502
	impl->insert( i2, _STLP_STD::money_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   503
    impl->insert( i2, _STLP_STD::money_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   504
#else  
sl@0
   505
    impl->insert( i2, _STLP_STD::moneypunct<char, true>::id);
sl@0
   506
    impl->insert( i2, _STLP_STD::moneypunct<char, false>::id);
sl@0
   507
    impl->insert( i2, _STLP_STD::money_get<char, istreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   508
    impl->insert( i2, _STLP_STD::money_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   509
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__       
sl@0
   510
    
sl@0
   511
# ifndef _STLP_NO_WCHAR_T
sl@0
   512
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   513
	impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::GetFacetLocaleId());
sl@0
   514
	impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::GetFacetLocaleId());
sl@0
   515
	impl->insert( i2, _STLP_STD::money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   516
    impl->insert( i2, _STLP_STD::money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   517
#else
sl@0
   518
    impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::id);
sl@0
   519
    impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::id);
sl@0
   520
    impl->insert( i2, _STLP_STD::money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   521
    impl->insert( i2, _STLP_STD::money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   522
#endif  //__LIBSTD_CPP_SYMBIAN32_WSD__         
sl@0
   523
# endif //!_STLP_NO_WCHAR_T
sl@0
   524
  }
sl@0
   525
  if (c & numeric) {
sl@0
   526
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   527
    impl->insert( i2, _STLP_STD::numpunct<char>::GetFacetLocaleId());
sl@0
   528
    impl->insert( i2, _STLP_STD::num_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   529
    impl->insert( i2, _STLP_STD::num_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   530
#else
sl@0
   531
    impl->insert( i2, _STLP_STD::numpunct<char>::id);
sl@0
   532
    impl->insert( i2, _STLP_STD::num_get<char, istreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   533
    impl->insert( i2, _STLP_STD::num_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   534
#endif 
sl@0
   535
   
sl@0
   536
# ifndef _STLP_NO_WCHAR_T
sl@0
   537
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   538
	impl->insert(i2, _STLP_STD::numpunct<wchar_t>::GetFacetLocaleId());
sl@0
   539
	impl->insert( i2, num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   540
    impl->insert( i2, num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   541
#else
sl@0
   542
    impl->insert( i2, _STLP_STD::numpunct<wchar_t>::id);
sl@0
   543
    impl->insert( i2, num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   544
    impl->insert( i2, num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   545
#endif    //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   546
# endif //!_STLP_NO_WCHAR_T
sl@0
   547
  }
sl@0
   548
  if (c & time) {
sl@0
   549
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   550
	impl->insert( i2, _STLP_STD::time_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   551
    impl->insert( i2, _STLP_STD::time_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   552
#else
sl@0
   553
    impl->insert( i2, _STLP_STD::time_get<char, istreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   554
    impl->insert( i2, _STLP_STD::time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   555
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   556
# ifndef _STLP_NO_WCHAR_T
sl@0
   557
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   558
	impl->insert( i2, _STLP_STD::time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   559
    impl->insert( i2, _STLP_STD::time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   560
#else
sl@0
   561
    impl->insert( i2, _STLP_STD::time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   562
    impl->insert( i2, _STLP_STD::time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   563
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   564
# endif //!_STLP_NO_WCHAR_T
sl@0
   565
  }
sl@0
   566
  if (c & messages) {
sl@0
   567
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   568
    impl->insert( i2, _STLP_STD::messages<char>::GetFacetLocaleId());
sl@0
   569
#else
sl@0
   570
	impl->insert( i2, _STLP_STD::messages<char>::id);
sl@0
   571
#endif    
sl@0
   572
# ifndef _STLP_NO_WCHAR_T
sl@0
   573
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   574
    impl->insert( i2, _STLP_STD::messages<wchar_t>::GetFacetLocaleId());
sl@0
   575
#else
sl@0
   576
    impl->insert( i2, _STLP_STD::messages<wchar_t>::id);
sl@0
   577
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   578
# endif //_STLP_NO_WCHAR_T
sl@0
   579
  }
sl@0
   580
  _M_impl = impl;
sl@0
   581
}
sl@0
   582
sl@0
   583
// Six functions, one for each category.  Each of them takes a 
sl@0
   584
// _Locale* and a name, constructs that appropriate category
sl@0
   585
// facets by name, and inserts them into the locale.  
sl@0
   586
sl@0
   587
void _Locale::insert_ctype_facets(const char* pname)
sl@0
   588
{
sl@0
   589
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   590
  _Locale_impl* i2 = locale::classic()._M_impl;
sl@0
   591
sl@0
   592
  if (pname == 0 || pname[0] == 0)
sl@0
   593
    pname = _Locale_ctype_default(buf);
sl@0
   594
sl@0
   595
  if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) {
sl@0
   596
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   597
    this->insert(i2, ctype<char>::GetFacetLocaleId());
sl@0
   598
#else
sl@0
   599
    this->insert(i2, ctype<char>::id);
sl@0
   600
#endif    
sl@0
   601
# ifndef _STLP_NO_MBSTATE_T
sl@0
   602
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   603
	this->insert(i2, codecvt<char, char, mbstate_t>::GetFacetLocaleId());
sl@0
   604
#else
sl@0
   605
    this->insert(i2, codecvt<char, char, mbstate_t>::id);
sl@0
   606
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   607
# endif //!_STLP_NO_MBSTATE_T
sl@0
   608
# ifndef _STLP_NO_WCHAR_T
sl@0
   609
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   610
	this->insert(i2, ctype<wchar_t>::GetFacetLocaleId());
sl@0
   611
#else
sl@0
   612
    this->insert(i2, ctype<wchar_t>::id);
sl@0
   613
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__   
sl@0
   614
# ifndef _STLP_NO_MBSTATE_T
sl@0
   615
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   616
	this->insert(i2, codecvt<wchar_t, char, mbstate_t>::GetFacetLocaleId());
sl@0
   617
#else
sl@0
   618
    this->insert(i2, codecvt<wchar_t, char, mbstate_t>::id);
sl@0
   619
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__   
sl@0
   620
# endif //!_STLP_NO_MBSTATE_T
sl@0
   621
# endif //!_STLP_NO_WCHAR_T
sl@0
   622
  }
sl@0
   623
  else {
sl@0
   624
    ctype<char>*    ct                      = 0;
sl@0
   625
# ifndef _STLP_NO_MBSTATE_T
sl@0
   626
    codecvt<char, char, mbstate_t>*    cvt  = 0;
sl@0
   627
# endif
sl@0
   628
# ifndef _STLP_NO_WCHAR_T
sl@0
   629
    ctype<wchar_t>* wct                     = 0;
sl@0
   630
    codecvt<wchar_t, char, mbstate_t>* wcvt = 0;
sl@0
   631
# endif
sl@0
   632
    _STLP_TRY {
sl@0
   633
      ct   = new ctype_byname<char>(pname);
sl@0
   634
# ifndef _STLP_NO_MBSTATE_T
sl@0
   635
      cvt  = new codecvt_byname<char, char, mbstate_t>(pname);
sl@0
   636
# endif
sl@0
   637
# ifndef _STLP_NO_WCHAR_T
sl@0
   638
      wct  = new ctype_byname<wchar_t>(pname); 
sl@0
   639
      wcvt = new codecvt_byname<wchar_t, char, mbstate_t>(pname);
sl@0
   640
# endif
sl@0
   641
    }
sl@0
   642
    
sl@0
   643
# ifndef _STLP_NO_WCHAR_T
sl@0
   644
#  ifdef _STLP_NO_MBSTATE_T
sl@0
   645
    _STLP_UNWIND(delete ct; delete wct; delete wcvt);
sl@0
   646
#  else
sl@0
   647
    _STLP_UNWIND(delete ct; delete wct; delete cvt; delete wcvt);
sl@0
   648
#  endif
sl@0
   649
# else
sl@0
   650
#  ifdef _STLP_NO_MBSTATE_T
sl@0
   651
    _STLP_UNWIND(delete ct);
sl@0
   652
#  else
sl@0
   653
    _STLP_UNWIND(delete ct; delete cvt);
sl@0
   654
#  endif
sl@0
   655
# endif    
sl@0
   656
    _Locale_insert(this, ct);
sl@0
   657
#  ifndef _STLP_NO_MBSTATE_T
sl@0
   658
    _Locale_insert(this, cvt);
sl@0
   659
#  endif
sl@0
   660
#  ifndef _STLP_NO_WCHAR_T
sl@0
   661
    _Locale_insert(this, wct);
sl@0
   662
    _Locale_insert(this, wcvt);
sl@0
   663
#  endif
sl@0
   664
  }
sl@0
   665
}
sl@0
   666
sl@0
   667
void _Locale::insert_numeric_facets(const char* pname)
sl@0
   668
{
sl@0
   669
  _Locale_impl* i2 = locale::classic()._M_impl;
sl@0
   670
sl@0
   671
  numpunct<char>*    punct  = 0;
sl@0
   672
  num_get<char, istreambuf_iterator<char, char_traits<char> > >*     get    = 0;
sl@0
   673
  num_put<char, ostreambuf_iterator<char, char_traits<char> > >*     put    = 0;
sl@0
   674
# ifndef _STLP_NO_WCHAR_T
sl@0
   675
  numpunct<wchar_t>* wpunct = 0;
sl@0
   676
  num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >*  wget   = 0;
sl@0
   677
  num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >*  wput   = 0;
sl@0
   678
# endif
sl@0
   679
sl@0
   680
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   681
  if (pname == 0 || pname[0] == 0)
sl@0
   682
    pname = _Locale_numeric_default(buf);
sl@0
   683
sl@0
   684
  if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) {
sl@0
   685
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   686
    this->insert(i2, numpunct<char>::GetFacetLocaleId());
sl@0
   687
    this->insert(i2, num_put<char, ostreambuf_iterator<char, char_traits<char> >  >::GetFacetLocaleId());
sl@0
   688
    this->insert(i2, num_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   689
#else
sl@0
   690
    this->insert(i2, numpunct<char>::id);
sl@0
   691
    this->insert(i2, num_put<char, ostreambuf_iterator<char, char_traits<char> >  >::id);
sl@0
   692
    this->insert(i2, num_get<char, istreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   693
#endif
sl@0
   694
sl@0
   695
# ifndef _STLP_NO_WCHAR_T
sl@0
   696
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   697
    this->insert(i2, numpunct<wchar_t>::GetFacetLocaleId());
sl@0
   698
    this->insert(i2, num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> >  >::GetFacetLocaleId());
sl@0
   699
    this->insert(i2, num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   700
#else
sl@0
   701
	this->insert(i2, numpunct<wchar_t>::id);   
sl@0
   702
	this->insert(i2, num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> >  >::id);
sl@0
   703
    this->insert(i2, num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);	
sl@0
   704
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   705
# endif //!_STLP_NO_WCHAR_T
sl@0
   706
  }
sl@0
   707
  else {
sl@0
   708
    _STLP_TRY {
sl@0
   709
      punct  = new numpunct_byname<char>(pname);
sl@0
   710
      get    = new num_get<char, istreambuf_iterator<char, char_traits<char> > >;
sl@0
   711
      put    = new num_put<char, ostreambuf_iterator<char, char_traits<char> > >;
sl@0
   712
# ifndef _STLP_NO_WCHAR_T
sl@0
   713
      wpunct = new numpunct_byname<wchar_t>(pname);
sl@0
   714
      wget   = new num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
sl@0
   715
      wput   = new num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
sl@0
   716
# endif
sl@0
   717
    }
sl@0
   718
# ifndef _STLP_NO_WCHAR_T
sl@0
   719
    _STLP_UNWIND(delete punct; delete wpunct; delete get; delete wget;
sl@0
   720
    delete put; delete wput);
sl@0
   721
# else
sl@0
   722
    _STLP_UNWIND(delete punct; delete get;delete put);
sl@0
   723
# endif
sl@0
   724
    
sl@0
   725
  _Locale_insert(this,punct);
sl@0
   726
  _Locale_insert(this,get);
sl@0
   727
  _Locale_insert(this,put);
sl@0
   728
sl@0
   729
# ifndef _STLP_NO_WCHAR_T
sl@0
   730
  _Locale_insert(this,wpunct);
sl@0
   731
  _Locale_insert(this,wget);
sl@0
   732
  _Locale_insert(this,wput);
sl@0
   733
# endif
sl@0
   734
  }
sl@0
   735
}
sl@0
   736
sl@0
   737
void _Locale::insert_time_facets(const char* pname)
sl@0
   738
{
sl@0
   739
  _Locale_impl* i2 = locale::classic()._M_impl;
sl@0
   740
  time_get<char, istreambuf_iterator<char, char_traits<char> > >*    get  = 0;
sl@0
   741
  time_put<char, ostreambuf_iterator<char, char_traits<char> > >*    put  = 0;
sl@0
   742
# ifndef _STLP_NO_WCHAR_T
sl@0
   743
  time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >* wget = 0;
sl@0
   744
  time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >* wput = 0;
sl@0
   745
# endif
sl@0
   746
sl@0
   747
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   748
  if (pname == 0 || pname[0] == 0)
sl@0
   749
    pname = _Locale_time_default(buf);
sl@0
   750
  
sl@0
   751
  if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) {
sl@0
   752
sl@0
   753
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   754
    this->insert(i2, 
sl@0
   755
		 time_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   756
    this->insert(i2, 
sl@0
   757
		 time_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   758
#else		 
sl@0
   759
	this->insert(i2, 
sl@0
   760
		 time_get<char, istreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   761
    this->insert(i2, 
sl@0
   762
		 time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   763
#endif
sl@0
   764
# ifndef _STLP_NO_WCHAR_T
sl@0
   765
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   766
    this->insert(i2,
sl@0
   767
		 time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   768
    this->insert(i2,
sl@0
   769
		 time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   770
#else
sl@0
   771
	this->insert(i2,
sl@0
   772
		 time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   773
    this->insert(i2,
sl@0
   774
		 time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   775
#endif		 
sl@0
   776
# endif //!_STLP_NO_WCHAR_T
sl@0
   777
  }
sl@0
   778
  else {
sl@0
   779
    _STLP_TRY {
sl@0
   780
      get  = new time_get_byname<char, istreambuf_iterator<char, char_traits<char> > >(pname);
sl@0
   781
      put  = new time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > >(pname);
sl@0
   782
# ifndef _STLP_NO_WCHAR_T
sl@0
   783
      wget = new time_get_byname<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(pname);
sl@0
   784
      wput = new time_put_byname<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(pname);
sl@0
   785
# endif
sl@0
   786
    }
sl@0
   787
# ifndef _STLP_NO_WCHAR_T
sl@0
   788
    _STLP_UNWIND(delete get; delete wget; delete put; delete wput);
sl@0
   789
# else
sl@0
   790
    _STLP_UNWIND(delete get; delete put);
sl@0
   791
# endif
sl@0
   792
    _Locale_insert(this,get);
sl@0
   793
    _Locale_insert(this,put);
sl@0
   794
# ifndef _STLP_NO_WCHAR_T
sl@0
   795
    _Locale_insert(this,wget);
sl@0
   796
    _Locale_insert(this,wput);
sl@0
   797
# endif
sl@0
   798
  }
sl@0
   799
}
sl@0
   800
sl@0
   801
void _Locale::insert_collate_facets(const char* nam)
sl@0
   802
{
sl@0
   803
  _Locale_impl* i2 = locale::classic()._M_impl;
sl@0
   804
sl@0
   805
  collate<char>*    col  = 0;
sl@0
   806
# ifndef _STLP_NO_WCHAR_T
sl@0
   807
  collate<wchar_t>* wcol = 0;
sl@0
   808
# endif
sl@0
   809
sl@0
   810
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   811
  if (nam == 0 || nam[0] == 0)
sl@0
   812
    nam = _Locale_collate_default(buf);
sl@0
   813
sl@0
   814
  if (nam == 0 || nam[0] == 0 || strcmp(nam, "C") == 0) {
sl@0
   815
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   816
    this->insert(i2, collate<char>::GetFacetLocaleId());
sl@0
   817
#else
sl@0
   818
	this->insert(i2, collate<char>::id);
sl@0
   819
#endif    
sl@0
   820
# ifndef _STLP_NO_WCHAR_T
sl@0
   821
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   822
    this->insert(i2, collate<wchar_t>::GetFacetLocaleId());
sl@0
   823
#else
sl@0
   824
	this->insert(i2, collate<wchar_t>::id);	
sl@0
   825
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__    
sl@0
   826
# endif//_STLP_NO_WCHAR_T
sl@0
   827
  }
sl@0
   828
  else {
sl@0
   829
    _STLP_TRY {
sl@0
   830
      col   = new collate_byname<char>(nam);
sl@0
   831
# ifndef _STLP_NO_WCHAR_T
sl@0
   832
      wcol  = new collate_byname<wchar_t>(nam); 
sl@0
   833
# endif
sl@0
   834
    }
sl@0
   835
# ifndef _STLP_NO_WCHAR_T
sl@0
   836
    _STLP_UNWIND(delete col; delete wcol);
sl@0
   837
# else
sl@0
   838
    _STLP_UNWIND(delete col);
sl@0
   839
# endif
sl@0
   840
    _Locale_insert(this,col);
sl@0
   841
# ifndef _STLP_NO_WCHAR_T
sl@0
   842
    _Locale_insert(this,wcol);
sl@0
   843
# endif
sl@0
   844
  }
sl@0
   845
}
sl@0
   846
sl@0
   847
void _Locale::insert_monetary_facets(const char* pname)
sl@0
   848
{
sl@0
   849
  _Locale_impl* i2 = locale::classic()._M_impl;
sl@0
   850
sl@0
   851
  moneypunct<char,    false>* punct   = 0;
sl@0
   852
  moneypunct<char,    true>*  ipunct  = 0;
sl@0
   853
  money_get<char, istreambuf_iterator<char, char_traits<char> > >*            get     = 0;
sl@0
   854
  money_put<char, ostreambuf_iterator<char, char_traits<char> > >*            put     = 0;
sl@0
   855
sl@0
   856
# ifndef _STLP_NO_WCHAR_T
sl@0
   857
  moneypunct<wchar_t, false>* wpunct  = 0;
sl@0
   858
  moneypunct<wchar_t, true>*  wipunct = 0;
sl@0
   859
  money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >*         wget    = 0;
sl@0
   860
  money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >*         wput    = 0;
sl@0
   861
# endif
sl@0
   862
sl@0
   863
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   864
  if (pname == 0 || pname[0] == 0)
sl@0
   865
    pname = _Locale_monetary_default(buf);
sl@0
   866
sl@0
   867
  if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) {
sl@0
   868
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   869
	this->insert(i2, moneypunct<char, false>::GetFacetLocaleId());
sl@0
   870
    this->insert(i2, moneypunct<char, true>::GetFacetLocaleId());
sl@0
   871
    this->insert(i2, money_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   872
    this->insert(i2, money_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId());
sl@0
   873
#else  
sl@0
   874
    this->insert(i2, moneypunct<char, false>::id);
sl@0
   875
    this->insert(i2, moneypunct<char, true>::id);
sl@0
   876
    this->insert(i2, money_get<char, istreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   877
    this->insert(i2, money_put<char, ostreambuf_iterator<char, char_traits<char> > >::id);
sl@0
   878
#endif        
sl@0
   879
# ifndef _STLP_NO_WCHAR_T
sl@0
   880
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   881
	this->insert( i2, moneypunct<wchar_t, false>::GetFacetLocaleId());
sl@0
   882
	this->insert( i2, moneypunct<wchar_t, true>::GetFacetLocaleId());	
sl@0
   883
	this->insert(i2, money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   884
    this->insert(i2, money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId());
sl@0
   885
#else
sl@0
   886
    this->insert(i2, moneypunct<wchar_t, false>::id);
sl@0
   887
    this->insert(i2, moneypunct<wchar_t, true>::id);
sl@0
   888
    this->insert(i2, money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   889
    this->insert(i2, money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id);
sl@0
   890
#endif //__LIBSTD_CPP_SYMBIAN32_WSD__     
sl@0
   891
# endif
sl@0
   892
  }
sl@0
   893
  else {    
sl@0
   894
    _STLP_TRY {
sl@0
   895
      punct   = new moneypunct_byname<char, false>(pname);
sl@0
   896
      ipunct  = new moneypunct_byname<char, true>(pname);
sl@0
   897
      get     = new money_get<char, istreambuf_iterator<char, char_traits<char> > >;
sl@0
   898
      put     = new money_put<char, ostreambuf_iterator<char, char_traits<char> > >;
sl@0
   899
# ifndef _STLP_NO_WCHAR_T
sl@0
   900
      wpunct  = new moneypunct_byname<wchar_t, false>(pname);
sl@0
   901
      wipunct = new moneypunct_byname<wchar_t, true>(pname);
sl@0
   902
      wget    = new money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
sl@0
   903
      wput    = new money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
sl@0
   904
# endif
sl@0
   905
    }
sl@0
   906
# ifndef _STLP_NO_WCHAR_T
sl@0
   907
    _STLP_UNWIND(delete punct; delete ipunct; delete wpunct; delete wipunct;
sl@0
   908
    delete get; delete wget; delete put; delete wput);
sl@0
   909
# else
sl@0
   910
    _STLP_UNWIND(delete punct; delete ipunct; delete get; delete put);
sl@0
   911
# endif
sl@0
   912
    _Locale_insert(this,punct);
sl@0
   913
    _Locale_insert(this,ipunct);
sl@0
   914
    _Locale_insert(this,get);
sl@0
   915
    _Locale_insert(this,put);
sl@0
   916
# ifndef _STLP_NO_WCHAR_T
sl@0
   917
    _Locale_insert(this,wget);
sl@0
   918
    _Locale_insert(this,wpunct);
sl@0
   919
    _Locale_insert(this,wipunct);
sl@0
   920
    _Locale_insert(this,wput);
sl@0
   921
# endif
sl@0
   922
  }
sl@0
   923
}
sl@0
   924
sl@0
   925
sl@0
   926
void _Locale::insert_messages_facets(const char* pname)
sl@0
   927
{
sl@0
   928
  _Locale_impl* i2 = locale::classic()._M_impl;
sl@0
   929
  messages<char>*    msg  = 0;
sl@0
   930
# ifndef _STLP_NO_WCHAR_T
sl@0
   931
  messages<wchar_t>* wmsg = 0;
sl@0
   932
# endif
sl@0
   933
sl@0
   934
  char buf[_Locale_MAX_SIMPLE_NAME];
sl@0
   935
  if (pname == 0 || pname[0] == 0)
sl@0
   936
    pname = _Locale_messages_default(buf);
sl@0
   937
sl@0
   938
  if (pname == 0 || pname[0] == 0 || strcmp(pname, "C") == 0) {
sl@0
   939
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   940
	this->insert(i2, messages<char>::GetFacetLocaleId());
sl@0
   941
#else  
sl@0
   942
    this->insert(i2, messages<char>::id);
sl@0
   943
#endif    
sl@0
   944
# ifndef _STLP_NO_WCHAR_T
sl@0
   945
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   946
	this->insert(i2, messages<wchar_t>::GetFacetLocaleId());
sl@0
   947
#else
sl@0
   948
    this->insert(i2, messages<wchar_t>::id);
sl@0
   949
#endif  //__LIBSTD_CPP_SYMBIAN32_WSD__   
sl@0
   950
# endif //!_STLP_NO_WCHAR_T
sl@0
   951
  }
sl@0
   952
  else {
sl@0
   953
    _STLP_TRY {
sl@0
   954
      msg  = new messages_byname<char>(pname);
sl@0
   955
# ifndef _STLP_NO_WCHAR_T
sl@0
   956
      wmsg = new messages_byname<wchar_t>(pname);
sl@0
   957
# endif
sl@0
   958
    }
sl@0
   959
# ifndef _STLP_NO_WCHAR_T
sl@0
   960
    _STLP_UNWIND(delete msg; delete wmsg);
sl@0
   961
# else
sl@0
   962
    _STLP_UNWIND(delete msg);
sl@0
   963
# endif
sl@0
   964
    _Locale_insert(this,msg);
sl@0
   965
# ifndef _STLP_NO_WCHAR_T
sl@0
   966
    _Locale_insert(this,wmsg);
sl@0
   967
# endif
sl@0
   968
  }
sl@0
   969
}
sl@0
   970
sl@0
   971
_STLP_END_NAMESPACE
sl@0
   972
sl@0
   973
sl@0
   974