5#include <cosmos/fs/FileDescriptor.hxx>
6#include <cosmos/io/ILogger.hxx>
7#include <cosmos/io/Terminal.hxx>
11using namespace cosmos::term;
20bool ILogger::isTTY(
const std::ostream &o) {
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);
39void ILogger::setStream(std::ostream &s, StreamState &state) {
41 state.is_tty = isTTY(s);
42 state.enabled = (&state == &m_debug) ?
false : true;
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);
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.
bool isTTY() const
Returns whether the associated file descriptor is a TTY.
TermColor
Primitive Colors for ANSI Terminals.
Simple type to represent an ANSI foreground color in bright or normal intensity.