spdlog/include/c11log/formatter.h

58 lines
1.7 KiB
C
Raw Normal View History

2014-01-25 04:09:04 -05:00
#pragma once
2014-03-01 07:06:58 -05:00
#include <string>
#include <chrono>
#include <functional>
2014-01-25 04:09:04 -05:00
#include <sstream>
2014-03-01 07:06:58 -05:00
#include <iomanip>
2014-01-25 04:09:04 -05:00
2014-03-01 07:06:58 -05:00
#include "common_types.h"
2014-02-21 18:16:59 -05:00
#include "details/os.h"
2014-01-25 04:09:04 -05:00
namespace c11log {
namespace formatters {
2014-03-01 07:06:58 -05:00
typedef std::function<std::string(const std::string& logger_name, const std::string&, level::level_enum, const c11log::log_clock::time_point&)> format_fn;
2014-02-11 14:03:57 -05:00
2014-01-25 04:09:04 -05:00
std::string to_hex(const unsigned char* buf, std::size_t size);
class formatter {
public:
formatter() {}
virtual ~formatter() {}
2014-03-01 07:06:58 -05:00
virtual void format_header(const std::string& logger_name, level::level_enum level, const log_clock::time_point& tp, std::ostream& dest) = 0;
2014-01-25 04:09:04 -05:00
};
class default_formatter: public formatter {
public:
// Format: [2013-12-29 01:04:42.900] [logger_name:Info] Message body
2014-03-01 07:06:58 -05:00
void format_header(const std::string& logger_name, level::level_enum level, const log_clock::time_point& tp, std::ostream& dest) override {
2014-02-11 14:03:57 -05:00
_format_time(tp, dest);
2014-01-25 04:09:04 -05:00
dest << " [" << logger_name << ":" << c11log::level::to_str(level) << "] ";
}
2014-02-11 14:03:57 -05:00
private:
2014-03-01 07:06:58 -05:00
void _format_time(const log_clock::time_point& tp, std::ostream &dest);
2014-01-25 04:09:04 -05:00
};
} //namespace formatter
} //namespace c11log
2014-02-20 14:39:58 -05:00
2014-03-01 07:06:58 -05:00
inline void c11log::formatters::default_formatter::_format_time(const log_clock::time_point& tp, std::ostream &dest)
2014-03-01 07:38:12 -05:00
{
2014-03-01 07:06:58 -05:00
auto tm = details::os::localtime(log_clock::to_time_t(tp));
char buff[64];
int size = snprintf(buff, sizeof(buff), "[%d-%02d-%02d %02d:%02d:%02d]",
tm.tm_year + 1900,
tm.tm_mon + 1,
tm.tm_mday,
tm.tm_hour,
tm.tm_min,
tm.tm_sec);
dest.write(buff, size);
2014-02-20 14:39:58 -05:00
}