ios_base.h

Go to the documentation of this file.
00001 // Iostreams base classes -*- C++ -*-
00002 
00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
00004 // 2006, 2007, 2008
00005 // Free Software Foundation, Inc.
00006 //
00007 // This file is part of the GNU ISO C++ Library.  This library is free
00008 // software; you can redistribute it and/or modify it under the
00009 // terms of the GNU General Public License as published by the
00010 // Free Software Foundation; either version 2, or (at your option)
00011 // any later version.
00012 
00013 // This library is distributed in the hope that it will be useful,
00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016 // GNU General Public License for more details.
00017 
00018 // You should have received a copy of the GNU General Public License along
00019 // with this library; see the file COPYING.  If not, write to the Free
00020 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
00021 // USA.
00022 
00023 // As a special exception, you may use this file as part of a free software
00024 // library without restriction.  Specifically, if other files instantiate
00025 // templates or use macros or inline functions from this file, or you compile
00026 // this file and link it with other files to produce an executable, this
00027 // file does not by itself cause the resulting executable to be covered by
00028 // the GNU General Public License.  This exception does not however
00029 // invalidate any other reasons why the executable file might be covered by
00030 // the GNU General Public License.
00031 
00032 /** @file ios_base.h
00033  *  This is an internal header file, included by other library headers.
00034  *  You should not attempt to use it directly.
00035  */
00036 
00037 //
00038 // ISO C++ 14882: 27.4  Iostreams base classes
00039 //
00040 
00041 #ifndef _IOS_BASE_H
00042 #define _IOS_BASE_H 1
00043 
00044 #pragma GCC system_header
00045 
00046 #include <ext/atomicity.h>
00047 #include <bits/localefwd.h>
00048 #include <bits/locale_classes.h>
00049 #include <cstdio>  // For SEEK_CUR, SEEK_END
00050 
00051 _GLIBCXX_BEGIN_NAMESPACE(std)
00052 
00053   // The following definitions of bitmask types are enums, not ints,
00054   // as permitted (but not required) in the standard, in order to provide
00055   // better type safety in iostream calls.  A side effect is that
00056   // expressions involving them are no longer compile-time constants.
00057   enum _Ios_Fmtflags 
00058     { 
00059       _S_boolalpha  = 1L << 0,
00060       _S_dec        = 1L << 1,
00061       _S_fixed      = 1L << 2,
00062       _S_hex        = 1L << 3,
00063       _S_internal   = 1L << 4,
00064       _S_left       = 1L << 5,
00065       _S_oct        = 1L << 6,
00066       _S_right      = 1L << 7,
00067       _S_scientific     = 1L << 8,
00068       _S_showbase   = 1L << 9,
00069       _S_showpoint  = 1L << 10,
00070       _S_showpos    = 1L << 11,
00071       _S_skipws     = 1L << 12,
00072       _S_unitbuf    = 1L << 13,
00073       _S_uppercase  = 1L << 14,
00074       _S_adjustfield    = _S_left | _S_right | _S_internal,
00075       _S_basefield  = _S_dec | _S_oct | _S_hex,
00076       _S_floatfield     = _S_scientific | _S_fixed,
00077       _S_ios_fmtflags_end = 1L << 16 
00078     };
00079 
00080   inline _Ios_Fmtflags
00081   operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
00082   { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
00083 
00084   inline _Ios_Fmtflags
00085   operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
00086   { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
00087 
00088   inline _Ios_Fmtflags
00089   operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
00090   { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
00091 
00092   inline _Ios_Fmtflags&
00093   operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
00094   { return __a = __a | __b; }
00095 
00096   inline _Ios_Fmtflags&
00097   operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
00098   { return __a = __a & __b; }
00099 
00100   inline _Ios_Fmtflags&
00101   operator^=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
00102   { return __a = __a ^ __b; }
00103 
00104   inline _Ios_Fmtflags
00105   operator~(_Ios_Fmtflags __a)
00106   { return _Ios_Fmtflags(~static_cast<int>(__a)); }
00107 
00108 
00109   enum _Ios_Openmode 
00110     { 
00111       _S_app        = 1L << 0,
00112       _S_ate        = 1L << 1,
00113       _S_bin        = 1L << 2,
00114       _S_in         = 1L << 3,
00115       _S_out        = 1L << 4,
00116       _S_trunc      = 1L << 5,
00117       _S_ios_openmode_end = 1L << 16 
00118     };
00119 
00120   inline _Ios_Openmode
00121   operator&(_Ios_Openmode __a, _Ios_Openmode __b)
00122   { return _Ios_Openmode(static_cast<int>(__a) & static_cast<int>(__b)); }
00123 
00124   inline _Ios_Openmode
00125   operator|(_Ios_Openmode __a, _Ios_Openmode __b)
00126   { return _Ios_Openmode(static_cast<int>(__a) | static_cast<int>(__b)); }
00127 
00128   inline _Ios_Openmode
00129   operator^(_Ios_Openmode __a, _Ios_Openmode __b)
00130   { return _Ios_Openmode(static_cast<int>(__a) ^ static_cast<int>(__b)); }
00131 
00132   inline _Ios_Openmode&
00133   operator|=(_Ios_Openmode& __a, _Ios_Openmode __b)
00134   { return __a = __a | __b; }
00135 
00136   inline _Ios_Openmode&
00137   operator&=(_Ios_Openmode& __a, _Ios_Openmode __b)
00138   { return __a = __a & __b; }
00139 
00140   inline _Ios_Openmode&
00141   operator^=(_Ios_Openmode& __a, _Ios_Openmode __b)
00142   { return __a = __a ^ __b; }
00143 
00144   inline _Ios_Openmode
00145   operator~(_Ios_Openmode __a)
00146   { return _Ios_Openmode(~static_cast<int>(__a)); }
00147 
00148 
00149   enum _Ios_Iostate
00150     { 
00151       _S_goodbit        = 0,
00152       _S_badbit         = 1L << 0,
00153       _S_eofbit         = 1L << 1,
00154       _S_failbit        = 1L << 2,
00155       _S_ios_iostate_end = 1L << 16 
00156     };
00157 
00158   inline _Ios_Iostate
00159   operator&(_Ios_Iostate __a, _Ios_Iostate __b)
00160   { return _Ios_Iostate(static_cast<int>(__a) & static_cast<int>(__b)); }
00161 
00162   inline _Ios_Iostate
00163   operator|(_Ios_Iostate __a, _Ios_Iostate __b)
00164   { return _Ios_Iostate(static_cast<int>(__a) | static_cast<int>(__b)); }
00165 
00166   inline _Ios_Iostate
00167   operator^(_Ios_Iostate __a, _Ios_Iostate __b)
00168   { return _Ios_Iostate(static_cast<int>(__a) ^ static_cast<int>(__b)); }
00169 
00170   inline _Ios_Iostate&
00171   operator|=(_Ios_Iostate& __a, _Ios_Iostate __b)
00172   { return __a = __a | __b; }
00173 
00174   inline _Ios_Iostate&
00175   operator&=(_Ios_Iostate& __a, _Ios_Iostate __b)
00176   { return __a = __a & __b; }
00177 
00178   inline _Ios_Iostate&
00179   operator^=(_Ios_Iostate& __a, _Ios_Iostate __b)
00180   { return __a = __a ^ __b; }
00181 
00182   inline _Ios_Iostate
00183   operator~(_Ios_Iostate __a)
00184   { return _Ios_Iostate(~static_cast<int>(__a)); }
00185 
00186   enum _Ios_Seekdir 
00187     { 
00188       _S_beg = 0,
00189       _S_cur = SEEK_CUR,
00190       _S_end = SEEK_END,
00191       _S_ios_seekdir_end = 1L << 16 
00192     };
00193 
00194   // 27.4.2  Class ios_base
00195   /**
00196    *  @brief  The base of the I/O class hierarchy.
00197    *
00198    *  This class defines everything that can be defined about I/O that does
00199    *  not depend on the type of characters being input or output.  Most
00200    *  people will only see @c ios_base when they need to specify the full
00201    *  name of the various I/O flags (e.g., the openmodes).
00202   */
00203   class ios_base
00204   {
00205   public:
00206 
00207     // 27.4.2.1.1  Class ios_base::failure
00208     /// These are thrown to indicate problems.  Doc me.
00209     class failure : public exception
00210     {
00211     public:
00212       // _GLIBCXX_RESOLVE_LIB_DEFECTS
00213       // 48.  Use of non-existent exception constructor
00214       explicit
00215       failure(const string& __str) throw();
00216 
00217       // This declaration is not useless:
00218       // http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Vague-Linkage.html
00219       virtual
00220       ~failure() throw();
00221 
00222       virtual const char*
00223       what() const throw();
00224 
00225     private:
00226       string _M_msg;
00227     };
00228 
00229     // 27.4.2.1.2  Type ios_base::fmtflags
00230     /**
00231      *  @brief This is a bitmask type.
00232      *
00233      *  @c "_Ios_Fmtflags" is implementation-defined, but it is valid to
00234      *  perform bitwise operations on these values and expect the Right
00235      *  Thing to happen.  Defined objects of type fmtflags are:
00236      *  - boolalpha
00237      *  - dec
00238      *  - fixed
00239      *  - hex
00240      *  - internal
00241      *  - left
00242      *  - oct
00243      *  - right
00244      *  - scientific
00245      *  - showbase
00246      *  - showpoint
00247      *  - showpos
00248      *  - skipws
00249      *  - unitbuf
00250      *  - uppercase
00251      *  - adjustfield
00252      *  - basefield
00253      *  - floatfield
00254     */
00255     typedef _Ios_Fmtflags fmtflags;
00256 
00257     /// Insert/extract @c bool in alphabetic rather than numeric format.
00258     static const fmtflags boolalpha =   _S_boolalpha;
00259 
00260     /// Converts integer input or generates integer output in decimal base.
00261     static const fmtflags dec =         _S_dec;
00262 
00263     /// Generate floating-point output in fixed-point notation.
00264     static const fmtflags fixed =       _S_fixed;
00265 
00266     /// Converts integer input or generates integer output in hexadecimal base.
00267     static const fmtflags hex =         _S_hex;
00268 
00269     /// Adds fill characters at a designated internal point in certain
00270     /// generated output, or identical to @c right if no such point is
00271     /// designated.
00272     static const fmtflags internal =    _S_internal;
00273 
00274     /// Adds fill characters on the right (final positions) of certain
00275     /// generated output.  (I.e., the thing you print is flush left.)
00276     static const fmtflags left =        _S_left;
00277 
00278     /// Converts integer input or generates integer output in octal base.
00279     static const fmtflags oct =         _S_oct;
00280 
00281     /// Adds fill characters on the left (initial positions) of certain
00282     /// generated output.  (I.e., the thing you print is flush right.)
00283     static const fmtflags right =       _S_right;
00284 
00285     /// Generates floating-point output in scientific notation.
00286     static const fmtflags scientific =  _S_scientific;
00287 
00288     /// Generates a prefix indicating the numeric base of generated integer
00289     /// output.
00290     static const fmtflags showbase =    _S_showbase;
00291 
00292     /// Generates a decimal-point character unconditionally in generated
00293     /// floating-point output.
00294     static const fmtflags showpoint =   _S_showpoint;
00295 
00296     /// Generates a + sign in non-negative generated numeric output.
00297     static const fmtflags showpos =     _S_showpos;
00298 
00299     /// Skips leading white space before certain input operations.
00300     static const fmtflags skipws =      _S_skipws;
00301 
00302     /// Flushes output after each output operation.
00303     static const fmtflags unitbuf =     _S_unitbuf;
00304 
00305     /// Replaces certain lowercase letters with their uppercase equivalents
00306     /// in generated output.
00307     static const fmtflags uppercase =   _S_uppercase;
00308 
00309     /// A mask of left|right|internal.  Useful for the 2-arg form of @c setf.
00310     static const fmtflags adjustfield = _S_adjustfield;
00311 
00312     /// A mask of dec|oct|hex.  Useful for the 2-arg form of @c setf.
00313     static const fmtflags basefield =   _S_basefield;
00314 
00315     /// A mask of scientific|fixed.  Useful for the 2-arg form of @c setf.
00316     static const fmtflags floatfield =  _S_floatfield;
00317 
00318     // 27.4.2.1.3  Type ios_base::iostate
00319     /**
00320      *  @brief This is a bitmask type.
00321      *
00322      *  @c "_Ios_Iostate" is implementation-defined, but it is valid to
00323      *  perform bitwise operations on these values and expect the Right
00324      *  Thing to happen.  Defined objects of type iostate are:
00325      *  - badbit
00326      *  - eofbit
00327      *  - failbit
00328      *  - goodbit
00329     */
00330     typedef _Ios_Iostate iostate;
00331 
00332     /// Indicates a loss of integrity in an input or output sequence (such
00333     /// as an irrecoverable read error from a file).
00334     static const iostate badbit =   _S_badbit;
00335 
00336     /// Indicates that an input operation reached the end of an input sequence.
00337     static const iostate eofbit =   _S_eofbit;
00338 
00339     /// Indicates that an input operation failed to read the expected
00340     /// characters, or that an output operation failed to generate the
00341     /// desired characters.
00342     static const iostate failbit =  _S_failbit;
00343 
00344     /// Indicates all is well.
00345     static const iostate goodbit =  _S_goodbit;
00346 
00347     // 27.4.2.1.4  Type ios_base::openmode
00348     /**
00349      *  @brief This is a bitmask type.
00350      *
00351      *  @c "_Ios_Openmode" is implementation-defined, but it is valid to
00352      *  perform bitwise operations on these values and expect the Right
00353      *  Thing to happen.  Defined objects of type openmode are:
00354      *  - app
00355      *  - ate
00356      *  - binary
00357      *  - in
00358      *  - out
00359      *  - trunc
00360     */
00361     typedef _Ios_Openmode openmode;
00362 
00363     /// Seek to end before each write.
00364     static const openmode app =     _S_app;
00365 
00366     /// Open and seek to end immediately after opening.
00367     static const openmode ate =     _S_ate;
00368 
00369     /// Perform input and output in binary mode (as opposed to text mode).
00370     /// This is probably not what you think it is; see
00371     /// http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch27s02.html
00372     static const openmode binary =  _S_bin;
00373 
00374     /// Open for input.  Default for @c ifstream and fstream.
00375     static const openmode in =      _S_in;
00376 
00377     /// Open for output.  Default for @c ofstream and fstream.
00378     static const openmode out =     _S_out;
00379 
00380     /// Open for input.  Default for @c ofstream.
00381     static const openmode trunc =   _S_trunc;
00382 
00383     // 27.4.2.1.5  Type ios_base::seekdir
00384     /**
00385      *  @brief This is an enumerated type.
00386      *
00387      *  @c "_Ios_Seekdir" is implementation-defined.  Defined values
00388      *  of type seekdir are:
00389      *  - beg
00390      *  - cur, equivalent to @c SEEK_CUR in the C standard library.
00391      *  - end, equivalent to @c SEEK_END in the C standard library.
00392     */
00393     typedef _Ios_Seekdir seekdir;
00394 
00395     /// Request a seek relative to the beginning of the stream.
00396     static const seekdir beg =      _S_beg;
00397 
00398     /// Request a seek relative to the current position within the sequence.
00399     static const seekdir cur =      _S_cur;
00400 
00401     /// Request a seek relative to the current end of the sequence.
00402     static const seekdir end =      _S_end;
00403 
00404     // Annex D.6
00405     typedef int io_state;
00406     typedef int open_mode;
00407     typedef int seek_dir;
00408 
00409     typedef std::streampos streampos;
00410     typedef std::streamoff streamoff;
00411 
00412     // Callbacks;
00413     /**
00414      *  @brief  The set of events that may be passed to an event callback.
00415      *
00416      *  erase_event is used during ~ios() and copyfmt().  imbue_event is used
00417      *  during imbue().  copyfmt_event is used during copyfmt().
00418     */
00419     enum event
00420     {
00421       erase_event,
00422       imbue_event,
00423       copyfmt_event
00424     };
00425 
00426     /**
00427      *  @brief  The type of an event callback function.
00428      *  @param  event  One of the members of the event enum.
00429      *  @param  ios_base  Reference to the ios_base object.
00430      *  @param  int  The integer provided when the callback was registered.
00431      *
00432      *  Event callbacks are user defined functions that get called during
00433      *  several ios_base and basic_ios functions, specifically imbue(),
00434      *  copyfmt(), and ~ios().
00435     */
00436     typedef void (*event_callback) (event, ios_base&, int);
00437 
00438     /**
00439      *  @brief  Add the callback __fn with parameter __index.
00440      *  @param  __fn  The function to add.
00441      *  @param  __index  The integer to pass to the function when invoked.
00442      *
00443      *  Registers a function as an event callback with an integer parameter to
00444      *  be passed to the function when invoked.  Multiple copies of the
00445      *  function are allowed.  If there are multiple callbacks, they are
00446      *  invoked in the order they were registered.
00447     */
00448     void
00449     register_callback(event_callback __fn, int __index);
00450 
00451   protected:
00452     //@{
00453     /**
00454      *  ios_base data members (doc me)
00455     */
00456     streamsize      _M_precision;
00457     streamsize      _M_width;
00458     fmtflags        _M_flags;
00459     iostate     _M_exception;
00460     iostate     _M_streambuf_state;
00461     //@}
00462 
00463     // 27.4.2.6  Members for callbacks
00464     // 27.4.2.6  ios_base callbacks
00465     struct _Callback_list
00466     {
00467       // Data Members
00468       _Callback_list*       _M_next;
00469       ios_base::event_callback  _M_fn;
00470       int           _M_index;
00471       _Atomic_word      _M_refcount;  // 0 means one reference.
00472 
00473       _Callback_list(ios_base::event_callback __fn, int __index,
00474              _Callback_list* __cb)
00475       : _M_next(__cb), _M_fn(__fn), _M_index(__index), _M_refcount(0) { }
00476 
00477       void
00478       _M_add_reference() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); }
00479 
00480       // 0 => OK to delete.
00481       int
00482       _M_remove_reference() 
00483       { return __gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1); }
00484     };
00485 
00486      _Callback_list*    _M_callbacks;
00487 
00488     void
00489     _M_call_callbacks(event __ev) throw();
00490 
00491     void
00492     _M_dispose_callbacks(void);
00493 
00494     // 27.4.2.5  Members for iword/pword storage
00495     struct _Words
00496     {
00497       void* _M_pword;
00498       long  _M_iword;
00499       _Words() : _M_pword(0), _M_iword(0) { }
00500     };
00501 
00502     // Only for failed iword/pword calls.
00503     _Words      _M_word_zero;
00504 
00505     // Guaranteed storage.
00506     // The first 5 iword and pword slots are reserved for internal use.
00507     enum { _S_local_word_size = 8 };
00508     _Words      _M_local_word[_S_local_word_size];
00509 
00510     // Allocated storage.
00511     int         _M_word_size;
00512     _Words*     _M_word;
00513 
00514     _Words&
00515     _M_grow_words(int __index, bool __iword);
00516 
00517     // Members for locale and locale caching.
00518     locale      _M_ios_locale;
00519 
00520     void
00521     _M_init();
00522 
00523   public:
00524 
00525     // 27.4.2.1.6  Class ios_base::Init
00526     // Used to initialize standard streams. In theory, g++ could use
00527     // -finit-priority to order this stuff correctly without going
00528     // through these machinations.
00529     class Init
00530     {
00531       friend class ios_base;
00532     public:
00533       Init();
00534       ~Init();
00535 
00536     private:
00537       static _Atomic_word   _S_refcount;
00538       static bool       _S_synced_with_stdio;
00539     };
00540 
00541     // [27.4.2.2] fmtflags state functions
00542     /**
00543      *  @brief  Access to format flags.
00544      *  @return  The format control flags for both input and output.
00545     */
00546     fmtflags
00547     flags() const
00548     { return _M_flags; }
00549 
00550     /**
00551      *  @brief  Setting new format flags all at once.
00552      *  @param  fmtfl  The new flags to set.
00553      *  @return  The previous format control flags.
00554      *
00555      *  This function overwrites all the format flags with @a fmtfl.
00556     */
00557     fmtflags
00558     flags(fmtflags __fmtfl)
00559     {
00560       fmtflags __old = _M_flags;
00561       _M_flags = __fmtfl;
00562       return __old;
00563     }
00564 
00565     /**
00566      *  @brief  Setting new format flags.
00567      *  @param  fmtfl  Additional flags to set.
00568      *  @return  The previous format control flags.
00569      *
00570      *  This function sets additional flags in format control.  Flags that
00571      *  were previously set remain set.
00572     */
00573     fmtflags
00574     setf(fmtflags __fmtfl)
00575     {
00576       fmtflags __old = _M_flags;
00577       _M_flags |= __fmtfl;
00578       return __old;
00579     }
00580 
00581     /**
00582      *  @brief  Setting new format flags.
00583      *  @param  fmtfl  Additional flags to set.
00584      *  @param  mask  The flags mask for @a fmtfl.
00585      *  @return  The previous format control flags.
00586      *
00587      *  This function clears @a mask in the format flags, then sets
00588      *  @a fmtfl @c & @a mask.  An example mask is @c ios_base::adjustfield.
00589     */
00590     fmtflags
00591     setf(fmtflags __fmtfl, fmtflags __mask)
00592     {
00593       fmtflags __old = _M_flags;
00594       _M_flags &= ~__mask;
00595       _M_flags |= (__fmtfl & __mask);
00596       return __old;
00597     }
00598 
00599     /**
00600      *  @brief  Clearing format flags.
00601      *  @param  mask  The flags to unset.
00602      *
00603      *  This function clears @a mask in the format flags.
00604     */
00605     void
00606     unsetf(fmtflags __mask)
00607     { _M_flags &= ~__mask; }
00608 
00609     /**
00610      *  @brief  Flags access.
00611      *  @return  The precision to generate on certain output operations.
00612      *
00613      *  Be careful if you try to give a definition of "precision" here; see
00614      *  DR 189.
00615     */
00616     streamsize
00617     precision() const
00618     { return _M_precision; }
00619 
00620     /**
00621      *  @brief  Changing flags.
00622      *  @param  prec  The new precision value.
00623      *  @return  The previous value of precision().
00624     */
00625     streamsize
00626     precision(streamsize __prec)
00627     {
00628       streamsize __old = _M_precision;
00629       _M_precision = __prec;
00630       return __old;
00631     }
00632 
00633     /**
00634      *  @brief  Flags access.
00635      *  @return  The minimum field width to generate on output operations.
00636      *
00637      *  "Minimum field width" refers to the number of characters.
00638     */
00639     streamsize
00640     width() const
00641     { return _M_width; }
00642 
00643     /**
00644      *  @brief  Changing flags.
00645      *  @param  wide  The new width value.
00646      *  @return  The previous value of width().
00647     */
00648     streamsize
00649     width(streamsize __wide)
00650     {
00651       streamsize __old = _M_width;
00652       _M_width = __wide;
00653       return __old;
00654     }
00655 
00656     // [27.4.2.4] ios_base static members
00657     /**
00658      *  @brief  Interaction with the standard C I/O objects.
00659      *  @param  sync  Whether to synchronize or not.
00660      *  @return  True if the standard streams were previously synchronized.
00661      *
00662      *  The synchronization referred to is @e only that between the standard
00663      *  C facilities (e.g., stdout) and the standard C++ objects (e.g.,
00664      *  cout).  User-declared streams are unaffected.  See
00665      *  http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch28s02.html
00666     */
00667     static bool
00668     sync_with_stdio(bool __sync = true);
00669 
00670     // [27.4.2.3] ios_base locale functions
00671     /**
00672      *  @brief  Setting a new locale.
00673      *  @param  loc  The new locale.
00674      *  @return  The previous locale.
00675      *
00676      *  Sets the new locale for this stream, and then invokes each callback
00677      *  with imbue_event.
00678     */
00679     locale
00680     imbue(const locale& __loc);
00681 
00682     /**
00683      *  @brief  Locale access
00684      *  @return  A copy of the current locale.
00685      *
00686      *  If @c imbue(loc) has previously been called, then this function
00687      *  returns @c loc.  Otherwise, it returns a copy of @c std::locale(),
00688      *  the global C++ locale.
00689     */
00690     locale
00691     getloc() const
00692     { return _M_ios_locale; }
00693 
00694     /**
00695      *  @brief  Locale access
00696      *  @return  A reference to the current locale.
00697      *
00698      *  Like getloc above, but returns a reference instead of
00699      *  generating a copy.
00700     */
00701     const locale&
00702     _M_getloc() const
00703     { return _M_ios_locale; }
00704 
00705     // [27.4.2.5] ios_base storage functions
00706     /**
00707      *  @brief  Access to unique indices.
00708      *  @return  An integer different from all previous calls.
00709      *
00710      *  This function returns a unique integer every time it is called.  It
00711      *  can be used for any purpose, but is primarily intended to be a unique
00712      *  index for the iword and pword functions.  The expectation is that an
00713      *  application calls xalloc in order to obtain an index in the iword and
00714      *  pword arrays that can be used without fear of conflict.
00715      *
00716      *  The implementation maintains a static variable that is incremented and
00717      *  returned on each invocation.  xalloc is guaranteed to return an index
00718      *  that is safe to use in the iword and pword arrays.
00719     */
00720     static int
00721     xalloc() throw();
00722 
00723     /**
00724      *  @brief  Access to integer array.
00725      *  @param  __ix  Index into the array.
00726      *  @return  A reference to an integer associated with the index.
00727      *
00728      *  The iword function provides access to an array of integers that can be
00729      *  used for any purpose.  The array grows as required to hold the
00730      *  supplied index.  All integers in the array are initialized to 0.
00731      *
00732      *  The implementation reserves several indices.  You should use xalloc to
00733      *  obtain an index that is safe to use.  Also note that since the array
00734      *  can grow dynamically, it is not safe to hold onto the reference.
00735     */
00736     long&
00737     iword(int __ix)
00738     {
00739       _Words& __word = (__ix < _M_word_size)
00740             ? _M_word[__ix] : _M_grow_words(__ix, true);
00741       return __word._M_iword;
00742     }
00743 
00744     /**
00745      *  @brief  Access to void pointer array.
00746      *  @param  __ix  Index into the array.
00747      *  @return  A reference to a void* associated with the index.
00748      *
00749      *  The pword function provides access to an array of pointers that can be
00750      *  used for any purpose.  The array grows as required to hold the
00751      *  supplied index.  All pointers in the array are initialized to 0.
00752      *
00753      *  The implementation reserves several indices.  You should use xalloc to
00754      *  obtain an index that is safe to use.  Also note that since the array
00755      *  can grow dynamically, it is not safe to hold onto the reference.
00756     */
00757     void*&
00758     pword(int __ix)
00759     {
00760       _Words& __word = (__ix < _M_word_size)
00761             ? _M_word[__ix] : _M_grow_words(__ix, false);
00762       return __word._M_pword;
00763     }
00764 
00765     // Destructor
00766     /**
00767      *  Invokes each callback with erase_event.  Destroys local storage.
00768      *
00769      *  Note that the ios_base object for the standard streams never gets
00770      *  destroyed.  As a result, any callbacks registered with the standard
00771      *  streams will not get invoked with erase_event (unless copyfmt is
00772      *  used).
00773     */
00774     virtual ~ios_base();
00775 
00776   protected:
00777     ios_base();
00778 
00779   // _GLIBCXX_RESOLVE_LIB_DEFECTS
00780   // 50.  Copy constructor and assignment operator of ios_base
00781   private:
00782     ios_base(const ios_base&);
00783 
00784     ios_base&
00785     operator=(const ios_base&);
00786   };
00787 
00788   // [27.4.5.1] fmtflags manipulators
00789   /// Calls base.setf(ios_base::boolalpha).
00790   inline ios_base&
00791   boolalpha(ios_base& __base)
00792   {
00793     __base.setf(ios_base::boolalpha);
00794     return __base;
00795   }
00796 
00797   /// Calls base.unsetf(ios_base::boolalpha).
00798   inline ios_base&
00799   noboolalpha(ios_base& __base)
00800   {
00801     __base.unsetf(ios_base::boolalpha);
00802     return __base;
00803   }
00804 
00805   /// Calls base.setf(ios_base::showbase).
00806   inline ios_base&
00807   showbase(ios_base& __base)
00808   {
00809     __base.setf(ios_base::showbase);
00810     return __base;
00811   }
00812 
00813   /// Calls base.unsetf(ios_base::showbase).
00814   inline ios_base&
00815   noshowbase(ios_base& __base)
00816   {
00817     __base.unsetf(ios_base::showbase);
00818     return __base;
00819   }
00820 
00821   /// Calls base.setf(ios_base::showpoint).
00822   inline ios_base&
00823   showpoint(ios_base& __base)
00824   {
00825     __base.setf(ios_base::showpoint);
00826     return __base;
00827   }
00828 
00829   /// Calls base.unsetf(ios_base::showpoint).
00830   inline ios_base&
00831   noshowpoint(ios_base& __base)
00832   {
00833     __base.unsetf(ios_base::showpoint);
00834     return __base;
00835   }
00836 
00837   /// Calls base.setf(ios_base::showpos).
00838   inline ios_base&
00839   showpos(ios_base& __base)
00840   {
00841     __base.setf(ios_base::showpos);
00842     return __base;
00843   }
00844 
00845   /// Calls base.unsetf(ios_base::showpos).
00846   inline ios_base&
00847   noshowpos(ios_base& __base)
00848   {
00849     __base.unsetf(ios_base::showpos);
00850     return __base;
00851   }
00852 
00853   /// Calls base.setf(ios_base::skipws).
00854   inline ios_base&
00855   skipws(ios_base& __base)
00856   {
00857     __base.setf(ios_base::skipws);
00858     return __base;
00859   }
00860 
00861   /// Calls base.unsetf(ios_base::skipws).
00862   inline ios_base&
00863   noskipws(ios_base& __base)
00864   {
00865     __base.unsetf(ios_base::skipws);
00866     return __base;
00867   }
00868 
00869   /// Calls base.setf(ios_base::uppercase).
00870   inline ios_base&
00871   uppercase(ios_base& __base)
00872   {
00873     __base.setf(ios_base::uppercase);
00874     return __base;
00875   }
00876 
00877   /// Calls base.unsetf(ios_base::uppercase).
00878   inline ios_base&
00879   nouppercase(ios_base& __base)
00880   {
00881     __base.unsetf(ios_base::uppercase);
00882     return __base;
00883   }
00884 
00885   /// Calls base.setf(ios_base::unitbuf).
00886   inline ios_base&
00887   unitbuf(ios_base& __base)
00888   {
00889      __base.setf(ios_base::unitbuf);
00890      return __base;
00891   }
00892 
00893   /// Calls base.unsetf(ios_base::unitbuf).
00894   inline ios_base&
00895   nounitbuf(ios_base& __base)
00896   {
00897      __base.unsetf(ios_base::unitbuf);
00898      return __base;
00899   }
00900 
00901   // [27.4.5.2] adjustfield manipulators
00902   /// Calls base.setf(ios_base::internal, ios_base::adjustfield).
00903   inline ios_base&
00904   internal(ios_base& __base)
00905   {
00906      __base.setf(ios_base::internal, ios_base::adjustfield);
00907      return __base;
00908   }
00909 
00910   /// Calls base.setf(ios_base::left, ios_base::adjustfield).
00911   inline ios_base&
00912   left(ios_base& __base)
00913   {
00914     __base.setf(ios_base::left, ios_base::adjustfield);
00915     return __base;
00916   }
00917 
00918   /// Calls base.setf(ios_base::right, ios_base::adjustfield).
00919   inline ios_base&
00920   right(ios_base& __base)
00921   {
00922     __base.setf(ios_base::right, ios_base::adjustfield);
00923     return __base;
00924   }
00925 
00926   // [27.4.5.3] basefield manipulators
00927   /// Calls base.setf(ios_base::dec, ios_base::basefield).
00928   inline ios_base&
00929   dec(ios_base& __base)
00930   {
00931     __base.setf(ios_base::dec, ios_base::basefield);
00932     return __base;
00933   }
00934 
00935   /// Calls base.setf(ios_base::hex, ios_base::basefield).
00936   inline ios_base&
00937   hex(ios_base& __base)
00938   {
00939     __base.setf(ios_base::hex, ios_base::basefield);
00940     return __base;
00941   }
00942 
00943   /// Calls base.setf(ios_base::oct, ios_base::basefield).
00944   inline ios_base&
00945   oct(ios_base& __base)
00946   {
00947     __base.setf(ios_base::oct, ios_base::basefield);
00948     return __base;
00949   }
00950 
00951   // [27.4.5.4] floatfield manipulators
00952   /// Calls base.setf(ios_base::fixed, ios_base::floatfield).
00953   inline ios_base&
00954   fixed(ios_base& __base)
00955   {
00956     __base.setf(ios_base::fixed, ios_base::floatfield);
00957     return __base;
00958   }
00959 
00960   /// Calls base.setf(ios_base::scientific, ios_base::floatfield).
00961   inline ios_base&
00962   scientific(ios_base& __base)
00963   {
00964     __base.setf(ios_base::scientific, ios_base::floatfield);
00965     return __base;
00966   }
00967 
00968 _GLIBCXX_END_NAMESPACE
00969 
00970 #endif /* _IOS_BASE_H */
00971 

Generated on Sat Dec 12 09:40:10 2009 for libstdc++ by  doxygen 1.5.6