mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
82 lines
1.7 KiB
C++
82 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
|
|
namespace beast {
|
|
|
|
/** Wraps a Journal::Sink to prefix its output with a string. */
|
|
|
|
// A WrappedSink both is a Sink and has a Sink:
|
|
// o It inherits from Sink so it has the correct interface.
|
|
// o It has a sink (reference) so it preserves the passed write() behavior.
|
|
// The data inherited from the base class is ignored.
|
|
class WrappedSink : public beast::Journal::Sink
|
|
{
|
|
private:
|
|
beast::Journal::Sink& sink_;
|
|
std::string prefix_;
|
|
|
|
public:
|
|
explicit WrappedSink(beast::Journal::Sink& sink, std::string const& prefix = "")
|
|
: Sink(sink), sink_(sink), prefix_(prefix)
|
|
{
|
|
}
|
|
|
|
explicit WrappedSink(beast::Journal const& journal, std::string const& prefix = "")
|
|
: WrappedSink(journal.sink(), prefix)
|
|
{
|
|
}
|
|
|
|
void
|
|
prefix(std::string const& s)
|
|
{
|
|
prefix_ = s;
|
|
}
|
|
|
|
bool
|
|
active(beast::severities::Severity level) const override
|
|
{
|
|
return sink_.active(level);
|
|
}
|
|
|
|
bool
|
|
console() const override
|
|
{
|
|
return sink_.console();
|
|
}
|
|
|
|
void
|
|
console(bool output) override
|
|
{
|
|
sink_.console(output);
|
|
}
|
|
|
|
beast::severities::Severity
|
|
threshold() const override
|
|
{
|
|
return sink_.threshold();
|
|
}
|
|
|
|
void
|
|
threshold(beast::severities::Severity thresh) override
|
|
{
|
|
sink_.threshold(thresh);
|
|
}
|
|
|
|
void
|
|
write(beast::severities::Severity level, std::string const& text) override
|
|
{
|
|
using beast::Journal;
|
|
sink_.write(level, prefix_ + text);
|
|
}
|
|
|
|
void
|
|
writeAlways(severities::Severity level, std::string const& text) override
|
|
{
|
|
using beast::Journal;
|
|
sink_.writeAlways(level, prefix_ + text);
|
|
}
|
|
};
|
|
|
|
} // namespace beast
|