mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
5c457ff486
* use std::source_location instead of godawful macros in logging * remove unused/absolutely haram af json logstream * fix bug in android logger where it doesn't respect eLogNone
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
#pragma once
|
|
#include "loglevel.hpp"
|
|
|
|
#include <llarp/util/time.hpp>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <string_view>
|
|
|
|
namespace llarp
|
|
{
|
|
/// logger stream interface
|
|
struct ILogStream
|
|
{
|
|
virtual ~ILogStream() = default;
|
|
|
|
virtual void
|
|
PreLog(
|
|
std::stringstream& out,
|
|
LogLevel lvl,
|
|
std::string_view filename,
|
|
int lineno,
|
|
const std::string& nodename) const = 0;
|
|
|
|
virtual void
|
|
Print(LogLevel lvl, std::string_view filename, const std::string& msg) = 0;
|
|
|
|
virtual void
|
|
PostLog(std::stringstream& out) const = 0;
|
|
|
|
virtual void
|
|
AppendLog(
|
|
LogLevel lvl,
|
|
std::string_view filename,
|
|
int lineno,
|
|
const std::string& nodename,
|
|
const std::string msg)
|
|
{
|
|
std::stringstream ss;
|
|
PreLog(ss, lvl, filename, lineno, nodename);
|
|
ss << msg;
|
|
PostLog(ss);
|
|
Print(lvl, filename, ss.str());
|
|
}
|
|
|
|
/// A blocking call to flush to disk. Should only be called in rare circumstances.
|
|
virtual void
|
|
ImmediateFlush() = 0;
|
|
|
|
/// called every end of event loop tick
|
|
virtual void
|
|
Tick(llarp_time_t now) = 0;
|
|
};
|
|
|
|
using ILogStream_ptr = std::unique_ptr<ILogStream>;
|
|
|
|
} // namespace llarp
|