os/ossrv/stdcpp/src/locale_impl.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_impl.h"
sl@0
    23
#include <locale>
sl@0
    24
#include <typeinfo>
sl@0
    25
#include <stdexcept>
sl@0
    26
#include "c_locale.h"
sl@0
    27
#include "aligned_buffer.h"
sl@0
    28
#include <exception>
sl@0
    29
sl@0
    30
#include "locale_impl.h"
sl@0
    31
#include <stl/_codecvt.h>
sl@0
    32
#include <stl/_collate.h>
sl@0
    33
#include <stl/_ctype.h>
sl@0
    34
#include <stl/_monetary.h>
sl@0
    35
#include "message_facets.h"
sl@0
    36
sl@0
    37
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    38
#include "libstdcppwsd.h"
sl@0
    39
_STLP_BEGIN_NAMESPACE
sl@0
    40
extern void filebuf_page_size_init();
sl@0
    41
extern void num_get_array_init();
sl@0
    42
extern void locale_mutex_lock_init();
sl@0
    43
extern void ios_base_S_index_init();
sl@0
    44
extern void ios_base_Init_S_count_init();
sl@0
    45
extern void ios_base_S_was_synced_init();
sl@0
    46
extern void numpunct_name_init();
sl@0
    47
extern void locale_catalog_category_hash_lock_init();
sl@0
    48
extern void complex_trig_limit_init();
sl@0
    49
extern void monetary_empty_string_init();
sl@0
    50
//forward declaraions
sl@0
    51
void ios_base_Loc_init_S_count_init();
sl@0
    52
void locale_impl_init();
sl@0
    53
void locale_impl_string_init();
sl@0
    54
_STLP_END_NAMESPACE
sl@0
    55
# endif
sl@0
    56
sl@0
    57
#ifdef __WINSCW__
sl@0
    58
extern void SetGlobalTlsData(void* aData);
sl@0
    59
#endif
sl@0
    60
sl@0
    61
_STLP_BEGIN_NAMESPACE
sl@0
    62
sl@0
    63
sl@0
    64
// #ifdef _STLP_USE_OWN_NAMESPACE
sl@0
    65
// using _STLP_VENDOR_EXCEPT_STD::bad_cast;
sl@0
    66
// #endif
sl@0
    67
sl@0
    68
_Locale_impl::_Locale_impl(const char* s) : name(s) {}
sl@0
    69
_Locale_impl::~_Locale_impl() {}
sl@0
    70
void _Locale_impl::incr() {}
sl@0
    71
void _Locale_impl::decr() {}
sl@0
    72
sl@0
    73
// _Locale_impl non-inline member functions.
sl@0
    74
void _STLP_CALL
sl@0
    75
_Locale_impl::_M_throw_bad_cast()
sl@0
    76
{
sl@0
    77
  _STLP_THROW(bad_cast());  
sl@0
    78
}
sl@0
    79
sl@0
    80
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    81
static void global_iostream_init()
sl@0
    82
{
sl@0
    83
	_Libcpp_wsd* libwsd = &get_libcpp_wsdptr();
sl@0
    84
	//initialize the pointer members
sl@0
    85
	libwsd->cin = new istream(0);
sl@0
    86
	libwsd->cout = new ostream(0);
sl@0
    87
	libwsd->cerr = new ostream(0);
sl@0
    88
	libwsd->clog = new ostream(0);
sl@0
    89
#ifndef _STLP_NO_WCHAR_T
sl@0
    90
	libwsd->wcin = new wistream(0);
sl@0
    91
	libwsd->wcout = new wostream(0);
sl@0
    92
	libwsd->wcerr = new wostream(0);
sl@0
    93
	libwsd->wclog = new wostream(0);
sl@0
    94
#endif //_STLP_NO_WCHAR_T
sl@0
    95
}
sl@0
    96
sl@0
    97
//WSD class constructor
sl@0
    98
_Libcpp_wsd::_Libcpp_wsd()
sl@0
    99
	{
sl@0
   100
	ios_base_Init_S_count = 0;
sl@0
   101
	ios_base_Loc_init_S_count = 0;
sl@0
   102
	locale_catalog_ctype_hash = NULL;
sl@0
   103
	locale_catalog_numeric_hash = NULL;
sl@0
   104
	locale_catalog_time_hash = NULL;
sl@0
   105
	locale_catalog_collate_hash = NULL;
sl@0
   106
	locale_catalog_monetary_hash = NULL;
sl@0
   107
	locale_catalog_messages_hash = NULL;
sl@0
   108
	_LocInit = NULL;
sl@0
   109
	_IosInit = NULL;
sl@0
   110
	ios_pword_dummy = NULL;
sl@0
   111
	Locale_impl_S_global_impl = NULL;
sl@0
   112
sl@0
   113
	//initialize the global stream pointers
sl@0
   114
	cin  = NULL;
sl@0
   115
	cout = NULL;
sl@0
   116
	cerr = NULL;
sl@0
   117
	clog = NULL;
sl@0
   118
#ifndef _STLP_NO_WCHAR_T
sl@0
   119
	wcin  = NULL;
sl@0
   120
	wcout = NULL;
sl@0
   121
	wcerr = NULL;
sl@0
   122
	wclog = NULL;
sl@0
   123
#endif
sl@0
   124
    _new_handler = NULL;
sl@0
   125
	}
sl@0
   126
sl@0
   127
//WSd class destructor
sl@0
   128
_Libcpp_wsd::~_Libcpp_wsd()
sl@0
   129
	{
sl@0
   130
		delete _LocInit;
sl@0
   131
		delete _IosInit;
sl@0
   132
		delete cin;
sl@0
   133
		delete cout;
sl@0
   134
		delete cerr;
sl@0
   135
		delete clog;
sl@0
   136
# ifndef _STLP_NO_WCHAR_T		
sl@0
   137
		delete wcin;
sl@0
   138
		delete wcout;
sl@0
   139
		delete wcerr;
sl@0
   140
		delete wclog;
sl@0
   141
# endif		
sl@0
   142
	}
sl@0
   143
sl@0
   144
void CallCloseStdLib()
sl@0
   145
    {
sl@0
   146
    _Libcpp_wsd* wsd = &get_libcpp_wsdptr();
sl@0
   147
#ifdef __WINSCW__
sl@0
   148
    SetGlobalTlsData(NULL);
sl@0
   149
#endif //__WINSCW__
sl@0
   150
    delete wsd;
sl@0
   151
    }
sl@0
   152
sl@0
   153
# endif  //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   154
sl@0
   155
static void 
sl@0
   156
