The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
CommonMessagingBase Class Referenceabstract

#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/CommonMessaging.h>

Inheritance diagram for CommonMessagingBase:
Collaboration diagram for CommonMessagingBase:

Public Member Functions

virtual ~CommonMessagingBase ()=default
 Virtual destructor.
 
virtual void create_msgStream () const =0
 cold functionality
 
const SmartIF< IMessageSvc > & msgSvc () const
 The standard message service.
 
MsgStreammsgStream () const
 Return an uninitialized MsgStream.
 
MsgStreammsgStream (const MSG::Level level) const
 Predefined configurable message stream for the efficient printouts.
 
MsgStreamalways () const
 shortcut for the method msgStream(MSG::ALWAYS)
 
MsgStreamfatal () const
 shortcut for the method msgStream(MSG::FATAL)
 
MsgStreamerr () const
 shortcut for the method msgStream(MSG::ERROR)
 
MsgStreamerror () const
 shortcut for the method msgStream(MSG::ERROR)
 
MsgStreamwarning () const
 shortcut for the method msgStream(MSG::WARNING)
 
MsgStreaminfo () const
 shortcut for the method msgStream(MSG::INFO)
 
MsgStreamdebug () const
 shortcut for the method msgStream(MSG::DEBUG)
 
MsgStreamverbose () const
 shortcut for the method msgStream(MSG::VERBOSE)
 
MsgStreammsg () const
 shortcut for the method msgStream(MSG::INFO)
 

Private Attributes

bool m_commonMessagingReady = false
 
MSG::Level m_level = MSG::NIL
 
boost::thread_specific_ptr< MsgStreamm_msgStream
 The predefined message stream.
 
SmartIF< IMessageSvcm_msgsvc
 Pointer to the message service;.
 

Friends

template<typename Base>
class CommonMessaging
 

Detailed Description

Definition at line 67 of file CommonMessaging.h.

Constructor & Destructor Documentation

◆ ~CommonMessagingBase()

virtual CommonMessagingBase::~CommonMessagingBase ( )
virtualdefault

Virtual destructor.

Member Function Documentation

◆ always()

MsgStream & CommonMessagingBase::always ( ) const
inline

shortcut for the method msgStream(MSG::ALWAYS)

Definition at line 98 of file CommonMessaging.h.

98{ return msgStream( MSG::ALWAYS ); }
MsgStream & msgStream() const
Return an uninitialized MsgStream.
@ ALWAYS
Definition IMessageSvc.h:22

◆ create_msgStream()

◆ debug()

MsgStream & CommonMessagingBase::debug ( ) const
inline

shortcut for the method msgStream(MSG::DEBUG)

Definition at line 116 of file CommonMessaging.h.

116{ return msgStream( MSG::DEBUG ); }
@ DEBUG
Definition IMessageSvc.h:22

◆ err()

MsgStream & CommonMessagingBase::err ( ) const
inline

shortcut for the method msgStream(MSG::ERROR)

Definition at line 104 of file CommonMessaging.h.

104{ return msgStream( MSG::ERROR ); }
@ ERROR
Definition IMessageSvc.h:22

◆ error()

MsgStream & CommonMessagingBase::error ( ) const
inline

shortcut for the method msgStream(MSG::ERROR)

Definition at line 107 of file CommonMessaging.h.

107{ return msgStream( MSG::ERROR ); }

◆ fatal()

MsgStream & CommonMessagingBase::fatal ( ) const
inline

shortcut for the method msgStream(MSG::FATAL)

Definition at line 101 of file CommonMessaging.h.

101{ return msgStream( MSG::FATAL ); }
@ FATAL
Definition IMessageSvc.h:22

◆ info()

MsgStream & CommonMessagingBase::info ( ) const
inline

shortcut for the method msgStream(MSG::INFO)

Definition at line 113 of file CommonMessaging.h.

113{ return msgStream( MSG::INFO ); }
@ INFO
Definition IMessageSvc.h:22

◆ msg()

MsgStream & CommonMessagingBase::msg ( ) const
inline

shortcut for the method msgStream(MSG::INFO)

Definition at line 122 of file CommonMessaging.h.

122{ return msgStream( MSG::INFO ); }

◆ msgStream() [1/2]

MsgStream & CommonMessagingBase::msgStream ( ) const
inline

Return an uninitialized MsgStream.

Definition at line 80 of file CommonMessaging.h.

80 {
81 if ( !m_msgStream.get() ) create_msgStream();
82 return *m_msgStream;
83 }
boost::thread_specific_ptr< MsgStream > m_msgStream
The predefined message stream.
virtual void create_msgStream() const =0
cold functionality

◆ msgStream() [2/2]

MsgStream & CommonMessagingBase::msgStream ( const MSG::Level level) const
inline

Predefined configurable message stream for the efficient printouts.

if ( a < 0 ) { msgStream( MSG::ERROR ) << "a = " << endmsg ; }
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition MsgStream.h:198
Returns
Reference to the predefined stream

Definition at line 95 of file CommonMessaging.h.

95{ return msgStream() << level; }

◆ msgSvc()

const SmartIF< IMessageSvc > & CommonMessagingBase::msgSvc ( ) const
inline

The standard message service.

Returns a pointer to the standard message service.

Definition at line 77 of file CommonMessaging.h.

77{ return m_msgsvc; }
SmartIF< IMessageSvc > m_msgsvc
Pointer to the message service;.

◆ verbose()

MsgStream & CommonMessagingBase::verbose ( ) const
inline

shortcut for the method msgStream(MSG::VERBOSE)

Definition at line 119 of file CommonMessaging.h.

119{ return msgStream( MSG::VERBOSE ); }
@ VERBOSE
Definition IMessageSvc.h:22

◆ warning()

MsgStream & CommonMessagingBase::warning ( ) const
inline

shortcut for the method msgStream(MSG::WARNING)

Definition at line 110 of file CommonMessaging.h.

110{ return msgStream( MSG::WARNING ); }
@ WARNING
Definition IMessageSvc.h:22

Friends And Related Symbol Documentation

◆ CommonMessaging

template<typename Base>
friend class CommonMessaging
friend

Definition at line 126 of file CommonMessaging.h.

Member Data Documentation

◆ m_commonMessagingReady

bool CommonMessagingBase::m_commonMessagingReady = false
mutableprivate

Definition at line 128 of file CommonMessaging.h.

◆ m_level

MSG::Level CommonMessagingBase::m_level = MSG::NIL
mutableprivate

Definition at line 129 of file CommonMessaging.h.

◆ m_msgStream

boost::thread_specific_ptr<MsgStream> CommonMessagingBase::m_msgStream
mutableprivate

The predefined message stream.

Definition at line 132 of file CommonMessaging.h.

◆ m_msgsvc

SmartIF<IMessageSvc> CommonMessagingBase::m_msgsvc
mutableprivate

Pointer to the message service;.

Definition at line 135 of file CommonMessaging.h.


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