libcosmos
Linux C++ System Programming Library
|
Abstract interface for a basic logging facility. More...
#include <ILogger.hxx>
Classes | |
struct | StreamState |
Internal state for each channel's stream. More... | |
Public Member Functions | |
std::ostream & | error () |
Log an error message. | |
std::ostream & | warn () |
Log a warning message. | |
std::ostream & | info () |
Log an info message. | |
std::ostream & | debug () |
Log a debug message. | |
void | setChannels (const bool error, const bool warning, const bool info, const bool debug) |
Enable/disable different log channels. | |
void | setPrefix (const std::string_view prefix) |
Protected Member Functions | |
std::ostream & | getStream (StreamState &state) |
std::ostream & | getNoopStream () |
void | setStreams (std::ostream &debug, std::ostream &info, std::ostream &warn, std::ostream &error) |
void | setStream (std::ostream &s, StreamState &state) |
Static Protected Member Functions | |
static bool | isTTY (const std::ostream &o) |
Returns whether the given ostream is associated with a terminal or not. | |
Protected Attributes | |
std::stringstream | m_null |
A noop stream object to write to if a channel is disabled. | |
StreamState | m_err |
StreamState | m_warn |
StreamState | m_info |
StreamState | m_debug |
std::string | m_common_prefix |
a common prefix to prepend to each message | |
Abstract interface for a basic logging facility.
Applications can use this interface to log data to arbitrary places. You need to derive from this interface and decide what places these are.
The base class writes data to std::ostream instances. So an implementation of this class needs to provide some instance of std::ostream for writing to.
The logging supports four different categories for debug, info, warning and error messages.
This base class additionally provides means to write ANSI colored text if an ostream is associated with a terminal. Each category gets its own ANSI color. Each category can be directed to an individual output stream and be enabled/disabled individually.
By default all categories are enabled except debug.
Definition at line 32 of file ILogger.hxx.
|
inlinevirtual |
Definition at line 35 of file ILogger.hxx.
|
protected |
Definition at line 13 of file ILogger.cxx.
|
inline |
|
inline |
|
inlineprotected |
Definition at line 92 of file ILogger.hxx.
|
inlineprotected |
Definition at line 76 of file ILogger.hxx.
|
inline |
|
staticprotected |
Returns whether the given ostream is associated with a terminal or not.
Definition at line 20 of file ILogger.cxx.
|
inline |
Enable/disable different log channels.
Definition at line 47 of file ILogger.hxx.
|
inline |
Definition at line 54 of file ILogger.hxx.
|
protected |
Definition at line 39 of file ILogger.cxx.
|
protected |
Definition at line 45 of file ILogger.cxx.
|
inline |
|
protected |
a common prefix to prepend to each message
Definition at line 124 of file ILogger.hxx.
|
protected |
Definition at line 122 of file ILogger.hxx.
|
protected |
Definition at line 119 of file ILogger.hxx.
|
protected |
Definition at line 121 of file ILogger.hxx.
|
protected |
A noop stream object to write to if a channel is disabled.
Definition at line 117 of file ILogger.hxx.
|
protected |
Definition at line 120 of file ILogger.hxx.