mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-09 18:35:01 +08:00
bfa1e6b11b
2001-05-30 Benjamin Kosnik <bkoz@redat.com> * acconfig.h (_GLIBCPP_BUGGY_FLOAT_COMPLEX): Remove. (_GLIBCPP_BUGGY_COMPLEX): Remove. * config.h.in: Regenerate. * acinclude.m4 (GLIBCPP_CHECK_COMPLEX_MATH_COMPILER_SUPPORT): Remove. * aclocal.m4: Regenerate. * configure.in: Don't call it. * configure: Regenerate. libstdc++/2970 * src/complex_io.cc (operator<<(ostream&, const complex&): Fix. * testsuite/26_numerics/complex_inserters_extractors.cc (test01): New test. libstdc++/2985 * include/bits/std_complex.h: Include sstream. Put definitions for complex inserters and extractors here, and remove them from... * src/complex_io.cc: ...here. * include/bits/basic_ios.h (basic_ios::__numput_type): Add _Traits parameter. (basic_ios::__numget_type): Same. * include/bits/std_istream.h: Same. * include/bits/std_ostream.h: Same. * include/bits/sbuf_iter.h (ostreambuf_iterator): Fix typo in base class iterator template arguments. * src/locale-inst.cc: Add explicit has_facet instantiations. * include/bits/basic_ios.h (basic_ios::_M_get_fctype_ios): Remove. (_M_get_fnumput): Remove. (_M_get_fnumget): Remove. (basic_ios::_M_check_facet): New function. (basic_ios::_M_cache_facets): New function. * include/bits/basic_ios.tcc: Definition for _M_cache_facets. (basic_ios::imbue): Call _M_cache_facets. (basic_ios::init): Same. * include/bits/istream.tcc: Format, use _M_check_facet. * include/bits/ostream.tcc: Same. * include/bits/locale_facets.tcc (__output_float): Change signature, add _Traits. * testsuite/26_numerics/complex_inserters_extractors.cc (test02): New test. From-SVN: r42743
324 lines
10 KiB
C++
324 lines
10 KiB
C++
// Locale support -*- C++ -*-
|
|
|
|
// Copyright (C) 1999, 2000, 2001 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.
|
|
|
|
//
|
|
// ISO C++ 14882: 22.1 Locales
|
|
//
|
|
|
|
#include <bits/std_clocale.h>
|
|
#include <bits/std_cstring.h>
|
|
#include <bits/std_cassert.h>
|
|
#include <bits/std_limits.h>
|
|
#include <exception>
|
|
#include <bits/std_stdexcept.h>
|
|
#include <bits/std_locale.h>
|
|
#include <bits/locale_facets.tcc>
|
|
#include <bits/std_istream.h>
|
|
#include <bits/std_ostream.h>
|
|
|
|
namespace std
|
|
{
|
|
typedef ostreambuf_iterator<char, char_traits<char> > obuf_iterator;
|
|
typedef istreambuf_iterator<char, char_traits<char> > ibuf_iterator;
|
|
typedef ostreambuf_iterator<wchar_t, char_traits<wchar_t> > wobuf_iterator;
|
|
typedef istreambuf_iterator<wchar_t, char_traits<wchar_t> > wibuf_iterator;
|
|
|
|
// moneypunct, money_get, and money_put
|
|
template class moneypunct<char, false>;
|
|
template class moneypunct<char, true>;
|
|
template class moneypunct_byname<char, false>;
|
|
template class moneypunct_byname<char, true>;
|
|
template class money_get<char, obuf_iterator>;
|
|
template class money_put<char, obuf_iterator>;
|
|
template class money_get<char, ibuf_iterator>;
|
|
template class money_put<char, ibuf_iterator>;
|
|
template class _Format_cache<char>;
|
|
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class moneypunct<wchar_t, false>;
|
|
template class moneypunct<wchar_t, true>;
|
|
template class moneypunct_byname<wchar_t, false>;
|
|
template class moneypunct_byname<wchar_t, true>;
|
|
template class money_get<wchar_t, wobuf_iterator>;
|
|
template class money_put<wchar_t, wobuf_iterator>;
|
|
template class money_get<wchar_t, wibuf_iterator>;
|
|
template class money_put<wchar_t, wibuf_iterator>;
|
|
template class _Format_cache<wchar_t>;
|
|
#endif
|
|
|
|
// numpunct, numpunct_byname, num_get, and num_put
|
|
template class numpunct<char>;
|
|
template class numpunct_byname<char>;
|
|
template class num_get<char, ibuf_iterator>;
|
|
template class num_put<char, obuf_iterator>;
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class numpunct<wchar_t>;
|
|
template class numpunct_byname<wchar_t>;
|
|
template class num_get<wchar_t, wibuf_iterator>;
|
|
template class num_put<wchar_t, wobuf_iterator>;
|
|
#endif
|
|
|
|
// time_get and time_put
|
|
template class time_put<char, obuf_iterator>;
|
|
template class time_put_byname<char, obuf_iterator>;
|
|
template class time_get<char, ibuf_iterator>;
|
|
template class time_get_byname<char, ibuf_iterator>;
|
|
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class time_put<wchar_t, wobuf_iterator>;
|
|
template class time_put_byname<wchar_t, wobuf_iterator>;
|
|
template class time_get<wchar_t, wibuf_iterator>;
|
|
template class time_get_byname<wchar_t, wibuf_iterator>;
|
|
#endif
|
|
|
|
// messages
|
|
template class messages<char>;
|
|
template class messages_byname<char>;
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class messages<wchar_t>;
|
|
template class messages_byname<wchar_t>;
|
|
#endif
|
|
|
|
// ctype
|
|
template class __ctype_abstract_base<char>;
|
|
template class ctype_byname<char>;
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class __ctype_abstract_base<wchar_t>;
|
|
template class ctype_byname<wchar_t>;
|
|
#endif
|
|
|
|
// codecvt
|
|
template class __codecvt_abstract_base<char, char, mbstate_t>;
|
|
template class __codecvt_abstract_base<wchar_t, char, mbstate_t>;
|
|
template class codecvt_byname<char, char, mbstate_t>;
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class codecvt_byname<wchar_t, char, mbstate_t>;
|
|
#endif
|
|
|
|
// collate
|
|
template class collate<char>;
|
|
template class collate_byname<char>;
|
|
template class _Weekdaynames<char, int>;
|
|
template class _Monthnames<char, int>;
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template class collate<wchar_t>;
|
|
template class collate_byname<wchar_t>;
|
|
template class _Weekdaynames<wchar_t, int>;
|
|
template class _Monthnames<wchar_t, int>;
|
|
#endif
|
|
|
|
// use_facet
|
|
template
|
|
const num_put<char, obuf_iterator >&
|
|
use_facet<num_put<char, obuf_iterator> >(const locale&);
|
|
template
|
|
const num_get<char, ibuf_iterator >&
|
|
use_facet<num_get<char, ibuf_iterator> >(const locale&);
|
|
template
|
|
const codecvt<char, char, mbstate_t>&
|
|
use_facet<codecvt<char, char, mbstate_t> >(const locale&);
|
|
template
|
|
const numpunct<char>&
|
|
use_facet<numpunct<char> >(const locale&);
|
|
template
|
|
const collate<char>&
|
|
use_facet<collate<char> >(const locale&);
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template
|
|
const num_put<wchar_t, wobuf_iterator>&
|
|
use_facet<num_put<wchar_t, wobuf_iterator> >(const locale&);
|
|
template
|
|
const num_get<wchar_t, wibuf_iterator>&
|
|
use_facet<num_get<wchar_t, wibuf_iterator> >(const locale&);
|
|
template
|
|
const codecvt<wchar_t, char, mbstate_t>&
|
|
use_facet<codecvt<wchar_t, char, mbstate_t> >(locale const&);
|
|
template
|
|
const numpunct<wchar_t>&
|
|
use_facet<numpunct<wchar_t> >(const locale&);
|
|
template
|
|
const collate<wchar_t>&
|
|
use_facet<collate<wchar_t> >(const locale&);
|
|
#endif
|
|
|
|
// has_facet
|
|
template
|
|
bool
|
|
has_facet<numpunct<char> >(const locale&);
|
|
template
|
|
bool
|
|
has_facet<num_put<char> >(const locale&);
|
|
template
|
|
bool
|
|
has_facet<num_get<char> >(const locale&);
|
|
template
|
|
bool
|
|
has_facet<ctype<char> >(const locale&);
|
|
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template
|
|
bool
|
|
has_facet<numpunct<wchar_t> >(const locale&);
|
|
template
|
|
bool
|
|
has_facet<num_put<wchar_t> >(const locale&);
|
|
template
|
|
bool
|
|
has_facet<num_get<wchar_t> >(const locale&);
|
|
template
|
|
bool
|
|
has_facet<ctype<wchar_t> >(const locale&);
|
|
#endif
|
|
|
|
//
|
|
// iterator
|
|
//
|
|
typedef vector<locale::facet*> vec_pfacet;
|
|
template
|
|
void
|
|
vec_pfacet::
|
|
insert(vec_pfacet::iterator, vec_pfacet::size_type,
|
|
const vec_pfacet::value_type&);
|
|
template
|
|
void
|
|
vec_pfacet::
|
|
_M_fill_insert(vec_pfacet::iterator, vec_pfacet::size_type,
|
|
const vec_pfacet::value_type&);
|
|
|
|
|
|
typedef istreambuf_iterator<char, char_traits<char> > istreambuf_iter;
|
|
typedef ostreambuf_iterator<char, char_traits<char> > ostreambuf_iter;
|
|
|
|
|
|
template
|
|
istreambuf_iter
|
|
__match_parallel<istreambuf_iter, char>
|
|
(istreambuf_iter, istreambuf_iter, int, const string*, int*, int&, bool&);
|
|
|
|
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
typedef istreambuf_iterator<wchar_t,char_traits<wchar_t> > wistreambuf_iter;
|
|
typedef ostreambuf_iterator<wchar_t,char_traits<wchar_t> > wostreambuf_iter;
|
|
|
|
template
|
|
wistreambuf_iter
|
|
__match_parallel<wistreambuf_iter, wchar_t>
|
|
(wistreambuf_iter, wistreambuf_iter, int, const wstring*, int*, int&, bool&);
|
|
#endif
|
|
|
|
|
|
//
|
|
// locale
|
|
//
|
|
template
|
|
bool
|
|
locale::operator()(const string&, const string&) const;
|
|
|
|
template
|
|
ostreambuf_iter
|
|
__pad<char, ostreambuf_iter, output_iterator_tag>
|
|
(ostreambuf_iter, char, int, output_iterator_tag);
|
|
|
|
template
|
|
ostreambuf_iter
|
|
__pad_numeric<char, ostreambuf_iter>
|
|
(ostreambuf_iter, ios_base::fmtflags, char, int, char const*, char const*,
|
|
char const*);
|
|
|
|
template
|
|
char*
|
|
__group_digits<char>(char*, char, char const*, char const*,
|
|
char const*, char const*);
|
|
|
|
template
|
|
ostreambuf_iter
|
|
__output_integer<char, ostreambuf_iter, unsigned long>
|
|
(ostreambuf_iter, ios_base &, char, bool, unsigned long);
|
|
|
|
#ifdef _GLIBCPP_USE_LONG_LONG
|
|
template
|
|
ostreambuf_iter
|
|
__output_integer<char, ostreambuf_iter, unsigned long long>
|
|
(ostreambuf_iter, ios_base &, char, bool, unsigned long long);
|
|
#endif
|
|
|
|
#ifdef _GLIBCPP_USE_WCHAR_T
|
|
template
|
|
bool
|
|
locale::operator()(const wstring&, const wstring&) const;
|
|
|
|
typedef ostreambuf_iterator<wchar_t> wostreambuf_iter;
|
|
|
|
template
|
|
wostreambuf_iter
|
|
__pad<wchar_t, wostreambuf_iter, output_iterator_tag>
|
|
(wostreambuf_iter, wchar_t, int, output_iterator_tag);
|
|
|
|
template
|
|
wostreambuf_iter
|
|
__pad_numeric<wchar_t, wostreambuf_iter>
|
|
(wostreambuf_iter, ios_base::fmtflags, wchar_t __fill, int, wchar_t const*,
|
|
wchar_t const*, wchar_t const*);
|
|
|
|
template
|
|
wchar_t*
|
|
__group_digits<wchar_t>(wchar_t*, wchar_t, char const*, char const*,
|
|
wchar_t const*, wchar_t const*);
|
|
|
|
template
|
|
wostreambuf_iter
|
|
__output_integer<wchar_t, wostreambuf_iter, unsigned long>
|
|
(wostreambuf_iter, ios_base &, wchar_t, bool, unsigned long);
|
|
|
|
#ifdef _GLIBCPP_USE_LONG_LONG
|
|
template
|
|
wostreambuf_iter
|
|
__output_integer<wchar_t, wostreambuf_iter, unsigned long long>
|
|
(wostreambuf_iter, ios_base &, wchar_t, bool, unsigned long long);
|
|
#endif
|
|
#endif // _GLIBCPP_USE_WCHAR_T
|
|
|
|
template
|
|
locale::facet**
|
|
fill_n<locale::facet**, size_t, locale::facet*>
|
|
(locale::facet**, size_t, locale::facet* const&);
|
|
|
|
template
|
|
__normal_iterator<locale::facet**, vector<locale::facet*> >
|
|
fill_n(__normal_iterator<locale::facet**, vector<locale::facet*> >,
|
|
size_t, locale::facet* const&);
|
|
|
|
template
|
|
void
|
|
fill(__normal_iterator<locale::facet**, vector<locale::facet*> >,
|
|
__normal_iterator<locale::facet**, vector<locale::facet*> >,
|
|
locale::facet* const&);
|
|
} // namespace std
|
|
|