Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
4 * Silicon Graphics Computer Systems, Inc.
9 * This material is provided "as is", with absolutely no warranty expressed
10 * or implied. Any use is at your own risk.
12 * Permission to use or copy this software for any purpose is hereby granted
13 * without fee, provided the above notices are retained on all copies.
14 * Permission to modify the code and to distribute modified code is granted,
15 * provided the above notices are retained, and a notice that the code was
16 * modified is included with the above copyright notice.
19 # include "stlport_prefix.h"
23 #include <stl/_algobase.h>
25 #include "locale_nonclassic.h"
27 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
28 #include "libstdcppwsd.h"
33 _Locale::_Locale(const _Locale_impl& L)
34 : _Locale_impl(L), _Refcount_Base(1), facets_vec((void**)L.facets, (void**)L.facets+L.size())
36 for (size_t i = 1; i < L.size(); ++i) {
37 locale::facet* f = L.facets[i];
38 if (f && f->_M_delete)
41 facets = (locale::facet**)&facets_vec[0];
42 _M_size = facets_vec.size();
46 size_t sz = facets_vec.size();
47 for (size_t i = 1; i < sz ; ++i)
51 void _Locale::remove(size_t index) {
52 if (index > 0 && index < facets_vec.size()) {
53 locale::facet* old = (locale::facet*)facets_vec[index];
54 if (old && old->_M_delete) {
56 if (old->_M_ref_count == 0)
59 facets_vec[index] = 0;
64 _Locale::insert(locale::facet* f, size_t index, bool do_incr) {
65 if (f != 0 && index != 0) {
66 if (index >= facets_vec.size()) {
67 facets_vec.insert(facets_vec.end(),
68 index - facets_vec.size() + 1, (void*) 0);
69 facets = (locale::facet**)&facets_vec[0];
70 _M_size = facets_vec.size();
76 facets_vec[index] = (void*)f;
83 void _Locale::insert(_Locale_impl* from, const locale::id& n) {
84 size_t index = n._M_index;
86 if (index > 0 && index < from->size())
87 this->insert(from->facets[index], index, true);
90 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
91 void locale_mutex_lock_init()
93 get_locale_Index_lock()._M_lock.iState = _ENeedsNormalInit;
94 get_locale_Index_lock()._M_lock.iPtr = 0;
95 get_locale_Index_lock()._M_lock.iReentry = 0;
98 static _STLP_STATIC_MUTEX _Index_lock _STLP_MUTEX_INITIALIZER;
102 // Takes a reference to a locale::id, and returns its numeric index.
103 // If no numeric index has yet been assigned, assigns one. The return
104 // value is always positive.
105 static size_t _Stl_loc_get_index(locale::id& id)
107 if (id._M_index == 0) {
108 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
109 _STLP_auto_lock sentry(get_locale_Index_lock());
110 size_t new_index = get_locale_id_S_max()++;
112 _STLP_auto_lock sentry(_Index_lock);
113 size_t new_index = locale::id::_S_max++;
115 id._M_index = new_index;
120 _STLP_EXP_DECLSPEC void locale::_M_insert(facet* f, locale::id& n)
123 ((_Locale*)_M_impl)->insert(f, _Stl_loc_get_index(n), false);
127 // Make a locale directly from a _Locale_impl object. If the second argument
128 // is true, we clone the _Locale_impl. If false, we just twiddle pointers.
129 _STLP_EXP_DECLSPEC locale::locale(_Locale_impl* impl, bool do_copy)
133 _M_impl = new _Locale(*impl);
136 _M_impl = _S_copy_impl(impl);