libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::ILogger Class Reference

Abstract interface for a basic logging facility. More...

#include <ILogger.hxx>

+ Inheritance diagram for cosmos::ILogger:

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
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ ~ILogger()

virtual cosmos::ILogger::~ILogger ( )
inlinevirtual

Definition at line 35 of file ILogger.hxx.

35{};

◆ ILogger()

cosmos::ILogger::ILogger ( )
protected

Definition at line 13 of file ILogger.cxx.

13 :
14 m_err{ "Error: ", FrontColor{TermColor::RED}},
15 m_warn{ "Warning: ", FrontColor{TermColor::YELLOW}},
16 m_info{ "Info: ", FrontColor{TermColor::WHITE}},
17 m_debug{"Debug: ", FrontColor{TermColor::CYAN}}
18{}

Member Function Documentation

◆ debug()

std::ostream & cosmos::ILogger::debug ( )
inline

Log a debug message.

Definition at line 44 of file ILogger.hxx.

44{ return getStream(m_debug); }

◆ error()

std::ostream & cosmos::ILogger::error ( )
inline

Log an error message.

Definition at line 38 of file ILogger.hxx.

38{ return getStream(m_err); }

◆ getNoopStream()

std::ostream & cosmos::ILogger::getNoopStream ( )
inlineprotected

Definition at line 92 of file ILogger.hxx.

92 {
93 // a real noop implementation of an ostream buffer will still
94 // be cheaper than this, but at least it doesn't involve
95 // system calls
96 //
97 // seek the start of the stringstream, to avoid the buffer
98 // growing too much
99 m_null.seekp(m_null.beg);
100 return m_null;
101 }
std::stringstream m_null
A noop stream object to write to if a channel is disabled.
Definition ILogger.hxx:117

◆ getStream()

std::ostream & cosmos::ILogger::getStream ( StreamState & state)
inlineprotected

Definition at line 76 of file ILogger.hxx.

76 {
77 auto &out = state.enabled ? *state.stream : getNoopStream();
78
79 if (state.is_tty)
80 out << state.color;
81
82 out << m_common_prefix;
83
84 out << state.prefix;
85
86 if (state.is_tty)
87 out << term::TermControl::DEFAULT_FG_COLOR;
88
89 return out;
90 }
std::string m_common_prefix
a common prefix to prepend to each message
Definition ILogger.hxx:124

◆ info()

std::ostream & cosmos::ILogger::info ( )
inline

Log an info message.

Definition at line 42 of file ILogger.hxx.

42{ return getStream(m_info); }

◆ isTTY()

bool cosmos::ILogger::isTTY ( const std::ostream & o)
staticprotected

Returns whether the given ostream is associated with a terminal or not.

Definition at line 20 of file ILogger.cxx.

20 {
21 /*
22 * there's no elegant, portable way to get the file descriptor from an
23 * ostream thus we have to use some heuristics ...
24 */
25
26 FileDescriptor fd_to_check;
27
28 if (auto thisbuf = o.rdbuf(); thisbuf == std::cout.rdbuf()) {
29 fd_to_check.setFD(FileNum::STDOUT);
30 } else if (thisbuf == std::cerr.rdbuf()) {
31 fd_to_check.setFD(FileNum::STDERR);
32 } else {
33 return false;
34 }
35
36 return Terminal{fd_to_check}.isTTY();
37}

◆ setChannels()

void cosmos::ILogger::setChannels ( const bool error,
const bool warning,
const bool info,
const bool debug )
inline

Enable/disable different log channels.

Definition at line 47 of file ILogger.hxx.

47 {
48 m_err.enabled = error;
49 m_warn.enabled = warning;
50 m_info.enabled = info;
51 m_debug.enabled = debug;
52 }
std::ostream & debug()
Log a debug message.
Definition ILogger.hxx:44
std::ostream & info()
Log an info message.
Definition ILogger.hxx:42
std::ostream & error()
Log an error message.
Definition ILogger.hxx:38

◆ setPrefix()

void cosmos::ILogger::setPrefix ( const std::string_view prefix)
inline

Definition at line 54 of file ILogger.hxx.

54 {
55 m_common_prefix = prefix;
56 }

◆ setStream()

void cosmos::ILogger::setStream ( std::ostream & s,
StreamState & state )
protected

Definition at line 39 of file ILogger.cxx.

39 {
40 state.stream = &s;
41 state.is_tty = isTTY(s);
42 state.enabled = (&state == &m_debug) ? false : true;
43}
static bool isTTY(const std::ostream &o)
Returns whether the given ostream is associated with a terminal or not.
Definition ILogger.cxx:20

◆ setStreams()

void cosmos::ILogger::setStreams ( std::ostream & debug,
std::ostream & info,
std::ostream & warn,
std::ostream & error )
protected

Definition at line 45 of file ILogger.cxx.

47 {
48 setStream(debug, m_debug);
49 setStream(err, m_err);
50 setStream(info, m_info);
51 setStream(warn, m_warn);
52}
std::ostream & warn()
Log a warning message.
Definition ILogger.hxx:40

◆ warn()

std::ostream & cosmos::ILogger::warn ( )
inline

Log a warning message.

Definition at line 40 of file ILogger.hxx.

40{ return getStream(m_warn); }

Member Data Documentation

◆ m_common_prefix

std::string cosmos::ILogger::m_common_prefix
protected

a common prefix to prepend to each message

Definition at line 124 of file ILogger.hxx.

◆ m_debug

StreamState cosmos::ILogger::m_debug
protected

Definition at line 122 of file ILogger.hxx.

◆ m_err

StreamState cosmos::ILogger::m_err
protected

Definition at line 119 of file ILogger.hxx.

◆ m_info

StreamState cosmos::ILogger::m_info
protected

Definition at line 121 of file ILogger.hxx.

◆ m_null

std::stringstream cosmos::ILogger::m_null
protected

A noop stream object to write to if a channel is disabled.

Definition at line 117 of file ILogger.hxx.

◆ m_warn

StreamState cosmos::ILogger::m_warn
protected

Definition at line 120 of file ILogger.hxx.


The documentation for this class was generated from the following files: