2015-05-29 François Dumont fdumont@gcc.gnu.org>
[official-gcc.git] / libstdc++-v3 / include / bits / ios_base.h
blob44029ad2ce632fba12b4d9d9a2445e0be8d1ce6a
1 // Iostreams base classes -*- C++ -*-
3 // Copyright (C) 1997-2015 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file bits/ios_base.h
26 * This is an internal header file, included by other library headers.
27 * Do not attempt to use it directly. @headername{ios}
31 // ISO C++ 14882: 27.4 Iostreams base classes
34 #ifndef _IOS_BASE_H
35 #define _IOS_BASE_H 1
37 #pragma GCC system_header
39 #include <ext/atomicity.h>
40 #include <bits/localefwd.h>
41 #include <bits/locale_classes.h>
43 #if __cplusplus < 201103L
44 # include <stdexcept>
45 #else
46 # include <system_error>
47 #endif
49 namespace std _GLIBCXX_VISIBILITY(default)
51 _GLIBCXX_BEGIN_NAMESPACE_VERSION
53 // The following definitions of bitmask types are enums, not ints,
54 // as permitted (but not required) in the standard, in order to provide
55 // better type safety in iostream calls. A side effect is that
56 // expressions involving them are no longer compile-time constants.
57 enum _Ios_Fmtflags
59 _S_boolalpha = 1L << 0,
60 _S_dec = 1L << 1,
61 _S_fixed = 1L << 2,
62 _S_hex = 1L << 3,
63 _S_internal = 1L << 4,
64 _S_left = 1L << 5,
65 _S_oct = 1L << 6,
66 _S_right = 1L << 7,
67 _S_scientific = 1L << 8,
68 _S_showbase = 1L << 9,
69 _S_showpoint = 1L << 10,
70 _S_showpos = 1L << 11,
71 _S_skipws = 1L << 12,
72 _S_unitbuf = 1L << 13,
73 _S_uppercase = 1L << 14,
74 _S_adjustfield = _S_left | _S_right | _S_internal,
75 _S_basefield = _S_dec | _S_oct | _S_hex,
76 _S_floatfield = _S_scientific | _S_fixed,
77 _S_ios_fmtflags_end = 1L << 16
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, _Ios_Fmtflags __b)
90 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
92 inline _GLIBCXX_CONSTEXPR _Ios_Fmtflags
93 operator~(_Ios_Fmtflags __a)
94 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
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; }
104 inline const _Ios_Fmtflags&
105 operator^=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
106 { return __a = __a ^ __b; }
109 enum _Ios_Openmode
111 _S_app = 1L << 0,
112 _S_ate = 1L << 1,
113 _S_bin = 1L << 2,
114 _S_in = 1L << 3,
115 _S_out = 1L << 4,
116 _S_trunc = 1L << 5,
117 _S_ios_openmode_end = 1L << 16
120 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
121 operator&(_Ios_Openmode __a, _Ios_Openmode __b)
122 { return _Ios_Openmode(static_cast<int>(__a) & static_cast<int>(__b)); }
124 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
125 operator|(_Ios_Openmode __a, _Ios_Openmode __b)
126 { return _Ios_Openmode(static_cast<int>(__a) | static_cast<int>(__b)); }
128 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
129 operator^(_Ios_Openmode __a, _Ios_Openmode __b)
130 { return _Ios_Openmode(static_cast<int>(__a) ^ static_cast<int>(__b)); }
132 inline _GLIBCXX_CONSTEXPR _Ios_Openmode
133 operator~(_Ios_Openmode __a)
134 { return _Ios_Openmode(~static_cast<int>(__a)); }
136 inline const _Ios_Openmode&
137 operator|=(_Ios_Openmode& __a, _Ios_Openmode __b)
138 { return __a = __a | __b; }
140 inline const _Ios_Openmode&
141 operator&=(_Ios_Openmode& __a, _Ios_Openmode __b)
142 { return __a = __a & __b; }
144 inline const _Ios_Openmode&
145 operator^=(_Ios_Openmode& __a, _Ios_Openmode __b)
146 { return __a = __a ^ __b; }
149 enum _Ios_Iostate
151 _S_goodbit = 0,
152 _S_badbit = 1L << 0,
153 _S_eofbit = 1L << 1,
154 _S_failbit = 1L << 2,
155 _S_ios_iostate_end = 1L << 16
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; }
187 enum _Ios_Seekdir
189 _S_beg = 0,
190 _S_cur = _GLIBCXX_STDIO_SEEK_CUR,
191 _S_end = _GLIBCXX_STDIO_SEEK_END,
192 _S_ios_seekdir_end = 1L << 16
195 #if __cplusplus >= 201103L
196 /// I/O error code
197 enum class io_errc { stream = 1 };
199 template <> struct is_error_code_enum<io_errc> : public true_type { };
201 const error_category& iostream_category() noexcept;
203 inline error_code
204 make_error_code(io_errc e) noexcept
205 { return error_code(static_cast<int>(e), iostream_category()); }
207 inline error_condition
208 make_error_condition(io_errc e) noexcept
209 { return error_condition(static_cast<int>(e), iostream_category()); }
210 #endif
212 // 27.4.2 Class ios_base
214 * @brief The base of the I/O class hierarchy.
215 * @ingroup io
217 * This class defines everything that can be defined about I/O that does
218 * not depend on the type of characters being input or output. Most
219 * people will only see @c ios_base when they need to specify the full
220 * name of the various I/O flags (e.g., the openmodes).
222 class ios_base
224 #if _GLIBCXX_USE_CXX11_ABI
225 #if __cplusplus < 201103L
226 // Type that is layout-compatible with std::system_error
227 struct system_error : std::runtime_error
229 // Type that is layout-compatible with std::error_code
230 struct error_code
232 error_code() { }
233 private:
234 int _M_value;
235 const void* _M_cat;
236 } _M_code;
238 #endif
239 #endif
240 public:
242 /**
243 * @brief These are thrown to indicate problems with io.
244 * @ingroup exceptions
246 * 27.4.2.1.1 Class ios_base::failure
248 #if _GLIBCXX_USE_CXX11_ABI
249 class _GLIBCXX_ABI_TAG_CXX11 failure : public system_error
251 public:
252 explicit
253 failure(const string& __str);
255 #if __cplusplus >= 201103L
256 explicit
257 failure(const string&, const error_code&);
259 explicit
260 failure(const char*, const error_code& = io_errc::stream);
261 #endif
263 virtual
264 ~failure() throw();
266 virtual const char*
267 what() const throw();
269 #else
270 class failure : public exception
272 public:
273 // _GLIBCXX_RESOLVE_LIB_DEFECTS
274 // 48. Use of non-existent exception constructor
275 explicit
276 failure(const string& __str) throw();
278 // This declaration is not useless:
279 // http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Vague-Linkage.html
280 virtual
281 ~failure() throw();
283 virtual const char*
284 what() const throw();
286 private:
287 string _M_msg;
289 #endif
291 // 27.4.2.1.2 Type ios_base::fmtflags
293 * @brief This is a bitmask type.
295 * @c @a _Ios_Fmtflags is implementation-defined, but it is valid to
296 * perform bitwise operations on these values and expect the Right
297 * Thing to happen. Defined objects of type fmtflags are:
298 * - boolalpha
299 * - dec
300 * - fixed
301 * - hex
302 * - internal
303 * - left
304 * - oct
305 * - right
306 * - scientific
307 * - showbase
308 * - showpoint
309 * - showpos
310 * - skipws
311 * - unitbuf
312 * - uppercase
313 * - adjustfield
314 * - basefield
315 * - floatfield
317 typedef _Ios_Fmtflags fmtflags;
319 /// Insert/extract @c bool in alphabetic rather than numeric format.
320 static const fmtflags boolalpha = _S_boolalpha;
322 /// Converts integer input or generates integer output in decimal base.
323 static const fmtflags dec = _S_dec;
325 /// Generate floating-point output in fixed-point notation.
326 static const fmtflags fixed = _S_fixed;
328 /// Converts integer input or generates integer output in hexadecimal base.
329 static const fmtflags hex = _S_hex;
331 /// Adds fill characters at a designated internal point in certain
332 /// generated output, or identical to @c right if no such point is
333 /// designated.
334 static const fmtflags internal = _S_internal;
336 /// Adds fill characters on the right (final positions) of certain
337 /// generated output. (I.e., the thing you print is flush left.)
338 static const fmtflags left = _S_left;
340 /// Converts integer input or generates integer output in octal base.
341 static const fmtflags oct = _S_oct;
343 /// Adds fill characters on the left (initial positions) of certain
344 /// generated output. (I.e., the thing you print is flush right.)
345 static const fmtflags right = _S_right;
347 /// Generates floating-point output in scientific notation.
348 static const fmtflags scientific = _S_scientific;
350 /// Generates a prefix indicating the numeric base of generated integer
351 /// output.
352 static const fmtflags showbase = _S_showbase;
354 /// Generates a decimal-point character unconditionally in generated
355 /// floating-point output.
356 static const fmtflags showpoint = _S_showpoint;
358 /// Generates a + sign in non-negative generated numeric output.
359 static const fmtflags showpos = _S_showpos;
361 /// Skips leading white space before certain input operations.
362 static const fmtflags skipws = _S_skipws;
364 /// Flushes output after each output operation.
365 static const fmtflags unitbuf = _S_unitbuf;
367 /// Replaces certain lowercase letters with their uppercase equivalents
368 /// in generated output.
369 static const fmtflags uppercase = _S_uppercase;
371 /// A mask of left|right|internal. Useful for the 2-arg form of @c setf.
372 static const fmtflags adjustfield = _S_adjustfield;
374 /// A mask of dec|oct|hex. Useful for the 2-arg form of @c setf.
375 static const fmtflags basefield = _S_basefield;
377 /// A mask of scientific|fixed. Useful for the 2-arg form of @c setf.
378 static const fmtflags floatfield = _S_floatfield;
380 // 27.4.2.1.3 Type ios_base::iostate
382 * @brief This is a bitmask type.
384 * @c @a _Ios_Iostate is implementation-defined, but it is valid to
385 * perform bitwise operations on these values and expect the Right
386 * Thing to happen. Defined objects of type iostate are:
387 * - badbit
388 * - eofbit
389 * - failbit
390 * - goodbit
392 typedef _Ios_Iostate iostate;
394 /// Indicates a loss of integrity in an input or output sequence (such
395 /// as an irrecoverable read error from a file).
396 static const iostate badbit = _S_badbit;
398 /// Indicates that an input operation reached the end of an input sequence.
399 static const iostate eofbit = _S_eofbit;
401 /// Indicates that an input operation failed to read the expected
402 /// characters, or that an output operation failed to generate the
403 /// desired characters.
404 static const iostate failbit = _S_failbit;
406 /// Indicates all is well.
407 static const iostate goodbit = _S_goodbit;
409 // 27.4.2.1.4 Type ios_base::openmode
411 * @brief This is a bitmask type.
413 * @c @a _Ios_Openmode is implementation-defined, but it is valid to
414 * perform bitwise operations on these values and expect the Right
415 * Thing to happen. Defined objects of type openmode are:
416 * - app
417 * - ate
418 * - binary
419 * - in
420 * - out
421 * - trunc
423 typedef _Ios_Openmode openmode;
425 /// Seek to end before each write.
426 static const openmode app = _S_app;
428 /// Open and seek to end immediately after opening.
429 static const openmode ate = _S_ate;
431 /// Perform input and output in binary mode (as opposed to text mode).
432 /// This is probably not what you think it is; see
433 /// https://gcc.gnu.org/onlinedocs/libstdc++/manual/fstreams.html#std.io.filestreams.binary
434 static const openmode binary = _S_bin;
436 /// Open for input. Default for @c ifstream and fstream.
437 static const openmode in = _S_in;
439 /// Open for output. Default for @c ofstream and fstream.
440 static const openmode out = _S_out;
442 /// Open for input. Default for @c ofstream.
443 static const openmode trunc = _S_trunc;
445 // 27.4.2.1.5 Type ios_base::seekdir
447 * @brief This is an enumerated type.
449 * @c @a _Ios_Seekdir is implementation-defined. Defined values
450 * of type seekdir are:
451 * - beg
452 * - cur, equivalent to @c SEEK_CUR in the C standard library.
453 * - end, equivalent to @c SEEK_END in the C standard library.
455 typedef _Ios_Seekdir seekdir;
457 /// Request a seek relative to the beginning of the stream.
458 static const seekdir beg = _S_beg;
460 /// Request a seek relative to the current position within the sequence.
461 static const seekdir cur = _S_cur;
463 /// Request a seek relative to the current end of the sequence.
464 static const seekdir end = _S_end;
466 // Annex D.6
467 typedef int io_state;
468 typedef int open_mode;
469 typedef int seek_dir;
471 typedef std::streampos streampos;
472 typedef std::streamoff streamoff;
474 // Callbacks;
476 * @brief The set of events that may be passed to an event callback.
478 * erase_event is used during ~ios() and copyfmt(). imbue_event is used
479 * during imbue(). copyfmt_event is used during copyfmt().
481 enum event
483 erase_event,
484 imbue_event,
485 copyfmt_event
489 * @brief The type of an event callback function.
490 * @param __e One of the members of the event enum.
491 * @param __b Reference to the ios_base object.
492 * @param __i The integer provided when the callback was registered.
494 * Event callbacks are user defined functions that get called during
495 * several ios_base and basic_ios functions, specifically imbue(),
496 * copyfmt(), and ~ios().
498 typedef void (*event_callback) (event __e, ios_base& __b, int __i);
501 * @brief Add the callback __fn with parameter __index.
502 * @param __fn The function to add.
503 * @param __index The integer to pass to the function when invoked.
505 * Registers a function as an event callback with an integer parameter to
506 * be passed to the function when invoked. Multiple copies of the
507 * function are allowed. If there are multiple callbacks, they are
508 * invoked in the order they were registered.
510 void
511 register_callback(event_callback __fn, int __index);
513 protected:
514 streamsize _M_precision;
515 streamsize _M_width;
516 fmtflags _M_flags;
517 iostate _M_exception;
518 iostate _M_streambuf_state;
520 // 27.4.2.6 Members for callbacks
521 // 27.4.2.6 ios_base callbacks
522 struct _Callback_list
524 // Data Members
525 _Callback_list* _M_next;
526 ios_base::event_callback _M_fn;
527 int _M_index;
528 _Atomic_word _M_refcount; // 0 means one reference.
530 _Callback_list(ios_base::event_callback __fn, int __index,
531 _Callback_list* __cb)
532 : _M_next(__cb), _M_fn(__fn), _M_index(__index), _M_refcount(0) { }
534 void
535 _M_add_reference() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); }
537 // 0 => OK to delete.
539 _M_remove_reference()
541 // Be race-detector-friendly. For more info see bits/c++config.
542 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_refcount);
543 int __res = __gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1);
544 if (__res == 0)
546 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_refcount);
548 return __res;
552 _Callback_list* _M_callbacks;
554 void
555 _M_call_callbacks(event __ev) throw();
557 void
558 _M_dispose_callbacks(void) throw();
560 // 27.4.2.5 Members for iword/pword storage
561 struct _Words
563 void* _M_pword;
564 long _M_iword;
565 _Words() : _M_pword(0), _M_iword(0) { }
568 // Only for failed iword/pword calls.
569 _Words _M_word_zero;
571 // Guaranteed storage.
572 // The first 5 iword and pword slots are reserved for internal use.
573 enum { _S_local_word_size = 8 };
574 _Words _M_local_word[_S_local_word_size];
576 // Allocated storage.
577 int _M_word_size;
578 _Words* _M_word;
580 _Words&
581 _M_grow_words(int __index, bool __iword);
583 // Members for locale and locale caching.
584 locale _M_ios_locale;
586 void
587 _M_init() throw();
589 public:
591 // 27.4.2.1.6 Class ios_base::Init
592 // Used to initialize standard streams. In theory, g++ could use
593 // -finit-priority to order this stuff correctly without going
594 // through these machinations.
595 class Init
597 friend class ios_base;
598 public:
599 Init();
600 ~Init();
602 private:
603 static _Atomic_word _S_refcount;
604 static bool _S_synced_with_stdio;
607 // [27.4.2.2] fmtflags state functions
609 * @brief Access to format flags.
610 * @return The format control flags for both input and output.
612 fmtflags
613 flags() const
614 { return _M_flags; }
617 * @brief Setting new format flags all at once.
618 * @param __fmtfl The new flags to set.
619 * @return The previous format control flags.
621 * This function overwrites all the format flags with @a __fmtfl.
623 fmtflags
624 flags(fmtflags __fmtfl)
626 fmtflags __old = _M_flags;
627 _M_flags = __fmtfl;
628 return __old;
632 * @brief Setting new format flags.
633 * @param __fmtfl Additional flags to set.
634 * @return The previous format control flags.
636 * This function sets additional flags in format control. Flags that
637 * were previously set remain set.
639 fmtflags
640 setf(fmtflags __fmtfl)
642 fmtflags __old = _M_flags;
643 _M_flags |= __fmtfl;
644 return __old;
648 * @brief Setting new format flags.
649 * @param __fmtfl Additional flags to set.
650 * @param __mask The flags mask for @a fmtfl.
651 * @return The previous format control flags.
653 * This function clears @a mask in the format flags, then sets
654 * @a fmtfl @c & @a mask. An example mask is @c ios_base::adjustfield.
656 fmtflags
657 setf(fmtflags __fmtfl, fmtflags __mask)
659 fmtflags __old = _M_flags;
660 _M_flags &= ~__mask;
661 _M_flags |= (__fmtfl & __mask);
662 return __old;
666 * @brief Clearing format flags.
667 * @param __mask The flags to unset.
669 * This function clears @a __mask in the format flags.
671 void
672 unsetf(fmtflags __mask)
673 { _M_flags &= ~__mask; }
676 * @brief Flags access.
677 * @return The precision to generate on certain output operations.
679 * Be careful if you try to give a definition of @a precision here; see
680 * DR 189.
682 streamsize
683 precision() const
684 { return _M_precision; }
687 * @brief Changing flags.
688 * @param __prec The new precision value.
689 * @return The previous value of precision().
691 streamsize
692 precision(streamsize __prec)
694 streamsize __old = _M_precision;
695 _M_precision = __prec;
696 return __old;
700 * @brief Flags access.
701 * @return The minimum field width to generate on output operations.
703 * <em>Minimum field width</em> refers to the number of characters.
705 streamsize
706 width() const
707 { return _M_width; }
710 * @brief Changing flags.
711 * @param __wide The new width value.
712 * @return The previous value of width().
714 streamsize
715 width(streamsize __wide)
717 streamsize __old = _M_width;
718 _M_width = __wide;
719 return __old;
722 // [27.4.2.4] ios_base static members
724 * @brief Interaction with the standard C I/O objects.
725 * @param __sync Whether to synchronize or not.
726 * @return True if the standard streams were previously synchronized.
728 * The synchronization referred to is @e only that between the standard
729 * C facilities (e.g., stdout) and the standard C++ objects (e.g.,
730 * cout). User-declared streams are unaffected. See
731 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/fstreams.html#std.io.filestreams.binary
733 static bool
734 sync_with_stdio(bool __sync = true);
736 // [27.4.2.3] ios_base locale functions
738 * @brief Setting a new locale.
739 * @param __loc The new locale.
740 * @return The previous locale.
742 * Sets the new locale for this stream, and then invokes each callback
743 * with imbue_event.
745 locale
746 imbue(const locale& __loc) throw();
749 * @brief Locale access
750 * @return A copy of the current locale.
752 * If @c imbue(loc) has previously been called, then this function
753 * returns @c loc. Otherwise, it returns a copy of @c std::locale(),
754 * the global C++ locale.
756 locale
757 getloc() const
758 { return _M_ios_locale; }
761 * @brief Locale access
762 * @return A reference to the current locale.
764 * Like getloc above, but returns a reference instead of
765 * generating a copy.
767 const locale&
768 _M_getloc() const
769 { return _M_ios_locale; }
771 // [27.4.2.5] ios_base storage functions
773 * @brief Access to unique indices.
774 * @return An integer different from all previous calls.
776 * This function returns a unique integer every time it is called. It
777 * can be used for any purpose, but is primarily intended to be a unique
778 * index for the iword and pword functions. The expectation is that an
779 * application calls xalloc in order to obtain an index in the iword and
780 * pword arrays that can be used without fear of conflict.
782 * The implementation maintains a static variable that is incremented and
783 * returned on each invocation. xalloc is guaranteed to return an index
784 * that is safe to use in the iword and pword arrays.
786 static int
787 xalloc() throw();
790 * @brief Access to integer array.
791 * @param __ix Index into the array.
792 * @return A reference to an integer associated with the index.
794 * The iword function provides access to an array of integers that can be
795 * used for any purpose. The array grows as required to hold the
796 * supplied index. All integers in the array are initialized to 0.
798 * The implementation reserves several indices. You should use xalloc to
799 * obtain an index that is safe to use. Also note that since the array
800 * can grow dynamically, it is not safe to hold onto the reference.
802 long&
803 iword(int __ix)
805 _Words& __word = (__ix < _M_word_size)
806 ? _M_word[__ix] : _M_grow_words(__ix, true);
807 return __word._M_iword;
811 * @brief Access to void pointer array.
812 * @param __ix Index into the array.
813 * @return A reference to a void* associated with the index.
815 * The pword function provides access to an array of pointers that can be
816 * used for any purpose. The array grows as required to hold the
817 * supplied index. All pointers in the array are initialized to 0.
819 * The implementation reserves several indices. You should use xalloc to
820 * obtain an index that is safe to use. Also note that since the array
821 * can grow dynamically, it is not safe to hold onto the reference.
823 void*&
824 pword(int __ix)
826 _Words& __word = (__ix < _M_word_size)
827 ? _M_word[__ix] : _M_grow_words(__ix, false);
828 return __word._M_pword;
831 // Destructor
833 * Invokes each callback with erase_event. Destroys local storage.
835 * Note that the ios_base object for the standard streams never gets
836 * destroyed. As a result, any callbacks registered with the standard
837 * streams will not get invoked with erase_event (unless copyfmt is
838 * used).
840 virtual ~ios_base();
842 protected:
843 ios_base() throw ();
845 #if __cplusplus < 201103L
846 // _GLIBCXX_RESOLVE_LIB_DEFECTS
847 // 50. Copy constructor and assignment operator of ios_base
848 private:
849 ios_base(const ios_base&);
851 ios_base&
852 operator=(const ios_base&);
853 #else
854 public:
855 ios_base(const ios_base&) = delete;
857 ios_base&
858 operator=(const ios_base&) = delete;
860 protected:
861 void
862 _M_move(ios_base&) noexcept;
864 void
865 _M_swap(ios_base& __rhs) noexcept;
866 #endif
869 // [27.4.5.1] fmtflags manipulators
870 /// Calls base.setf(ios_base::boolalpha).
871 inline ios_base&
872 boolalpha(ios_base& __base)
874 __base.setf(ios_base::boolalpha);
875 return __base;
878 /// Calls base.unsetf(ios_base::boolalpha).
879 inline ios_base&
880 noboolalpha(ios_base& __base)
882 __base.unsetf(ios_base::boolalpha);
883 return __base;
886 /// Calls base.setf(ios_base::showbase).
887 inline ios_base&
888 showbase(ios_base& __base)
890 __base.setf(ios_base::showbase);
891 return __base;
894 /// Calls base.unsetf(ios_base::showbase).
895 inline ios_base&
896 noshowbase(ios_base& __base)
898 __base.unsetf(ios_base::showbase);
899 return __base;
902 /// Calls base.setf(ios_base::showpoint).
903 inline ios_base&
904 showpoint(ios_base& __base)
906 __base.setf(ios_base::showpoint);
907 return __base;
910 /// Calls base.unsetf(ios_base::showpoint).
911 inline ios_base&
912 noshowpoint(ios_base& __base)
914 __base.unsetf(ios_base::showpoint);
915 return __base;
918 /// Calls base.setf(ios_base::showpos).
919 inline ios_base&
920 showpos(ios_base& __base)
922 __base.setf(ios_base::showpos);
923 return __base;
926 /// Calls base.unsetf(ios_base::showpos).
927 inline ios_base&
928 noshowpos(ios_base& __base)
930 __base.unsetf(ios_base::showpos);
931 return __base;
934 /// Calls base.setf(ios_base::skipws).
935 inline ios_base&
936 skipws(ios_base& __base)
938 __base.setf(ios_base::skipws);
939 return __base;
942 /// Calls base.unsetf(ios_base::skipws).
943 inline ios_base&
944 noskipws(ios_base& __base)
946 __base.unsetf(ios_base::skipws);
947 return __base;
950 /// Calls base.setf(ios_base::uppercase).
951 inline ios_base&
952 uppercase(ios_base& __base)
954 __base.setf(ios_base::uppercase);
955 return __base;
958 /// Calls base.unsetf(ios_base::uppercase).
959 inline ios_base&
960 nouppercase(ios_base& __base)
962 __base.unsetf(ios_base::uppercase);
963 return __base;
966 /// Calls base.setf(ios_base::unitbuf).
967 inline ios_base&
968 unitbuf(ios_base& __base)
970 __base.setf(ios_base::unitbuf);
971 return __base;
974 /// Calls base.unsetf(ios_base::unitbuf).
975 inline ios_base&
976 nounitbuf(ios_base& __base)
978 __base.unsetf(ios_base::unitbuf);
979 return __base;
982 // [27.4.5.2] adjustfield manipulators
983 /// Calls base.setf(ios_base::internal, ios_base::adjustfield).
984 inline ios_base&
985 internal(ios_base& __base)
987 __base.setf(ios_base::internal, ios_base::adjustfield);
988 return __base;
991 /// Calls base.setf(ios_base::left, ios_base::adjustfield).
992 inline ios_base&
993 left(ios_base& __base)
995 __base.setf(ios_base::left, ios_base::adjustfield);
996 return __base;
999 /// Calls base.setf(ios_base::right, ios_base::adjustfield).
1000 inline ios_base&
1001 right(ios_base& __base)
1003 __base.setf(ios_base::right, ios_base::adjustfield);
1004 return __base;
1007 // [27.4.5.3] basefield manipulators
1008 /// Calls base.setf(ios_base::dec, ios_base::basefield).
1009 inline ios_base&
1010 dec(ios_base& __base)
1012 __base.setf(ios_base::dec, ios_base::basefield);
1013 return __base;
1016 /// Calls base.setf(ios_base::hex, ios_base::basefield).
1017 inline ios_base&
1018 hex(ios_base& __base)
1020 __base.setf(ios_base::hex, ios_base::basefield);
1021 return __base;
1024 /// Calls base.setf(ios_base::oct, ios_base::basefield).
1025 inline ios_base&
1026 oct(ios_base& __base)
1028 __base.setf(ios_base::oct, ios_base::basefield);
1029 return __base;
1032 // [27.4.5.4] floatfield manipulators
1033 /// Calls base.setf(ios_base::fixed, ios_base::floatfield).
1034 inline ios_base&
1035 fixed(ios_base& __base)
1037 __base.setf(ios_base::fixed, ios_base::floatfield);
1038 return __base;
1041 /// Calls base.setf(ios_base::scientific, ios_base::floatfield).
1042 inline ios_base&
1043 scientific(ios_base& __base)
1045 __base.setf(ios_base::scientific, ios_base::floatfield);
1046 return __base;
1049 #if __cplusplus >= 201103L
1050 // New C++11 floatfield manipulators
1052 /// Calls
1053 /// base.setf(ios_base::fixed|ios_base::scientific, ios_base::floatfield)
1054 inline ios_base&
1055 hexfloat(ios_base& __base)
1057 __base.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
1058 return __base;
1061 /// Calls @c base.unsetf(ios_base::floatfield)
1062 inline ios_base&
1063 defaultfloat(ios_base& __base)
1065 __base.unsetf(ios_base::floatfield);
1066 return __base;
1068 #endif
1070 _GLIBCXX_END_NAMESPACE_VERSION
1071 } // namespace
1073 #endif /* _IOS_BASE_H */