The Gaudi Framework  v30r3 (a5ef0a68)
MsgStream Class Reference

Definition of the MsgStream class used to transmit messages. More...

#include <GaudiKernel/MsgStream.h>

Collaboration diagram for MsgStream:

Public Member Functions

GAUDI_API MsgStream (IMessageSvc *svc, int buffer_length=128)
 Standard constructor: Connect to message service for output. More...
 
GAUDI_API MsgStream (IMessageSvc *svc, std::string source, int buffer_length=128)
 Standard constructor: Connect to message service for output. More...
 
 MsgStream (const MsgStream &msg)
 Copy constructor. More...
 
virtual GAUDI_API ~MsgStream ()=default
 Standard destructor. More...
 
MsgStreamreport (int lvl)
 Initialize report of new message: activate if print level is sufficient. More...
 
virtual GAUDI_API MsgStreamdoOutput ()
 Output method. More...
 
const std::stringbuffer () const
 Access string buffer. More...
 
std::ostringstreamstream ()
 Access string MsgStream. More...
 
void setMsgSvc (IMessageSvc *svc)
 Update IMessageSvc pointer. More...
 
void setLevel (int level)
 Update outputlevel. More...
 
MSG::Level level () const
 Retrieve output level. More...
 
MSG::Level currentLevel () const
 Retrieve current stream output level. More...
 
void activate ()
 Activate MsgStream. More...
 
void deactivate ()
 Deactivate MsgStream. More...
 
bool isActive () const
 Accessor: is MsgStream active. More...
 
MsgStreamflush ()
 
MsgStreamwrite (const char *buff, int len)
 
MsgStreamoperator<< (MsgStream &(*_f)(MsgStream &))
 Accept MsgStream modifiers. More...
 
MsgStreamoperator<< (std::ostream &(*_f)(std::ostream &))
 Accept oMsgStream modifiers. More...
 
MsgStreamoperator<< (std::ios &(*_f)(std::ios &))
 Accept ios modifiers. More...
 
MsgStreamoperator<< (MSG::Level level)
 Accept MsgStream activation using MsgStreamer operator. More...
 
MsgStreamoperator<< (longlong arg)
 
MsgStreamoperator<< (std::ios_base &(*_f)(std::ios_base &))
 Accept ios base class modifiers. More...
 
long flags () const
 IOS emulation. More...
 
long flags (FLAG_TYPE v)
 
long setf (FLAG_TYPE v)
 
int width () const
 
int width (int v)
 
char fill () const
 
char fill (char v)
 
int precision () const
 
int precision (int v)
 
int rdstate () const
 
int good () const
 
int eof () const
 
int bad () const
 
long setf (FLAG_TYPE _f, FLAG_TYPE _m)
 
void unsetf (FLAG_TYPE _l)
 
void clear (STATE_TYPE _i=std::ios_base::failbit)
 
GAUDI_API void setColor (MSG::Color col)
 Set the text color. More...
 
GAUDI_API void setColor (MSG::Color fg, MSG::Color bg)
 Set the foreground and background colors. More...
 
GAUDI_API void resetColor ()
 Reset the colors to defaults. More...
 

Static Public Member Functions

static GAUDI_API bool enableCountInactive (bool value=true)
 Enable/disable the count of inactive messages. More...
 
static GAUDI_API bool countInactive ()
 Returns the state of the counting of inactive messages (enabled/disabled). More...
 

Protected Attributes

IMessageSvcm_service
 Pointer to message service if buffer has send. More...
 
std::string m_buffer
 Use standard string for information buffering. More...
 
std::string m_source
 Use std::string for source information to be passed to the message service. More...
 
std::ostringstream m_stream
 String MsgStream associated to buffer. More...
 
bool m_active = false
 Flag set to true if formatting engine is active. More...
 
MSG::Level m_level
 Debug level of the message service. More...
 
MSG::Level m_currLevel
 Current debug level. More...
 
bool m_useColors
 use colors More...
 
IInactiveMessageCounterm_inactCounter = nullptr
 Pointer to service counting messages prepared but not printed because of wrong level. More...
 

Static Protected Attributes

static bool m_countInactive = false
 Flag to state if the inactive messages has to be counted. More...
 

Private Types

typedef std::ios_base::fmtflags FLAG_TYPE
 Error return code in case ios modification is requested for inactive streams. More...
 
typedef std::ios_base::iostate STATE_TYPE
 

