libMesh
Public Types | Public Member Functions | Private Attributes | List of all members
libMesh::BasicOStreamProxy< charT, traits > Class Template Reference

This class is intended to be reseatable like a pointer-to-ostream for flexibility, but to look like a reference when used to produce less awkward user code. More...

#include <ostream_proxy.h>

Public Types

typedef std::basic_ostream< charT, traits > streamT
 This class is going to be used to proxy for ostream, but other character and traits types are possible. More...
 
typedef std::basic_streambuf< charT, traits > streambufT
 This class is going to be used to proxy for ostream, but other character and traits types are possible. More...
 

Public Member Functions

 BasicOStreamProxy (streamT &target)
 Default constructor. More...
 
 BasicOStreamProxy (BasicOStreamProxy &old)
 Shallow copy constructor. More...
 
BasicOStreamProxyoperator= (streamT &target)
 Reset the internal target to a new target output stream. More...
 
BasicOStreamProxyoperator= (const BasicOStreamProxy &old)
 Reset the target to the same output stream as in old. More...
 
 ~BasicOStreamProxy ()
 Default destructor. More...
 
 operator streamT & ()
 Conversion to ostream &, for when we get passed to a function requesting one. More...
 
 operator const streamT & () const
 Conversion to const ostream &, for when we get passed to a function requesting one. More...
 
template<typename T >
BasicOStreamProxyoperator<< (const T &in)
 Redirect any output to the target. More...
 
BasicOStreamProxyoperator<< (streamT &(*in)(streamT &))
 Redirect any ostream manipulators to the target. More...
 
BasicOStreamProxyoperator<< (std::basic_ios< charT, traits > &(*in)(std::basic_ios< charT, traits > &))
 Redirect any ios manipulators to the target. More...
 
BasicOStreamProxyoperator<< (std::ios_base &(*in)(std::ios_base &))
 Redirect any ios_base manipulators to the target. More...
 
streambufTrdbuf () const
 Get the associated stream buffer. More...
 
streambufTrdbuf (streambufT *sb)
 Set the associated stream buffer. More...
 
BasicOStreamProxyflush ()
 Flush the associated stream buffer. More...
 
std::ios_base::fmtflags flags () const
 Get the associated format flags. More...
 
std::ios_base::fmtflags flags (std::ios_base::fmtflags fmtfl)
 Set/get the associated format flags. More...
 
std::ios_base::fmtflags setf (std::ios_base::fmtflags fmtfl)
 Set the associated flags. More...
 
std::ios_base::fmtflags setf (std::ios_base::fmtflags fmtfl, std::ios_base::fmtflags mask)
 Set the associated flags. More...
 
void unsetf (std::ios_base::fmtflags mask)
 Clear the associated flags. More...
 
std::streamsize precision () const
 Get the associated write precision. More...
 
std::streamsize precision (std::streamsize prec)
 Set the associated write precision. More...
 
void reset (streamT &target)
 Reset the proxy to point to a different target. More...
 
streamTget ()
 Rather than implement every ostream/ios/ios_base function, we'll be lazy and make esoteric uses go through a get() function. More...
 
const streamTget () const
 Rather than implement every ostream/ios/ios_base function, we'll be lazy and make esoteric uses go through a get() function. More...
 
std::streampos tellp ()
 Returns the position of the character in the current stream. More...
 

Private Attributes

streamT_target
 The pointer to the "real" ostream we send everything to. More...
 

Detailed Description

template<typename charT = char, typename traits = std::char_traits<charT>>
class libMesh::BasicOStreamProxy< charT, traits >

This class is intended to be reseatable like a pointer-to-ostream for flexibility, but to look like a reference when used to produce less awkward user code.

It is up to the user to ensure that the target ostream remains valid.

Author
Roy Stogner
Date
2010

Definition at line 42 of file ostream_proxy.h.

Member Typedef Documentation

◆ streambufT

template<typename charT = char, typename traits = std::char_traits<charT>>
typedef std::basic_streambuf<charT,traits> libMesh::BasicOStreamProxy< charT, traits >::streambufT

This class is going to be used to proxy for ostream, but other character and traits types are possible.

Definition at line 55 of file ostream_proxy.h.

◆ streamT

template<typename charT = char, typename traits = std::char_traits<charT>>
typedef std::basic_ostream<charT,traits> libMesh::BasicOStreamProxy< charT, traits >::streamT

