2019-06-14 14:00:37 +00:00
|
|
|
|
#include <optional>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <Poco/AutoPtr.h>
|
|
|
|
|
#include <Poco/FileChannel.h>
|
|
|
|
|
#include <Poco/Util/Application.h>
|
|
|
|
|
|
|
|
|
|
namespace Poco::Util
|
|
|
|
|
{
|
|
|
|
|
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.
|
2019-06-14 14:00:37 +00:00
|
|
|
|
void closeLogs(Poco::Logger & logger);
|
|
|
|
|
|
|
|
|
|
std::optional<size_t> getLayer() const
|
|
|
|
|
{
|
2019-06-14 15:49:38 +00:00
|
|
|
|
return layer; /// layer setted in inheritor class BaseDaemonApplication.
|
2019-06-14 14:00:37 +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;
|
|
|
|
|
/// Previous value of logger element in config. It is used to reinitialize loggers whenever the value changed.
|
|
|
|
|
std::string config_logger;
|
|
|
|
|
};
|