mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 12:00:11 -05:00
The following patch attempts to implement the C++26 P3378R2 - constexpr exception types paper. This is quite complicated, because most of these classes which should be constexpr-ized use solely or mostly out of line definitions in libstdc++, both for historical, code size and dual ABI reasons, so that one can throw these as exceptions between TUs with old vs. new (or vice versa) ABIs. For this reason, logic_error/runtime_error and classes derived from it have the old ABI std::string object inside of them and the exported APIs from libstdc++.so.6 ensure the right thing. Now, because new invoked during constant evaluation needs to be deleted during the same constant evaluation and can't leak into the constant expressions, I think we don't have to use COW strings under the hood (which aren't constexpr I guess because of reference counting/COW) and we can use something else, the patch uses heap allocated std::string object (where __cow_constexpr_string class has just a pointer to that). As I think we still want to hide the ugly details if !consteval in the library, the patch exports 8 __cow_string class symbols (6 existing which were previously just not exported and 2 new ones) and if !consteval calls those through extern "C" _Zmangled_name symbols. The functions are always_inline. And then logic_error etc. have for C++26 (precisely for __cpp_lib_constexpr_exceptions >= 202502L) constexpr definitions of cdtors/methods. This results in slightly larger code (a few insns at most) at runtime for C++26, e.g. instead of calling say some logic error cdtor/method with 2 arguments it calls some __cow_string one with 2 arguments but + 8 bytes pointer additions on both. The patch also removes the __throw_format_error forward declaration which apparently wasn't needed for anything as all __throw_format_error users were either in <format> or included <format> before the uses, reverts the https://gcc.gnu.org/pipermail/libstdc++/2025-July/062598.html patch and makes sure __throw_* functions (only those for exception types which the P3378R2 or P3068R5 papers made constexpr usable and there are actually constexpr/consteval uses of those) are constexpr for C++26 constexpr exceptions. The patch does that by splitting the bits/functexcept.h header: 1) bits/functexcept.h stays for the __throw_* functions which are (at least for now) never constexpr (the <ios>, <system_error>, <future> and <functional> std::exception derived classes) or are never used or never used in constexpr/consteval contexts (<exception>, <typeinfo> std::exception derived classes and std::range_error). 2) bits/new_{throw,except}.h for __throw_bad_alloc/__throw_bad_array_new_length and std::bad_alloc/std::bad_array_new_length (where <new> includes <bits/new_except.h> and <bits/new_throw.h> as well for the C++26 constexpr exceptions case) 3) for the most complicated <stdexcept> stuff, one header addition to bits/stdexcept.h one header for the __throw_logic_error etc. forward declarations, one header for the __throw_logic_error etc. definitions and one header without header guards which will depending on __glibcxx_exc_in_string include one or the other because <string> vs. <string_view> vs. <stdexcept> have heavy interdependencies 2025-12-11 Jakub Jelinek <jakub@redhat.com> PR libstdc++/121114 libstdc++-v3/ * include/bits/version.def: Implement C++26 P3378R2 - constexpr exception types. (constexpr_exceptions): Change value from 1 to 202502, remove no_stdname and TODO comments. * include/bits/version.h: Regenerate. * src/c++11/cow-stdexcept.cc (__cow_string(const char*)): New ctor. (__cow_string::c_str()): New method. * config/abi/pre/gnu.ver (GLIBCXX_3.4.35): Export 8 __cow_string symbols. * include/bits/new_except.h: New file. * include/bits/new_throw.h: New file. * include/bits/stdexcept_throw.h: New file. * include/bits/stdexcept_throwdef.h: New file. * include/bits/stdexcept_throwfwd.h: New file. * include/std/stdexcept: Include bits/stdexcept_except.h and move everything after <string> include except for std::range_error into include/bits/stdexcept_except.h. (std::range_error): If __cpp_lib_constexpr_exceptions >= 202502L make all cdtors and methods constexpr. * include/bits/stdexcept_except.h: New file. * include/std/optional (__glibcxx_want_constexpr_exceptions): Define before including bits/version.h. (bad_optional_access::what): Make constexpr for __cpp_lib_constexpr_exceptions >= 202502L. (__throw_bad_optional_access): Likewise. * include/std/expected (__glibcxx_want_constexpr_exceptions): Define before including bits/version.h. (bad_expected_access): Make cdtors and all methods constexpr for __cpp_lib_constexpr_exceptions >= 202502L. * include/std/format (__glibcxx_want_constexpr_exceptions): Define before including bits/version.h. (_GLIBCXX_CONSTEXPR_FORMAT_ERROR): Define and undef later. (format_error): Use _GLIBCXX_CONSTEXPR_FORMAT_ERROR on ctors. * include/std/variant (__glibcxx_want_constexpr_exceptions): Define before including bits/version.h. (_GLIBCXX_CONSTEXPR_BAD_VARIANT_ACCESS): Define and undef later. (bad_variant_access): Use it on ctors and what() method. (__throw_bad_variant_access): Use it here too. * testsuite/18_support/exception/version.cc: Adjust expected __cpp_lib_constexpr_exceptions value. * testsuite/19_diagnostics/runtime_error/constexpr.cc: New test. * testsuite/19_diagnostics/headers/stdexcept/version.cc: New test. * testsuite/19_diagnostics/logic_error/constexpr.cc: New test. * testsuite/20_util/expected/observers.cc (test_value_throw): Change return type to bool from void, return true at the end, add test to dereference what() first character. Make it constexpr for __cpp_lib_constexpr_exceptions >= 202502L and add static_assert. * testsuite/20_util/expected/version.cc: Add tests for __cpp_lib_constexpr_exceptions value. * testsuite/20_util/variant/constexpr.cc: For __cpp_lib_constexpr_exceptions >= 202502L include <string>. (test_get): New function if __cpp_lib_constexpr_exceptions >= 202502L, assert calling it is true. * testsuite/20_util/variant/version.cc: Add tests for __cpp_lib_constexpr_exceptions value. * testsuite/20_util/optional/constexpr/observers/3.cc: Include testsuite_hooks.h. (eat, test01): New functions. Assert test01() is true. * testsuite/20_util/optional/version.cc: Add tests for __cpp_lib_constexpr_exceptions value. * include/std/future: Add #include <bits/functexcept.h>. * include/std/shared_mutex: Include <bits/new_throw.h>. * include/std/flat_map: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/std/syncstream: Remove <bits/functexcept.h> include. * include/std/flat_set: Likewise. * include/std/bitset: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/std/string_view: Don't include <bits/functexcept.h>, include <bits/stdexcept_throw.h> early if __glibcxx_exc_in_string is not defined and include <bits/stdexcept_throw.h> at the end of the header again if __glibcxx_exc_in_string is 2 and C++26 constexpr exceptions are enabled. (__glibcxx_exc_in_string): Define if __glibcxx_exc_in_string wasn't defined before including <bits/stdexcept_throw.h>. * include/std/array: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/std/inplace_vector: Likewise. * include/std/string: Include <bits/stdexcept_except.h> and <bits/stdexcept_throw.h> after bits/basic_string.tcc include if C++26 constexpr exceptions are enabled and include <bits/stdexcept_throw.h> instead of <bits/functexcept.h> early. (__glibcxx_exc_in_string): Define early to 1, undefine at the end. * include/std/deque: Include <bits/stdexcept_throw.h>. * include/bits/new_allocator.h: Include <bits/new_throw.h> instead of <bits/functexcept.h>. * include/bits/stl_algobase.h: Remove <bits/functexcept.h> include. * include/bits/stl_vector.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/bits/memory_resource.h: Include <bits/new_throw.h> instead of <bits/functexcept.h>. * include/bits/functexcept.h: Guard everything after includes with #if _GLIBCXX_HOSTED. (__throw_bad_alloc, __throw_bad_array_new_length, __throw_logic_error, __throw_domain_error, __throw_invalid_argument, __throw_length_error, __throw_out_of_range, __throw_out_of_range_fmt, __throw_runtime_error, __throw_overflow_error, __throw_underflow_error): Move declarations to other headers - <bits/new_throw.h> and <bits/stdexcept_throwfwd.h>. * include/bits/stl_map.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/bits/hashtable_policy.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/bits/formatfwd.h (std::__throw_format_error): Remove declaration. * include/bits/specfun.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/bits/basic_ios.h: Include <bits/functexcept.h>. * include/bits/locale_classes.h: Likewise. * include/tr1/cmath: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/tr1/memory: Remove <bits/functexcept.h> include. * include/tr1/array: Include <bits/stdexcept_throw.h>. * include/ext/vstring_util.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/ext/bitmap_allocator.h: Include <bits/new_throw.h> instead of <bits/functexcept.h>. * include/ext/mt_allocator.h: Likewise. * include/ext/malloc_allocator.h: Likewise. * include/ext/debug_allocator.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/ext/concurrence.h: Include <bits/exception_defines.h> instead of <bits/functexcept.h>. * include/ext/throw_allocator.h: Include <bits/new_throw.h> and <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/ext/string_conversions.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/ext/pool_allocator.h: Include <bits/new_throw.h> instead of <bits/functexcept.h>. * include/ext/ropeimpl.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * include/tr2/dynamic_bitset: Likewise. * include/experimental/optional: Include <bits/exception_defines.h> instead of <bits/functexcept.h>. * include/Makefile.am (bits_freestanding): Add ${bits_srcdir}/{new,stdexcept}_{except,throw}.h and ${bits_srcdir}/stdexcept_throw{fwd,def}.h. * include/Makefile.in: Regenerate. * src/c++17/floating_from_chars.cc: Remove <bits/functexcept.h> include. * src/c++11/regex.cc: Likewise. * src/c++11/functexcept.cc: Likewise. * src/c++11/snprintf_lite.cc: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * src/c++11/thread.cc: Include <bits/functexcept.h>. * testsuite/util/testsuite_hooks.h: Include <bits/stdexcept_throw.h> instead of <bits/functexcept.h>. * testsuite/util/io/verified_cmd_line_input.cc: Include <bits/exception_defines.h> instead of <bits/functexcept.h>. * testsuite/20_util/allocator/105975.cc: Expect different diagnostics for C++26. * testsuite/23_containers/inplace_vector/access/capacity.cc: Remove #error, guard if consteval { return; } with #ifndef __cpp_lib_constexpr_exceptions. * testsuite/23_containers/inplace_vector/access/elem.cc: Likewise. * testsuite/23_containers/inplace_vector/cons/1.cc: Likewise. * testsuite/23_containers/inplace_vector/cons/from_range.cc: Likewise. * testsuite/23_containers/inplace_vector/modifiers/single_insert.cc: Likewise. * testsuite/23_containers/inplace_vector/modifiers/assign.cc: Likewise. * testsuite/23_containers/inplace_vector/modifiers/multi_insert.cc: Likewise. * libsupc++/new: Include <bits/new_except.h>. (std::bad_alloc, std::bad_array_new_length): Move defintion to <bits/new_except.h>. libgomp/ * omp.h.in: Include <bits/new_throw.h> instead of <bits/functexcept.h>. gcc/testsuite/ * g++.dg/tree-ssa/pr110819.C: Guard scan-tree-dump-not delete on c++23_down and add comment explaining why C++26 fails that. * g++.dg/tree-ssa/pr96945.C: Likewise. * g++.dg/tree-ssa/pr109442.C: Likewise. * g++.dg/tree-ssa/pr116868.C: Likewise. * g++.dg/tree-ssa/pr58483.C: Likewise.
535 lines
16 KiB
C++
535 lines
16 KiB
C++
// Iostreams base classes -*- C++ -*-
|
|
|
|
// Copyright (C) 1997-2025 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 3, 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.
|
|
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
// 3.1, as published by the Free Software Foundation.
|
|
|
|
// You should have received a copy of the GNU General Public License and
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
/** @file bits/basic_ios.h
|
|
* This is an internal header file, included by other library headers.
|
|
* Do not attempt to use it directly. @headername{ios}
|
|
*/
|
|
|
|
#ifndef _BASIC_IOS_H
|
|
#define _BASIC_IOS_H 1
|
|
|
|
#ifdef _GLIBCXX_SYSHDR
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#include <bits/functexcept.h>
|
|
#include <bits/localefwd.h>
|
|
#include <bits/locale_classes.h>
|
|
#include <bits/locale_facets.h>
|
|
#include <bits/streambuf_iterator.h>
|
|
#include <bits/move.h>
|
|
|
|
namespace std _GLIBCXX_VISIBILITY(default)
|
|
{
|
|
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|
|
|
|
template<typename _Facet>
|
|
inline const _Facet&
|
|
__check_facet(const _Facet* __f)
|
|
{
|
|
if (!__f)
|
|
__throw_bad_cast();
|
|
return *__f;
|
|
}
|
|
|
|
/**
|
|
* @brief Template class basic_ios, virtual base class for all
|
|
* stream classes.
|
|
* @ingroup io
|
|
*
|
|
* @tparam _CharT Type of character stream.
|
|
* @tparam _Traits Traits for character type, defaults to
|
|
* char_traits<_CharT>.
|
|
*
|
|
* Most of the member functions called dispatched on stream objects
|
|
* (e.g., @c std::cout.foo(bar);) are consolidated in this class.
|
|
*/
|
|
template<typename _CharT, typename _Traits>
|
|
class basic_ios : public ios_base
|
|
{
|
|
#if __cplusplus >= 202002L
|
|
static_assert(is_same_v<_CharT, typename _Traits::char_type>);
|
|
#endif
|
|
|
|
public:
|
|
///@{
|
|
/**
|
|
* These are standard types. They permit a standardized way of
|
|
* referring to names of (or names dependent on) the template
|
|
* parameters, which are specific to the implementation.
|
|
*/
|
|
typedef _CharT char_type;
|
|
typedef typename _Traits::int_type int_type;
|
|
typedef typename _Traits::pos_type pos_type;
|
|
typedef typename _Traits::off_type off_type;
|
|
typedef _Traits traits_type;
|
|
///@}
|
|
|
|
///@{
|
|
/**
|
|
* These are non-standard types.
|
|
*/
|
|
typedef ctype<_CharT> __ctype_type;
|
|
typedef num_put<_CharT, ostreambuf_iterator<_CharT, _Traits> >
|
|
__num_put_type;
|
|
typedef num_get<_CharT, istreambuf_iterator<_CharT, _Traits> >
|
|
__num_get_type;
|
|
///@}
|
|
|
|
// Data members:
|
|
protected:
|
|
basic_ostream<_CharT, _Traits>* _M_tie;
|
|
mutable char_type _M_fill;
|
|
mutable bool _M_fill_init;
|
|
basic_streambuf<_CharT, _Traits>* _M_streambuf;
|
|
|
|
// Cached use_facet<ctype>, which is based on the current locale info.
|
|
const __ctype_type* _M_ctype;
|
|
// For ostream.
|
|
const __num_put_type* _M_num_put;
|
|
// For istream.
|
|
const __num_get_type* _M_num_get;
|
|
|
|
public:
|
|
///@{
|
|
/**
|
|
* @brief The quick-and-easy status check.
|
|
*
|
|
* This allows you to write constructs such as
|
|
* <code>if (!a_stream) ...</code> and <code>while (a_stream) ...</code>
|
|
*/
|
|
#if __cplusplus >= 201103L
|
|
_GLIBCXX_NODISCARD
|
|
explicit operator bool() const
|
|
{ return !this->fail(); }
|
|
#else
|
|
operator void*() const
|
|
{ return this->fail() ? 0 : const_cast<basic_ios*>(this); }
|
|
#endif
|
|
|
|
_GLIBCXX_NODISCARD
|
|
bool
|
|
operator!() const
|
|
{ return this->fail(); }
|
|
///@}
|
|
|
|
/**
|
|
* @brief Returns the error state of the stream buffer.
|
|
* @return A bit pattern (well, isn't everything?)
|
|
*
|
|
* See std::ios_base::iostate for the possible bit values. Most
|
|
* users will call one of the interpreting wrappers, e.g., good().
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
iostate
|
|
rdstate() const
|
|
{ return _M_streambuf_state; }
|
|
|
|
/**
|
|
* @brief [Re]sets the error state.
|
|
* @param __state The new state flag(s) to set.
|
|
*
|
|
* See std::ios_base::iostate for the possible bit values. Most
|
|
* users will not need to pass an argument.
|
|
*/
|
|
void
|
|
clear(iostate __state = goodbit);
|
|
|
|
/**
|
|
* @brief Sets additional flags in the error state.
|
|
* @param __state The additional state flag(s) to set.
|
|
*
|
|
* See std::ios_base::iostate for the possible bit values.
|
|
*/
|
|
void
|
|
setstate(iostate __state)
|
|
{ this->clear(this->rdstate() | __state); }
|
|
|
|
// Flips the internal state on for the proper state bits, then
|
|
// rethrows the propagated exception if bit also set in
|
|
// exceptions(). Must only be called within a catch handler.
|
|
void
|
|
_M_setstate(iostate __state)
|
|
{
|
|
// 27.6.1.2.1 Common requirements.
|
|
// Turn this on without causing an ios::failure to be thrown.
|
|
_M_streambuf_state |= __state;
|
|
if (this->exceptions() & __state)
|
|
{ __throw_exception_again; }
|
|
}
|
|
|
|
/**
|
|
* @brief Fast error checking.
|
|
* @return True if no error flags are set.
|
|
*
|
|
* A wrapper around rdstate.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
bool
|
|
good() const
|
|
{ return this->rdstate() == 0; }
|
|
|
|
/**
|
|
* @brief Fast error checking.
|
|
* @return True if the eofbit is set.
|
|
*
|
|
* Note that other iostate flags may also be set.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
bool
|
|
eof() const
|
|
{ return (this->rdstate() & eofbit) != 0; }
|
|
|
|
/**
|
|
* @brief Fast error checking.
|
|
* @return True if either the badbit or the failbit is set.
|
|
*
|
|
* Checking the badbit in fail() is historical practice.
|
|
* Note that other iostate flags may also be set.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
bool
|
|
fail() const
|
|
{ return (this->rdstate() & (badbit | failbit)) != 0; }
|
|
|
|
/**
|
|
* @brief Fast error checking.
|
|
* @return True if the badbit is set.
|
|
*
|
|
* Note that other iostate flags may also be set.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
bool
|
|
bad() const
|
|
{ return (this->rdstate() & badbit) != 0; }
|
|
|
|
/**
|
|
* @brief Throwing exceptions on errors.
|
|
* @return The current exceptions mask.
|
|
*
|
|
* This changes nothing in the stream. See the one-argument version
|
|
* of exceptions(iostate) for the meaning of the return value.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
iostate
|
|
exceptions() const
|
|
{ return _M_exception; }
|
|
|
|
/**
|
|
* @brief Throwing exceptions on errors.
|
|
* @param __except The new exceptions mask.
|
|
*
|
|
* By default, error flags are set silently. You can set an
|
|
* exceptions mask for each stream; if a bit in the mask becomes set
|
|
* in the error flags, then an exception of type
|
|
* std::ios_base::failure is thrown.
|
|
*
|
|
* If the error flag is already set when the exceptions mask is
|
|
* added, the exception is immediately thrown. Try running the
|
|
* following under GCC 3.1 or later:
|
|
* @code
|
|
* #include <iostream>
|
|
* #include <fstream>
|
|
* #include <exception>
|
|
*
|
|
* int main()
|
|
* {
|
|
* std::set_terminate (__gnu_cxx::__verbose_terminate_handler);
|
|
*
|
|
* std::ifstream f ("/etc/motd");
|
|
*
|
|
* std::cerr << "Setting badbit\n";
|
|
* f.setstate (std::ios_base::badbit);
|
|
*
|
|
* std::cerr << "Setting exception mask\n";
|
|
* f.exceptions (std::ios_base::badbit);
|
|
* }
|
|
* @endcode
|
|
*/
|
|
void
|
|
exceptions(iostate __except)
|
|
{
|
|
_M_exception = __except;
|
|
this->clear(_M_streambuf_state);
|
|
}
|
|
|
|
// Constructor/destructor:
|
|
/**
|
|
* @brief Constructor performs initialization.
|
|
*
|
|
* The parameter is passed by derived streams.
|
|
*/
|
|
explicit
|
|
basic_ios(basic_streambuf<_CharT, _Traits>* __sb)
|
|
: ios_base(), _M_tie(0), _M_fill(), _M_fill_init(false), _M_streambuf(0),
|
|
_M_ctype(0), _M_num_put(0), _M_num_get(0)
|
|
{ this->init(__sb); }
|
|
|
|
/**
|
|
* @brief Empty.
|
|
*
|
|
* The destructor does nothing. More specifically, it does not
|
|
* destroy the streambuf held by rdbuf().
|
|
*/
|
|
virtual
|
|
~basic_ios() { }
|
|
|
|
// Members:
|
|
/**
|
|
* @brief Fetches the current @e tied stream.
|
|
* @return A pointer to the tied stream, or NULL if the stream is
|
|
* not tied.
|
|
*
|
|
* A stream may be @e tied (or synchronized) to a second output
|
|
* stream. When this stream performs any I/O, the tied stream is
|
|
* first flushed. For example, @c std::cin is tied to @c std::cout.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
basic_ostream<_CharT, _Traits>*
|
|
tie() const
|
|
{ return _M_tie; }
|
|
|
|
/**
|
|
* @brief Ties this stream to an output stream.
|
|
* @param __tiestr The output stream.
|
|
* @return The previously tied output stream, or NULL if the stream
|
|
* was not tied.
|
|
*
|
|
* This sets up a new tie; see tie() for more.
|
|
*/
|
|
basic_ostream<_CharT, _Traits>*
|
|
tie(basic_ostream<_CharT, _Traits>* __tiestr)
|
|
{
|
|
basic_ostream<_CharT, _Traits>* __old = _M_tie;
|
|
_M_tie = __tiestr;
|
|
return __old;
|
|
}
|
|
|
|
/**
|
|
* @brief Accessing the underlying buffer.
|
|
* @return The current stream buffer.
|
|
*
|
|
* This does not change the state of the stream.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
basic_streambuf<_CharT, _Traits>*
|
|
rdbuf() const
|
|
{ return _M_streambuf; }
|
|
|
|
/**
|
|
* @brief Changing the underlying buffer.
|
|
* @param __sb The new stream buffer.
|
|
* @return The previous stream buffer.
|
|
*
|
|
* Associates a new buffer with the current stream, and clears the
|
|
* error state.
|
|
*
|
|
* Due to historical accidents which the LWG refuses to correct, the
|
|
* I/O library suffers from a design error: this function is hidden
|
|
* in derived classes by overrides of the zero-argument @c rdbuf(),
|
|
* which is non-virtual for hysterical raisins. As a result, you
|
|
* must use explicit qualifications to access this function via any
|
|
* derived class. For example:
|
|
*
|
|
* @code
|
|
* std::fstream foo; // or some other derived type
|
|
* std::streambuf* p = .....;
|
|
*
|
|
* foo.ios::rdbuf(p); // ios == basic_ios<char>
|
|
* @endcode
|
|
*/
|
|
basic_streambuf<_CharT, _Traits>*
|
|
rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
|
|
|
|
/**
|
|
* @brief Copies fields of __rhs into this.
|
|
* @param __rhs The source values for the copies.
|
|
* @return Reference to this object.
|
|
*
|
|
* All fields of __rhs are copied into this object except that rdbuf()
|
|
* and rdstate() remain unchanged. All values in the pword and iword
|
|
* arrays are copied. Before copying, each callback is invoked with
|
|
* erase_event. After copying, each (new) callback is invoked with
|
|
* copyfmt_event. The final step is to copy exceptions().
|
|
*/
|
|
basic_ios&
|
|
copyfmt(const basic_ios& __rhs);
|
|
|
|
/**
|
|
* @brief Retrieves the @a empty character.
|
|
* @return The current fill character.
|
|
*
|
|
* It defaults to a space (' ') in the current locale.
|
|
*/
|
|
_GLIBCXX_NODISCARD
|
|
char_type
|
|
fill() const
|
|
{
|
|
if (__builtin_expect(!_M_fill_init, false))
|
|
return this->widen(' ');
|
|
return _M_fill;
|
|
}
|
|
|
|
/**
|
|
* @brief Sets a new @a empty character.
|
|
* @param __ch The new character.
|
|
* @return The previous fill character.
|
|
*
|
|
* The fill character is used to fill out space when P+ characters
|
|
* have been requested (e.g., via setw), Q characters are actually
|
|
* used, and Q<P. It defaults to a space (' ') in the current locale.
|
|
*/
|
|
char_type
|
|
fill(char_type __ch)
|
|
{
|
|
char_type __old = _M_fill;
|
|
_M_fill = __ch;
|
|
_M_fill_init = true;
|
|
return __old;
|
|
}
|
|
|
|
// Locales:
|
|
/**
|
|
* @brief Moves to a new locale.
|
|
* @param __loc The new locale.
|
|
* @return The previous locale.
|
|
*
|
|
* Calls @c ios_base::imbue(loc), and if a stream buffer is associated
|
|
* with this stream, calls that buffer's @c pubimbue(loc).
|
|
*
|
|
* Additional l10n notes are at
|
|
* https://gcc.gnu.org/onlinedocs/libstdc++/manual/localization.html
|
|
*/
|
|
locale
|
|
imbue(const locale& __loc);
|
|
|
|
/**
|
|
* @brief Squeezes characters.
|
|
* @param __c The character to narrow.
|
|
* @param __dfault The character to narrow.
|
|
* @return The narrowed character.
|
|
*
|
|
* Maps a character of @c char_type to a character of @c char,
|
|
* if possible.
|
|
*
|
|
* Returns the result of
|
|
* @code
|
|
* std::use_facet<ctype<char_type> >(getloc()).narrow(c,dfault)
|
|
* @endcode
|
|
*
|
|
* Additional l10n notes are at
|
|
* https://gcc.gnu.org/onlinedocs/libstdc++/manual/localization.html
|
|
*/
|
|
char
|
|
narrow(char_type __c, char __dfault) const
|
|
{ return __check_facet(_M_ctype).narrow(__c, __dfault); }
|
|
|
|
/**
|
|
* @brief Widens characters.
|
|
* @param __c The character to widen.
|
|
* @return The widened character.
|
|
*
|
|
* Maps a character of @c char to a character of @c char_type.
|
|
*
|
|
* Returns the result of
|
|
* @code
|
|
* std::use_facet<ctype<char_type> >(getloc()).widen(c)
|
|
* @endcode
|
|
*
|
|
* Additional l10n notes are at
|
|
* https://gcc.gnu.org/onlinedocs/libstdc++/manual/localization.html
|
|
*/
|
|
char_type
|
|
widen(char __c) const
|
|
{ return __check_facet(_M_ctype).widen(__c); }
|
|
|
|
protected:
|
|
// 27.4.5.1 basic_ios constructors
|
|
/**
|
|
* @brief Empty.
|
|
*
|
|
* The default constructor does nothing and is not normally
|
|
* accessible to users.
|
|
*/
|
|
basic_ios()
|
|
: ios_base(), _M_tie(0), _M_fill(char_type()), _M_fill_init(false),
|
|
_M_streambuf(0), _M_ctype(0), _M_num_put(0), _M_num_get(0)
|
|
{ }
|
|
|
|
/**
|
|
* @brief All setup is performed here.
|
|
*
|
|
* This is called from the public constructor. It is not virtual and
|
|
* cannot be redefined.
|
|
*/
|
|
void
|
|
init(basic_streambuf<_CharT, _Traits>* __sb);
|
|
|
|
#if __cplusplus >= 201103L
|
|
basic_ios(const basic_ios&) = delete;
|
|
basic_ios& operator=(const basic_ios&) = delete;
|
|
|
|
void
|
|
move(basic_ios& __rhs)
|
|
{
|
|
ios_base::_M_move(__rhs);
|
|
_M_cache_locale(_M_ios_locale);
|
|
this->tie(__rhs.tie(nullptr));
|
|
_M_fill = __rhs._M_fill;
|
|
_M_fill_init = __rhs._M_fill_init;
|
|
_M_streambuf = nullptr;
|
|
}
|
|
|
|
void
|
|
move(basic_ios&& __rhs)
|
|
{ this->move(__rhs); }
|
|
|
|
void
|
|
swap(basic_ios& __rhs) noexcept
|
|
{
|
|
ios_base::_M_swap(__rhs);
|
|
_M_cache_locale(_M_ios_locale);
|
|
__rhs._M_cache_locale(__rhs._M_ios_locale);
|
|
std::swap(_M_tie, __rhs._M_tie);
|
|
std::swap(_M_fill, __rhs._M_fill);
|
|
std::swap(_M_fill_init, __rhs._M_fill_init);
|
|
}
|
|
|
|
void
|
|
set_rdbuf(basic_streambuf<_CharT, _Traits>* __sb)
|
|
{ _M_streambuf = __sb; }
|
|
#endif
|
|
|
|
void
|
|
_M_cache_locale(const locale& __loc);
|
|
};
|
|
|
|
_GLIBCXX_END_NAMESPACE_VERSION
|
|
} // namespace
|
|
|
|
#include <bits/basic_ios.tcc>
|
|
|
|
#endif /* _BASIC_IOS_H */
|