The Gaudi Framework  v29r0 (ff2e7097)
CommonMessaging< BASE > Class Template Reference

#include <GaudiKernel/CommonMessaging.h>

Inheritance diagram for CommonMessaging< BASE >:
Collaboration diagram for CommonMessaging< BASE >:

Public Types

using base_class = CommonMessaging
 

Protected Member Functions

void updateMsgStreamOutputLevel (int level)
 Update the output level of the cached MsgStream. More...
 

Private Member Functions

void create_msgSvc () const override final
 cold functionality More...
 
void create_msgStream () const override final
 

Additional Inherited Members

- Public Member Functions inherited from CommonMessagingBase
virtual ~CommonMessagingBase ()=default
 Virtual destructor. More...
 
SmartIF< IMessageSvc > & msgSvc () const
 The standard message service. More...
 
MsgStreammsgStream () const
 Return an uninitialized MsgStream. More...
 
MsgStreammsgStream (const MSG::Level level) const
 Predefined configurable message stream for the efficient printouts. More...
 
MsgStreamalways () const
 shortcut for the method msgStream(MSG::ALWAYS) More...
 
MsgStreamfatal () const
 shortcut for the method msgStream(MSG::FATAL) More...
 
MsgStreamerr () const
 shortcut for the method msgStream(MSG::ERROR) More...
 
MsgStreamerror () const
 shortcut for the method msgStream(MSG::ERROR) More...
 
MsgStreamwarning () const
 shortcut for the method msgStream(MSG::WARNING) More...
 
MsgStreaminfo () const
 shortcut for the method msgStream(MSG::INFO) More...
 
MsgStreamdebug () const
 shortcut for the method msgStream(MSG::DEBUG) More...
 
MsgStreamverbose () const
 shortcut for the method msgStream(MSG::VERBOSE) More...
 
MsgStreammsg () const
 shortcut for the method msgStream(MSG::INFO) More...
 
MSG::Level msgLevel () const
 get the output level from the embedded MsgStream More...
 
MSG::Level outputLevel () const __attribute__((deprecated))
 Backward compatibility function for getting the output level. More...
 
bool msgLevel (MSG::Level lvl) const
 get the output level from the embedded MsgStream More...
 

Detailed Description

template<typename BASE>
class CommonMessaging< BASE >

Definition at line 62 of file CommonMessaging.h.

Member Typedef Documentation

template<typename BASE>
using CommonMessaging< BASE >::base_class = CommonMessaging

Definition at line 162 of file CommonMessaging.h.

Member Function Documentation

template<typename BASE>
void CommonMessaging< BASE >::create_msgStream ( ) const
inlinefinaloverrideprivatevirtual

Implements CommonMessagingBase.

Definition at line 174 of file CommonMessaging.h.

175  {
176  auto& ms = msgSvc();
177  m_msgStream.reset( new MsgStream( ms, this->name() ) );
178  m_level.reset( new MSG::Level( m_msgStream.get() ? m_msgStream->level() : MSG::NIL ) );
179  }
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
boost::thread_specific_ptr< MSG::Level > m_level
boost::thread_specific_ptr< MsgStream > m_msgStream
The predefined message stream.
SmartIF< IMessageSvc > & msgSvc() const
The standard message service.
template<typename BASE>
void CommonMessaging< BASE >::create_msgSvc ( ) const
inlinefinaloverrideprivatevirtual

cold functionality

Implements CommonMessagingBase.

Definition at line 169 of file CommonMessaging.h.

170  {
171  // Get default implementation of the message service.
172  m_msgsvc = this->serviceLocator();
173  }
SmartIF< IMessageSvc > m_msgsvc
Pointer to the message service;.
template<typename BASE>
void CommonMessaging< BASE >::updateMsgStreamOutputLevel ( int  level)
inlineprotected

Update the output level of the cached MsgStream.

This function is meant to be called by the update handler of the OutputLevel property.

Definition at line 184 of file CommonMessaging.h.

185  {
186  if ( !m_msgStream.get() ) {
188  }
189  if ( level != MSG::NIL && level != *m_level ) {
190  if ( msgSvc() ) {
191  msgSvc()->setOutputLevel( this->name(), level );
192  }
193  if ( m_msgStream.get() ) m_msgStream->setLevel( level );
194  if ( UNLIKELY( MSG::Level( level ) <= MSG::DEBUG ) )
195  debug() << "Property update for OutputLevel : new value = " << level << endmsg;
196  *m_level = MSG::Level( level );
197  }
198  }
#define UNLIKELY(x)
Definition: Kernel.h:128
boost::thread_specific_ptr< MSG::Level > m_level
boost::thread_specific_ptr< MsgStream > m_msgStream
The predefined message stream.
void create_msgStream() const override final
MsgStream & debug() const
shortcut for the method msgStream(MSG::DEBUG)
SmartIF< IMessageSvc > & msgSvc() const
The standard message service.
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
virtual void setOutputLevel(int new_level)=0
Set new global output level threshold.

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