This class is going to be used to proxy for ostream, but other character and traits types are possible.

Definition at line 49 of file ostream_proxy.h.

Constructor & Destructor Documentation

◆ BasicOStreamProxy() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
libMesh::BasicOStreamProxy< charT, traits >::BasicOStreamProxy ( streamT target)
inline

Default constructor.

Takes a reference to the target ostream to which we pass output. The user is responsible for ensuring that this target exists for as long as the proxy does.

Definition at line 62 of file ostream_proxy.h.

62 : _target(&target) {}

◆ BasicOStreamProxy() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
libMesh::BasicOStreamProxy< charT, traits >::BasicOStreamProxy ( BasicOStreamProxy< charT, traits > &  old)
inline

Shallow copy constructor.

Output in the new object is passed to the same target ostream as in the old object. The user is responsible for ensuring that this target exists for as long as the proxies do.

Definition at line 70 of file ostream_proxy.h.

70 : _target(old._target) {}

◆ ~BasicOStreamProxy()

template<typename charT = char, typename traits = std::char_traits<charT>>
libMesh::BasicOStreamProxy< charT, traits >::~BasicOStreamProxy ( )
inline

Default destructor.

Definition at line 93 of file ostream_proxy.h.

93 {}

Member Function Documentation

◆ flags() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
std::ios_base::fmtflags libMesh::BasicOStreamProxy< charT, traits >::flags ( ) const
inline

Get the associated format flags.

Definition at line 158 of file ostream_proxy.h.

