gcc/libstdc++-v3/include/bits
Benjamin Kosnik 0214010c60 Preliminary named locales.
2001-01-29  Benjamin Kosnik  <bkoz@redhat.com>

	Preliminary named locales.
	* acinclude.m4 (GLIBCPP_ENABLE_CLOCALE): New macro.
	* aclocal.m4: Regenerate.
	* configure.in: Use it.
	* configure: Regerate.
	* src/Makefile.am (sources): Add c++locale.cc.
	(build_headers): Add c++locale.h.
	* src/Makefile.in: Regenerate.
	* config/c_locale_gnu.h: New file.
	* config/c_locale_gnu.cc: New file. Non-inline member functions
	for named locales, gnu-specific.
	* config/c_locale_generic.h: New file.
	* config/c_locale_generic.cc: New file. Non-inline member
	functions for named locales, generic version.
	* docs/html/configopts.html: Add documentation on new options.

	* include/bits/locale_facets.h (class _Messages): Remove.
	(class _Moneypunct): Remove.
	* src/locale-inst.cc: Remove.

	* include/bits/locale_facets.h (class _Collate): Remove.
	* src/locale-inst.cc (std): Remove.
	* src/locale.cc: And here.

	* include/bits/localefwd.h (locale::_M_coalesce): New
	function. Correctly put together multi-name locales.
	(_Impl(const _Impl&, category, size_t)): Remove.

	* include/bits/localefwd.h (locale::_Impl): Remove _M_construct_*
	member functions.
	(_M_normalize_category_names): Remove.
	(_M_replace_categories): Fix.

	* src/localename.cc (locale::_Impl::_M_construct_collate): Remove.
	(locale::_Impl::_M_construct_ctype): Remove.
	(locale::_Impl::_M_construct_monetary): Remove.
	(locale::_Impl::_M_construct_numeric): Remove.
	(locale::_Impl::_M_construct_time): Remove.
	(locale::_Impl::_M_construct_messages): Remove.

	* include/bits/locale_facets.h (_Bad_use_facet): Remove.
	(_Use_facet_failure_handle): Remove.
	* src/locale.cc: Remove definitions.
	* src/locale-inst.cc: And here.

	* testsuite/22_locale/ctor_copy_dtor.cc (test01): Fixup. Add tests.

	* src/localename.cc (locale::facet::_S_create_c_locale): Properly
	create and error-check underlying locale object.
	(locale::facet::_S_destroy_c_locale): Add, take care of properly
	tearing down underlying locale object.
	* include/bits/localefwd.h (locale::facet): Declare.
	* testsuite/22_locale/members.cc: Don't test "fr_FR" locale for
	correctness, as glibc apparently has incorrect info in it. Test
	with it when it works again.....

	* include/bits/localefwd.h (locale::_Impl::__vec_string):
	Remove. Number of categories is fixed at six, so just simplify and
	make this an array of strings.
	(locale::_Impl::_M_has_name): Remove.
	(locale::_Impl::_M_name): Remove.
	(locale::_Impl::_M_category_names): Turns into...
	(locale::_Impl::_M_names): ...this.
	(locale::_Impl::_M_has_same_name()): New function.
	* src/localename.cc (locale::_Impl::~_Impl()): Remove here.
	(locale::_Impl::_Impl(size_t __refs, string __str)): Simplify
	signature.
	* src/locale.cc (locale::name()): Construct mangled name
	accurately reflecting combined locale categories.

	* src/locale.cc (locale::classic()): Don't initialize here.
	* src/localename.cc (locale::_Impl::_Impl(size_t __num, size_t
	__refs, bool __has_name, string __str): Do it here.

	* include/bits/localefwd.h: _S_categories_num to
	_S_num_categories. _S_facets_num to _S_num_facets.
	(locale:🆔:id()): Explicitly set _M_index to zero.
	* src/locale.cc: Same.

	* src/locale.cc: (locale::locale(const char*)): Construct named
	locales uniquely.

	* src/locale.cc: Remove numpunct_byname ctors.
	* testsuite/22_locale/numpunct_byname.cc: New file.
	* testsuite/22_locale/numpunct.cc: New file.

	* include/bits/localefwd.h (class locale): Change data members to
	protected, from private.
	(_Impl::_M_get_c_locale): Add member function.
	(locale::facet::_M_get_global_impl()): Add member function.
	* include/bits/locale_facets.h (numpunct::_M_init): Change to take
	a __c_locale pointer.
	(numpunct::numpunct( __c_locale*, size_t)): Add additonal ctor for
	named locales.
	* testsuite/22_locale/members.cc: New file, test name and combine.

	* include/bits/locale_facets.h (class numpunct): Remove class
	_Punct and _Numpunct. Rewrite class numpunct to be correct for
	named locales.
	* include/bits/localefwd.h (locale::_Imp::_M_c_locale): Add.
	* src/localename.cc (_Impl::~_Impl()): Call __frelocale.
	(_Imp::_Impl(size_t, size_t, bool, string)) Initialize _M_c_locale.
	* src/locale-inst.cc: Remove _Numpunct, _Punct instantiations.
	* testsuite/22_locale/numpunct_char_members.cc: New file.

From-SVN: r39347
2001-01-30 09:18:51 +00:00
..
basic_file.h basic_file.h (__basic_file): Don't use __c_wfile_type when _GLIBCPP_USE_WCHAR_T is not defined. 2000-11-12 03:27:10 +00:00
basic_ios.h
basic_ios.tcc [multiple changes] 2001-01-06 02:44:11 +00:00
basic_string.h basic_string.h (_S_find(const _CharT* __beg, const _CharT* __end, _CharT __c): Remove. 2001-01-12 21:24:15 +00:00
basic_string.tcc basic_string.h (_S_find(const _CharT* __beg, const _CharT* __end, _CharT __c): Remove. 2001-01-12 21:24:15 +00:00
c++config acinclude.m4 (GLIBCPP_ENABLD_CSTDIO): Add in default value. 2001-01-03 15:53:28 +00:00
char_traits.h basic_string.h (_S_find(const _CharT* __beg, const _CharT* __end, _CharT __c): Remove. 2001-01-12 21:24:15 +00:00
codecvt.h Attempt to make locale visible in gdb. 2000-12-22 11:03:33 +00:00
concept_checks.h
container_concepts.h
cpp_type_traits.h * include/bits/cpp_type_traits.h: Fix typos. Adjust formatting. 2000-11-10 17:48:15 +00:00
exception_support.h
fpos.h fpos.h (fpos:::fpos(streamoff __pos)): Explicitly initialize mbstate_t member, name offset data members *off, not pos. 2001-01-08 23:51:57 +00:00
fstream.tcc C++STYLE (classname): Add more existing and stylish patterns. 2001-01-16 07:55:26 +00:00
generic_shadow.h
gslice.h
gslice_array.h
indirect_array.h
ios_base.h ios_base.h (ios_base::failure): Tighten up throw specs. 2001-01-17 07:44:57 +00:00
istream.tcc C++STYLE (classname): Add more existing and stylish patterns. 2001-01-16 07:55:26 +00:00
limits_generic.h
locale_facets.h Preliminary named locales. 2001-01-30 09:18:51 +00:00
locale_facets.tcc Preliminary named locales. 2001-01-30 09:18:51 +00:00
localefwd.h Preliminary named locales. 2001-01-30 09:18:51 +00:00
mask_array.h
ostream.tcc
pthread_allocimpl.h Makefile.am (LIBSUPCXX_INCLUDES): Adjust. 2000-10-10 23:50:39 +00:00
sbuf_iter.h
sequence_concepts.h
slice.h
slice_array.h
sstream.tcc
std_algorithm.h
std_bitset.h Makefile.am (sources): Add bitset.cc 2000-11-29 01:09:09 +00:00
std_complex.h std_complex.h: Fix a typo. 2001-01-10 20:55:03 +00:00
std_deque.h
std_fstream.h
std_functional.h
std_iomanip.h
std_ios.h Makefile.am (LIBSUPCXX_INCLUDES): Adjust. 2000-10-10 23:50:39 +00:00
std_iosfwd.h
std_iostream.h Fixes for libstdc++/1576 2001-01-10 17:24:11 +00:00
std_istream.h
std_iterator.h std_iterator.h: Do not include stl_relops.h. 2001-01-25 15:35:10 +00:00
std_list.h
std_locale.h Attempt to make locale visible in gdb. 2000-12-22 11:03:33 +00:00
std_map.h
std_memory.h
std_numeric.h std_iterator.h: Do not include stl_relops.h. 2001-01-25 15:35:10 +00:00
std_ostream.h
std_queue.h
std_set.h
std_sstream.h
std_stack.h
std_stdexcept.h Makefile.am (LIBSUPCXX_INCLUDES): Adjust. 2000-10-10 23:50:39 +00:00
std_streambuf.h C++STYLE (classname): Add more existing and stylish patterns. 2001-01-16 07:55:26 +00:00
std_string.h std_cwctype.h: Include std_cwchar.h for wint_t. 2001-01-04 04:21:42 +00:00
std_utility.h
std_valarray.h std_valarray.h (valarray::valarray): Fix thinko. 2000-10-26 08:49:10 +00:00
std_vector.h
stl_algo.h
stl_algobase.h std_iterator.h: Do not include stl_relops.h. 2001-01-25 15:35:10 +00:00
stl_alloc.h Makefile.am (LIBSUPCXX_INCLUDES): Adjust. 2000-10-10 23:50:39 +00:00
stl_config.h acinclude.m4: Change C9X references to refer to C99. 2000-11-25 19:36:53 +00:00
stl_construct.h Makefile.am (LIBSUPCXX_INCLUDES): Adjust. 2000-10-10 23:50:39 +00:00
stl_deque.h
stl_function.h
stl_heap.h
stl_iterator.h
stl_iterator_base.h
stl_list.h
stl_map.h
stl_multimap.h
stl_multiset.h
stl_numeric.h
stl_pair.h stl_pair.h (make_pair): Add LWG solution. 2000-10-25 12:48:34 +00:00
stl_pthread_alloc.h
stl_queue.h
stl_range_errors.h
stl_raw_storage_iter.h
stl_relops.h std_iterator.h: Do not include stl_relops.h. 2001-01-25 15:35:10 +00:00
stl_set.h
stl_stack.h
stl_string_fwd.h
stl_tempbuf.h
stl_threads.h
stl_tree.h stl_tree.h: Overload operators == and != to be able to handle the case... 2000-11-17 22:58:19 +00:00
stl_uninitialized.h
stl_vector.h
streambuf.tcc C++STYLE (classname): Add more existing and stylish patterns. 2001-01-16 07:55:26 +00:00
type_traits.h
valarray_array.h Makefile.am (LIBSUPCXX_INCLUDES): Adjust. 2000-10-10 23:50:39 +00:00
valarray_array.tcc
valarray_meta.h