Files
spdlog/include/spdlog/logger.h

150 lines
4.4 KiB
C
Raw Normal View History

2016-09-02 17:06:00 +03:00
//
2018-04-14 03:34:57 +03:00
// Copyright(c) 2015-2108 Gabi Melman.
2016-09-02 17:06:00 +03:00
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
2016-12-31 17:54:37 +02:00
// Thread safe logger (except for set_pattern(..), set_formatter(..) and set_error_handler())
2016-09-02 17:06:00 +03:00
// Has name, log level, vector of std::shared sink pointers and formatter
// Upon each log write the logger:
// 1. Checks if its log level is enough to log the message
// 2. Format the message using the formatter function
// 3. Pass the formatted message to its sinks to performa the actual logging
2018-04-29 01:31:09 +03:00
#include "spdlog/common.h"
#include "spdlog/formatter.h"
#include "spdlog/sinks/sink.h"
2016-09-02 17:06:00 +03:00
#include <memory>
#include <string>
2018-03-09 15:26:33 +02:00
#include <vector>
2016-09-02 17:06:00 +03:00
2018-03-09 15:26:33 +02:00
namespace spdlog {
2016-09-02 17:06:00 +03:00
class logger
{
public:
2018-03-09 15:26:33 +02:00
logger(const std::string &name, sink_ptr single_sink);
logger(const std::string &name, sinks_init_list sinks);
2018-02-25 12:39:37 +01:00
2018-03-16 17:35:56 +02:00
template<class It>
logger(std::string name, const It &begin, const It &end);
2016-09-02 17:06:00 +03:00
virtual ~logger();
2018-02-25 01:58:09 +01:00
2018-03-09 15:26:33 +02:00
logger(const logger &) = delete;
logger &operator=(const logger &) = delete;
2016-09-02 17:06:00 +03:00
2018-03-16 17:35:56 +02:00
template<typename... Args>
void log(level::level_enum lvl, const char *fmt, const Args &... args);
template<typename... Args>
void log(level::level_enum lvl, const char *msg);
template<typename Arg1, typename... Args>
void trace(const char *fmt, const Arg1 &, const Args &... args);
template<typename Arg1, typename... Args>
void debug(const char *fmt, const Arg1 &, const Args &... args);
template<typename Arg1, typename... Args>
void info(const char *fmt, const Arg1 &, const Args &... args);
template<typename Arg1, typename... Args>
void warn(const char *fmt, const Arg1 &, const Args &... args);
template<typename Arg1, typename... Args>
void error(const char *fmt, const Arg1 &, const Args &... args);
template<typename Arg1, typename... Args>
void critical(const char *fmt, const Arg1 &, const Args &... args);
2017-04-01 23:37:16 +08:00
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
2018-03-16 17:35:56 +02:00
template<typename... Args>
void log(level::level_enum lvl, const wchar_t *msg);
template<typename... Args>
void log(level::level_enum lvl, const wchar_t *fmt, const Args &... args);
template<typename... Args>
void trace(const wchar_t *fmt, const Args &... args);
template<typename... Args>
void debug(const wchar_t *fmt, const Args &... args);
template<typename... Args>
void info(const wchar_t *fmt, const Args &... args);
template<typename... Args>
void warn(const wchar_t *fmt, const Args &... args);
template<typename... Args>
void error(const wchar_t *fmt, const Args &... args);
template<typename... Args>
void critical(const wchar_t *fmt, const Args &... args);
2017-04-01 23:37:16 +08:00
#endif // SPDLOG_WCHAR_TO_UTF8_SUPPORT
2018-03-17 12:49:45 +02:00
2018-03-16 17:35:56 +02:00
template<typename T>
void log(level::level_enum lvl, const T &);
template<typename T>
void trace(const T &msg);
template<typename T>
void debug(const T &msg);
template<typename T>
void info(const T &msg);
template<typename T>
void warn(const T &msg);
template<typename T>
void error(const T &msg);
2016-09-02 17:06:00 +03:00
2018-03-16 17:35:56 +02:00
template<typename T>
void critical(const T &msg);
2018-02-25 12:39:37 +01:00
bool should_log(level::level_enum msg_level) const;
void set_level(level::level_enum log_level);
2016-09-02 17:06:00 +03:00
level::level_enum level() const;
2018-03-09 15:26:33 +02:00
const std::string &name() const;
void set_pattern(const std::string &pattern, pattern_time_type pattern_time = pattern_time_type::local);
2018-02-25 12:39:37 +01:00
void set_formatter(formatter_ptr msg_formatter);
2017-03-28 02:08:18 +03:00
2018-04-14 03:34:57 +03:00
void flush();
2016-09-02 17:06:00 +03:00
void flush_on(level::level_enum log_level);
2018-03-09 15:26:33 +02:00
const std::vector<sink_ptr> &sinks() const;
2016-09-24 15:14:05 -04:00
2017-03-28 02:08:18 +03:00
// error handler
2018-04-14 03:34:57 +03:00
void set_error_handler(log_err_handler err_handler);
log_err_handler error_handler();
2016-09-02 17:06:00 +03:00
protected:
2018-03-09 15:26:33 +02:00
virtual void _sink_it(details::log_msg &msg);
2018-04-14 03:34:57 +03:00
virtual void _flush();
2016-09-02 17:06:00 +03:00
2018-04-14 03:34:57 +03:00
bool _should_flush(const details::log_msg &msg);
2016-09-02 17:06:00 +03:00
2018-04-14 03:34:57 +03:00
// default error handler: print the error to stderr with the max rate of 1 message/minute
void _default_err_handler(const std::string &msg);
2016-09-02 17:06:00 +03:00
2017-10-12 19:48:04 +03:00
// increment the message count (only if defined(SPDLOG_ENABLE_MESSAGE_COUNTER))
2018-03-09 15:26:33 +02:00
void _incr_msg_counter(details::log_msg &msg);
2017-10-12 19:48:04 +03:00
2016-09-02 17:06:00 +03:00
const std::string _name;
std::vector<sink_ptr> _sinks;
formatter_ptr _formatter;
spdlog::level_t _level;
spdlog::level_t _flush_level;
log_err_handler _err_handler;
std::atomic<time_t> _last_err_time;
std::atomic<size_t> _msg_counter;
2016-09-02 17:06:00 +03:00
};
2018-03-09 15:26:33 +02:00
} // namespace spdlog
2016-09-02 17:06:00 +03:00
#include "details/logger_impl.h"