1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00
CLK/Outputs/Log.hpp

93 lines
1.7 KiB
C++
Raw Normal View History

//
// Log.hpp
// Clock Signal
//
// Created by Thomas Harte on 18/06/2018.
// Copyright © 2018 Thomas Harte. All rights reserved.
//
#pragma once
namespace Log {
2024-01-18 21:37:07 +00:00
// TODO: if adopting C++20, std::format would be a better model to apply below.
// But I prefer C files to C++ streams, so here it is for now.
enum class Source {
WDFDC,
2024-01-18 21:37:07 +00:00
};
constexpr bool is_enabled(Source source) {
// Allow for compile-time source-level enabling and disabling of different sources.
switch(source) {
default: return true;
}
}
constexpr const char *prefix(Source source) {
switch(source) {
case Source::WDFDC: return "[WD FDC]";
}
}
#ifdef NDEBUG
2024-01-18 21:37:07 +00:00
class Logger {
public:
Logger(Source) {}
2018-06-21 23:27:54 +00:00
2024-01-18 21:37:07 +00:00
struct LogLine {
void append(const char *, ...) {}
};
LogLine info() { return LogLine(); }
LogLine error() { return LogLine(); }
2024-01-18 21:37:07 +00:00
};
#else
2024-01-18 21:37:07 +00:00
#include <cstdio>
#include <cstdarg>
2024-01-18 21:37:07 +00:00
class Logger {
public:
Logger(Source source) : source_(source) {}
2018-06-21 23:27:54 +00:00
2024-01-18 21:37:07 +00:00
struct LogLine {
public:
LogLine(Source source, FILE *stream) : source_(source), stream_(stream) {
if(!is_enabled(source_)) return;
const auto source_prefix = prefix(source);
if(source_prefix) {
fprintf(stream_, "%s ", source_prefix);
2024-01-18 21:37:07 +00:00
}
}
2024-01-18 21:37:07 +00:00
~LogLine() {
if(!is_enabled(source_)) return;
2024-01-18 21:37:07 +00:00
fprintf(stream_, "\n");
}
2024-01-18 21:37:07 +00:00
void append(const char *format, ...) {
if(!is_enabled(source_)) return;
2024-01-18 21:37:07 +00:00
va_list args;
va_start(args, format);
vfprintf(stream_, format, args);
va_end(args);
}
2024-01-18 21:37:07 +00:00
private:
Source source_;
2024-01-18 21:37:07 +00:00
FILE *stream_;
};
LogLine info() { return LogLine(source_, stdout); }
LogLine error() { return LogLine(source_, stderr); }
2018-06-21 23:27:54 +00:00
2024-01-18 21:37:07 +00:00
private:
Source source_;
2024-01-18 21:37:07 +00:00
};
#endif
}