_Stl_loc_assign_ids() {
sl@0
   157
sl@0
   158
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   159
  //initialize wsd obj pointer
sl@0
   160
  locale_impl_init();
sl@0
   161
# endif  
sl@0
   162
  
sl@0
   163
  // This assigns ids to every facet that is a member of a category,
sl@0
   164
  // and also to money_get/put, num_get/put, and time_get/put
sl@0
   165
  // instantiated using ordinary pointers as the input/output
sl@0
   166
  // iterators.  (The default is [io]streambuf_iterator.)
sl@0
   167
sl@0
   168
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   169
sl@0
   170
    collate<char>::GetFacetLocaleId()._M_index = 1;
sl@0
   171
sl@0
   172
    ctype<char>::GetFacetLocaleId()._M_index = 2;
sl@0
   173
sl@0
   174
 # ifndef _STLP_NO_MBSTATE_T
sl@0
   175
    codecvt<char, char, mbstate_t>::GetFacetLocaleId()._M_index = 3;
sl@0
   176
  #  ifndef _STLP_NO_WCHAR_T
sl@0
   177
    codecvt<wchar_t, char, mbstate_t>::GetFacetLocaleId()._M_index = 22;
sl@0
   178
  #  endif//!_STLP_NO_WCHAR_T
sl@0
   179
 # endif//!_STLP_NO_MBSTATE_T
sl@0
   180
sl@0
   181
    moneypunct<char, true>::GetFacetLocaleId()._M_index = 4;
sl@0
   182
    moneypunct<char, false>::GetFacetLocaleId()._M_index = 5;
sl@0
   183
    messages<char>::GetFacetLocaleId()._M_index = 7;
sl@0
   184
    numpunct<char>::GetFacetLocaleId()._M_index = 6;
sl@0
   185
sl@0
   186
 # ifndef _STLP_NO_WCHAR_T
sl@0
   187
    collate<wchar_t>::GetFacetLocaleId()._M_index = 20;
sl@0
   188
    ctype<wchar_t>::GetFacetLocaleId()._M_index = 21;
sl@0
   189
sl@0
   190
    moneypunct<wchar_t, true>::GetFacetLocaleId()._M_index = 23;
sl@0
   191
    moneypunct<wchar_t, false>::GetFacetLocaleId()._M_index = 24;
sl@0
   192
sl@0
   193
    numpunct<wchar_t>::GetFacetLocaleId()._M_index = 25;
sl@0
   194
    messages<wchar_t>::GetFacetLocaleId()._M_index = 26;
sl@0
   195
 # endif //!_STLP_NO_WCHAR_T
sl@0
   196
sl@0
   197
sl@0
   198
  money_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId()._M_index                     = 8;
sl@0
   199
  money_get<char, const char*>::GetFacetLocaleId()._M_index        = 9;
sl@0
   200
  money_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId()._M_index                     = 10;
sl@0
   201
  money_put<char, char*>::GetFacetLocaleId()._M_index              = 11;
sl@0
   202
sl@0
   203
  num_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId()._M_index                       = 12;
sl@0
   204
  num_get<char, const char*>::GetFacetLocaleId()._M_index          = 13;
sl@0
   205
  num_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId()._M_index                       = 14;
sl@0
   206
  num_put<char, char*>::GetFacetLocaleId()._M_index                = 15;
sl@0
   207
  time_get<char, istreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId()._M_index                      = 16;
sl@0
   208
  time_get<char, const char*>::GetFacetLocaleId()._M_index         = 17;
sl@0
   209
  time_put<char, ostreambuf_iterator<char, char_traits<char> > >::GetFacetLocaleId()._M_index                      = 18;
sl@0
   210
  time_put<char, char*>::GetFacetLocaleId()._M_index               = 19;
sl@0
   211
  //adding new iterator type
sl@0
   212
  num_put<char, back_insert_iterator<string> >::GetFacetLocaleId()._M_index  = 40;
sl@0
   213
#else
sl@0
   214
  money_get<char, istreambuf_iterator<char, char_traits<char> > >::id._M_index                     = 8;
sl@0
   215
  money_get<char, const char*>::id._M_index        = 9;
sl@0
   216
  money_put<char, ostreambuf_iterator<char, char_traits<char> > >::id._M_index                     = 10;
sl@0
   217
  money_put<char, char*>::id._M_index              = 11;
sl@0
   218
sl@0
   219
  num_get<char, istreambuf_iterator<char, char_traits<char> > >::id._M_index                       = 12;
sl@0
   220
  num_get<char, const char*>::id._M_index          = 13;
sl@0
   221
  num_put<char, ostreambuf_iterator<char, char_traits<char> > >::id._M_index                       = 14;
sl@0
   222
  num_put<char, char*>::id._M_index                = 15;
sl@0
   223
  time_get<char, istreambuf_iterator<char, char_traits<char> > >::id._M_index                      = 16;
sl@0
   224
  time_get<char, const char*>::id._M_index         = 17;
sl@0
   225
  time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id._M_index                      = 18;
sl@0
   226
  time_put<char, char*>::id._M_index               = 19;
sl@0
   227
#endif
sl@0
   228
sl@0
   229
# ifndef _STLP_NO_WCHAR_T
sl@0
   230
sl@0
   231
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   232
  money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId()._M_index          = 27;
sl@0
   233
  money_get<wchar_t, const wchar_t*>::GetFacetLocaleId()._M_index  = 28;
sl@0
   234
  money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId()._M_index          = 29;
sl@0
   235
  money_put<wchar_t, wchar_t*>::GetFacetLocaleId()._M_index        = 30;
sl@0
   236
sl@0
   237
  num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId()._M_index            = 31;
sl@0
   238
  num_get<wchar_t, const wchar_t*>::GetFacetLocaleId()._M_index    = 32;
sl@0
   239
  num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > ::GetFacetLocaleId()._M_index           = 33;
sl@0
   240
  num_put<wchar_t, wchar_t*>::GetFacetLocaleId()._M_index          = 34;
sl@0
   241
  time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId()._M_index           = 35;
sl@0
   242
  time_get<wchar_t, const wchar_t*>::GetFacetLocaleId()._M_index   = 36;
sl@0
   243
  time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::GetFacetLocaleId()._M_index           = 37;
sl@0
   244
  time_put<wchar_t, wchar_t*>::GetFacetLocaleId()._M_index         = 38;
sl@0
   245
#else
sl@0
   246
  money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id._M_index                  = 27;
sl@0
   247
  money_get<wchar_t, const wchar_t*>::id._M_index  = 28;
sl@0
   248
  money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id._M_index                  = 29;
sl@0
   249
  money_put<wchar_t, wchar_t*>::id._M_index        = 30;
sl@0
   250
sl@0
   251
  num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id._M_index                       = 31;
sl@0
   252
  num_get<wchar_t, const wchar_t*>::id._M_index    = 32;
sl@0
   253
  num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > ::id._M_index                      = 33;
sl@0
   254
  num_put<wchar_t, wchar_t*>::id._M_index          = 34;
sl@0
   255
  time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id._M_index                   = 35;
sl@0
   256
  time_get<wchar_t, const wchar_t*>::id._M_index   = 36;
sl@0
   257
  time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id._M_index                   = 37;
sl@0
   258
  time_put<wchar_t, wchar_t*>::id._M_index         = 38;
sl@0
   259
#endif
sl@0
   260
  //  messages<wchar_t>::id._M_index                   = 38;
sl@0
   261
# endif
sl@0
   262
sl@0
   263
  //  locale::id::_S_max                               = 39;
sl@0
   264
}
sl@0
   265