Detailed Description

Definition of the MsgStream class used to transmit messages.

This class is intended to ease the use of error logging to the message service

Author
M.Frank
Sebastien Ponce

Definition at line 24 of file MsgStream.h.

Member Typedef Documentation

typedef std::ios_base::fmtflags MsgStream::FLAG_TYPE
private

Error return code in case ios modification is requested for inactive streams.

Definition at line 30 of file MsgStream.h.

typedef std::ios_base::iostate MsgStream::STATE_TYPE
private

Definition at line 31 of file MsgStream.h.

Constructor & Destructor Documentation

MsgStream::MsgStream ( IMessageSvc svc,
int  buffer_length = 128 
)

Standard constructor: Connect to message service for output.

Definition at line 40 of file MsgStream.cpp.

40  : m_service( svc )
41 {
42  setLevel( svc ? svc->outputLevel() : MSG::INFO );
44  m_useColors = ( svc ? svc->useColor() : false );
45 #ifndef NDEBUG
46  m_inactCounter = svc ? Gaudi::Cast<IInactiveMessageCounter>( svc ) : 0;
47 #endif
48 }
virtual bool useColor() const =0
Show whether colors are used.
bool m_useColors
use colors
Definition: MsgStream.h:49
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:35
MSG::Level m_level
Debug level of the message service.
Definition: MsgStream.h:45
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
void setLevel(int level)
Update outputlevel.
Definition: MsgStream.h:102
IInactiveMessageCounter * m_inactCounter
Pointer to service counting messages prepared but not printed because of wrong level.
Definition: MsgStream.h:52
virtual int outputLevel() const =0
Retrieve the current output level threshold.
MsgStream::MsgStream ( IMessageSvc svc,
std::string  source,
int  buffer_length = 128 
)

Standard constructor: Connect to message service for output.

Definition at line 50 of file MsgStream.cpp.

50  : m_service( svc ), m_source( std::move( source ) )
51 {
52  setLevel( svc ? svc->outputLevel( m_source ) : MSG::INFO );
54  m_useColors = ( svc && svc->useColor() );
55 #ifndef NDEBUG
56  m_inactCounter = svc ? Gaudi::Cast<IInactiveMessageCounter>( svc ) : 0;
57 #endif
58 }
virtual bool useColor() const =0
Show whether colors are used.
bool m_useColors
use colors
Definition: MsgStream.h:49
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:35
std::string m_source
Use std::string for source information to be passed to the message service.
Definition: MsgStream.h:39
MSG::Level m_level
Debug level of the message service.
Definition: MsgStream.h:45
T move(T...args)
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
void setLevel(int level)
Update outputlevel.
Definition: MsgStream.h:102
IInactiveMessageCounter * m_inactCounter
Pointer to service counting messages prepared but not printed because of wrong level.
Definition: MsgStream.h:52
virtual int outputLevel() const =0
Retrieve the current output level threshold.
MsgStream::MsgStream ( const MsgStream msg)
inline

Copy constructor.

Definition at line 62 of file MsgStream.h.

63  : m_service( msg.m_service )
64  , m_active( msg.m_active )
65  , m_level( msg.m_level )
66  , m_currLevel( msg.m_currLevel )
67  , m_useColors( msg.m_useColors )
69  {
70  try { // ignore exception if we cannot copy the string
71  m_source = msg.m_source;
72  } catch ( ... ) {
73  }
74  }
bool m_useColors
use colors
Definition: MsgStream.h:49
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:35
std::string m_source
Use std::string for source information to be passed to the message service.
Definition: MsgStream.h:39
MSG::Level m_level
Debug level of the message service.
Definition: MsgStream.h:45
bool m_active
Flag set to true if formatting engine is active.
Definition: MsgStream.h:43
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
IInactiveMessageCounter * m_inactCounter
Pointer to service counting messages prepared but not printed because of wrong level.
Definition: MsgStream.h:52
virtual GAUDI_API MsgStream::~MsgStream ( )
virtualdefault

Standard destructor.

Member Function Documentation

void MsgStream::activate ( )
inline

Activate MsgStream.

Definition at line 112 of file MsgStream.h.

112 { m_active = true; }
bool m_active
Flag set to true if formatting engine is active.
Definition: MsgStream.h:43
int MsgStream::bad ( ) const
inline

Definition at line 181 of file MsgStream.h.

