libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ILogger.hxx
1#pragma once
2
3// C++
4#include <iosfwd>
5#include <sstream>
6#include <string_view>
7
8// cosmos
9#include <cosmos/io/colors.hxx>
10
11namespace cosmos {
12
14
32class COSMOS_API ILogger {
33public: // functions
34
35 virtual ~ILogger() {};
36
38 std::ostream& error() { return getStream(m_err); }
40 std::ostream& warn() { return getStream(m_warn); }
42 std::ostream& info() { return getStream(m_info); }
44 std::ostream& debug() { return getStream(m_debug); }
45
47 void setChannels(const bool error, const bool warning, const bool info, const bool debug) {
48 m_err.enabled = error;
49 m_warn.enabled = warning;
50 m_info.enabled = info;
51 m_debug.enabled = debug;
52 }
53
54 void setPrefix(const std::string_view prefix) {
55 m_common_prefix = prefix;
56 }
57
58protected: // types
59
61 struct StreamState {
62 StreamState(const std::string_view p, const term::ColorSpec &c) :
63 prefix{p}, color{c} {}
64
65 std::ostream *stream = nullptr;
66 bool enabled = false;
67 bool is_tty = false;
68 const std::string_view prefix;
69 const term::ColorSpec color;
70 };
71
72protected: // functions
73
74 ILogger();
75
76 std::ostream& getStream(StreamState &state) {
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 }
91
92 std::ostream& getNoopStream() {
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 }
102
104 static bool isTTY(const std::ostream &o);
105
106 void setStreams(
107 std::ostream &debug,
108 std::ostream &info,
109 std::ostream &warn,
110 std::ostream &error
111 );
112
113 void setStream(std::ostream &s, StreamState &state);
114
115protected: // data
116
117 std::stringstream m_null;
118
119 StreamState m_err;
120 StreamState m_warn;
121 StreamState m_info;
122 StreamState m_debug;
123
124 std::string m_common_prefix;
125};
126
127} // end ns
Abstract interface for a basic logging facility.
Definition ILogger.hxx:32
std::ostream & debug()
Log a debug message.
Definition ILogger.hxx:44
std::ostream & info()
Log an info message.
Definition ILogger.hxx:42
void setChannels(const bool error, const bool warning, const bool info, const bool debug)
Enable/disable different log channels.
Definition ILogger.hxx:47
std::ostream & warn()
Log a warning message.
Definition ILogger.hxx:40
std::ostream & error()
Log an error message.
Definition ILogger.hxx:38
std::stringstream m_null
A noop stream object to write to if a channel is disabled.
Definition ILogger.hxx:117
std::string m_common_prefix
a common prefix to prepend to each message
Definition ILogger.hxx:124
Complete color specification for ANSI terminals.
Definition colors.hxx:81
Internal state for each channel's stream.
Definition ILogger.hxx:61