sl@0
   266
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   267
static _Stl_aligned_buffer<_Locale_impl> _S_classic_locale;
sl@0
   268
sl@0
   269
static _Stl_aligned_buffer<collate<char> > _S_collate_char;
sl@0
   270
static _Stl_aligned_buffer<ctype<char> > _S_ctype_char;
sl@0
   271
sl@0
   272
# ifndef _STLP_NO_MBSTATE_T
sl@0
   273
static _Stl_aligned_buffer<codecvt<char, char, mbstate_t> > _S_codecvt_char;
sl@0
   274
# endif
sl@0
   275
sl@0
   276
static _Stl_aligned_buffer<moneypunct<char, true> > _S_moneypunct_true_char;
sl@0
   277
static _Stl_aligned_buffer<moneypunct<char, false> > _S_moneypunct_false_char;
sl@0
   278
static _Stl_aligned_buffer<numpunct<char> > _S_numpunct_char;
sl@0
   279
static _Stl_aligned_buffer<messages<char> > _S_messages_char;
sl@0
   280
sl@0
   281
static _Stl_aligned_buffer<money_get<char, istreambuf_iterator<char, char_traits<char> > > > _S_money_get_char;
sl@0
   282
static _Stl_aligned_buffer<money_put<char, ostreambuf_iterator<char, char_traits<char> > > > _S_money_put_char;
sl@0
   283
static _Stl_aligned_buffer<num_get<char, istreambuf_iterator<char, char_traits<char> > > > _S_num_get_char;
sl@0
   284
static _Stl_aligned_buffer<num_put<char, ostreambuf_iterator<char, char_traits<char> > > > _S_num_put_char;
sl@0
   285
static _Stl_aligned_buffer<time_get<char, istreambuf_iterator<char, char_traits<char> > > > _S_time_get_char;
sl@0
   286
static _Stl_aligned_buffer<time_put<char, ostreambuf_iterator<char, char_traits<char> > > > _S_time_put_char;
sl@0
   287
sl@0
   288
static _Stl_aligned_buffer<money_get<char, const char*> > _S_money_get_char_const_char;
sl@0
   289
static _Stl_aligned_buffer<money_put<char, char*> > _S_money_put_char_char;
sl@0
   290
static _Stl_aligned_buffer<num_get<char, const char*> > _S_num_get_char_const_char;
sl@0
   291
static _Stl_aligned_buffer<num_put<char, char*> > _S_num_put_char_char;
sl@0
   292
static _Stl_aligned_buffer<time_get<char, const char*> > _S_time_get_char_const_char;
sl@0
   293
static _Stl_aligned_buffer<time_put<char, char*> > _S_time_put_char_char;
sl@0
   294
sl@0
   295
# ifndef _STLP_NO_WCHAR_T
sl@0
   296
static _Stl_aligned_buffer<collate<wchar_t> > _S_collate_wchar;
sl@0
   297
static _Stl_aligned_buffer<ctype<wchar_t> > _S_ctype_wchar;
sl@0
   298
# ifndef _STLP_NO_MBSTATE_T
sl@0
   299
static _Stl_aligned_buffer<codecvt<wchar_t, char, mbstate_t> > _S_codecvt_wchar;
sl@0
   300
# endif //!_STLP_NO_MBSTATE_T
sl@0
   301
static _Stl_aligned_buffer<moneypunct<wchar_t, true> > _S_moneypunct_true_wchar;
sl@0
   302
static _Stl_aligned_buffer<moneypunct<wchar_t, false> > _S_moneypunct_false_wchar;
sl@0
   303
static _Stl_aligned_buffer<numpunct<wchar_t> > _S_numpunct_wchar;
sl@0
   304
static _Stl_aligned_buffer<messages<wchar_t> > _S_messages_wchar;
sl@0
   305
sl@0
   306
static _Stl_aligned_buffer<money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > > _S_money_get_wchar;
sl@0
   307
static _Stl_aligned_buffer<money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > > _S_money_put_wchar;
sl@0
   308
static _Stl_aligned_buffer<num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > > _S_num_get_wchar;
sl@0
   309
static _Stl_aligned_buffer<num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > > _S_num_put_wchar;
sl@0
   310
static _Stl_aligned_buffer<time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > > _S_time_get_wchar;
sl@0
   311
static _Stl_aligned_buffer<time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > > _S_time_put_wchar;
sl@0
   312
sl@0
   313
static _Stl_aligned_buffer<money_get<wchar_t, const wchar_t*> > _S_money_get_wchar_const_wchar;
sl@0
   314
static _Stl_aligned_buffer<money_put<wchar_t, wchar_t*> > _S_money_put_wchar_wchar;
sl@0
   315
static _Stl_aligned_buffer<num_get<wchar_t, const wchar_t*> > _S_num_get_wchar_const_wchar;
sl@0
   316
static _Stl_aligned_buffer<num_put<wchar_t, wchar_t*> > _S_num_put_wchar_wchar;
sl@0
   317
static _Stl_aligned_buffer<time_get<wchar_t, const wchar_t*> > _S_time_get_wchar_const_wchar;
sl@0
   318
static _Stl_aligned_buffer<time_put<wchar_t, wchar_t*> > _S_time_put_wchar_wchar;
sl@0
   319
# endif //!_STLP_NO_WCHAR_T
sl@0
   320
sl@0
   321
static _Messages _Null_messages;
sl@0
   322
sl@0
   323
static locale::facet* _S_classic_facets[] = {
sl@0
   324
  __REINTERPRET_CAST(locale::facet*,0),
sl@0
   325
  __REINTERPRET_CAST(locale::facet*,&_S_collate_char),
sl@0
   326
  __REINTERPRET_CAST(locale::facet*,&_S_ctype_char), 
sl@0
   327
# ifndef _STLP_NO_MBSTATE_T
sl@0
   328
    __REINTERPRET_CAST(locale::facet*,&_S_codecvt_char),
sl@0
   329
# else
sl@0
   330
    __REINTERPRET_CAST(locale::facet*,0), 
sl@0
   331
# endif //!_STLP_NO_MBSTATE_T
sl@0
   332
  __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_true_char),
sl@0
   333
  __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_false_char),
sl@0
   334
  __REINTERPRET_CAST(locale::facet*,&_S_numpunct_char),
sl@0
   335
  __REINTERPRET_CAST(locale::facet*,&_S_messages_char),
sl@0
   336
sl@0
   337
  __REINTERPRET_CAST(locale::facet*,&_S_money_get_char),
sl@0
   338
  __REINTERPRET_CAST(locale::facet*,&_S_money_get_char_const_char),
sl@0
   339
  __REINTERPRET_CAST(locale::facet*,&_S_money_put_char),
sl@0
   340
  __REINTERPRET_CAST(locale::facet*,&_S_money_put_char_char),
sl@0
   341
sl@0
   342
  __REINTERPRET_CAST(locale::facet*,&_S_num_get_char),
sl@0
   343
  __REINTERPRET_CAST(locale::facet*,&_S_num_get_char_const_char),
sl@0
   344
  __REINTERPRET_CAST(locale::facet*,&_S_num_put_char),
sl@0
   345
  __REINTERPRET_CAST(locale::facet*,&_S_num_put_char_char),
sl@0
   346
  __REINTERPRET_CAST(locale::facet*,&_S_time_get_char),
sl@0
   347
  __REINTERPRET_CAST(locale::facet*,&_S_time_get_char_const_char),
sl@0
   348
  __REINTERPRET_CAST(locale::facet*,&_S_time_put_char),
sl@0
   349
  __REINTERPRET_CAST(locale::facet*,&_S_time_put_char_char),
sl@0
   350
# ifndef _STLP_NO_WCHAR_T
sl@0
   351
  __REINTERPRET_CAST(locale::facet*,&_S_collate_wchar),
sl@0
   352
  __REINTERPRET_CAST(locale::facet*,&_S_ctype_wchar), 
sl@0
   353
# ifndef _STLP_NO_MBSTATE_T
sl@0
   354
  __REINTERPRET_CAST(locale::facet*,&_S_codecvt_wchar),
sl@0
   355
# else 
sl@0
   356
  __REINTERPRET_CAST(locale::facet*,0)
sl@0
   357
# endif //!_STLP_NO_MBSTATE_T
sl@0
   358
  __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_true_wchar),
sl@0
   359
  __REINTERPRET_CAST(locale::facet*,&_S_moneypunct_false_wchar),
sl@0
   360
  __REINTERPRET_CAST(locale::facet*,&_S_numpunct_wchar),
sl@0
   361
  __REINTERPRET_CAST(locale::facet*,&_S_messages_wchar),
sl@0
   362
sl@0
   363
  __REINTERPRET_CAST(locale::facet*,&_S_money_get_wchar),
sl@0
   364
  __REINTERPRET_CAST(locale::facet*,&_S_money_get_wchar_const_wchar),
sl@0
   365
  __REINTERPRET_CAST(locale::facet*,&_S_money_put_wchar),
sl@0
   366
  __REINTERPRET_CAST(locale::facet*,&_S_money_put_wchar_wchar),
sl@0
   367
sl@0
   368
  __REINTERPRET_CAST(locale::facet*,&_S_num_get_wchar),
sl@0
   369
  __REINTERPRET_CAST(locale::facet*,&_S_num_get_wchar_const_wchar),
sl@0
   370
  __REINTERPRET_CAST(locale::facet*,&_S_num_put_wchar),
sl@0
   371
  __REINTERPRET_CAST(locale::facet*,&_S_num_put_wchar_wchar),
sl@0
   372
  __REINTERPRET_CAST(locale::facet*,&_S_time_get_wchar),
sl@0
   373
  __REINTERPRET_CAST(locale::facet*,&_S_time_get_wchar_const_wchar),
sl@0
   374
  __REINTERPRET_CAST(locale::facet*,&_S_time_put_wchar),
sl@0
   375
  __REINTERPRET_CAST(locale::facet*,&_S_time_put_wchar_wchar),
sl@0
   376
# endif //!_STLP_NO_WCHAR_T
sl@0
   377
  0
sl@0
   378
};
sl@0
   379
# endif //!__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   380
sl@0
   381
//Put all static variable initialization in this file
sl@0
   382
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   383
sl@0
   384
#ifndef __WINSCW__
sl@0
   385
_STLP_STATIC_MEMBER_EXP_DECLSPEC _Libcpp_wsd* g_libcpp_wsd = NULL;
sl@0
   386
#endif
sl@0
   387
sl@0
   388
void locale_impl_init()
sl@0
   389
{
sl@0
   390
	int index = 0;
sl@0
   391
sl@0
   392
#ifdef __WINSCW__
sl@0
   393
	_Libcpp_wsd* g_libcpp_wsd = &get_libcpp_wsdptr();
sl@0
   394
#else
sl@0
   395
	g_libcpp_wsd  = &get_libcpp_wsdptr();
sl@0
   396
#endif
sl@0
   397
sl@0
   398
	if (!g_libcpp_wsd)
sl@0
   399
		return;
sl@0
   400
sl@0
   401
	//initialize _S_max
sl@0
   402
	get_locale_id_S_max() = 39;
sl@0
   403
sl@0
   404
	get_locale_impl_S_global_impl() = 0;
sl@0
   405
sl@0
   406
	//initialize the page size
sl@0
   407
	filebuf_page_size_init();
sl@0
   408
sl@0
   409
	//initialize the array in num_get
sl@0
   410
	num_get_array_init();
sl@0
   411
sl@0
   412
	//initialize the mutex lock in locale.cpp
sl@0
   413
	locale_mutex_lock_init();
sl@0
   414
sl@0
   415
	//initialize _S_index in ios.cpp
sl@0
   416
	ios_base_S_index_init();
sl@0
   417
sl@0
   418
	//initialize _S_count of _Loc_init
sl@0
   419
	ios_base_Loc_init_S_count_init();
sl@0
   420
sl@0
   421
	//initialize _S_count of Init
sl@0
   422
	ios_base_Init_S_count_init();
sl@0
   423
sl@0
   424
	//initialize S_was_synced of ios_base
sl@0
   425
	ios_base_S_was_synced_init();
sl@0
   426
sl@0
   427
	//initialize the mutex in locale_catalog.cpp
sl@0
   428
	locale_catalog_category_hash_lock_init();
sl@0
   429
sl@0
   430
	//initialize float and double limits in complex_trig.cpp
sl@0
   431
	complex_trig_limit_init();
sl@0
   432
sl@0
   433
	//initialize the string
sl@0
   434
	locale_impl_string_init();
sl@0
   435
sl@0
   436
	//initialize empty string in monetary.cpp
sl@0
   437
	monetary_empty_string_init();
sl@0
   438
sl@0
   439
	//initialize true/false name in numpunct.cpp
sl@0
   440
	numpunct_name_init();
sl@0
   441
sl@0
   442
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,0);
sl@0
   443
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_collate_char());
sl@0
   444
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_ctype_char());
sl@0
   445
sl@0
   446
# ifndef _STLP_NO_MBSTATE_T
sl@0
   447
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_codecvt_char());
sl@0
   448
# else
sl@0
   449
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,0);
sl@0
   450
# endif
sl@0
   451
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_true_char());
sl@0
   452
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_false_char());
sl@0
   453
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_numpunct_char());
sl@0
   454
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_messages_char());
sl@0
   455
sl@0
   456
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_char());
sl@0
   457
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_char_const_char());
sl@0
   458
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_char());
sl@0
   459
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_char_char());
sl@0
   460
sl@0
   461
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_char());
sl@0
   462
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_char_const_char());
sl@0
   463
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_char());
sl@0
   464
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_char_char());
sl@0
   465
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_char());
sl@0
   466
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_char_const_char());
sl@0
   467
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_char());
sl@0
   468
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_char_char());
sl@0
   469
