mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 19:42:00 +00:00
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
#pragma once
|
|
#include <atomic>
|
|
#include <Poco/AutoPtr.h>
|
|
#include <Poco/Channel.h>
|
|
#include <Poco/FormattingChannel.h>
|
|
#include "ExtendedLogChannel.h"
|
|
#include "OwnJSONPatternFormatter.h"
|
|
#include "OwnPatternFormatter.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
// Like Poco::FormattingChannel but supports the extended logging interface and log level filter
|
|
class OwnFormattingChannel : public Poco::Channel, public ExtendedLogChannel
|
|
{
|
|
public:
|
|
explicit OwnFormattingChannel(
|
|
Poco::AutoPtr<OwnPatternFormatter> pFormatter_ = nullptr, Poco::AutoPtr<Poco::Channel> pChannel_ = nullptr)
|
|
: pFormatter(pFormatter_), pChannel(pChannel_), priority(Poco::Message::PRIO_TRACE)
|
|
{
|
|
}
|
|
|
|
void setChannel(Poco::AutoPtr<Poco::Channel> pChannel_) { pChannel = pChannel_; }
|
|
|
|
void setLevel(Poco::Message::Priority priority_) { priority = priority_; }
|
|
|
|
// Poco::Logger::parseLevel returns ints
|
|
void setLevel(int level) { priority = static_cast<Poco::Message::Priority>(level); }
|
|
|
|
void open() override
|
|
{
|
|
if (pChannel)
|
|
pChannel->open();
|
|
}
|
|
|
|
void close() override
|
|
{
|
|
if (pChannel)
|
|
pChannel->close();
|
|
}
|
|
|
|
void setProperty(const std::string& name, const std::string& value) override
|
|
{
|
|
if (pChannel)
|
|
pChannel->setProperty(name, value);
|
|
}
|
|
|
|
void log(const Poco::Message & msg) override;
|
|
void logExtended(const ExtendedLogMessage & msg) override;
|
|
|
|
~OwnFormattingChannel() override;
|
|
|
|
private:
|
|
Poco::AutoPtr<OwnPatternFormatter> pFormatter;
|
|
Poco::AutoPtr<Poco::Channel> pChannel;
|
|
std::atomic<Poco::Message::Priority> priority;
|
|
};
|
|
|
|
}
|