sl@0
|
1 |
/*
|
sl@0
|
2 |
* © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
* Copyright (c) 1999
|
sl@0
|
4 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
5 |
*
|
sl@0
|
6 |
* Copyright (c) 1999
|
sl@0
|
7 |
* Boris Fomitchev
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
10 |
* or implied. Any use is at your own risk.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
13 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
14 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
15 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
16 |
* modified is included with the above copyright notice.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
# include "stlport_prefix.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <locale>
|
sl@0
|
22 |
#include <stdexcept>
|
sl@0
|
23 |
#include <stl/_algobase.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#include "locale_nonclassic.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
28 |
#include "libstdcppwsd.h"
|
sl@0
|
29 |
# endif
|
sl@0
|
30 |
|
sl@0
|
31 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
32 |
|
sl@0
|
33 |
_Locale::_Locale(const _Locale_impl& L)
|
sl@0
|
34 |
: _Locale_impl(L), _Refcount_Base(1), facets_vec((void**)L.facets, (void**)L.facets+L.size())
|
sl@0
|
35 |
{
|
sl@0
|
36 |
for (size_t i = 1; i < L.size(); ++i) {
|
sl@0
|
37 |
locale::facet* f = L.facets[i];
|
sl@0
|
38 |
if (f && f->_M_delete)
|
sl@0
|
39 |
f->_M_incr();
|
sl@0
|
40 |
}
|
sl@0
|
41 |
facets = (locale::facet**)&facets_vec[0];
|
sl@0
|
42 |
_M_size = facets_vec.size();
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
_Locale::~_Locale() {
|
sl@0
|
46 |
size_t sz = facets_vec.size();
|
sl@0
|
47 |
for (size_t i = 1; i < sz ; ++i)
|
sl@0
|
48 |
this->remove(i);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
void _Locale::remove(size_t index) {
|
sl@0
|
52 |
if (index > 0 && index < facets_vec.size()) {
|
sl@0
|
53 |
locale::facet* old = (locale::facet*)facets_vec[index];
|
sl@0
|
54 |
if (old && old->_M_delete) {
|
sl@0
|
55 |
old->_M_decr();
|
sl@0
|
56 |
if (old->_M_ref_count == 0)
|
sl@0
|
57 |
delete old;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
facets_vec[index] = 0;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
locale::facet*
|
sl@0
|
64 |
_Locale::insert(locale::facet* f, size_t index, bool do_incr) {
|
sl@0
|
65 |
if (f != 0 && index != 0) {
|
sl@0
|
66 |
if (index >= facets_vec.size()) {
|
sl@0
|
67 |
facets_vec.insert(facets_vec.end(),
|
sl@0
|
68 |
index - facets_vec.size() + 1, (void*) 0);
|
sl@0
|
69 |
facets = (locale::facet**)&facets_vec[0];
|
sl@0
|
70 |
_M_size = facets_vec.size();
|
sl@0
|
71 |
}
|
sl@0
|
72 |
if (do_incr)
|
sl@0
|
73 |
f->_M_incr();
|
sl@0
|
74 |
|
sl@0
|
75 |
remove(index);
|
sl@0
|
76 |
facets_vec[index] = (void*)f;
|
sl@0
|
77 |
return f;
|
sl@0
|
78 |
}
|
sl@0
|
79 |
else
|
sl@0
|
80 |
return 0;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
void _Locale::insert(_Locale_impl* from, const locale::id& n) {
|
sl@0
|
84 |
size_t index = n._M_index;
|
sl@0
|
85 |
this->remove(index);
|
sl@0
|
86 |
if (index > 0 && index < from->size())
|
sl@0
|
87 |
this->insert(from->facets[index], index, true);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
91 |
void locale_mutex_lock_init()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
get_locale_Index_lock()._M_lock.iState = _ENeedsNormalInit;
|
sl@0
|
94 |
get_locale_Index_lock()._M_lock.iPtr = 0;
|
sl@0
|
95 |
get_locale_Index_lock()._M_lock.iReentry = 0;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
# else
|
sl@0
|
98 |
static _STLP_STATIC_MUTEX _Index_lock _STLP_MUTEX_INITIALIZER;
|
sl@0
|
99 |
# endif
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
// Takes a reference to a locale::id, and returns its numeric index.
|
sl@0
|
103 |
// If no numeric index has yet been assigned, assigns one. The return
|
sl@0
|
104 |
// value is always positive.
|
sl@0
|
105 |
static size_t _Stl_loc_get_index(locale::id& id)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
if (id._M_index == 0) {
|
sl@0
|
108 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
109 |
_STLP_auto_lock sentry(get_locale_Index_lock());
|
sl@0
|
110 |
size_t new_index = get_locale_id_S_max()++;
|
sl@0
|
111 |
# else
|
sl@0
|
112 |
_STLP_auto_lock sentry(_Index_lock);
|
sl@0
|
113 |
size_t new_index = locale::id::_S_max++;
|
sl@0
|
114 |
# endif
|
sl@0
|
115 |
id._M_index = new_index;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
return id._M_index;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
_STLP_EXP_DECLSPEC void locale::_M_insert(facet* f, locale::id& n)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
if (f)
|
sl@0
|
123 |
((_Locale*)_M_impl)->insert(f, _Stl_loc_get_index(n), false);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
// Make a locale directly from a _Locale_impl object. If the second argument
|
sl@0
|
128 |
// is true, we clone the _Locale_impl. If false, we just twiddle pointers.
|
sl@0
|
129 |
_STLP_EXP_DECLSPEC locale::locale(_Locale_impl* impl, bool do_copy)
|
sl@0
|
130 |
: _M_impl(0)
|
sl@0
|
131 |
{
|
sl@0
|
132 |
if (do_copy) {
|
sl@0
|
133 |
_M_impl = new _Locale(*impl);
|
sl@0
|
134 |
_M_impl->name = "*";
|
sl@0
|
135 |
} else
|
sl@0
|
136 |
_M_impl = _S_copy_impl(impl);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
_STLP_END_NAMESPACE
|