# ifndef _STLP_NO_WCHAR_T
sl@0
   470
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_collate_wchar());
sl@0
   471
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_ctype_wchar());
sl@0
   472
# ifndef _STLP_NO_MBSTATE_T
sl@0
   473
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_codecvt_wchar());
sl@0
   474
# else
sl@0
   475
	get_locale_impl_S_classic_facets()[index++] =  __REINTERPRET_CAST(locale::facet*,0);
sl@0
   476
# endif //!_STLP_NO_MBSTATE_T
sl@0
   477
sl@0
   478
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_true_wchar());
sl@0
   479
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_moneypunct_false_wchar());
sl@0
   480
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_numpunct_wchar());
sl@0
   481
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_messages_wchar());
sl@0
   482
sl@0
   483
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_wchar());
sl@0
   484
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_get_wchar_const_wchar());
sl@0
   485
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_wchar());
sl@0
   486
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_money_put_wchar_wchar());
sl@0
   487
sl@0
   488
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_wchar());
sl@0
   489
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_get_wchar_const_wchar());
sl@0
   490
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_wchar());
sl@0
   491
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_wchar_wchar());
sl@0
   492
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_wchar());
sl@0
   493
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_get_wchar_const_wchar());
sl@0
   494
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_wchar());
sl@0
   495
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_time_put_wchar_wchar());
sl@0
   496
# endif  //!_STLP_NO_WCHAR_T
sl@0
   497
	//support for back_insert iterator
sl@0
   498
	get_locale_impl_S_classic_facets()[index++] = __REINTERPRET_CAST(locale::facet*,&get_locale_impl_S_num_put_char_back_insert_iterator());
sl@0
   499
	get_locale_impl_S_classic_facets()[index] = 0;
sl@0
   500
}
sl@0
   501
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   502
sl@0
   503
_Locale_impl* 
sl@0
   504
_Locale_impl::make_classic_locale() {
sl@0
   505
  // The classic locale contains every facet that belongs to a category.
sl@0
   506
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   507
	_Locale_impl* classic = __REINTERPRET_CAST(_Locale_impl*, &get_locale_impl_S_classic_locale());
sl@0
   508
# else
sl@0
   509
	_Locale_impl* classic = __REINTERPRET_CAST(_Locale_impl*, &_S_classic_locale);
sl@0
   510
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   511
  
sl@0
   512
  new (classic) _Locale_impl("C");
sl@0
   513
sl@0
   514
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   515
  classic->facets = get_locale_impl_S_classic_facets();
sl@0
   516
  classic->_M_size = get_locale_id_S_max();
sl@0
   517
# else
sl@0
   518
  classic->facets = _S_classic_facets;
sl@0
   519
  classic->_M_size = locale::id::_S_max;
sl@0
   520
# endif  //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   521
sl@0
   522
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   523
  // ctype category
sl@0
   524
  new(&get_locale_impl_S_ctype_char()) ctype<char>(0, false, 1);
sl@0
   525
  // collate category
sl@0
   526
  new(&get_locale_impl_S_collate_char()) collate<char>(1);
sl@0
   527
  new(&get_locale_impl_S_codecvt_char()) codecvt<char, char, mbstate_t>(1);
sl@0
   528
  // numeric category
sl@0
   529
  new(&get_locale_impl_S_numpunct_char()) numpunct<char>(1);
sl@0
   530
  new (&get_locale_impl_S_num_get_char()) num_get<char, istreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   531
  new (&get_locale_impl_S_num_put_char()) num_put<char, ostreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   532
  new (&get_locale_impl_S_time_get_char()) time_get<char, istreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   533
  new (&get_locale_impl_S_time_put_char()) time_put<char, ostreambuf_iterator<char, char_traits<char> > >(1);  
sl@0
   534
  new (&get_locale_impl_S_num_get_char_const_char()) num_get<char, const char*>(1);
sl@0
   535
  new (&get_locale_impl_S_num_put_char_char()) num_put<char, char*>(1);
sl@0
   536
  new (&get_locale_impl_S_num_put_char_back_insert_iterator()) num_put<char, back_insert_iterator<string> >(1);
sl@0
   537
  new (&get_locale_impl_S_time_get_char_const_char()) time_get<char, const char*>(1);
sl@0
   538
  new (&get_locale_impl_S_time_put_char_char()) time_put<char, char*>(1);
sl@0
   539
sl@0
   540
  // monetary category
sl@0
   541
  new (&get_locale_impl_S_moneypunct_true_char()) moneypunct<char, true>(1);
sl@0
   542
  new (&get_locale_impl_S_moneypunct_false_char()) moneypunct<char, false>(1);
sl@0
   543
  new (&get_locale_impl_S_money_get_char()) money_get<char, istreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   544
  new (&get_locale_impl_S_money_put_char()) money_put<char, ostreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   545
  new (&get_locale_impl_S_money_get_char_const_char()) money_get<char, const char*>(1);
sl@0
   546
  new (&get_locale_impl_S_money_put_char_char()) money_put<char, char*>(1);
sl@0
   547
sl@0
   548
  // messages category
sl@0
   549
  new (&get_locale_impl_S_messages_char())messages<char>(&get_locale_impl_messages());
sl@0
   550
# ifndef _STLP_NO_WCHAR_T
sl@0
   551
  // ctype category
sl@0
   552
  new(&get_locale_impl_S_ctype_wchar()) ctype<wchar_t>(1);
sl@0
   553
  // collate category
sl@0
   554
  new(&get_locale_impl_S_collate_wchar()) collate<wchar_t>(1);
sl@0
   555
  new(&get_locale_impl_S_codecvt_wchar()) codecvt<wchar_t, char, mbstate_t>(1);
sl@0
   556
  // numeric category
sl@0
   557
  new(&get_locale_impl_S_numpunct_wchar()) numpunct<wchar_t>(1);
sl@0
   558
  new (&get_locale_impl_S_num_get_wchar()) num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   559
  new (&get_locale_impl_S_num_put_wchar()) num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   560
  new (&get_locale_impl_S_time_get_wchar()) time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   561
  new (&get_locale_impl_S_time_put_wchar()) time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   562
  new (&get_locale_impl_S_messages_wchar())messages<wchar_t>(&get_locale_impl_messages());
sl@0
   563
  new (&get_locale_impl_S_num_get_wchar_const_wchar()) num_get<wchar_t, const wchar_t*>(1); 
sl@0
   564
  new (&get_locale_impl_S_num_put_wchar_wchar()) num_put<wchar_t, wchar_t*>(1); 
sl@0
   565
  new (&get_locale_impl_S_time_get_wchar_const_wchar()) time_get<wchar_t, const wchar_t*>(1); 
sl@0
   566
  new (&get_locale_impl_S_time_put_wchar_wchar()) time_put<wchar_t, wchar_t*>(1);   
sl@0
   567
  // monetary category
sl@0
   568
  new (&get_locale_impl_S_moneypunct_true_wchar()) moneypunct<wchar_t, true>(1);
sl@0
   569
  new (&get_locale_impl_S_moneypunct_false_wchar()) moneypunct<wchar_t, false>(1);
sl@0
   570
  new (&get_locale_impl_S_money_get_wchar()) money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   571
  new (&get_locale_impl_S_money_put_wchar()) money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   572
  new (&get_locale_impl_S_money_get_wchar_const_wchar()) money_get<wchar_t, const wchar_t*>(1);
sl@0
   573
  new (&get_locale_impl_S_money_put_wchar_wchar()) money_put<wchar_t, wchar_t*>(1);
sl@0
   574
# endif //!_STLP_NO_WCHAR_T
sl@0
   575
# else //!__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   576
  // ctype category
sl@0
   577
  new(&_S_ctype_char) ctype<char>(0, false, 1);
sl@0
   578
  // collate category
sl@0
   579
  new(&_S_collate_char) collate<char>(1);
sl@0
   580
  new(&_S_codecvt_char) codecvt<char, char, mbstate_t>(1);
sl@0
   581
  // numeric category
sl@0
   582
  new(&_S_numpunct_char) numpunct<char>(1);
sl@0
   583
  new (&_S_num_get_char) num_get<char, istreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   584
  new (&_S_num_put_char) num_put<char, ostreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   585
  new (&_S_time_get_char) time_get<char, istreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   586
  new (&_S_time_put_char) time_put<char, ostreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   587
  new (&_S_num_get_char_const_char) num_get<char, const char*>(1);
sl@0
   588
  new (&_S_num_put_char_char) num_put<char, char*>(1);
sl@0
   589
  new (&_S_time_get_char_const_char) time_get<char, const char*>(1);
sl@0
   590
  new (&_S_time_put_char_char) time_put<char, char*>(1);
sl@0
   591
  // monetary category
sl@0
   592
  new (&_S_moneypunct_true_char) moneypunct<char, true>(1);
sl@0
   593
  new (&_S_moneypunct_false_char) moneypunct<char, false>(1);
sl@0
   594
  new (&_S_money_get_char) money_get<char, istreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   595
  new (&_S_money_put_char) money_put<char, ostreambuf_iterator<char, char_traits<char> > >(1);
sl@0
   596
  new (&_S_money_get_char_const_char) money_get<char, const char*>(1);
sl@0
   597
  new (&_S_money_put_char_char) money_put<char, char*>(1);
sl@0
   598
  // messages category
sl@0
   599
  new (&_S_messages_char)messages<char>(&_Null_messages);
sl@0
   600
sl@0
   601
# ifndef _STLP_NO_WCHAR_T
sl@0
   602
  // ctype category
sl@0
   603
  new(&_S_ctype_wchar) ctype<wchar_t>(1);
sl@0
   604
  // collate category
sl@0
   605
  new(&_S_collate_wchar) collate<wchar_t>(1);
sl@0
   606
  new(&_S_codecvt_wchar) codecvt<wchar_t, char, mbstate_t>(1);
sl@0
   607
  // numeric category
sl@0
   608
  new(&_S_numpunct_wchar) numpunct<wchar_t>(1);
sl@0
   609
  new (&_S_num_get_wchar) num_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   610
  new (&_S_num_put_wchar) num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   611
  new (&_S_time_get_wchar) time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   612
  new (&_S_time_put_wchar) time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   613
  new (&_S_messages_wchar)messages<wchar_t>(&_Null_messages);
sl@0
   614
  new (&_S_num_get_wchar_const_wchar) num_get<wchar_t, const wchar_t*>(1); 
sl@0
   615
  new (&_S_num_put_wchar_wchar) num_put<wchar_t, wchar_t*>(1); 
sl@0
   616
  new (&_S_time_get_wchar_const_wchar) time_get<wchar_t, const wchar_t*>(1); 
sl@0
   617
  new (&_S_time_put_wchar_wchar) time_put<wchar_t, wchar_t*>(1); 
sl@0
   618
  // monetary category
sl@0
   619
  new (&_S_moneypunct_true_wchar) moneypunct<wchar_t, true>(1);
sl@0
   620
  new (&_S_moneypunct_false_wchar) moneypunct<wchar_t, false>(1);
sl@0
   621
  new (&_S_money_get_wchar) money_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   622
  new (&_S_money_put_wchar) money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1);