159  { return _target->flags(); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

Referenced by main().

◆ flags() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
std::ios_base::fmtflags libMesh::BasicOStreamProxy< charT, traits >::flags ( std::ios_base::fmtflags  fmtfl)
inline

Set/get the associated format flags.

Definition at line 164 of file ostream_proxy.h.

165  { return _target->flags(fmtfl); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ flush()

template<typename charT = char, typename traits = std::char_traits<charT>>
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::flush ( )
inline

Flush the associated stream buffer.

Definition at line 153 of file ostream_proxy.h.

153 { _target->flush(); return *this; }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

Referenced by assemble_ellipticdg(), and libMesh::PltLoader::read_data().

◆ get() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
streamT* libMesh::BasicOStreamProxy< charT, traits >::get ( )
inline

Rather than implement every ostream/ios/ios_base function, we'll be lazy and make esoteric uses go through a get() function.

Definition at line 213 of file ostream_proxy.h.

213  {
214  return _target;
215  }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ get() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
const streamT* libMesh::BasicOStreamProxy< charT, traits >::get ( ) const
inline

Rather than implement every ostream/ios/ios_base function, we'll be lazy and make esoteric uses go through a get() function.

Definition at line 221 of file ostream_proxy.h.

221  {
222  return _target;
223  }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ operator const streamT &()

template<typename charT = char, typename traits = std::char_traits<charT>>
libMesh::BasicOStreamProxy< charT, traits >::operator const streamT & ( ) const
inline

Conversion to const ostream &, for when we get passed to a function requesting one.

Definition at line 109 of file ostream_proxy.h.

109 { return *_target; }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ operator streamT &()

template<typename charT = char, typename traits = std::char_traits<charT>>
libMesh::BasicOStreamProxy< charT, traits >::operator streamT & ( )
inline

Conversion to ostream &, for when we get passed to a function requesting one.

Definition at line 103 of file ostream_proxy.h.

103 { return *_target; }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ operator<<() [1/4]

template<typename charT = char, typename traits = std::char_traits<charT>>
template<typename T >
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::operator<< ( const T &  in)
inline

Redirect any output to the target.

Definition at line 115 of file ostream_proxy.h.

115  {
116  (*_target) << in; return *this;
117  }

◆ operator<<() [2/4]

template<typename charT = char, typename traits = std::char_traits<charT>>
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::operator<< ( std::basic_ios< charT, traits > &(*)(std::basic_ios< charT, traits > &)  in)
inline

Redirect any ios manipulators to the target.

Definition at line 129 of file ostream_proxy.h.

129  {
130  (*_target) << in; return *this;
131  }

◆ operator<<() [3/4]

template<typename charT = char, typename traits = std::char_traits<charT>>
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::operator<< ( std::ios_base &(*)(std::ios_base &)  in)
inline

Redirect any ios_base manipulators to the target.

Definition at line 136 of file ostream_proxy.h.

136  {
137  (*_target) << in; return *this;
138  }

◆ operator<<() [4/4]

template<typename charT = char, typename traits = std::char_traits<charT>>
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::operator<< ( streamT &(*)(streamT &)  in)
inline

Redirect any ostream manipulators to the target.

Definition at line 122 of file ostream_proxy.h.

122  {
123  (*_target) << in; return *this;
124  }

◆ operator=() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::operator= ( const BasicOStreamProxy< charT, traits > &  old)
inline

Reset the target to the same output stream as in old.

Definition at line 84 of file ostream_proxy.h.

85  {
86  _target = old._target;
87  return *this;
88  }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ operator=() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
BasicOStreamProxy& libMesh::BasicOStreamProxy< charT, traits >::operator= ( streamT target)
inline

Reset the internal target to a new target output stream.

Definition at line 75 of file ostream_proxy.h.

76  {
77  _target = &target;
78  return *this;
79  }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ precision() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
std::streamsize libMesh::BasicOStreamProxy< charT, traits >::precision ( ) const
inline

◆ precision() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
std::streamsize libMesh::BasicOStreamProxy< charT, traits >::precision ( std::streamsize  prec)
inline

Set the associated write precision.

Definition at line 195 of file ostream_proxy.h.

196  { return _target->precision(prec); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ rdbuf() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
streambufT* libMesh::BasicOStreamProxy< charT, traits >::rdbuf ( ) const
inline

Get the associated stream buffer.

Definition at line 143 of file ostream_proxy.h.

143 { return _target->rdbuf(); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

Referenced by libMesh::LibMeshInit::LibMeshInit(), main(), StreamRedirector::StreamRedirector(), and StreamRedirector::~StreamRedirector().

◆ rdbuf() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
streambufT* libMesh::BasicOStreamProxy< charT, traits >::rdbuf ( streambufT sb)
inline

Set the associated stream buffer.

Definition at line 148 of file ostream_proxy.h.

148 { return _target->rdbuf(sb); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ reset()

template<typename charT = char, typename traits = std::char_traits<charT>>
void libMesh::BasicOStreamProxy< charT, traits >::reset ( streamT target)
inline

Reset the proxy to point to a different target.

Note
This does not delete the previous target.

Definition at line 207 of file ostream_proxy.h.

207 { _target = &target; }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ setf() [1/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
std::ios_base::fmtflags libMesh::BasicOStreamProxy< charT, traits >::setf ( std::ios_base::fmtflags  fmtfl)
inline

Set the associated flags.

Definition at line 170 of file ostream_proxy.h.

171  { return _target->setf(fmtfl); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

Referenced by libMesh::ContinuationSystem::continuation_solve(), and libMesh::ContinuationSystem::update_solution().

◆ setf() [2/2]

template<typename charT = char, typename traits = std::char_traits<charT>>
std::ios_base::fmtflags libMesh::BasicOStreamProxy< charT, traits >::setf ( std::ios_base::fmtflags  fmtfl,
std::ios_base::fmtflags  mask 
)
inline

Set the associated flags.

Definition at line 176 of file ostream_proxy.h.

178  { return _target->setf(fmtfl, mask); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ tellp()

template<typename charT = char, typename traits = std::char_traits<charT>>
std::streampos libMesh::BasicOStreamProxy< charT, traits >::tellp ( )
inline

Returns the position of the character in the current stream.

Definition at line 228 of file ostream_proxy.h.

228 { return _target->tellp(); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

◆ unsetf()

template<typename charT = char, typename traits = std::char_traits<charT>>
void libMesh::BasicOStreamProxy< charT, traits >::unsetf ( std::ios_base::fmtflags  mask)
inline

Clear the associated flags.

Definition at line 183 of file ostream_proxy.h.

184  { _target->unsetf(mask); }

References libMesh::BasicOStreamProxy< charT, traits >::_target.

Referenced by libMesh::ContinuationSystem::continuation_solve(), and libMesh::ContinuationSystem::update_solution().

Member Data Documentation

◆ _target

template<typename charT = char, typename traits = std::char_traits<charT>>
streamT* libMesh::BasicOStreamProxy< charT, traits >::_target
private

The documentation for this class was generated from the following file:
libMesh::BasicOStreamProxy::_target
streamT * _target
The pointer to the "real" ostream we send everything to.
Definition: ostream_proxy.h:234