181 { return isActive() ? m_stream.bad() : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
const std::string& MsgStream::buffer ( ) const
inline

Access string buffer.

Definition at line 96 of file MsgStream.h.

96 { return m_buffer; }
std::string m_buffer
Use standard string for information buffering.
Definition: MsgStream.h:37
void MsgStream::clear ( STATE_TYPE  _i = std::ios_base::failbit)
inline

Definition at line 187 of file MsgStream.h.

188  {
189  if ( isActive() ) m_stream.clear( _i );
190  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T clear(T...args)
bool MsgStream::countInactive ( )
static

Returns the state of the counting of inactive messages (enabled/disabled).

Definition at line 38 of file MsgStream.cpp.

38 { return m_countInactive; }
static bool m_countInactive
Flag to state if the inactive messages has to be counted.
Definition: MsgStream.h:54
MSG::Level MsgStream::currentLevel ( ) const
inline

Retrieve current stream output level.

Definition at line 110 of file MsgStream.h.

110 { return m_currLevel; }
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
void MsgStream::deactivate ( )
inline

Deactivate MsgStream.

Definition at line 114 of file MsgStream.h.

114 { m_active = false; }
bool m_active
Flag set to true if formatting engine is active.
Definition: MsgStream.h:43
MsgStream & MsgStream::doOutput ( )
virtual

Output method.

Definition at line 60 of file MsgStream.cpp.

61 {
62  try {
63  // This piece of code may throw and we cannot afford it when we print a message
64  // in the middle of a catch block.
65  if ( isActive() ) {
67  if ( m_service ) {
69  } else {
70  std::cout << msg << std::endl;
71  }
72  }
73  m_stream.str( "" );
74  } catch ( ... ) {
75  }
76  return *this;
77 }
T endl(T...args)
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:35
std::string m_source
Use std::string for source information to be passed to the message service.
Definition: MsgStream.h:39
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
The Message class.
Definition: Message.h:15
virtual void reportMessage(const Message &msg, int outputLevel)=0
Report a message by sending a Message object to the message service.
bool MsgStream::enableCountInactive ( bool  value = true)
static

Enable/disable the count of inactive messages.

Returns the previous state.

Definition at line 31 of file MsgStream.cpp.

32 {
33  bool old = m_countInactive;
34  m_countInactive = value;
35  return old;
36 }
static bool m_countInactive
Flag to state if the inactive messages has to be counted.
Definition: MsgStream.h:54
int MsgStream::eof ( ) const
inline

Definition at line 180 of file MsgStream.h.

180 { return isActive() ? m_stream.eof() : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
char MsgStream::fill ( ) const
inline

Definition at line 174 of file MsgStream.h.

174 { return isActive() ? m_stream.fill() : (char)-1; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T fill(T...args)
char MsgStream::fill ( char  v)
inline

Definition at line 175 of file MsgStream.h.

175 { return isActive() ? m_stream.fill( v ) : (char)-1; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T fill(T...args)
long MsgStream::flags ( ) const
inline

IOS emulation.

Definition at line 169 of file MsgStream.h.

169 { return isActive() ? m_stream.flags() : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
T flags(T...args)
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
long MsgStream::flags ( FLAG_TYPE  v)
inline

Definition at line 170 of file MsgStream.h.

170 { return isActive() ? m_stream.flags( v ) : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
T flags(T...args)
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MsgStream& MsgStream::flush ( )
inline

Definition at line 118 of file MsgStream.h.

119  {
120  if ( isActive() ) m_stream.flush();
121  return *this;
122  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T flush(T...args)
int MsgStream::good ( ) const
inline

Definition at line 179 of file MsgStream.h.

179 { return isActive() ? m_stream.good() : 0; }
T good(T...args)
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
bool MsgStream::isActive ( ) const
inline

Accessor: is MsgStream active.

Definition at line 116 of file MsgStream.h.

116 { return m_active; }
bool m_active
Flag set to true if formatting engine is active.
Definition: MsgStream.h:43
MSG::Level MsgStream::level ( ) const
inline

Retrieve output level.

Definition at line 108 of file MsgStream.h.

108 { return m_level; }
MSG::Level m_level
Debug level of the message service.
Definition: MsgStream.h:45
MsgStream& MsgStream::operator<< ( MsgStream &(*)(MsgStream &)  _f)
inline

Accept MsgStream modifiers.

Definition at line 130 of file MsgStream.h.

131  {
132  if ( isActive() ) _f( *this );
133  return *this;
134  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
MsgStream& MsgStream::operator<< ( std::ostream &(*)(std::ostream &)  _f)
inline

Accept oMsgStream modifiers.

Definition at line 136 of file MsgStream.h.

137  {
138  if ( isActive() ) _f( m_stream );
139  return *this;
140  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MsgStream& MsgStream::operator<< ( std::ios &(*)(std::ios &)  _f)
inline

Accept ios modifiers.

Definition at line 142 of file MsgStream.h.

143  {
144  if ( isActive() ) _f( m_stream );
145  return *this;
146  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MsgStream& MsgStream::operator<< ( MSG::Level  level)
inline

Accept MsgStream activation using MsgStreamer operator.

Definition at line 148 of file MsgStream.h.

148 { return report( level ); }
MsgStream & report(int lvl)
Initialize report of new message: activate if print level is sufficient.
Definition: MsgStream.h:78
MSG::Level level() const
Retrieve output level.
Definition: MsgStream.h:108
MsgStream& MsgStream::operator<< ( longlong  arg)
inline

Definition at line 149 of file MsgStream.h.

150  {
151  try {
152  // this may throw, and we cannot afford it if the stream is used in a catch block
153  if ( isActive() ) {
154  m_stream << arg;
155  }
156  } catch ( ... ) {
157  }
158  return *this;
159  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MsgStream& MsgStream::operator<< ( std::ios_base &(*)(std::ios_base &)  _f)
inline

Accept ios base class modifiers.

Definition at line 162 of file MsgStream.h.

163  {
164  if ( isActive() ) _f( m_stream );
165  return *this;
166  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
int MsgStream::precision ( ) const
inline

Definition at line 176 of file MsgStream.h.

176 { return isActive() ? m_stream.precision() : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
T precision(T...args)
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
int MsgStream::precision ( int  v)
inline

Definition at line 177 of file MsgStream.h.

177 { return isActive() ? m_stream.precision( v ) : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
T precision(T...args)
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
int MsgStream::rdstate ( ) const
inline

Definition at line 178 of file MsgStream.h.

178 { return isActive() ? m_stream.rdstate() : std::ios_base::failbit; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
T rdstate(T...args)
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MsgStream& MsgStream::report ( int  lvl)
inline

Initialize report of new message: activate if print level is sufficient.

Definition at line 78 of file MsgStream.h.

79  {
80  lvl = ( lvl >= MSG::NUM_LEVELS ) ? MSG::ALWAYS : ( lvl < MSG::NIL ) ? MSG::NIL : lvl;
81  if ( ( m_currLevel = MSG::Level( lvl ) ) >= level() ) {
82  activate();
83  } else {
84  deactivate();
85 #ifndef NDEBUG
88  }
89 #endif
90  }
91  return *this;
92  }
virtual void incrInactiveCount(MSG::Level level, const std::string &src)=0
Increment deactivated message count.
std::string m_source
Use std::string for source information to be passed to the message service.
Definition: MsgStream.h:39
void deactivate()
Deactivate MsgStream.
Definition: MsgStream.h:114
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
MSG::Level level() const
Retrieve output level.
Definition: MsgStream.h:108
void activate()
Activate MsgStream.
Definition: MsgStream.h:112
IInactiveMessageCounter * m_inactCounter
Pointer to service counting messages prepared but not printed because of wrong level.
Definition: MsgStream.h:52
static GAUDI_API bool countInactive()
Returns the state of the counting of inactive messages (enabled/disabled).
Definition: MsgStream.cpp:38
void MsgStream::resetColor ( )

Reset the colors to defaults.

Definition at line 108 of file MsgStream.cpp.

109 {
110 #ifndef _WIN32
111  if ( m_useColors ) {
112  try { // this may throw and we must not do it
113  m_stream << "\x1b[m" << m_service->getLogColor( m_currLevel );
114  } catch ( ... ) {
115  }
116  }
117 #endif
118 }
bool m_useColors
use colors
Definition: MsgStream.h:49
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:35
virtual std::string getLogColor(int logLevel) const =0
Get the color codes for various log levels.
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:47
void MsgStream::setColor ( MSG::Color  col)

Set the text color.

Definition at line 79 of file MsgStream.cpp.

80 {
81 #ifndef _WIN32
82  if ( m_useColors ) {
83  int fc = 90 + col;
84  try { // this may throw and we must not do it
85  m_stream << "\x1b[" << fc << ";1m";
86  } catch ( ... ) {
87  }
88  }
89 #endif
90 }
bool m_useColors
use colors
Definition: MsgStream.h:49
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
void MsgStream::setColor ( MSG::Color  fg,
MSG::Color  bg 
)

Set the foreground and background colors.

Definition at line 92 of file MsgStream.cpp.

93 {
94 #ifndef _WIN32
95  if ( m_useColors ) {
96  try { // this may throw and we must not do it
97  int fc = 90 + fg;
98  m_stream << "\x1b[" << fc;
99  int bc = 100 + bg;
100  m_stream << ";" << bc;
101  m_stream << ";1m";
102  } catch ( ... ) {
103  }
104  }
105 #endif
106 }
bool m_useColors
use colors
Definition: MsgStream.h:49
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
long MsgStream::setf ( FLAG_TYPE  v)
inline

Definition at line 171 of file MsgStream.h.

171 { return isActive() ? m_stream.setf( v ) : 0; }
T setf(T...args)
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
long MsgStream::setf ( FLAG_TYPE  _f,
FLAG_TYPE  _m 
)
inline

Definition at line 182 of file MsgStream.h.

182 { return isActive() ? m_stream.setf( _f, _m ) : 0; }
T setf(T...args)
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
void MsgStream::setLevel ( int  level)
inline

Update outputlevel.

Definition at line 102 of file MsgStream.h.

103  {
105  m_level = MSG::Level( level );
106  }
MSG::Level m_level
Debug level of the message service.
Definition: MsgStream.h:45
MSG::Level level() const
Retrieve output level.
Definition: MsgStream.h:108
void MsgStream::setMsgSvc ( IMessageSvc svc)
inline

Update IMessageSvc pointer.

Definition at line 100 of file MsgStream.h.

100 { m_service = svc; }
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:35
std::ostringstream& MsgStream::stream ( )
inline

Access string MsgStream.

Definition at line 98 of file MsgStream.h.

98 { return m_stream; }
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
void MsgStream::unsetf ( FLAG_TYPE  _l)
inline

Definition at line 183 of file MsgStream.h.

184  {
185  if ( isActive() ) m_stream.unsetf( _l );
186  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T unsetf(T...args)
int MsgStream::width ( ) const
inline

Definition at line 172 of file MsgStream.h.

172 { return isActive() ? m_stream.width() : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T width(T...args)
int MsgStream::width ( int  v)
inline

Definition at line 173 of file MsgStream.h.

173 { return isActive() ? m_stream.width( v ) : 0; }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T width(T...args)
MsgStream& MsgStream::write ( const char *  buff,
int  len 
)
inline

Definition at line 124 of file MsgStream.h.

125  {
126  if ( isActive() ) m_stream.write( buff, len );
127  return *this;
128  }
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:116
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:41
T write(T...args)

Member Data Documentation

bool MsgStream::m_active = false
protected

Flag set to true if formatting engine is active.

Definition at line 43 of file MsgStream.h.

std::string MsgStream::m_buffer
protected

Use standard string for information buffering.

Definition at line 37 of file MsgStream.h.

bool MsgStream::m_countInactive = false
staticprotected

Flag to state if the inactive messages has to be counted.

Definition at line 54 of file MsgStream.h.

MSG::Level MsgStream::m_currLevel
protected

Current debug level.

Definition at line 47 of file MsgStream.h.

IInactiveMessageCounter* MsgStream::m_inactCounter = nullptr
protected

Pointer to service counting messages prepared but not printed because of wrong level.

Definition at line 52 of file MsgStream.h.

MSG::Level MsgStream::m_level
protected

Debug level of the message service.

Definition at line 45 of file MsgStream.h.

IMessageSvc* MsgStream::m_service
protected

Pointer to message service if buffer has send.

Definition at line 35 of file MsgStream.h.

std::string MsgStream::m_source
protected

Use std::string for source information to be passed to the message service.

Definition at line 39 of file MsgStream.h.

std::ostringstream MsgStream::m_stream
protected

String MsgStream associated to buffer.

Definition at line 41 of file MsgStream.h.

bool MsgStream::m_useColors
protected

use colors

Definition at line 49 of file MsgStream.h.


The documentation for this class was generated from the following files: