Go to the documentation of this file.
31 #define _BASIC_IOS_H 1
33 #ifdef _GLIBCXX_SYSHDR
34 #pragma GCC system_header
44 namespace std _GLIBCXX_VISIBILITY(default)
46 _GLIBCXX_BEGIN_NAMESPACE_VERSION
48 template<
typename _Facet>
50 __check_facet(
const _Facet* __f)
69 template<
typename _CharT,
typename _Traits>
70 class basic_ios :
public ios_base
72 #if __cplusplus >= 202002L
73 static_assert(is_same_v<_CharT, typename _Traits::char_type>);
105 mutable bool _M_fill_init;
123 #if __cplusplus >= 201103L
125 explicit operator bool()
const
126 {
return !this->
fail(); }
128 operator void*()
const
135 {
return this->
fail(); }
148 {
return _M_streambuf_state; }
158 clear(iostate __state = goodbit);
174 _M_setstate(iostate __state)
178 _M_streambuf_state |= __state;
180 { __throw_exception_again; }
192 {
return this->
rdstate() == 0; }
203 {
return (this->
rdstate() & eofbit) != 0; }
215 {
return (this->
rdstate() & (badbit | failbit)) != 0; }
226 {
return (this->
rdstate() & badbit) != 0; }
238 {
return _M_exception; }
274 _M_exception = __except;
275 this->
clear(_M_streambuf_state);
286 :
ios_base(), _M_tie(0), _M_fill(), _M_fill_init(false), _M_streambuf(0),
287 _M_ctype(0), _M_num_put(0), _M_num_get(0)
288 { this->
init(__sb); }
339 {
return _M_streambuf; }
390 if (__builtin_expect(!_M_fill_init,
false))
391 return this->
widen(
' ');
447 {
return __check_facet(_M_ctype).narrow(__c, __dfault); }
466 {
return __check_facet(_M_ctype).widen(__c); }
478 _M_streambuf(0), _M_ctype(0), _M_num_put(0), _M_num_get(0)
490 #if __cplusplus >= 201103L
497 ios_base::_M_move(__rhs);
498 _M_cache_locale(_M_ios_locale);
499 this->
tie(__rhs.tie(
nullptr));
500 _M_fill = __rhs._M_fill;
501 _M_fill_init = __rhs._M_fill_init;
502 _M_streambuf =
nullptr;
507 { this->move(__rhs); }
512 ios_base::_M_swap(__rhs);
513 _M_cache_locale(_M_ios_locale);
514 __rhs._M_cache_locale(__rhs._M_ios_locale);
515 std::swap(_M_tie, __rhs._M_tie);
516 std::swap(_M_fill, __rhs._M_fill);
517 std::swap(_M_fill_init, __rhs._M_fill_init);
521 set_rdbuf(basic_streambuf<_CharT, _Traits>* __sb)
522 { _M_streambuf = __sb; }
526 _M_cache_locale(
const locale& __loc);
529 _GLIBCXX_END_NAMESPACE_VERSION
_Traits::off_type off_type
Template class basic_ostream.
basic_ios & copyfmt(const basic_ios &__rhs)
Copies fields of __rhs into this.
Primary class template num_get.
void clear(iostate __state=goodbit)
[Re]sets the error state.
basic_streambuf< _CharT, _Traits > * rdbuf() const
Accessing the underlying buffer.
Container class for localization functionality.
iostate exceptions() const
Throwing exceptions on errors.
num_get< _CharT, istreambuf_iterator< _CharT, _Traits > > __num_get_type
Primary class template num_put.
locale imbue(const locale &__loc)
Moves to a new locale.
_Traits::pos_type pos_type
char_type widen(char __c) const
Widens characters.
void exceptions(iostate __except)
Throwing exceptions on errors.
basic_ostream< _CharT, _Traits > * tie() const
Fetches the current tied stream.
_Traits::int_type int_type
Template class basic_ios, virtual base class for all stream classes.
ISO C++ entities toplevel namespace is std.
The actual work of input and output (interface).
num_put< _CharT, ostreambuf_iterator< _CharT, _Traits > > __num_put_type
bool bad() const
Fast error checking.
basic_ostream< _CharT, _Traits > * tie(basic_ostream< _CharT, _Traits > *__tiestr)
Ties this stream to an output stream.
Primary class template ctype facet.
The base of the I/O class hierarchy.
virtual ~basic_ios()
Empty.
basic_ios(basic_streambuf< _CharT, _Traits > *__sb)
Constructor performs initialization.
void init(basic_streambuf< _CharT, _Traits > *__sb)
All setup is performed here.
char_type fill() const
Retrieves the empty character.
bool good() const
Fast error checking.
bool operator!() const
The quick-and-easy status check.
char narrow(char_type __c, char __dfault) const
Squeezes characters.
char_type fill(char_type __ch)
Sets a new empty character.
bool fail() const
Fast error checking.
void setstate(iostate __state)
Sets additional flags in the error state.
iostate rdstate() const
Returns the error state of the stream buffer.
bool eof() const
Fast error checking.
ctype< _CharT > __ctype_type