mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-27 18:15:27 +08:00
aa53f832ac
2002-10-08 Paolo Carlini <pcarlini@unitus.it> Benjamin Kosnik <bkoz@redhat.com> * include/bits/localefwd.h (class locale): Add static member _S_num_extra_categories, encoding the number of additional categories. Change _S_num_categories to _S_categories_size. (class locale::_Impl): Add _M_c_cats. (class locale::_Impl::_M_names): Change to array of chars. (class locale::_Impl::_M_check_same_name): Use _S_extra_categories_size, tweak. (locale::locale(const locale&, _Facet*)): Ditto. * src/locale.cc (locale::locale(const char* )): Rewrite to deal with the environment in a POSIX-compliant way while being thread safe. (locale::name()): Update to output POSIX environment strings. * src/localename.cc (locale::_Impl::_Impl(const _Impl&, size_t): Use _S_categories_size_*, tweak. (locale::_Impl::_Impl(facet**, size_t, bool)): Ditto. (locale::_Impl::_Impl(const char*, size_t)): Name each category individually. (locale::_Impl::_M_replace_categories): Use strcpy. * include/bits/locale_facets.h (numpunct::_M_initialize_numpunct): Change default argument to NULL from _S_c_locale. (timepunct::_M_initialize_timepunct): Same. _S_c_locale cleanups. * src/codecvt.c: _S_c_locale simplification. * src/ctype.c: Same. * src/globals.cc: Add fake_name. * src/locale-inst.cc: Remove extra includes. * src/locale.cc: Remove extra includes. Add _S_extra_categories_size definition. Correct "C" initialization. (locale::facet::facet): Don't initialize _S_c_locale. (locale::facet::_M_remove_reference): Adjust. * src/localename: Use facet_vec, facet_name. (locale::_Impl::_Impl(facet** __f, size_t __refs, bool)): Set facet ref counts to one. Initialize _S_c_locale. (locale::_Impl::_M_install_facet(id*, facet*)): Adjust facet ref counts when installing unilaterally. * config/locale/generic/c_locale.cc: Add _S_categories definition. * config/locale/generic/c_locale.h: Add _GLIBCPP_NUM_CATEGORIES macro. * config/locale/generic/time_members.cc: _S_c_locale cleanup. * config/locale/gnu/c_locale.cc: Add _S_categories definition. (_S_destroy_c_locale): Move checks against _S_c_locale here. * config/locale/gnu/c_locale.h: Add _GLIBCPP_NUM_CATEGORIES macro. * config/locale/gnu/ctype_members.cc: Simplify _S_destroy_c_locale calls, _S_c_locale usage. * config/locale/gnu/monetary_members.cc: Same, tweaks. * config/locale/gnu/monetary_members.cc: Same. * config/locale/gnu/time_members.cc: Same. * config/os/gnu-linux/ctype_noninline.h: Use locale::classic(). * docs/html/22_locale/locale.html: Add bits about global locales and "C" setlocale. * testsuite/22_locale/facet.cc (test02): Add. * testsuite/22_locale/static_members.cc (test02): Add. * testsuite/22_locale/ctor_copy_dtor.cc (test04): Add. Co-Authored-By: Benjamin Kosnik <bkoz@redhat.com> From-SVN: r57964
560 lines
14 KiB
C++
560 lines
14 KiB
C++
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
|
|
// Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
// software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU General Public License as published by the
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
// any later version.
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this library; see the file COPYING. If not, write to the Free
|
|
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
// USA.
|
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
// library without restriction. Specifically, if other files instantiate
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
// this file and link it with other files to produce an executable, this
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
// the GNU General Public License. This exception does not however
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
// the GNU General Public License.
|
|
|
|
#include <clocale>
|
|
#include <cstring>
|
|
#include <cassert>
|
|
#include <cctype>
|
|
#include <cwctype> // For towupper, etc.
|
|
#include <locale>
|
|
#include <bits/atomicity.h>
|
|
|
|
namespace std
|
|
{
|
|
// Defined in globals.cc.
|
|
extern locale c_locale;
|
|
extern locale::_Impl c_locale_impl;
|
|
|
|
// Definitions for static const data members of locale.
|
|
const locale::category locale::none;
|
|
const locale::category locale::ctype;
|
|
const locale::category locale::numeric;
|
|
const locale::category locale::collate;
|
|
const locale::category locale::time;
|
|
const locale::category locale::monetary;
|
|
const locale::category locale::messages;
|
|
const locale::category locale::all;
|
|
|
|
locale::_Impl* locale::_S_classic;
|
|
locale::_Impl* locale::_S_global;
|
|
const size_t locale::_S_categories_size;
|
|
const size_t locale::_S_extra_categories_size;
|
|
|
|
// Definitions for static const data members of locale::id
|
|
_Atomic_word locale::id::_S_highwater; // init'd to 0 by linker
|
|
|
|
// Definitions for static const data members of locale::_Impl
|
|
const locale::id* const
|
|
locale::_Impl::_S_id_ctype[] =
|
|
{
|
|
&std::ctype<char>::id,
|
|
&codecvt<char, char, mbstate_t>::id,
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
&std::ctype<wchar_t>::id,
|
|
&codecvt<wchar_t, char, mbstate_t>::id,
|
|
#endif
|
|
0
|
|
};
|
|
|
|
const locale::id* const
|
|
locale::_Impl::_S_id_numeric[] =
|
|
{
|
|
&num_get<char>::id,
|
|
&num_put<char>::id,
|
|
&numpunct<char>::id,
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
&num_get<wchar_t>::id,
|
|
&num_put<wchar_t>::id,
|
|
&numpunct<wchar_t>::id,
|
|
#endif
|
|
0
|
|
};
|
|
|
|
const locale::id* const
|
|
locale::_Impl::_S_id_collate[] =
|
|
{
|
|
&std::collate<char>::id,
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
&std::collate<wchar_t>::id,
|
|
#endif
|
|
0
|
|
};
|
|
|
|
const locale::id* const
|
|
locale::_Impl::_S_id_time[] =
|
|
{
|
|
&__timepunct<char>::id,
|
|
&time_get<char>::id,
|
|
&time_put<char>::id,
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
&__timepunct<wchar_t>::id,
|
|
&time_get<wchar_t>::id,
|
|
&time_put<wchar_t>::id,
|
|
#endif
|
|
0
|
|
};
|
|
|
|
const locale::id* const
|
|
locale::_Impl::_S_id_monetary[] =
|
|
{
|
|
&money_get<char>::id,
|
|
&money_put<char>::id,
|
|
&moneypunct<char, false>::id,
|
|
&moneypunct<char, true >::id,
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
&money_get<wchar_t>::id,
|
|
&money_put<wchar_t>::id,
|
|
&moneypunct<wchar_t, false>::id,
|
|
&moneypunct<wchar_t, true >::id,
|
|
#endif
|
|
0
|
|
};
|
|
|
|
const locale::id* const
|
|
locale::_Impl::_S_id_messages[] =
|
|
{
|
|
&std::messages<char>::id,
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
&std::messages<wchar_t>::id,
|
|
#endif
|
|
0
|
|
};
|
|
|
|
const locale::id* const* const
|
|
locale::_Impl::_S_facet_categories[] =
|
|
{
|
|
// Order must match the decl order in class locale.
|
|
locale::_Impl::_S_id_ctype,
|
|
locale::_Impl::_S_id_numeric,
|
|
locale::_Impl::_S_id_collate,
|
|
locale::_Impl::_S_id_time,
|
|
locale::_Impl::_S_id_monetary,
|
|
locale::_Impl::_S_id_messages,
|
|
0
|
|
};
|
|
|
|
locale::~locale() throw()
|
|
{ _M_impl->_M_remove_reference(); }
|
|
|
|
void
|
|
locale::_M_coalesce(const locale& __base, const locale& __add,
|
|
category __cat)
|
|
{
|
|
__cat = _S_normalize_category(__cat);
|
|
_M_impl = new _Impl(*__base._M_impl, 1);
|
|
|
|
try
|
|
{ _M_impl->_M_replace_categories(__add._M_impl, __cat); }
|
|
catch (...)
|
|
{
|
|
_M_impl->_M_remove_reference();
|
|
__throw_exception_again;
|
|
}
|
|
}
|
|
|
|
locale::locale() throw()
|
|
{
|
|
_S_initialize();
|
|
(_M_impl = _S_global)->_M_add_reference();
|
|
}
|
|
|
|
locale::locale(const locale& __other) throw()
|
|
{ (_M_impl = __other._M_impl)->_M_add_reference(); }
|
|
|
|
// This is used to initialize global and classic locales, and
|
|
// assumes that the _Impl objects are constructed correctly.
|
|
locale::locale(_Impl* __ip) throw() : _M_impl(__ip)
|
|
{ }
|
|
|
|
locale::locale(const char* __s)
|
|
{
|
|
if (__s)
|
|
{
|
|
_S_initialize();
|
|
if (strcmp(__s, "C") == 0 || strcmp(__s, "POSIX") == 0)
|
|
(_M_impl = _S_classic)->_M_add_reference();
|
|
else if (strcmp(__s, "") != 0)
|
|
_M_impl = new _Impl(__s, 1);
|
|
else
|
|
{
|
|
// Get it from the environment.
|
|
char* __env = getenv("LC_ALL");
|
|
// If LC_ALL is set we are done.
|
|
if (__env && strcmp(__env, "") != 0)
|
|
{
|
|
if (strcmp(__env, "C") == 0 || strcmp(__env, "POSIX") == 0)
|
|
(_M_impl = _S_classic)->_M_add_reference();
|
|
else
|
|
_M_impl = new _Impl(__env, 1);
|
|
}
|
|
else
|
|
{
|
|
char* __res;
|
|
// LANG may set a default different from "C".
|
|
char* __env = getenv("LANG");
|
|
if (!__env || strcmp(__env, "") == 0 || strcmp(__env, "C") == 0
|
|
|| strcmp(__env, "POSIX") == 0)
|
|
__res = strdup("C");
|
|
else
|
|
__res = strdup(__env);
|
|
|
|
// Scan the categories looking for the first one
|
|
// different from LANG.
|
|
size_t __i = 0;
|
|
if (strcmp(__res, "C") == 0)
|
|
for (__i = 0;
|
|
__i < _S_categories_size + _S_extra_categories_size;
|
|
++__i)
|
|
{
|
|
__env = getenv(_S_categories[__i]);
|
|
if (__env && strcmp(__env, "") != 0
|
|
&& strcmp(__env, "C") != 0
|
|
&& strcmp(__env, "POSIX") != 0)
|
|
break;
|
|
}
|
|
else
|
|
for (__i = 0;
|
|
__i < _S_categories_size + _S_extra_categories_size;
|
|
++__i)
|
|
{
|
|
__env = getenv(_S_categories[__i]);
|
|
if (__env && strcmp(__env, "") != 0
|
|
&& strcmp(__env, __res) != 0)
|
|
break;
|
|
}
|
|
|
|
// If one is found, build the complete string of
|
|
// the form LC_CTYPE=xxx;LC_NUMERIC=yyy; and so on...
|
|
if (__i < _S_categories_size + _S_extra_categories_size)
|
|
{
|
|
string __str;
|
|
for (size_t __j = 0; __j < __i; ++__j)
|
|
{
|
|
__str += _S_categories[__j];
|
|
__str += "=";
|
|
__str += __res;
|
|
__str += ";";
|
|
}
|
|
__str += _S_categories[__i];
|
|
__str += "=";
|
|
__str += __env;
|
|
__str += ";";
|
|
__i++;
|
|
for (; __i < _S_categories_size
|
|
+ _S_extra_categories_size; ++__i)
|
|
{
|
|
__env = getenv(_S_categories[__i]);
|
|
if (!__env || strcmp(__env, "") == 0)
|
|
{
|
|
__str += _S_categories[__i];
|
|
__str += '=';
|
|
__str += __res;
|
|
__str += ';';
|
|
}
|
|
else if (strcmp(__env, "C") == 0
|
|
|| strcmp(__env, "POSIX") == 0)
|
|
{
|
|
__str += _S_categories[__i];
|
|
__str += "=C;";
|
|
}
|
|
else
|
|
{
|
|
__str += _S_categories[__i];
|
|
__str += "=";
|
|
__str += __env;
|
|
__str += ";";
|
|
}
|
|
}
|
|
__str.erase(__str.end() - 1);
|
|
_M_impl = new _Impl(__str.c_str(), 1);
|
|
}
|
|
// ... otherwise either an additional instance of
|
|
// the "C" locale or LANG.
|
|
else if (strcmp(__res, "C") == 0)
|
|
(_M_impl = _S_classic)->_M_add_reference();
|
|
else
|
|
_M_impl = new _Impl(__res, 1);
|
|
free(__res);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
__throw_runtime_error("attempt to create locale from NULL name");
|
|
}
|
|
|
|
locale::locale(const locale& __base, const char* __s, category __cat)
|
|
{
|
|
// NB: There are complicated, yet more efficient ways to do
|
|
// this. Building up locales on a per-category way is tedious, so
|
|
// let's do it this way until people complain.
|
|
locale __add(__s);
|
|
_M_coalesce(__base, __add, __cat);
|
|
}
|
|
|
|
locale::locale(const locale& __base, const locale& __add, category __cat)
|
|
{ _M_coalesce(__base, __add, __cat); }
|
|
|
|
bool
|
|
locale::operator==(const locale& __rhs) const throw()
|
|
{
|
|
string __name = this->name();
|
|
return (_M_impl == __rhs._M_impl
|
|
|| (__name != "*" && __name == __rhs.name()));
|
|
}
|
|
|
|
const locale&
|
|
locale::operator=(const locale& __other) throw()
|
|
{
|
|
__other._M_impl->_M_add_reference();
|
|
_M_impl->_M_remove_reference();
|
|
_M_impl = __other._M_impl;
|
|
return *this;
|
|
}
|
|
|
|
locale
|
|
locale::global(const locale& __other)
|
|
{
|
|
// XXX MT
|
|
_S_initialize();
|
|
_Impl* __old = _S_global;
|
|
__other._M_impl->_M_add_reference();
|
|
_S_global = __other._M_impl;
|
|
if (_S_global->_M_check_same_name()
|
|
&& (strcmp(_S_global->_M_names[0], "*") != 0))
|
|
setlocale(LC_ALL, __other.name().c_str());
|
|
|
|
// Reference count sanity check: one reference removed for the
|
|
// subsition of __other locale, one added by return-by-value. Net
|
|
// difference: zero. When the returned locale object's destrutor
|
|
// is called, then the reference count is decremented and possibly
|
|
// destroyed.
|
|
return locale(__old);
|
|
}
|
|
|
|
string
|
|
locale::name() const
|
|
{
|
|
string __ret;
|
|
if (_M_impl->_M_check_same_name())
|
|
__ret = _M_impl->_M_names[0];
|
|
else
|
|
{
|
|
__ret += _S_categories[0];
|
|
__ret += "=";
|
|
__ret += _M_impl->_M_names[0];
|
|
for (size_t __i = 1;
|
|
__i < _S_categories_size + _S_extra_categories_size;
|
|
++__i)
|
|
{
|
|
__ret += ";";
|
|
__ret += _S_categories[__i];
|
|
__ret += "=";
|
|
__ret += _M_impl->_M_names[__i];
|
|
}
|
|
}
|
|
return __ret;
|
|
}
|
|
|
|
const locale&
|
|
locale::classic()
|
|
{
|
|
static _STL_mutex_lock __lock __STL_MUTEX_INITIALIZER;
|
|
_STL_auto_lock __auto(__lock);
|
|
|
|
if (!_S_classic)
|
|
{
|
|
try
|
|
{
|
|
// 26 Standard facets, 2 references.
|
|
// One reference for _M_classic, one for _M_global
|
|
_S_classic = new (&c_locale_impl) _Impl(0, 2, true);
|
|
_S_global = _S_classic;
|
|
new (&c_locale) locale(_S_classic);
|
|
}
|
|
catch(...)
|
|
{
|
|
// Just call destructor, so that locale_impl_c's memory is
|
|
// not deallocated via a call to delete.
|
|
if (_S_classic)
|
|
_S_classic->~_Impl();
|
|
_S_classic = _S_global = 0;
|
|
__throw_exception_again;
|
|
}
|
|
}
|
|
return c_locale;
|
|
}
|
|
|
|
locale::category
|
|
locale::_S_normalize_category(category __cat)
|
|
{
|
|
int __ret = 0;
|
|
if (__cat == none || (__cat & all) && !(__cat & ~all))
|
|
__ret = __cat;
|
|
else
|
|
{
|
|
// NB: May be a C-style "LC_ALL" category; convert.
|
|
switch (__cat)
|
|
{
|
|
case LC_COLLATE:
|
|
__ret = collate;
|
|
break;
|
|
case LC_CTYPE:
|
|
__ret = ctype;
|
|
break;
|
|
case LC_MONETARY:
|
|
__ret = monetary;
|
|
break;
|
|
case LC_NUMERIC:
|
|
__ret = numeric;
|
|
break;
|
|
case LC_TIME:
|
|
__ret = time;
|
|
break;
|
|
#ifdef _GLIBCPP_HAVE_LC_MESSAGES
|
|
case LC_MESSAGES:
|
|
__ret = messages;
|
|
break;
|
|
#endif
|
|
case LC_ALL:
|
|
__ret = all;
|
|
break;
|
|
default:
|
|
__throw_runtime_error("bad locale category");
|
|
}
|
|
}
|
|
return __ret;
|
|
}
|
|
|
|
__c_locale
|
|
locale::facet::_S_c_locale;
|
|
|
|
locale::facet::
|
|
~facet() { }
|
|
|
|
locale::facet::
|
|
facet(size_t __refs) throw() : _M_references(__refs ? 1 : 0)
|
|
{ }
|
|
|
|
void
|
|
locale::facet::
|
|
_M_add_reference() throw()
|
|
{ __atomic_add(&_M_references, 1); }
|
|
|
|
void
|
|
locale::facet::
|
|
_M_remove_reference() throw()
|
|
{
|
|
if (__exchange_and_add(&_M_references, -1) == 1)
|
|
{
|
|
try
|
|
{ delete this; }
|
|
catch (...)
|
|
{ }
|
|
}
|
|
}
|
|
|
|
locale::id::id()
|
|
{ }
|
|
|
|
// Definitions for static const data members of time_base
|
|
template<>
|
|
const char*
|
|
__timepunct<char>::_S_timezones[14] =
|
|
{
|
|
"GMT", "HST", "AKST", "PST", "MST", "CST", "EST", "AST", "NST", "CET",
|
|
"IST", "EET", "CST", "JST"
|
|
};
|
|
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template<>
|
|
const wchar_t*
|
|
__timepunct<wchar_t>::_S_timezones[14] =
|
|
{
|
|
L"GMT", L"HST", L"AKST", L"PST", L"MST", L"CST", L"EST", L"AST",
|
|
L"NST", L"CET", L"IST", L"EET", L"CST", L"JST"
|
|
};
|
|
#endif
|
|
|
|
// Definitions for static const data members of money_base
|
|
const money_base::pattern
|
|
money_base::_S_default_pattern = { {symbol, sign, none, value} };
|
|
|
|
const char __num_base::_S_atoms[] = "0123456789eEabcdfABCDF";
|
|
|
|
bool
|
|
__num_base::_S_format_float(const ios_base& __io, char* __fptr, char __mod,
|
|
streamsize __prec)
|
|
{
|
|
bool __incl_prec = false;
|
|
ios_base::fmtflags __flags = __io.flags();
|
|
*__fptr++ = '%';
|
|
// [22.2.2.2.2] Table 60
|
|
if (__flags & ios_base::showpos)
|
|
*__fptr++ = '+';
|
|
if (__flags & ios_base::showpoint)
|
|
*__fptr++ = '#';
|
|
// As per [22.2.2.2.2.11]
|
|
if (__flags & ios_base::fixed || __prec > 0)
|
|
{
|
|
*__fptr++ = '.';
|
|
*__fptr++ = '*';
|
|
__incl_prec = true;
|
|
}
|
|
if (__mod)
|
|
*__fptr++ = __mod;
|
|
ios_base::fmtflags __fltfield = __flags & ios_base::floatfield;
|
|
// [22.2.2.2.2] Table 58
|
|
if (__fltfield == ios_base::fixed)
|
|
*__fptr++ = 'f';
|
|
else if (__fltfield == ios_base::scientific)
|
|
*__fptr++ = (__flags & ios_base::uppercase) ? 'E' : 'e';
|
|
else
|
|
*__fptr++ = (__flags & ios_base::uppercase) ? 'G' : 'g';
|
|
*__fptr = '\0';
|
|
return __incl_prec;
|
|
}
|
|
|
|
void
|
|
__num_base::_S_format_int(const ios_base& __io, char* __fptr, char __mod,
|
|
char __modl)
|
|
{
|
|
ios_base::fmtflags __flags = __io.flags();
|
|
*__fptr++ = '%';
|
|
// [22.2.2.2.2] Table 60
|
|
if (__flags & ios_base::showpos)
|
|
*__fptr++ = '+';
|
|
if (__flags & ios_base::showbase)
|
|
*__fptr++ = '#';
|
|
*__fptr++ = 'l';
|
|
|
|
// For long long types.
|
|
if (__modl)
|
|
*__fptr++ = __modl;
|
|
|
|
ios_base::fmtflags __bsefield = __flags & ios_base::basefield;
|
|
if (__bsefield == ios_base::hex)
|
|
*__fptr++ = (__flags & ios_base::uppercase) ? 'X' : 'x';
|
|
else if (__bsefield == ios_base::oct)
|
|
*__fptr++ = 'o';
|
|
else
|
|
*__fptr++ = __mod;
|
|
*__fptr = '\0';
|
|
}
|
|
} // namespace std
|
|
|