sl@0
   623
  new (&_S_money_get_wchar_const_wchar) money_get<wchar_t, const wchar_t*>(1);
sl@0
   624
  new (&_S_money_put_wchar_wchar) money_put<wchar_t, wchar_t*>(1);
sl@0
   625
# endif //!_STLP_NO_WCHAR_T
sl@0
   626
sl@0
   627
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   628
  return classic;
sl@0
   629
}
sl@0
   630
sl@0
   631
sl@0
   632
//----------------------------------------------------------------------
sl@0
   633
sl@0
   634
// Declarations of (non-template) facets' static data members
sl@0
   635
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   636
sl@0
   637
size_t locale::id::_S_max = 39;
sl@0
   638
sl@0
   639
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id collate<char>::id = { 1 };
sl@0
   640
sl@0
   641
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id ctype<char>::id = { 2 };
sl@0
   642
sl@0
   643
# ifndef _STLP_NO_MBSTATE_T
sl@0
   644
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id codecvt<char, char, mbstate_t>::id = { 3 };
sl@0
   645
#  ifndef _STLP_NO_WCHAR_T
sl@0
   646
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id codecvt<wchar_t, char, mbstate_t>::id = { 22 };
sl@0
   647
#  endif//!_STLP_NO_WCHAR_T
sl@0
   648
# endif//!_STLP_NO_MBSTATE_T
sl@0
   649
sl@0
   650
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct<char, true>::id = { 4 };
sl@0
   651
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct<char, false>::id = { 5 };
sl@0
   652
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id messages<char>::id = { 7 };
sl@0
   653
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id numpunct<char>::id = { 6 } ;
sl@0
   654
sl@0
   655
# ifndef _STLP_NO_WCHAR_T
sl@0
   656
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id collate<wchar_t>::id = { 20 };
sl@0
   657
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id ctype<wchar_t>::id = { 21 };
sl@0
   658
sl@0
   659
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct<wchar_t, true>::id = { 23 } ;
sl@0
   660
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id moneypunct<wchar_t, false>::id = { 24 } ;
sl@0
   661
sl@0
   662
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id numpunct<wchar_t>::id = { 25 };
sl@0
   663
_STLP_STATIC_MEMBER_EXP_DECLSPEC locale::id messages<wchar_t>::id = { 26 };
sl@0
   664
# endif //!_STLP_NO_WCHAR_T
sl@0
   665
# endif //!__LIBSTD_CPP_SYMBIAN32_WSD__
sl@0
   666
//
sl@0
   667
// locale class
sl@0
   668
//
sl@0
   669
sl@0
   670
_STLP_EXP_DECLSPEC locale::facet::~facet() {}
sl@0
   671
sl@0
   672
# if ! defined ( _STLP_MEMBER_TEMPLATES ) || defined (_STLP_INLINE_MEMBER_TEMPLATES)
sl@0
   673
