ClickHouse/base/loggers/Loggers.h

47 lines
1.2 KiB
C++
Raw Normal View History

2020-10-10 18:37:02 +00:00
#pragma once
#include <optional>
#include <string>
#include <Poco/AutoPtr.h>
#include <Poco/FileChannel.h>
#include <Poco/Util/Application.h>
2019-07-30 14:04:18 +00:00
#include <Interpreters/TextLog.h>
#include "OwnSplitChannel.h"
namespace Poco::Util
{
2019-09-03 19:48:29 +00:00
class AbstractConfiguration;
}
class Loggers
{
public:
void buildLoggers(Poco::Util::AbstractConfiguration & config, Poco::Logger & logger, const std::string & cmd_name = "");
2019-06-14 15:49:38 +00:00
/// Close log files. On next log write files will be reopened.
void closeLogs(Poco::Logger & logger);
std::optional<size_t> getLayer() const
{
2020-08-08 01:21:04 +00:00
return layer; /// layer set in inheritor class BaseDaemonApplication.
}
void setTextLog(std::shared_ptr<DB::TextLog> log, int max_priority);
2019-07-30 14:04:18 +00:00
protected:
std::optional<size_t> layer;
private:
Poco::AutoPtr<Poco::FileChannel> log_file;
Poco::AutoPtr<Poco::FileChannel> error_log_file;
Poco::AutoPtr<Poco::Channel> syslog_channel;
2019-06-20 07:17:21 +00:00
/// Previous value of logger element in config. It is used to reinitialize loggers whenever the value changed.
std::string config_logger;
2019-07-30 14:04:18 +00:00
std::weak_ptr<DB::TextLog> text_log;
int text_log_max_priority = -1;
2019-07-30 14:04:18 +00:00
Poco::AutoPtr<DB::OwnSplitChannel> split;
};