libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ILogger.cxx
1// C++
2#include <iostream>
3
4// Cosmos
5#include <cosmos/fs/FileDescriptor.hxx>
6#include <cosmos/io/ILogger.hxx>
7#include <cosmos/io/Terminal.hxx>
8
9namespace cosmos {
10
11using namespace cosmos::term;
12
13ILogger::ILogger() :
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{}
19
20bool ILogger::isTTY(const std::ostream &o) {
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}
38
39void ILogger::setStream(std::ostream &s, StreamState &state) {
40 state.stream = &s;
41 state.is_tty = isTTY(s);
42 state.enabled = (&state == &m_debug) ? false : true;
43}
44
45void ILogger::setStreams(
46 std::ostream &debug, std::ostream &info,
47 std::ostream &warn, std::ostream &err) {
48 setStream(debug, m_debug);
49 setStream(err, m_err);
50 setStream(info, m_info);
51 setStream(warn, m_warn);
52}
53
54} // end ns
Thin Wrapper around OS file descriptors.
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
Access to Terminal information and ioctls.
Definition Terminal.hxx:43
bool isTTY() const
Returns whether the associated file descriptor is a TTY.
Definition Terminal.cxx:20
TermColor
Primitive Colors for ANSI Terminals.
Definition colors.hxx:44
Simple type to represent an ANSI foreground color in bright or normal intensity.
Definition colors.hxx:101