// members that fail to be templates 
sl@0
   674
bool locale::operator()(const string& __x,
sl@0
   675
                        const string& __y) const {
sl@0
   676
  return __locale_do_operator_call(this, __x, __y);
sl@0
   677
}
sl@0
   678
sl@0
   679
#  ifndef _STLP_NO_WCHAR_T
sl@0
   680
bool locale::operator()(const wstring& __x,
sl@0
   681
                  const wstring& __y) const {
sl@0
   682
  return __locale_do_operator_call(this, __x, __y);
sl@0
   683
}
sl@0
   684
#  endif
sl@0
   685
# endif
sl@0
   686
sl@0
   687
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   688
_Locale_impl*   _Locale_impl::_S_global_impl    = 0;
sl@0
   689
static _Stl_aligned_buffer<locale> _S_b_classic;
sl@0
   690
_STLP_STATIC_MUTEX _Locale_impl::_S_global_locale_lock _STLP_MUTEX_INITIALIZER;
sl@0
   691
// locale          _Locale_impl::_S_classic(__REINTERPRET_CAST(_Locale_impl*, &_S_classic_locale));
sl@0
   692
# endif
sl@0
   693
sl@0
   694
sl@0
   695
sl@0
   696
  
sl@0
   697
//----------------------------------------------------------------------
sl@0
   698
// class locale
sl@0
   699
sl@0
   700
_STLP_EXP_DECLSPEC void _STLP_CALL
sl@0
   701
locale::_M_throw_runtime_error(const char* name)
sl@0
   702
{
sl@0
   703
  char buf[256];
sl@0
   704
sl@0
   705
  if (name) {
sl@0
   706
    const char* prefix = "bad locale name: ";
sl@0
   707
    strcpy(buf, prefix);
sl@0
   708
    strncat(buf, name, 256 - strlen(prefix));
sl@0
   709
    buf[255] = '\0';
sl@0
   710
  }
sl@0
   711
  else {
sl@0
   712
    strcpy(buf, "locale error");
sl@0
   713
  }
sl@0
   714
  _STLP_THROW(runtime_error(buf));
sl@0
   715
}
sl@0
   716
sl@0
   717
#if defined(__SYMBIAN32__) || (!( defined (__BORLANDC__) && defined(_RTLDLL)))
sl@0
   718
sl@0
   719
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   720
void ios_base_Loc_init_S_count_init()
sl@0
   721
{
sl@0
   722
	get_ios_base_Loc_init_S_count() = 0;	
sl@0
   723
}
sl@0
   724
# else
sl@0
   725
long ios_base::_Loc_init::_S_count = 0;
sl@0
   726
# endif
sl@0
   727
sl@0
   728
_STLP_EXP_DECLSPEC ios_base::_Loc_init::_Loc_init() {
sl@0
   729
  //  if (_S_count++ == 0)
sl@0
   730
      locale::_S_initialize();
sl@0
   731
}
sl@0
   732
sl@0
   733
_STLP_EXP_DECLSPEC ios_base::_Loc_init::~_Loc_init() {
sl@0
   734
  //    if (--_S_count == 0)
sl@0
   735
      locale::_S_uninitialize();
sl@0
   736
}
sl@0
   737
sl@0
   738
#endif /* _RTLDLL */
sl@0
   739
sl@0
   740
// Initialization of the locale system.  This must be called before
sl@0
   741
// any locales are constructed.  (Meaning that it must be called when
sl@0
   742
// the I/O library itself is initialized.)
sl@0
   743
void _STLP_CALL
sl@0
   744
locale::_S_initialize()
sl@0
   745
{
sl@0
   746
  // additional check for singleton count : linker may choose to alter the order of function calls on initialization
sl@0
   747
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   748
	if (get_ios_base_Loc_init_S_count()++ > 0 )
sl@0
   749
    	return;
sl@0
   750
# else
sl@0
   751
	if (ios_base::_Loc_init::_S_count++ > 0 )
sl@0
   752
    	return;
sl@0
   753
# endif  
sl@0
   754
  
sl@0
   755
  _Stl_loc_assign_ids();
sl@0
   756
  
sl@0
   757
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   758
	get_locale_impl_S_global_impl() = _Locale_impl::make_classic_locale();
sl@0
   759
	locale* loc = __REINTERPRET_CAST(locale*, &get_locale_impl_S_b_classic());
sl@0
   760
	new (loc) locale (get_locale_impl_S_global_impl());
sl@0
   761
	global_iostream_init();
sl@0
   762
# else
sl@0
   763
	_Locale_impl::_S_global_impl = _Locale_impl::make_classic_locale();
sl@0
   764
	locale* loc = __REINTERPRET_CAST(locale*, &_S_b_classic);
sl@0
   765
	new (loc) locale (_Locale_impl::_S_global_impl);
sl@0
   766
# endif  
sl@0
   767
  
sl@0
   768
}
sl@0
   769
sl@0
   770
void _STLP_CALL
sl@0
   771
locale::_S_uninitialize()
sl@0
   772
{
sl@0
   773
  // additional check for singleton count : linker may choose to alter the order of function calls on initialization
sl@0
   774
 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   775
 	if (--get_ios_base_Loc_init_S_count() != 0 )
sl@0
   776
    	return;
sl@0
   777
 # else
sl@0
   778
 	if (--ios_base::_Loc_init::_S_count != 0 )
sl@0
   779
    	return;
sl@0
   780
 # endif
sl@0
   781
  
sl@0
   782
 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   783
 	get_locale_impl_S_global_impl()->decr();
sl@0
   784
 # else
sl@0
   785
 	_Locale_impl::_S_global_impl->decr();
sl@0
   786
 # endif	  
sl@0
   787
}
sl@0
   788
sl@0
   789
// Default constructor: create a copy of the global locale.
sl@0
   790
_STLP_EXP_DECLSPEC locale::locale() : _M_impl(0) {
sl@0
   791
 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   792
 	_M_impl = _S_copy_impl(get_locale_impl_S_global_impl());
sl@0
   793
 # else
sl@0
   794
 	_M_impl = _S_copy_impl(_Locale_impl::_S_global_impl);
sl@0
   795
 # endif  
sl@0
   796
}
sl@0
   797
sl@0
   798
_STLP_EXP_DECLSPEC locale::locale(_Locale_impl* impl) : _M_impl(impl)
sl@0
   799
{}
sl@0
   800
sl@0
   801
// Copy constructor
sl@0
   802
_STLP_EXP_DECLSPEC locale::locale(const locale& L) _STLP_NOTHROW
sl@0
   803
  : _M_impl(0)
sl@0
   804
{
sl@0
   805
  _M_impl = _S_copy_impl(L._M_impl);
sl@0
   806
}
sl@0
   807
sl@0
   808
// Destructor.
sl@0
   809
_STLP_EXP_DECLSPEC locale::~locale() _STLP_NOTHROW
sl@0
   810
{
sl@0
   811
  if (_M_impl) {
sl@0
   812
  _M_impl->decr();
sl@0
   813
  _M_impl = 0;
sl@0
   814
  }
sl@0
   815
}
sl@0
   816
