![]() |
ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkLoggerThreadWrapper.h>
Collaboration diagram for itk::LoggerThreadWrapper< SimpleLoggerType >:Public Types | |
| typedef SmartPointer< const Self > | ConstPointer |
| typedef unsigned int | DelayType |
| enum | OperationType { SET_PRIORITY_LEVEL, SET_LEVEL_FOR_FLUSHING, ADD_LOG_OUTPUT, WRITE, FLUSH } |
| typedef SimpleLoggerType::OutputType | OutputType |
| typedef SmartPointer< Self > | Pointer |
| typedef SimpleLoggerType::PriorityLevelType | PriorityLevelType |
| typedef LoggerThreadWrapper | Self |
| typedef SimpleLoggerType | Superclass |
Public Member Functions | |
| virtual void | AddLogOutput (OutputType *output) |
| virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
| virtual void | Flush () |
| virtual DelayType | GetDelay () const |
| virtual PriorityLevelType | GetLevelForFlushing () const |
| virtual const char * | GetNameOfClass () const |
| virtual PriorityLevelType | GetPriorityLevel () const |
| virtual void | SetDelay (DelayType delay) |
| virtual void | SetLevelForFlushing (PriorityLevelType level) |
| virtual void | SetPriorityLevel (PriorityLevelType level) |
| virtual void | Write (PriorityLevelType level, std::string const &content) |
Static Public Member Functions | |
| static Pointer | New () |
Protected Member Functions | |
| LoggerThreadWrapper () | |
| virtual void | PrintSelf (std::ostream &os, Indent indent) const |
| virtual | ~LoggerThreadWrapper () |
Static Protected Member Functions | |
| static ITK_THREAD_RETURN_TYPE | ThreadFunction (void *) |
Private Types | |
| typedef std::queue < PriorityLevelType > | LevelContainerType |
| typedef std::queue< std::string > | MessageContainerType |
| typedef std::queue< OperationType > | OperationContainerType |
| typedef std::queue< typename OutputType::Pointer > | OutputContainerType |
Private Attributes | |
| DelayType | m_Delay |
| LevelContainerType | m_LevelQ |
| MessageContainerType | m_MessageQ |
| SimpleFastMutexLock | m_Mutex |
| OperationContainerType | m_OperationQ |
| OutputContainerType | m_OutputQ |
| MultiThreader::Pointer | m_Threader |
| ThreadIdType | m_ThreadID |
Used for providing logging service as a separate thread.
Definition at line 40 of file itkLoggerThreadWrapper.h.
| typedef SmartPointer< const Self > itk::LoggerThreadWrapper< SimpleLoggerType >::ConstPointer |
Definition at line 47 of file itkLoggerThreadWrapper.h.
| typedef unsigned int itk::LoggerThreadWrapper< SimpleLoggerType >::DelayType |
Definition at line 57 of file itkLoggerThreadWrapper.h.
typedef std::queue< PriorityLevelType > itk::LoggerThreadWrapper< SimpleLoggerType >::LevelContainerType [private] |
Definition at line 118 of file itkLoggerThreadWrapper.h.
typedef std::queue< std::string > itk::LoggerThreadWrapper< SimpleLoggerType >::MessageContainerType [private] |
Definition at line 116 of file itkLoggerThreadWrapper.h.
typedef std::queue< OperationType > itk::LoggerThreadWrapper< SimpleLoggerType >::OperationContainerType [private] |
Definition at line 114 of file itkLoggerThreadWrapper.h.
typedef std::queue< typename OutputType::Pointer > itk::LoggerThreadWrapper< SimpleLoggerType >::OutputContainerType [private] |
Definition at line 120 of file itkLoggerThreadWrapper.h.
| typedef SimpleLoggerType::OutputType itk::LoggerThreadWrapper< SimpleLoggerType >::OutputType |
Definition at line 53 of file itkLoggerThreadWrapper.h.
| typedef SmartPointer< Self > itk::LoggerThreadWrapper< SimpleLoggerType >::Pointer |
Definition at line 46 of file itkLoggerThreadWrapper.h.
| typedef SimpleLoggerType::PriorityLevelType itk::LoggerThreadWrapper< SimpleLoggerType >::PriorityLevelType |
Definition at line 56 of file itkLoggerThreadWrapper.h.
| typedef LoggerThreadWrapper itk::LoggerThreadWrapper< SimpleLoggerType >::Self |
Definition at line 44 of file itkLoggerThreadWrapper.h.
| typedef SimpleLoggerType itk::LoggerThreadWrapper< SimpleLoggerType >::Superclass |
Definition at line 45 of file itkLoggerThreadWrapper.h.
| enum itk::LoggerThreadWrapper::OperationType |
Definition of types of operations for LoggerThreadWrapper.
Definition at line 60 of file itkLoggerThreadWrapper.h.
| itk::LoggerThreadWrapper< SimpleLoggerType >::LoggerThreadWrapper | ( | ) | [protected] |
Constructor
| virtual itk::LoggerThreadWrapper< SimpleLoggerType >::~LoggerThreadWrapper | ( | ) | [protected, virtual] |
Destructor
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::AddLogOutput | ( | OutputType * | output | ) | [virtual] |
Registers another output stream with the multiple output.
| virtual::itk::LightObject::Pointer itk::LoggerThreadWrapper< SimpleLoggerType >::CreateAnother | ( | void | ) | const |
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::Flush | ( | ) | [virtual] |
| virtual DelayType itk::LoggerThreadWrapper< SimpleLoggerType >::GetDelay | ( | ) | const [virtual] |
Get the delay in milliseconds between checks to see if there are any low priority messages to be processed.
| virtual PriorityLevelType itk::LoggerThreadWrapper< SimpleLoggerType >::GetLevelForFlushing | ( | ) | const [virtual] |
| virtual const char* itk::LoggerThreadWrapper< SimpleLoggerType >::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
| virtual PriorityLevelType itk::LoggerThreadWrapper< SimpleLoggerType >::GetPriorityLevel | ( | ) | const [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
| static Pointer itk::LoggerThreadWrapper< SimpleLoggerType >::New | ( | ) | [static] |
New macro for creation of through a Smart Pointer
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::PrintSelf | ( | std::ostream & | os, |
| Indent | indent | ||
| ) | const [protected, virtual] |
Print contents of a LoggerThreadWrapper
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::SetDelay | ( | DelayType | delay | ) | [virtual] |
Set the delay in milliseconds between checks to see if there are any low priority messages to be processed.
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::SetLevelForFlushing | ( | PriorityLevelType | level | ) | [virtual] |
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::SetPriorityLevel | ( | PriorityLevelType | level | ) | [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
| static ITK_THREAD_RETURN_TYPE itk::LoggerThreadWrapper< SimpleLoggerType >::ThreadFunction | ( | void * | ) | [static, protected] |
| virtual void itk::LoggerThreadWrapper< SimpleLoggerType >::Write | ( | PriorityLevelType | level, |
| std::string const & | content | ||
| ) | [virtual] |
DelayType itk::LoggerThreadWrapper< SimpleLoggerType >::m_Delay [private] |
Definition at line 136 of file itkLoggerThreadWrapper.h.
LevelContainerType itk::LoggerThreadWrapper< SimpleLoggerType >::m_LevelQ [private] |
Definition at line 130 of file itkLoggerThreadWrapper.h.
MessageContainerType itk::LoggerThreadWrapper< SimpleLoggerType >::m_MessageQ [private] |
Definition at line 128 of file itkLoggerThreadWrapper.h.
SimpleFastMutexLock itk::LoggerThreadWrapper< SimpleLoggerType >::m_Mutex [private] |
Definition at line 134 of file itkLoggerThreadWrapper.h.
OperationContainerType itk::LoggerThreadWrapper< SimpleLoggerType >::m_OperationQ [private] |
Definition at line 126 of file itkLoggerThreadWrapper.h.
OutputContainerType itk::LoggerThreadWrapper< SimpleLoggerType >::m_OutputQ [private] |
Definition at line 132 of file itkLoggerThreadWrapper.h.
MultiThreader::Pointer itk::LoggerThreadWrapper< SimpleLoggerType >::m_Threader [private] |
Definition at line 122 of file itkLoggerThreadWrapper.h.
ThreadIdType itk::LoggerThreadWrapper< SimpleLoggerType >::m_ThreadID [private] |
Definition at line 124 of file itkLoggerThreadWrapper.h.
1.7.6.1