casacore
|
Filter LogMessages using a TaQL expression. More...
#include <LogFilterTaql.h>
Public Member Functions | |
LogFilterTaql (const String &expr) | |
Construct a filter from a TaQL expression. More... | |
LogFilterTaql (const LogFilterTaql &other) | |
Copy other to this . More... | |
LogFilterTaql & | operator= (const LogFilterTaql &other) |
virtual | ~LogFilterTaql () |
virtual LogFilterTaql * | clone () const |
Clone the object. More... | |
virtual Bool | pass (const LogMessage &message) const |
Return True if message passes this filter. More... | |
Public Member Functions inherited from casacore::LogFilterInterface | |
LogFilterInterface () | |
Construct a filter with the LOWEST priority that you want passed. More... | |
virtual | ~LogFilterInterface () |
Private Attributes | |
LogFilterExpr * | expr_p |
Filter LogMessages using a TaQL expression.
Public interface
Log[Message] Filter.
The LogFilter
class is used by the various log sink classes, typically accessed through LogSink, to decide whether a particular LogMessage should be accepted or rejected.
Simple filtering is based on the messages priority. In particular, you typically will choose to only pass messages greater than or equal to NORMAL
in priority, but you might choose DEBUGGING
to see all messages, or SEVERE
to only see messages that report serious problems.
Suppose we wanted to change the global sink so that it prints all messages, including debugging messages:
Definition at line 87 of file LogFilterTaql.h.
|
explicit |
Construct a filter from a TaQL expression.
Only messages matching the expression pass the filter. The field names that can be used in the expression are: TIME, PRIORITY, MESSAGE, LOCATION, OBJECT_ID. All fields are strings, expect for TIME which is a double (MJD in sec.).
casacore::LogFilterTaql::LogFilterTaql | ( | const LogFilterTaql & | other | ) |
Copy other
to this
.
|
virtual |
|
virtual |
Clone the object.
Implements casacore::LogFilterInterface.
LogFilterTaql& casacore::LogFilterTaql::operator= | ( | const LogFilterTaql & | other | ) |
|
virtual |
Return True if message
passes this filter.
Implements casacore::LogFilterInterface.
|
private |
Definition at line 112 of file LogFilterTaql.h.