casacore
|
#include <LoggerHolder.h>
Public Types | |
typedef LoggerHolderIterator | const_iterator |
Define the STL-style iterators. More... | |
Public Member Functions | |
LoggerHolder (Bool nullSink=False) | |
Create with a NullSink or MemoryLogSink (default). More... | |
LoggerHolder (const String &logTableName, Bool isWritable) | |
Create with a TableLogSink. More... | |
LoggerHolder (const LoggerHolder &) | |
Copy constructor (reference sematics). More... | |
~LoggerHolder () | |
LoggerHolder & | operator= (const LoggerHolder &) |
Assignment (reference semantics). More... | |
void | addParent (const LoggerHolder &) |
Add a logger from a parent. More... | |
void | append (const LoggerHolder &other) |
Append the entries of the other logger to this one. More... | |
void | reopenRW () |
Reopen a readonly logtable for read/write (if needed). More... | |
void | reopen () |
Reopen the log table if needed (after a tempClose). More... | |
void | tempClose (Bool closeParents=True) const |
Temporarily close all log tables. More... | |
void | unlock () |
Unlock the log table. More... | |
void | flush () |
Flush the log table. More... | |
void | resync () |
Resync the log table (if needed). More... | |
Bool | isTempClosed () const |
Is the log table temporarily closed? More... | |
LogIO & | logio () |
Get access to the logger. More... | |
LogSink & | sink () |
Get access to the log sink (reopen the log table if needed). More... | |
const LogSink & | sink () const |
void | clear () |
Clear the log. More... | |
void | removeParents () |
Remove all parents. More... | |
const Block< LoggerHolder > & | parents () const |
Return the block of parents. More... | |
const_iterator | begin () const |
Get the begin and end iterator object. More... | |
const_iterator | end () const |
Private Attributes | |
CountedPtr< LoggerHolderRep > | itsRep |
Class holding a hierarchy of loggers.
Public interface
The LoggerHolder class implements a hierarchy of loggers. It has a log sink of its own and can have multiple parent LoggerHolder objects representing the log info of parent objects. It is used by class ImageInterface, but could also be used elsewhere.
The sink of a LoggerHolder can be different depending on the type of image. E.g. for a transient image it can be a MemoryLogSink, while for a persistent image it will be a TableLogSink.
An important feature is that an LoggerHolder can have zero or more parent LoggerHolder objects. In that way the log of the parent object of an image object can be made part of the log of the image object itself, without having to copy the log.
To iterate through all messages in a LoggerHolder (including all parents), the LoggerHolderIterator can be used. This is an STL-style const_iterator object.
LoggerHolder uses reference counting (of class LoggerHolderRep) to be able to retain the object after the (ImageInterface) object containing it is gone. Otherwise classes like SubImage would lose their log info.
This example shows the construction of an LoggerHolder with a TableLogSink sink. Thereafter some messages are written. The latter part shows how to iterate through all messages.
This example shows the construction of an LoggerHolder with a MemoryLogSink sink (e.g. for a SubImage). Thereafter the logger of the parent image is added to it. Finally some messages are written.
This class simplifies and unifies all Image logging activities.
Definition at line 120 of file LoggerHolder.h.
Define the STL-style iterators.
Only a const forward iterator is available. It makes it possible to iterate through all messages in the logger.
Definition at line 201 of file LoggerHolder.h.
Create with a NullSink or MemoryLogSink (default).
Create with a TableLogSink.
casacore::LoggerHolder::LoggerHolder | ( | const LoggerHolder & | ) |
Copy constructor (reference sematics).
casacore::LoggerHolder::~LoggerHolder | ( | ) |
void casacore::LoggerHolder::addParent | ( | const LoggerHolder & | ) |
Add a logger from a parent.
void casacore::LoggerHolder::append | ( | const LoggerHolder & | other | ) |
Append the entries of the other logger to this one.
Referenced by casacore::ImageInterface< T >::appendLog().
|
inline |
Get the begin and end iterator object.
Definition at line 570 of file LoggerHolder.h.
void casacore::LoggerHolder::clear | ( | ) |
Clear the log.
It removes the parents and removes all messages from the sink.
|
inline |
Definition at line 574 of file LoggerHolder.h.
void casacore::LoggerHolder::flush | ( | ) |
Flush the log table.
|
inline |
Is the log table temporarily closed?
Definition at line 550 of file LoggerHolder.h.
References itsRep.
|
inline |
Get access to the logger.
It assumes that it will be used to post a message, so it reopens the log table for read/write if needed).
Definition at line 554 of file LoggerHolder.h.
References itsRep.
Referenced by casacore::ImageInterface< T >::logSink().
LoggerHolder& casacore::LoggerHolder::operator= | ( | const LoggerHolder & | ) |
Assignment (reference semantics).
|
inline |
void casacore::LoggerHolder::removeParents | ( | ) |
Remove all parents.
|
inline |
Reopen the log table if needed (after a tempClose).
Definition at line 546 of file LoggerHolder.h.
References itsRep.
void casacore::LoggerHolder::reopenRW | ( | ) |
Reopen a readonly logtable for read/write (if needed).
void casacore::LoggerHolder::resync | ( | ) |
Resync the log table (if needed).
|
inline |
Get access to the log sink (reopen the log table if needed).
It is not assumed you want to write. If you want to do that, you should first call reopenRW() to ensure you can write.
Definition at line 558 of file LoggerHolder.h.
References itsRep.
|
inline |
Definition at line 562 of file LoggerHolder.h.
References itsRep.
Temporarily close all log tables.
By default the possible parent log tables are also closed.
void casacore::LoggerHolder::unlock | ( | ) |
Unlock the log table.
|
private |
Definition at line 208 of file LoggerHolder.h.
Referenced by isTempClosed(), logio(), parents(), reopen(), and sink().