ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkLoggerBase.h>
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef MultipleLogOutput::OutputType | OutputType |
typedef SmartPointer< Self > | Pointer |
enum | PriorityLevelType { MUSTFLUSH = 0, FATAL, CRITICAL, WARNING, INFO, DEBUG, NOTSET } |
typedef LoggerBase | Self |
typedef Object | Superclass |
enum | TimeStampFormatType { REALVALUE = 0, HUMANREADABLE } |
Public Member Functions | |
virtual void | AddLogOutput (OutputType *output) |
virtual std::string | BuildFormattedEntry (PriorityLevelType level, std::string const &content) |
void | Critical (std::string const &message) |
void | Debug (std::string const &message) |
void | Error (std::string const &message) |
void | Fatal (std::string const &message) |
virtual void | Flush () |
virtual PriorityLevelType | GetLevelForFlushing () const |
virtual const char * | GetName () const |
virtual const char * | GetNameOfClass () const |
virtual PriorityLevelType | GetPriorityLevel () const |
void | Info (std::string const &message) |
virtual void | SetLevelForFlushing (PriorityLevelType level) |
virtual void | SetName (const char *_arg) |
virtual void | SetPriorityLevel (PriorityLevelType level) |
void | Warning (std::string const &message) |
virtual void | Write (PriorityLevelType level, std::string const &content) |
virtual void | SetTimeStampFormat (TimeStampFormatType _arg) |
virtual const TimeStampFormatType & | GetTimeStampFormat () |
virtual void | SetHumanReadableFormat (const char *_arg) |
virtual const char * | GetHumanReadableFormat () const |
Protected Member Functions | |
LoggerBase () | |
virtual void | PrintSelf (std::ostream &os, Indent indent) const |
virtual | ~LoggerBase () |
Protected Attributes | |
RealTimeClock::Pointer | m_Clock |
std::string | m_HumanReadableFormat |
PriorityLevelType | m_LevelForFlushing |
MultipleLogOutput::Pointer | m_Output |
PriorityLevelType | m_PriorityLevel |
TimeStampFormatType | m_TimeStampFormat |
Private Attributes | |
std::string | m_Name |
Used for logging information during a run.
Definition at line 37 of file itkLoggerBase.h.
typedef SmartPointer< const Self > itk::LoggerBase::ConstPointer |
Reimplemented from itk::Object.
Reimplemented in itk::ThreadLogger, and itk::Logger.
Definition at line 44 of file itkLoggerBase.h.
Reimplemented in itk::ThreadLogger.
Definition at line 47 of file itkLoggerBase.h.
typedef SmartPointer< Self > itk::LoggerBase::Pointer |
Reimplemented from itk::Object.
Reimplemented in itk::ThreadLogger, and itk::Logger.
Definition at line 43 of file itkLoggerBase.h.
typedef LoggerBase itk::LoggerBase::Self |
Smart pointer typedef support.
Reimplemented from itk::Object.
Reimplemented in itk::ThreadLogger, and itk::Logger.
Definition at line 41 of file itkLoggerBase.h.
typedef Object itk::LoggerBase::Superclass |
Reimplemented from itk::Object.
Reimplemented in itk::ThreadLogger, and itk::Logger.
Definition at line 42 of file itkLoggerBase.h.
Definition of types of messages. These codes will be used to regulate the level of detail of messages reported to the final outputs
Reimplemented in itk::ThreadLogger.
Definition at line 53 of file itkLoggerBase.h.
Select the type of format for reporting time stamps
Definition at line 67 of file itkLoggerBase.h.
itk::LoggerBase::LoggerBase | ( | ) | [protected] |
Constructor
virtual itk::LoggerBase::~LoggerBase | ( | ) | [protected, virtual] |
Destructor
virtual void itk::LoggerBase::AddLogOutput | ( | OutputType * | output | ) | [virtual] |
Registers another output stream with the multiple output.
Reimplemented in itk::ThreadLogger.
virtual std::string itk::LoggerBase::BuildFormattedEntry | ( | PriorityLevelType | level, |
std::string const & | content | ||
) | [virtual] |
Provides a default formatted log entry
void itk::LoggerBase::Critical | ( | std::string const & | message | ) | [inline] |
Definition at line 148 of file itkLoggerBase.h.
References CRITICAL.
void itk::LoggerBase::Debug | ( | std::string const & | message | ) | [inline] |
void itk::LoggerBase::Error | ( | std::string const & | message | ) | [inline] |
Definition at line 153 of file itkLoggerBase.h.
References CRITICAL.
void itk::LoggerBase::Fatal | ( | std::string const & | message | ) | [inline] |
Definition at line 158 of file itkLoggerBase.h.
References FATAL.
virtual void itk::LoggerBase::Flush | ( | ) | [virtual] |
Reimplemented in itk::ThreadLogger.
virtual const char* itk::LoggerBase::GetHumanReadableFormat | ( | ) | const [virtual] |
Set/Get the specific text format to use when the time stamp format type is set to HUMANREADABLE. For a description of the acceptable formats please look at the man page of the strftime() method. The default is set to "%Y %b %d %H:%M:%S"
virtual PriorityLevelType itk::LoggerBase::GetLevelForFlushing | ( | ) | const [inline, virtual] |
Reimplemented in itk::ThreadLogger.
Definition at line 122 of file itkLoggerBase.h.
virtual const char* itk::LoggerBase::GetName | ( | ) | const [virtual] |
virtual const char* itk::LoggerBase::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::Object.
Reimplemented in itk::ThreadLogger, and itk::Logger.
virtual PriorityLevelType itk::LoggerBase::GetPriorityLevel | ( | ) | const [inline, virtual] |
Get the priority level for the current logger. Only messages that have priorities equal or greater than the one set here will be posted to the current outputs
Reimplemented in itk::ThreadLogger.
Definition at line 112 of file itkLoggerBase.h.
virtual const TimeStampFormatType& itk::LoggerBase::GetTimeStampFormat | ( | ) | [virtual] |
Set/Get the type of format used for reporting the time stamp of a given log message. The main options are REALVALUE and HUMANREADABLE. REALVALUE will report the time in seconds as a double number. HUMANREADABLE will report the time in formatted text such as '2007 May 7 09:23:14'
void itk::LoggerBase::Info | ( | std::string const & | message | ) | [inline] |
Definition at line 138 of file itkLoggerBase.h.
References INFO.
virtual void itk::LoggerBase::PrintSelf | ( | std::ostream & | os, |
Indent | indent | ||
) | const [protected, virtual] |
virtual void itk::LoggerBase::SetHumanReadableFormat | ( | const char * | _arg | ) | [virtual] |
Set/Get the specific text format to use when the time stamp format type is set to HUMANREADABLE. For a description of the acceptable formats please look at the man page of the strftime() method. The default is set to "%Y %b %d %H:%M:%S"
virtual void itk::LoggerBase::SetLevelForFlushing | ( | PriorityLevelType | level | ) | [inline, virtual] |
Reimplemented in itk::ThreadLogger.
Definition at line 117 of file itkLoggerBase.h.
virtual void itk::LoggerBase::SetName | ( | const char * | _arg | ) | [virtual] |
virtual void itk::LoggerBase::SetPriorityLevel | ( | PriorityLevelType | level | ) | [inline, virtual] |
Set the priority level for the current logger. Only messages that have priorities equal or greater than the one set here will be posted to the current outputs
Reimplemented in itk::ThreadLogger.
Definition at line 104 of file itkLoggerBase.h.
virtual void itk::LoggerBase::SetTimeStampFormat | ( | TimeStampFormatType | _arg | ) | [virtual] |
Set/Get the type of format used for reporting the time stamp of a given log message. The main options are REALVALUE and HUMANREADABLE. REALVALUE will report the time in seconds as a double number. HUMANREADABLE will report the time in formatted text such as '2007 May 7 09:23:14'
void itk::LoggerBase::Warning | ( | std::string const & | message | ) | [inline] |
Definition at line 143 of file itkLoggerBase.h.
References WARNING.
virtual void itk::LoggerBase::Write | ( | PriorityLevelType | level, |
std::string const & | content | ||
) | [virtual] |
Reimplemented in itk::ThreadLogger.
RealTimeClock::Pointer itk::LoggerBase::m_Clock [protected] |
Definition at line 184 of file itkLoggerBase.h.
std::string itk::LoggerBase::m_HumanReadableFormat [protected] |
Definition at line 188 of file itkLoggerBase.h.
PriorityLevelType itk::LoggerBase::m_LevelForFlushing [protected] |
Definition at line 180 of file itkLoggerBase.h.
std::string itk::LoggerBase::m_Name [private] |
Definition at line 191 of file itkLoggerBase.h.
MultipleLogOutput::Pointer itk::LoggerBase::m_Output [protected] |
Definition at line 182 of file itkLoggerBase.h.
PriorityLevelType itk::LoggerBase::m_PriorityLevel [protected] |
Definition at line 178 of file itkLoggerBase.h.
Definition at line 186 of file itkLoggerBase.h.