37 #pragma GCC system_header
43 namespace std _GLIBCXX_VISIBILITY(default)
45 _GLIBCXX_BEGIN_NAMESPACE_VERSION
53 _S_boolalpha = 1L << 0,
57 _S_internal = 1L << 4,
61 _S_scientific = 1L << 8,
62 _S_showbase = 1L << 9,
63 _S_showpoint = 1L << 10,
64 _S_showpos = 1L << 11,
66 _S_unitbuf = 1L << 13,
67 _S_uppercase = 1L << 14,
68 _S_adjustfield = _S_left | _S_right | _S_internal,
69 _S_basefield = _S_dec | _S_oct | _S_hex,
70 _S_floatfield = _S_scientific | _S_fixed,
71 _S_ios_fmtflags_end = 1L << 16,
72 _S_ios_fmtflags_max = __INT_MAX__,
73 _S_ios_fmtflags_min = ~__INT_MAX__
76 inline _GLIBCXX_CONSTEXPR _Ios_Fmtflags
77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 {
return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
80 inline _GLIBCXX_CONSTEXPR _Ios_Fmtflags
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 {
return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
84 inline _GLIBCXX_CONSTEXPR _Ios_Fmtflags
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 {
return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
88 inline _GLIBCXX_CONSTEXPR _Ios_Fmtflags
89 operator~(_Ios_Fmtflags __a)
90 {
return _Ios_Fmtflags(~static_cast<int>(__a)); }
92 inline const _Ios_Fmtflags&
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 {
return __a = __a | __b; }
96 inline const _Ios_Fmtflags&
97 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
98 {
return __a = __a & __b; }
100 inline const _Ios_Fmtflags&
101 operator^=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
102 {
return __a = __a ^ __b; }
113 _S_ios_openmode_end = 1L << 16,
114 _S_ios_openmode_max = __INT_MAX__,
115 _S_ios_openmode_min = ~__INT_MAX__
118 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
119 operator&(_Ios_Openmode __a, _Ios_Openmode __b)
120 {
return _Ios_Openmode(static_cast<int>(__a) & static_cast<int>(__b)); }
122 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
123 operator|(_Ios_Openmode __a, _Ios_Openmode __b)
124 {
return _Ios_Openmode(static_cast<int>(__a) | static_cast<int>(__b)); }
126 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
127 operator^(_Ios_Openmode __a, _Ios_Openmode __b)
128 {
return _Ios_Openmode(static_cast<int>(__a) ^ static_cast<int>(__b)); }
130 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
131 operator~(_Ios_Openmode __a)
132 {
return _Ios_Openmode(~static_cast<int>(__a)); }
134 inline const _Ios_Openmode&
135 operator|=(_Ios_Openmode& __a, _Ios_Openmode __b)
136 {
return __a = __a | __b; }
138 inline const _Ios_Openmode&
139 operator&=(_Ios_Openmode& __a, _Ios_Openmode __b)
140 {
return __a = __a & __b; }
142 inline const _Ios_Openmode&
143 operator^=(_Ios_Openmode& __a, _Ios_Openmode __b)
144 {
return __a = __a ^ __b; }
152 _S_failbit = 1L << 2,
153 _S_ios_iostate_end = 1L << 16,
154 _S_ios_iostate_max = __INT_MAX__,
155 _S_ios_iostate_min = ~__INT_MAX__
158 inline _GLIBCXX_CONSTEXPR _Ios_Iostate
159 operator&(_Ios_Iostate __a, _Ios_Iostate __b)
160 {
return _Ios_Iostate(static_cast<int>(__a) & static_cast<int>(__b)); }
162 inline _GLIBCXX_CONSTEXPR _Ios_Iostate
163 operator|(_Ios_Iostate __a, _Ios_Iostate __b)
164 {
return _Ios_Iostate(static_cast<int>(__a) | static_cast<int>(__b)); }
166 inline _GLIBCXX_CONSTEXPR _Ios_Iostate
167 operator^(_Ios_Iostate __a, _Ios_Iostate __b)
168 {
return _Ios_Iostate(static_cast<int>(__a) ^ static_cast<int>(__b)); }
170 inline _GLIBCXX_CONSTEXPR _Ios_Iostate
171 operator~(_Ios_Iostate __a)
172 {
return _Ios_Iostate(~static_cast<int>(__a)); }
174 inline const _Ios_Iostate&
175 operator|=(_Ios_Iostate& __a, _Ios_Iostate __b)
176 {
return __a = __a | __b; }
178 inline const _Ios_Iostate&
179 operator&=(_Ios_Iostate& __a, _Ios_Iostate __b)
180 {
return __a = __a & __b; }
182 inline const _Ios_Iostate&
183 operator^=(_Ios_Iostate& __a, _Ios_Iostate __b)
184 {
return __a = __a ^ __b; }
190 _S_cur = _GLIBCXX_STDIO_SEEK_CUR,
191 _S_end = _GLIBCXX_STDIO_SEEK_END,
192 _S_ios_seekdir_end = 1L << 16
221 failure(
const string& __str)
throw();
229 what()
const throw();
267 static const fmtflags
dec = _S_dec;
270 static const fmtflags
fixed = _S_fixed;
273 static const fmtflags
hex = _S_hex;
278 static const fmtflags
internal = _S_internal;
282 static const fmtflags
left = _S_left;
285 static const fmtflags
oct = _S_oct;
289 static const fmtflags
right = _S_right;
306 static const fmtflags
skipws = _S_skipws;
370 static const openmode
app = _S_app;
373 static const openmode
ate = _S_ate;
381 static const openmode
in = _S_in;
384 static const openmode
out = _S_out;
387 static const openmode
trunc = _S_trunc;
402 static const seekdir
beg = _S_beg;
405 static const seekdir
cur = _S_cur;
408 static const seekdir
end = _S_end;
411 typedef int io_state;
412 typedef int open_mode;
413 typedef int seek_dir;
461 iostate _M_exception;
462 iostate _M_streambuf_state;
466 struct _Callback_list
469 _Callback_list* _M_next;
472 _Atomic_word _M_refcount;
475 _Callback_list* __cb)
476 : _M_next(__cb), _M_fn(__fn), _M_index(__index), _M_refcount(0) { }
479 _M_add_reference() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); }
483 _M_remove_reference()
486 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_refcount);
487 int __res = __gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1);
490 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_refcount);
496 _Callback_list* _M_callbacks;
499 _M_call_callbacks(
event __ev)
throw();
502 _M_dispose_callbacks(
void) throw();
509 _Words() : _M_pword(0), _M_iword(0) { }
517 enum { _S_local_word_size = 8 };
518 _Words _M_local_word[_S_local_word_size];
525 _M_grow_words(
int __index,
bool __iword);
528 locale _M_ios_locale;
541 friend class ios_base;
547 static _Atomic_word _S_refcount;
548 static bool _S_synced_with_stdio;
570 fmtflags __old = _M_flags;
586 fmtflags __old = _M_flags;
601 setf(fmtflags __fmtfl, fmtflags __mask)
603 fmtflags __old = _M_flags;
605 _M_flags |= (__fmtfl & __mask);
617 { _M_flags &= ~__mask; }
628 {
return _M_precision; }
639 _M_precision = __prec;
702 {
return _M_ios_locale; }
713 {
return _M_ios_locale; }
749 _Words& __word = (__ix < _M_word_size)
750 ? _M_word[__ix] : _M_grow_words(__ix,
true);
751 return __word._M_iword;
770 _Words& __word = (__ix < _M_word_size)
771 ? _M_word[__ix] : _M_grow_words(__ix,
false);
772 return __word._M_pword;
795 operator=(const ios_base&);
978 _GLIBCXX_END_NAMESPACE_VERSION
static const fmtflags boolalpha
Insert/extract bool in alphabetic rather than numeric format.
Container class for localization functionality.The locale class is first a class wrapper for C librar...
static const fmtflags floatfield
A mask of scientific|fixed. Useful for the 2-arg form of setf.
ios_base & nouppercase(ios_base &__base)
Calls base.unsetf(ios_base::uppercase).
static const openmode out
Open for output. Default for ofstream and fstream.
_Ios_Seekdir seekdir
This is an enumerated type.
fmtflags flags() const
Access to format flags.
static const fmtflags hex
Converts integer input or generates integer output in hexadecimal base.
static const iostate goodbit
Indicates all is well.
Class representing stream positions.
static const fmtflags fixed
Generate floating-point output in fixed-point notation.
_Siter_base< _Iterator >::iterator_type __base(_Iterator __it)
event
The set of events that may be passed to an event callback.
void unsetf(fmtflags __mask)
Clearing format flags.
static const fmtflags right
Adds fill characters on the left (initial positions) of certain generated output. (I...
The base of the I/O class hierarchy.This class defines everything that can be defined about I/O that ...
streamsize precision() const
Flags access.
long long streamoff
Type used by fpos, char_traits, and char_traits.
static const openmode app
Seek to end before each write.
const locale & _M_getloc() const
Locale access.
static const seekdir end
Request a seek relative to the current end of the sequence.
static const fmtflags internal
Adds fill characters at a designated internal point in certain generated output, or identical to righ...
static const iostate badbit
Indicates a loss of integrity in an input or output sequence (such as an irrecoverable read error fro...
static int xalloc()
Access to unique indices.
ios_base & noboolalpha(ios_base &__base)
Calls base.unsetf(ios_base::boolalpha).
streamsize precision(streamsize __prec)
Changing flags.
static const fmtflags showbase
Generates a prefix indicating the numeric base of generated integer output.
ios_base & noskipws(ios_base &__base)
Calls base.unsetf(ios_base::skipws).
static const fmtflags adjustfield
A mask of left|right|internal. Useful for the 2-arg form of setf.
locale getloc() const
Locale access.
void(* event_callback)(event __e, ios_base &__b, int __i)
The type of an event callback function.
ios_base & noshowpoint(ios_base &__base)
Calls base.unsetf(ios_base::showpoint).
static const iostate eofbit
Indicates that an input operation reached the end of an input sequence.
void register_callback(event_callback __fn, int __index)
Add the callback __fn with parameter __index.
fmtflags setf(fmtflags __fmtfl)
Setting new format flags.
static const fmtflags showpoint
Generates a decimal-point character unconditionally in generated floating-point output.
ISO C++ entities toplevel namespace is std.
static const fmtflags basefield
A mask of dec|oct|hex. Useful for the 2-arg form of setf.
_Ios_Iostate iostate
This is a bitmask type.
static const fmtflags scientific
Generates floating-point output in scientific notation.
static const fmtflags showpos
Generates a + sign in non-negative generated numeric output.
ios_base & noshowbase(ios_base &__base)
Calls base.unsetf(ios_base::showbase).
static const fmtflags uppercase
Replaces certain lowercase letters with their uppercase equivalents in generated output.
_Ios_Openmode openmode
This is a bitmask type.
long & iword(int __ix)
Access to integer array.
fmtflags setf(fmtflags __fmtfl, fmtflags __mask)
Setting new format flags.
static const openmode ate
Open and seek to end immediately after opening.
static const fmtflags skipws
Skips leading white space before certain input operations.
fmtflags flags(fmtflags __fmtfl)
Setting new format flags all at once.
void *& pword(int __ix)
Access to void pointer array.
streamsize width(streamsize __wide)
Changing flags.
static const fmtflags dec
Converts integer input or generates integer output in decimal base.
static const fmtflags oct
Converts integer input or generates integer output in octal base.
static const openmode trunc
Open for input. Default for ofstream.
_Ios_Fmtflags fmtflags
This is a bitmask type.
static const openmode binary
Perform input and output in binary mode (as opposed to text mode). This is probably not what you thin...
ptrdiff_t streamsize
Integral type for I/O operation counts and buffer sizes.
locale imbue(const locale &__loc)
Setting a new locale.
ios_base & noshowpos(ios_base &__base)
Calls base.unsetf(ios_base::showpos).
static bool sync_with_stdio(bool __sync=true)
Interaction with the standard C I/O objects.
static const iostate failbit
Indicates that an input operation failed to read the expected characters, or that an output operation...
ios_base & nounitbuf(ios_base &__base)
Calls base.unsetf(ios_base::unitbuf).
static const seekdir cur
Request a seek relative to the current position within the sequence.
static const fmtflags unitbuf
Flushes output after each output operation.
streamsize width() const
Flags access.
static const fmtflags left
Adds fill characters on the right (final positions) of certain generated output. (I.e., the thing you print is flush left.)
These are thrown to indicate problems with io.27.4.2.1.1 Class ios_base::failure. ...
static const seekdir beg
Request a seek relative to the beginning of the stream.
static const openmode in
Open for input. Default for ifstream and fstream.