mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-02 11:29:01 +08:00
many changes:)
This commit is contained in:
168
include/c11log/details/logger_impl.h
Normal file
168
include/c11log/details/logger_impl.h
Normal file
@@ -0,0 +1,168 @@
|
||||
#pragma once
|
||||
//
|
||||
// Logger implementation
|
||||
//
|
||||
|
||||
|
||||
#include "details/line_logger.h"
|
||||
|
||||
|
||||
inline c11log::logger::logger(const std::string& logger_name, sinks_init_list sinks_list) :
|
||||
_name(logger_name),
|
||||
_sinks(sinks_list)
|
||||
{
|
||||
// no support under vs2013 for member initialization for std::atomic
|
||||
_level = level::INFO;
|
||||
}
|
||||
|
||||
template<class It>
|
||||
inline c11log::logger::logger(const std::string& logger_name, const It& begin, const It& end) :
|
||||
_name(logger_name),
|
||||
_sinks(begin, end)
|
||||
{}
|
||||
|
||||
|
||||
inline void c11log::logger::set_formatter(c11log::formatter_ptr msg_formatter)
|
||||
{
|
||||
_formatter = msg_formatter;
|
||||
}
|
||||
|
||||
inline void c11log::logger::set_format(const std::string& format)
|
||||
{
|
||||
_formatter = std::make_shared<pattern_formatter>(format);
|
||||
}
|
||||
|
||||
inline c11log::formatter_ptr c11log::logger::get_formatter() const
|
||||
{
|
||||
return _formatter;
|
||||
}
|
||||
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::log(level::level_enum lvl, const Args&... args) {
|
||||
bool msg_enabled = should_log(lvl);
|
||||
details::line_logger l(this, lvl, msg_enabled);
|
||||
if (msg_enabled)
|
||||
_variadic_log(l, args...);
|
||||
return l;
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::trace(const Args&... args)
|
||||
{
|
||||
return log(level::TRACE, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::debug(const Args&... args)
|
||||
{
|
||||
return log(level::DEBUG, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::info(const Args&... args)
|
||||
{
|
||||
return log(level::INFO, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::warn(const Args&... args)
|
||||
{
|
||||
return log(level::WARN, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::error(const Args&... args)
|
||||
{
|
||||
return log(level::ERR, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline c11log::details::line_logger c11log::logger::critical(const Args&... args)
|
||||
{
|
||||
return log(level::CRITICAL, args...);
|
||||
}
|
||||
|
||||
inline const std::string& c11log::logger::name() const
|
||||
{
|
||||
return _name;
|
||||
}
|
||||
|
||||
inline void c11log::logger::set_level(c11log::level::level_enum log_level)
|
||||
{
|
||||
_level.store(log_level);
|
||||
}
|
||||
|
||||
inline c11log::level::level_enum c11log::logger::level() const
|
||||
{
|
||||
return static_cast<c11log::level::level_enum>(_level.load());
|
||||
}
|
||||
|
||||
inline bool c11log::logger::should_log(c11log::level::level_enum msg_level) const
|
||||
{
|
||||
return msg_level >= _level.load();
|
||||
}
|
||||
|
||||
inline void c11log::logger::_variadic_log(c11log::details::line_logger&) {}
|
||||
|
||||
template <typename First, typename... Rest>
|
||||
void c11log::logger::_variadic_log(c11log::details::line_logger& l, const First& first, const Rest&... rest)
|
||||
{
|
||||
l.write(first);
|
||||
l.write(' ');
|
||||
_variadic_log(l, rest...);
|
||||
}
|
||||
|
||||
inline void c11log::logger::_log_msg(details::log_msg& msg)
|
||||
{
|
||||
if (!_formatter)
|
||||
_formatter = std::make_shared<pattern_formatter>("%+ %t");
|
||||
_formatter->format(msg);
|
||||
for (auto &sink : _sinks)
|
||||
sink->log(msg);
|
||||
}
|
||||
|
||||
//
|
||||
// Global registry functions
|
||||
//
|
||||
#include "details/registry.h"
|
||||
inline std::shared_ptr<c11log::logger> c11log::get(const std::string& name)
|
||||
{
|
||||
return details::registry::instance().get(name);
|
||||
}
|
||||
|
||||
inline std::shared_ptr<c11log::logger> c11log::create(const std::string& logger_name, c11log::sinks_init_list sinks)
|
||||
{
|
||||
return details::registry::instance().create(logger_name, sinks);
|
||||
}
|
||||
|
||||
|
||||
template <typename Sink, typename... Args>
|
||||
inline std::shared_ptr<c11log::logger> c11log::create(const std::string& logger_name, const Args&... args)
|
||||
{
|
||||
sink_ptr sink = std::make_shared<Sink>(args...);
|
||||
return details::registry::instance().create(logger_name, { sink });
|
||||
}
|
||||
|
||||
|
||||
template<class It>
|
||||
inline std::shared_ptr<c11log::logger> c11log::create(const std::string& logger_name, const It& sinks_begin, const It& sinks_end)
|
||||
{
|
||||
return details::registry::instance().create(logger_name, std::forward(sinks_begin), std::forward(sinks_end));
|
||||
}
|
||||
|
||||
|
||||
inline void c11log::formatter(c11log::formatter_ptr f)
|
||||
{
|
||||
return details::registry::instance().formatter(f);
|
||||
}
|
||||
|
||||
inline c11log::formatter_ptr c11log::formatter()
|
||||
{
|
||||
return details::registry::instance().formatter();
|
||||
}
|
||||
|
||||
inline void c11log::set_format(const std::string& format_string)
|
||||
{
|
||||
return details::registry::instance().set_format(format_string);
|
||||
}
|
@@ -22,6 +22,7 @@ public:
|
||||
///////////////////////////////////////////////////////////////////////
|
||||
// name & level pattern appenders
|
||||
///////////////////////////////////////////////////////////////////////
|
||||
namespace {
|
||||
class name_formatter :public flag_formatter
|
||||
{
|
||||
void format(details::log_msg& msg) override
|
||||
@@ -29,6 +30,7 @@ class name_formatter :public flag_formatter
|
||||
msg.formatted << msg.logger_name;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// log level appender
|
||||
class level_formatter :public flag_formatter
|
||||
@@ -374,35 +376,20 @@ class full_formatter :public flag_formatter
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
class pattern_formatter : public formatter
|
||||
{
|
||||
|
||||
public:
|
||||
explicit pattern_formatter(const std::string& pattern);
|
||||
pattern_formatter(const pattern_formatter&) = delete;
|
||||
void format(details::log_msg& msg) override;
|
||||
private:
|
||||
const std::string _pattern;
|
||||
std::vector<std::unique_ptr<details::flag_formatter>> _formatters;
|
||||
void handle_flag(char flag);
|
||||
void compile_pattern(const std::string& pattern);
|
||||
};
|
||||
}
|
||||
}
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// pattern_formatter inline impl
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
inline c11log::details::pattern_formatter::pattern_formatter(const std::string& pattern)
|
||||
inline c11log::pattern_formatter::pattern_formatter(const std::string& pattern)
|
||||
{
|
||||
compile_pattern(pattern);
|
||||
}
|
||||
|
||||
inline void c11log::details::pattern_formatter::compile_pattern(const std::string& pattern)
|
||||
inline void c11log::pattern_formatter::compile_pattern(const std::string& pattern)
|
||||
{
|
||||
auto end = pattern.end();
|
||||
std::unique_ptr<aggregate_formatter> user_chars;
|
||||
std::unique_ptr<details::aggregate_formatter> user_chars;
|
||||
for (auto it = pattern.begin(); it != end; ++it)
|
||||
{
|
||||
if (*it == '%')
|
||||
@@ -418,7 +405,7 @@ inline void c11log::details::pattern_formatter::compile_pattern(const std::strin
|
||||
else // chars not following the % sign should be displayed as is
|
||||
{
|
||||
if (!user_chars)
|
||||
user_chars = std::unique_ptr<aggregate_formatter>(new aggregate_formatter());
|
||||
user_chars = std::unique_ptr<details::aggregate_formatter>(new details::aggregate_formatter());
|
||||
user_chars->add_ch(*it);
|
||||
}
|
||||
}
|
||||
@@ -428,7 +415,7 @@ inline void c11log::details::pattern_formatter::compile_pattern(const std::strin
|
||||
}
|
||||
|
||||
}
|
||||
inline void c11log::details::pattern_formatter::handle_flag(char flag)
|
||||
inline void c11log::pattern_formatter::handle_flag(char flag)
|
||||
{
|
||||
switch (flag)
|
||||
{
|
||||
@@ -540,7 +527,7 @@ inline void c11log::details::pattern_formatter::handle_flag(char flag)
|
||||
}
|
||||
|
||||
|
||||
inline void c11log::details::pattern_formatter::format(details::log_msg& msg)
|
||||
inline void c11log::pattern_formatter::format(details::log_msg& msg)
|
||||
{
|
||||
for (auto &f : _formatters)
|
||||
{
|
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
// Loggers registy of unique name->logger pointer
|
||||
// If 2 loggers with same name are added, the last will be used
|
||||
// If 2 loggers with same name are added, the second will be overrun the first
|
||||
// If user requests a non existing logger, nullptr will be returned
|
||||
// This class is thread safe
|
||||
|
||||
@@ -23,12 +23,15 @@ public:
|
||||
std::shared_ptr<logger> create(const std::string& logger_name, sinks_init_list sinks)
|
||||
{
|
||||
std::lock_guard<std::mutex> l(_mutex);
|
||||
return _loggers[logger_name] = std::make_shared<logger>(logger_name, sinks);
|
||||
auto new_logger = std::make_shared<logger>(logger_name, sinks);
|
||||
new_logger->set_formatter(_formatter);
|
||||
_loggers[logger_name] = new_logger;
|
||||
return new_logger;
|
||||
}
|
||||
|
||||
std::shared_ptr<logger> create(const std::string& logger_name, sink_ptr sink)
|
||||
{
|
||||
create(logger_name, { sink });
|
||||
return create(logger_name, { sink });
|
||||
}
|
||||
|
||||
|
||||
@@ -36,10 +39,27 @@ public:
|
||||
std::shared_ptr<logger> create (const std::string& logger_name, const It& sinks_begin, const It& sinks_end)
|
||||
{
|
||||
std::lock_guard<std::mutex> l(_mutex);
|
||||
return _loggers[logger_name] = std::make_shared<logger>(logger_name, sinks_begin, sinks_end);
|
||||
auto new_logger = std::make_shared<logger>(logger_name, sinks_begin, sinks_end);
|
||||
new_logger->set_formatter(_formatter);
|
||||
_loggers[logger_name] = new_logger;
|
||||
return new_logger;
|
||||
|
||||
}
|
||||
|
||||
void formatter(formatter_ptr f)
|
||||
{
|
||||
_formatter = f;
|
||||
}
|
||||
|
||||
formatter_ptr formatter()
|
||||
{
|
||||
return _formatter;
|
||||
}
|
||||
|
||||
void set_format(const std::string& format_string)
|
||||
{
|
||||
_formatter = std::make_shared<pattern_formatter>(format_string);
|
||||
}
|
||||
|
||||
|
||||
static registry& instance()
|
||||
@@ -53,6 +73,7 @@ private:
|
||||
registry(const registry&) = delete;
|
||||
std::mutex _mutex;
|
||||
std::unordered_map <std::string, std::shared_ptr<logger>> _loggers;
|
||||
formatter_ptr _formatter;
|
||||
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user