sl@0
   817
// Assignment operator.  Much like the copy constructor: just a bit of
sl@0
   818
// pointer twiddling.
sl@0
   819
_STLP_EXP_DECLSPEC const locale& locale::operator=(const locale& L) _STLP_NOTHROW
sl@0
   820
{
sl@0
   821
  if (this->_M_impl != L._M_impl) {
sl@0
   822
    this->_M_impl->decr();
sl@0
   823
    this->_M_impl = _S_copy_impl(L._M_impl);
sl@0
   824
  }
sl@0
   825
  return *this;
sl@0
   826
}
sl@0
   827
sl@0
   828
_STLP_EXP_DECLSPEC locale::facet* locale::_M_get_facet(const locale::id& n) const
sl@0
   829
{
sl@0
   830
  return n._M_index < _M_impl->size()
sl@0
   831
    ? __REINTERPRET_CAST(locale::facet*,_M_impl->facets[n._M_index])
sl@0
   832
    : __REINTERPRET_CAST(locale::facet*, 0);
sl@0
   833
}
sl@0
   834
sl@0
   835
_STLP_EXP_DECLSPEC locale::facet* locale::_M_use_facet(const locale::id& n) const
sl@0
   836
{
sl@0
   837
  locale::facet* f = (n._M_index < _M_impl->size()
sl@0
   838
		      ? __REINTERPRET_CAST(locale::facet*,_M_impl->facets[n._M_index])
sl@0
   839
		      : __REINTERPRET_CAST(locale::facet*, 0));
sl@0
   840
  if (!f)
sl@0
   841
    _M_impl->_M_throw_bad_cast();
sl@0
   842
  return f;
sl@0
   843
}
sl@0
   844
sl@0
   845
_STLP_EXP_DECLSPEC string locale::name() const {
sl@0
   846
  return _M_impl->name;
sl@0
   847
}
sl@0
   848
sl@0
   849
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   850
void locale_impl_string_init()
sl@0
   851
{
sl@0
   852
	get_locale_impl_nameless().copy("*", 1);
sl@0
   853
}
sl@0
   854
# else
sl@0
   855
static string _Nameless("*");
sl@0
   856
# endif
sl@0
   857
sl@0
   858
// Compare two locales for equality.
sl@0
   859
_STLP_EXP_DECLSPEC bool locale::operator==(const locale& L) const {
sl@0
   860
sl@0
   861
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   862
  return this->_M_impl == L._M_impl ||
sl@0
   863
         (this->name() == L.name() && this->name() != get_locale_impl_nameless());
sl@0
   864
# else
sl@0
   865
  return this->_M_impl == L._M_impl ||
sl@0
   866
         (this->name() == L.name() && this->name() != _Nameless);
sl@0
   867
# endif  //__LIBSTD_CPP_SYMBIAN32_WSD__       
sl@0
   868
}
sl@0
   869
sl@0
   870
_STLP_EXP_DECLSPEC bool locale::operator!=(const locale& L) const {
sl@0
   871
  return !(*this == L);
sl@0
   872
}
sl@0
   873
sl@0
   874
// Static member functions.
sl@0
   875
_STLP_EXP_DECLSPEC const locale&  _STLP_CALL
sl@0
   876
locale::classic() {
sl@0
   877
  //  return _Locale_impl::_S_classic;
sl@0
   878
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   879
  return *__REINTERPRET_CAST(const locale*, &get_locale_impl_S_b_classic());	
sl@0
   880
# else  
sl@0
   881
  return *__REINTERPRET_CAST(const locale*, &_S_b_classic);
sl@0
   882
# endif
sl@0
   883
}
sl@0
   884
sl@0
   885
_STLP_EXP_DECLSPEC locale  _STLP_CALL
sl@0
   886
locale::global(const locale& L) 
sl@0
   887
{
sl@0
   888
  locale old;                   // A copy of the old global locale.
sl@0
   889
sl@0
   890
  L._M_impl->incr();
sl@0
   891
  { 
sl@0
   892
sl@0
   893
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   894
    _STLP_auto_lock lock(get_locale_impl_S_global_locale_lock());\
sl@0
   895
    get_locale_impl_S_global_impl()->decr();     // We made a copy, so it can't be zero.
sl@0
   896
    get_locale_impl_S_global_impl() = L._M_impl;
sl@0
   897
# else
sl@0
   898
    _STLP_auto_lock lock(_Locale_impl::_S_global_locale_lock);\
sl@0
   899
	_Locale_impl::_S_global_impl->decr();     // We made a copy, so it can't be zero.
sl@0
   900
    _Locale_impl::_S_global_impl = L._M_impl;
sl@0
   901
# endif    
sl@0
   902
  }
sl@0
   903
sl@0
   904
                                // Set the global C locale, if appropriate.
sl@0
   905
#if !defined(_STLP_WINCE)
sl@0
   906
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
   907
	if (L.name() != get_locale_impl_nameless())
sl@0
   908
# else
sl@0
   909
	if (L.name() != _Nameless)
sl@0
   910
# endif  
sl@0
   911
    setlocale(LC_ALL, L.name().c_str());
sl@0
   912
#endif
sl@0
   913
sl@0
   914
  return old;
sl@0
   915
}
sl@0
   916
sl@0
   917
sl@0
   918
// static data members.
sl@0
   919
sl@0
   920
# if !defined (_STLP_STATIC_CONST_INIT_BUG) && ! defined (_STLP_USE_DECLSPEC)
sl@0
   921
sl@0
   922
const locale::category locale::none;
sl@0
   923
const locale::category locale::collate;
sl@0
   924
const locale::category locale::ctype;
sl@0
   925
const locale::category locale::monetary;
sl@0
   926
const locale::category locale::numeric;
sl@0
   927
const locale::category locale::time; 
sl@0
   928
const locale::category locale::messages;
sl@0
   929
const locale::category locale::all;
sl@0
   930
sl@0
   931
# endif
sl@0
   932
sl@0
   933
sl@0
   934
#if defined(__SYMBIAN32__) && defined( __WINSCW__)
sl@0
   935
sl@0
   936
extern "C" bool __uncaught_exception(void);
sl@0
   937
sl@0
   938
_STLP_EXP_DECLSPEC bool uncaught_exception()
sl@0
   939
{
sl@0
   940
    // providing default implementation
sl@0
   941
sl@0
   942
#if __MWERKS__ > 0x3200
sl@0
   943
	return __uncaught_exception();
sl@0
   944
#else
sl@0
   945
	// no uncaught_exception() implementation on CW 2.4.7
sl@0
   946
	return false;
sl@0
   947
#endif
sl@0
   948
sl@0
   949
}
sl@0
   950
#endif
sl@0
   951
sl@0
   952
_STLP_END_NAMESPACE
sl@0
   953
sl@0
   954
//
sl@0
   955
// Facets included in classic locale :
sl@0
   956
//
sl@0
   957
sl@0
   958
sl@0
   959