1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/POCO/Util/src/LoggingConfigurator.cpp
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

199 lines
5.3 KiB
C++

//
// LoggingConfigurator.cpp
//
// Library: Util
// Package: Configuration
// Module: LoggingConfigurator
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Util/LoggingConfigurator.h"
#include "Poco/AutoPtr.h"
#include "Poco/Channel.h"
#include "Poco/FormattingChannel.h"
#include "Poco/Formatter.h"
#include "Poco/PatternFormatter.h"
#include "Poco/Logger.h"
#include "Poco/LoggingRegistry.h"
#include "Poco/LoggingFactory.h"
#include <map>
using Poco::AutoPtr;
using Poco::Formatter;
using Poco::PatternFormatter;
using Poco::Channel;
using Poco::FormattingChannel;
using Poco::Logger;
using Poco::LoggingRegistry;
using Poco::LoggingFactory;
namespace Poco {
namespace Util {
LoggingConfigurator::LoggingConfigurator()
{
}
LoggingConfigurator::~LoggingConfigurator()
{
}
void LoggingConfigurator::configure(AbstractConfiguration::Ptr pConfig)
{
poco_check_ptr (pConfig);
AbstractConfiguration::Ptr pFormattersConfig(pConfig->createView("logging.formatters"));
configureFormatters(pFormattersConfig);
AbstractConfiguration::Ptr pChannelsConfig(pConfig->createView("logging.channels"));
configureChannels(pChannelsConfig);
AbstractConfiguration::Ptr pLoggersConfig(pConfig->createView("logging.loggers"));
configureLoggers(pLoggersConfig);
}
void LoggingConfigurator::configureFormatters(AbstractConfiguration::Ptr pConfig)
{
AbstractConfiguration::Keys formatters;
pConfig->keys(formatters);
for (const auto& f: formatters)
{
AutoPtr<AbstractConfiguration> pFormatterConfig(pConfig->createView(f));
AutoPtr<Formatter> pFormatter(createFormatter(pFormatterConfig));
LoggingRegistry::defaultRegistry().registerFormatter(f, pFormatter);
}
}
void LoggingConfigurator::configureChannels(AbstractConfiguration::Ptr pConfig)
{
AbstractConfiguration::Keys channels;
pConfig->keys(channels);
for (const auto& c: channels)
{
AutoPtr<AbstractConfiguration> pChannelConfig(pConfig->createView(c));
AutoPtr<Channel> pChannel = createChannel(pChannelConfig);
LoggingRegistry::defaultRegistry().registerChannel(c, pChannel);
}
for (const auto& c: channels)
{
AutoPtr<AbstractConfiguration> pChannelConfig(pConfig->createView(c));
Channel::Ptr pChannel = LoggingRegistry::defaultRegistry().channelForName(c);
configureChannel(pChannel, pChannelConfig);
}
}
void LoggingConfigurator::configureLoggers(AbstractConfiguration::Ptr pConfig)
{
using LoggerMap = std::map<std::string, AutoPtr<AbstractConfiguration>>;
AbstractConfiguration::Keys loggers;
pConfig->keys(loggers);
// use a map to sort loggers by their name, ensuring initialization in correct order (parents before children)
LoggerMap loggerMap;
for (const auto& l: loggers)
{
AutoPtr<AbstractConfiguration> pLoggerConfig(pConfig->createView(l));
loggerMap[pLoggerConfig->getString("name", "")] = pLoggerConfig;
}
for (const auto& p: loggerMap)
{
configureLogger(p.second);
}
}
Formatter::Ptr LoggingConfigurator::createFormatter(AbstractConfiguration::Ptr pConfig)
{
Formatter::Ptr pFormatter(LoggingFactory::defaultFactory().createFormatter(pConfig->getString("class")));
AbstractConfiguration::Keys props;
pConfig->keys(props);
for (const auto& p: props)
{
if (p != "class")
pFormatter->setProperty(p, pConfig->getString(p));
}
return pFormatter;
}
Channel::Ptr LoggingConfigurator::createChannel(AbstractConfiguration::Ptr pConfig)
{
Channel::Ptr pChannel(LoggingFactory::defaultFactory().createChannel(pConfig->getString("class")));
Channel::Ptr pWrapper(pChannel);
AbstractConfiguration::Keys props;
pConfig->keys(props);
for (const auto& p: props)
{
if (p == "pattern")
{
AutoPtr<Formatter> pPatternFormatter(new PatternFormatter(pConfig->getString(p)));
pWrapper = new FormattingChannel(pPatternFormatter, pChannel);
}
else if (p == "formatter")
{
AutoPtr<FormattingChannel> pFormattingChannel(new FormattingChannel(0, pChannel));
if (pConfig->hasProperty("formatter.class"))
{
AutoPtr<AbstractConfiguration> pFormatterConfig(pConfig->createView(p));
AutoPtr<Formatter> pFormatter(createFormatter(pFormatterConfig));
pFormattingChannel->setFormatter(pFormatter);
}
else pFormattingChannel->setProperty(p, pConfig->getString(p));
pWrapper = pFormattingChannel;
}
}
return pWrapper;
}
void LoggingConfigurator::configureChannel(Channel::Ptr pChannel, AbstractConfiguration::Ptr pConfig)
{
AbstractConfiguration::Keys props;
pConfig->keys(props);
for (const auto& p: props)
{
if (p != "pattern" && p != "formatter" && p != "class")
{
pChannel->setProperty(p, pConfig->getString(p));
}
}
}
void LoggingConfigurator::configureLogger(AbstractConfiguration::Ptr pConfig)
{
Logger& logger = Logger::get(pConfig->getString("name", ""));
AbstractConfiguration::Keys props;
pConfig->keys(props);
for (const auto& p: props)
{
if (p == "channel" && pConfig->hasProperty("channel.class"))
{
AutoPtr<AbstractConfiguration> pChannelConfig(pConfig->createView(p));
AutoPtr<Channel> pChannel(createChannel(pChannelConfig));
configureChannel(pChannel, pChannelConfig);
Logger::setChannel(logger.name(), pChannel);
}
else if (p != "name")
{
Logger::setProperty(logger.name(), p, pConfig->getString(p));
}
}
}
} } // namespace Poco::Util