All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
MsgStream.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_MSGSTREAM_H
2 #define GAUDIKERNEL_MSGSTREAM_H
3 
4 // Include files
7 // Standard C++ classes
8 #include <cstdio>
9 #include <string>
10 #include <iomanip>
11 #include <vector>
12 #include <sstream>
13 
24 class MsgStream {
25 private:
29  typedef std::ios_base::fmtflags FLAG_TYPE;
30  typedef std::ios_base::iostate STATE_TYPE;
31 protected:
41  bool m_active = false;
52  static bool m_countInactive;
53 
54 public:
56  GAUDI_API MsgStream(IMessageSvc* svc, int buffer_length=128);
58  GAUDI_API MsgStream(IMessageSvc* svc, std::string source, int buffer_length=128);
61  : m_service(msg.m_service),
62  m_active(msg.m_active),
63  m_level(msg.m_level),
64  m_currLevel(msg.m_currLevel),
65  m_useColors(msg.m_useColors),
66  m_inactCounter(msg.m_inactCounter)
67  {
68  try { // ignore exception if we cannot copy the string
69  m_source = msg.m_source;
70  }
71  catch (...) {}
72  }
74  GAUDI_API virtual ~MsgStream() = default;
76  MsgStream& report(int lvl) {
77  lvl = (lvl >= MSG::NUM_LEVELS) ?
78  MSG::ALWAYS : (lvl<MSG::NIL) ? MSG::NIL : lvl;
79  if ((m_currLevel=MSG::Level(lvl)) >= level()) {
80  activate();
81  } else {
82  deactivate();
83 #ifndef NDEBUG
84  if (MsgStream::countInactive() && m_inactCounter) {
85  m_inactCounter->incrInactiveCount(MSG::Level(lvl),m_source);
86  }
87 #endif
88  }
89  return *this;
90  }
92  virtual GAUDI_API MsgStream& doOutput();
94  const std::string& buffer() const {
95  return m_buffer;
96  }
99  return m_stream;
100  }
102  void setMsgSvc( IMessageSvc* svc ) {
103  m_service = svc;
104  }
106  void setLevel(int level) {
107  level = (level >= MSG::NUM_LEVELS) ?
108  MSG::ALWAYS : (level<MSG::NIL) ? MSG::NIL : level;
109  m_level = MSG::Level(level);
110  }
113  return m_level;
114  }
117  return m_currLevel;
118  }
120  void activate() {
121  m_active = true;
122  }
124  void deactivate() {
125  m_active = false;
126  }
128  bool isActive() const {
129  return m_active;
130  }
131  // oMsgStream flush emulation
133  if ( isActive() ) m_stream.flush();
134  return *this;
135  }
136  // oMsgStream write emulation
137  MsgStream& write(const char* buff,int len) {
138  if ( isActive() ) m_stream.write(buff, len);
139  return *this;
140  }
143  if ( isActive() ) _f(*this);
144  return *this;
145  }
148  if ( isActive() ) _f(m_stream);
149  return *this;
150  }
152  MsgStream& operator<<(std::ios& (*_f)(std::ios&)) {
153  if ( isActive() ) _f(m_stream);
154  return *this;
155  }
158  return report(level);
159  }
161  try {
162  // this may throw, and we cannot afford it if the stream is used in a catch block
163  if(isActive()) {
164  m_stream << arg;
165  }
166  } catch (...) {}
167  return *this;
168  }
169 
172  if ( isActive() ) _f(m_stream);
173  return *this;
174  }
175 
177  long flags() const {
178  return isActive() ? m_stream.flags() : 0;
179  }
180  long flags(FLAG_TYPE v) {
181  return isActive() ? m_stream.flags(v) : 0;
182  }
183  long setf(FLAG_TYPE v) {
184  return isActive() ? m_stream.setf(v) : 0;
185  }
186  int width() const {
187  return isActive() ? m_stream.width() : 0;
188  }
189  int width(int v) {
190  return isActive() ? m_stream.width(v) : 0;
191  }
192  char fill() const {
193  return isActive() ? m_stream.fill() : (char)-1;
194  }
195  char fill(char v) {
196  return isActive() ? m_stream.fill(v) : (char)-1;
197  }
198  int precision() const {
199  return isActive() ? m_stream.precision(): 0;
200  }
201  int precision(int v) {
202  return isActive() ? m_stream.precision(v): 0;
203  }
204  int rdstate() const {
205  return isActive() ? m_stream.rdstate () : std::ios_base::failbit;
206  }
207  int good() const {
208  return isActive() ? m_stream.good () : 0;
209  }
210  int eof() const {
211  return isActive() ? m_stream.eof () : 0;
212  }
213  int bad() const {
214  return isActive() ? m_stream.bad() : 0;
215  }
216  long setf(FLAG_TYPE _f, FLAG_TYPE _m) {
217  return isActive() ? m_stream.setf(_f, _m) : 0;
218  }
219  void unsetf(FLAG_TYPE _l) {
220  if ( isActive() ) m_stream.unsetf(_l);
221  }
222  void clear(STATE_TYPE _i = std::ios_base::failbit) {
223  if ( isActive() ) m_stream.clear(_i);
224  }
225 
227  GAUDI_API void setColor(MSG::Color col);
230 
232  GAUDI_API void resetColor();
233 
236  static GAUDI_API bool enableCountInactive(bool value = true);
237 
239  static GAUDI_API bool countInactive();
240 
241 };
242 
245  return s.doOutput();
246 }
247 
249 GAUDI_API std::string format(const char*, ... );
250 
251 #ifdef _WIN32
252 template<class _E> inline
253 MsgStream& operator<<( MsgStream& s, const std::_Fillobj<_E>& obj) {
254 #if _MSC_VER > 1300
255  if ( s.isActive() ) s.stream().fill(obj._Fill);
256 #else
257  if ( s.isActive() ) s.stream().fill(obj._Ch);
258 #endif
259  return s;
260 }
261 template<class _Tm> inline
262 MsgStream& operator << (MsgStream& s, const std::_Smanip<_Tm>& manip) {
263 #if _MSC_VER > 1300
264  if ( s.isActive() ) (*manip._Pfun)(s.stream(), manip._Manarg);
265 #else
266  if ( s.isActive() ) (*manip._Pf)(s.stream(), manip._Manarg);
267 #endif
268  return s;
269 }
270 #elif defined (__GNUC__)
271 #ifndef __APPLE__
273  const std::_Setiosflags &manip) {
274  try {
275  // this may throw, and we cannot afford it if the stream is used in a catch block
276  if ( s.isActive() ) s.stream() << manip;
277  } catch(...) {}
278  return s;
279 }
280 inline MsgStream& operator << (MsgStream& s,
281  const std::_Resetiosflags &manip) {
282  try {
283  // this may throw, and we cannot afford it if the stream is used in a catch block
284  if ( s.isActive() ) s.stream() << manip;
285  } catch (...) {}
286  return s;
287 }
288 inline MsgStream& operator << (MsgStream& s,
289  const std::_Setbase &manip) {
290  try {
291  // this may throw, and we cannot afford it if the stream is used in a catch block
292  if ( s.isActive() ) s.stream() << manip;
293  } catch (...) {}
294  return s;
295 }
296 inline MsgStream& operator << (MsgStream& s,
297  const std::_Setprecision &manip) {
298  try {
299  // this may throw, and we cannot afford it if the stream is used in a catch block
300  if ( s.isActive() ) s.stream() << manip;
301  } catch (...) {}
302  return s;
303 }
304 inline MsgStream& operator << (MsgStream& s,
305  const std::_Setw &manip) {
306  try {
307  // this may throw, and we cannot afford it if the stream is used in a catch block
308  if ( s.isActive() ) s.stream() << manip;
309  } catch (...) {}
310  return s;
311 }
312 #endif // not __APPLE__
313 #else // GCC, version << 3
314 template<class _Tm> inline
316 MsgStream& operator << (MsgStream& s, const std::smanip<_Tm>& manip) {
317  try {
318  // this may throw, and we cannot afford it if the stream is used in a catch block
319  if ( s.isActive() ) s.stream() << manip;
320  } catch (...) {}
321  return s;
322 }
323 #endif // WIN32 or (__GNUC__)
324 
325 namespace MSG {
326  inline
328  log << std::dec;
329  return log;
330  }
331  inline
333  log << std::hex;
334  return log;
335  }
336 }
337 
340 inline MsgStream& operator<< (MsgStream& s, const char *arg){
341  try {
342  // this may throw, and we cannot afford it if the stream is used in a catch block
343  if ( s.isActive() ) s.stream() << arg;
344  } catch (...) {}
345  return s;
346 }
347 
349 template <typename T>
350 MsgStream& operator<< (MsgStream& lhs, const T& arg) {
351  using namespace GaudiUtils;
352  if(lhs.isActive())
353  try {
354  // this may throw, and we cannot afford it if the stream is used in a catch block
355  lhs.stream() << arg;
356  }
357  catch (...) {}
358  return lhs;
359 }
360 
361 #if defined(__GNUC__) and not defined(__APPLE__)
362 template<typename T>
364 MsgStream& operator << (MsgStream& lhs, const std::_Setfill<T> &manip) {
365  if ( lhs.isActive() )
366  try {
367  // this may throw, and we cannot afford it if the stream is used in a catch block
368  lhs.stream() << manip;
369  } catch(...) {}
370  return lhs;
371 }
372 #endif
373 
374 #endif // GAUDIKERNEL_MSGSTREAM_H
std::ostringstream & stream()
Access string MsgStream.
Definition: MsgStream.h:98
T setf(T...args)
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
MsgStream & operator<<(longlong arg)
Definition: MsgStream.h:160
const std::string & buffer() const
Access string buffer.
Definition: MsgStream.h:94
MSG::Level currentLevel()
Retrieve current stream output level.
Definition: MsgStream.h:116
GAUDI_API std::string format(const char *,...)
MsgStream format utility "a la sprintf(...)".
Definition: MsgStream.cpp:119
int width(int v)
Definition: MsgStream.h:189
bool m_useColors
use colors
Definition: MsgStream.h:47
char fill() const
Definition: MsgStream.h:192
GAUDI_API void resetColor()
Reset the colors to defaults.
Definition: MsgStream.cpp:108
int rdstate() const
Definition: MsgStream.h:204
int precision() const
Definition: MsgStream.h:198
int precision(int v)
Definition: MsgStream.h:201
MSG::Level level()
Retrieve output level.
Definition: MsgStream.h:112
static bool m_countInactive
Flag to state if the inactive messages has to be counted.
Definition: MsgStream.h:52
T good(T...args)
int eof() const
Definition: MsgStream.h:210
int bad() const
Definition: MsgStream.h:213
MsgStream & dec(MsgStream &log)
Definition: MsgStream.h:327
bool isActive() const
Accessor: is MsgStream active.
Definition: MsgStream.h:128
IMessageSvc * m_service
Pointer to message service if buffer has send.
Definition: MsgStream.h:33
T precision(T...args)
T rdstate(T...args)
MsgStream & write(const char *buff, int len)
Definition: MsgStream.h:137
virtual void incrInactiveCount(MSG::Level level, const std::string &src)=0
Increment deactivated message count.
MsgStream & report(int lvl)
Initialize report of new message: activate if print level is sufficient.
Definition: MsgStream.h:76
MsgStream & hex(MsgStream &log)
Definition: MsgStream.h:332
virtual GAUDI_API MsgStream & doOutput()
Output method.
Definition: MsgStream.cpp:64
std::string m_source
Use std::string for source information to be passed to the message service.
Definition: MsgStream.h:37
Provide serialization function (output only) for some common STL classes (vectors, lists, pairs, maps) plus GaudiUtils::Map and GaudiUtils::HashMap.
STL class.
MSG::Level m_level
Debug level of the message service.
Definition: MsgStream.h:43
GAUDI_API void setColor(MSG::Color col)
Set the text color.
Definition: MsgStream.cpp:81
std::ios_base::iostate STATE_TYPE
Definition: MsgStream.h:30
int good() const
Definition: MsgStream.h:207
MsgStream & operator<<(MsgStream &(*_f)(MsgStream &))
Accept MsgStream modifiers.
Definition: MsgStream.h:142
T flags(T...args)
MsgStream & operator<<(std::ios_base &(*_f)(std::ios_base &))
Accept ios base class modifiers.
Definition: MsgStream.h:171
long setf(FLAG_TYPE _f, FLAG_TYPE _m)
Definition: MsgStream.h:216
MsgStream & operator<<(std::ios &(*_f)(std::ios &))
Accept ios modifiers.
Definition: MsgStream.h:152
void clear(STATE_TYPE _i=std::ios_base::failbit)
Definition: MsgStream.h:222
void deactivate()
Deactivate MsgStream.
Definition: MsgStream.h:124
MsgStream & flush()
Definition: MsgStream.h:132
std::ostringstream m_stream
String MsgStream associated to buffer.
Definition: MsgStream.h:39
The IMessage is the interface implemented by the message service.
Definition: IMessageSvc.h:57
T width(T...args)
char fill(char v)
Definition: MsgStream.h:195
T clear(T...args)
void setMsgSvc(IMessageSvc *svc)
Update IMessageSvc pointer.
Definition: MsgStream.h:102
bool m_active
Flag set to true if formatting engine is active.
Definition: MsgStream.h:41
T flush(T...args)
std::string m_buffer
Use standard string for information buffering.
Definition: MsgStream.h:35
MSG::Level m_currLevel
Current debug level.
Definition: MsgStream.h:45
GAUDI_API MsgStream(IMessageSvc *svc, int buffer_length=128)
Standard constructor: Connect to message service for output.
Definition: MsgStream.cpp:43
long flags() const
IOS emulation.
Definition: MsgStream.h:177
T write(T...args)
Print levels enumeration.
Definition: IMessageSvc.h:14
int width() const
Definition: MsgStream.h:186
Forward declarations for the functions in SerializeSTL.h.
Definition: GaudiHistoID.h:149
void setLevel(int level)
Update outputlevel.
Definition: MsgStream.h:106
string s
Definition: gaudirun.py:245
T dec(T...args)
MsgStream & operator<<(std::ostream &(*_f)(std::ostream &))
Accept oMsgStream modifiers.
Definition: MsgStream.h:147
T unsetf(T...args)
T fill(T...args)
void activate()
Activate MsgStream.
Definition: MsgStream.h:120
MsgStream(const MsgStream &msg)
Copy constructor.
Definition: MsgStream.h:60
IInactiveMessageCounter * m_inactCounter
Pointer to service counting messages prepared but not printed because of wrong level.
Definition: MsgStream.h:50
long flags(FLAG_TYPE v)
Definition: MsgStream.h:180
std::ios_base::fmtflags FLAG_TYPE
Error return code in case ios modification is requested for inactive streams.
Definition: MsgStream.h:29
long setf(FLAG_TYPE v)
Definition: MsgStream.h:183
#define GAUDI_API
Definition: Kernel.h:107
STL class.
STL class.
static GAUDI_API bool enableCountInactive(bool value=true)
Enable/disable the count of inactive messages.
Definition: MsgStream.cpp:32
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:244
virtual GAUDI_API ~MsgStream()=default
Standard destructor.
static GAUDI_API bool countInactive()
Returns the state of the counting of inactive messages (enabled/disabled).
Definition: MsgStream.cpp:38
void unsetf(FLAG_TYPE _l)
Definition: MsgStream.h:219