2014-01-25 17:09:04 +08:00
|
|
|
#pragma once
|
|
|
|
|
2014-03-01 20:06:58 +08:00
|
|
|
#include "../common_types.h"
|
2014-02-09 07:25:23 +08:00
|
|
|
#include "../logger.h"
|
2014-03-07 06:52:50 +08:00
|
|
|
#include "fast_oss.h"
|
2014-03-08 22:18:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
// line logger class. should be used by the logger as an rvalue only.
|
|
|
|
// aggregates logging string until the end of the line and then calls the logger upon destruction
|
|
|
|
|
2014-01-25 17:09:04 +08:00
|
|
|
|
2014-03-07 06:52:50 +08:00
|
|
|
namespace c11log
|
|
|
|
{
|
2014-03-08 22:18:57 +08:00
|
|
|
//class logger;
|
2014-03-07 06:52:50 +08:00
|
|
|
namespace details
|
|
|
|
{
|
2014-01-25 17:09:04 +08:00
|
|
|
|
2014-03-07 06:52:50 +08:00
|
|
|
class line_logger
|
|
|
|
{
|
2014-01-25 17:09:04 +08:00
|
|
|
public:
|
2014-03-07 06:06:34 +08:00
|
|
|
line_logger(logger* callback_logger, level::level_enum msg_level, bool enabled):
|
2014-02-22 04:51:54 +08:00
|
|
|
_callback_logger(callback_logger),
|
|
|
|
_oss(),
|
2014-03-07 06:06:34 +08:00
|
|
|
_level(msg_level),
|
|
|
|
_enabled(enabled) {
|
2014-03-08 22:18:57 +08:00
|
|
|
if(enabled) {
|
|
|
|
callback_logger->_formatter->format_header(callback_logger->_logger_name,
|
|
|
|
msg_level,
|
|
|
|
log_clock::now(),
|
|
|
|
_oss);
|
|
|
|
}
|
2014-02-22 04:51:54 +08:00
|
|
|
}
|
2014-03-07 06:06:34 +08:00
|
|
|
// No copy intended. Only move
|
|
|
|
line_logger(const line_logger& other) = delete;
|
2014-03-08 22:18:57 +08:00
|
|
|
line_logger& operator=(const line_logger&) = delete;
|
|
|
|
line_logger& operator=(line_logger&&) = delete;
|
2014-03-07 06:06:34 +08:00
|
|
|
|
|
|
|
line_logger(line_logger&& other) :
|
2014-02-22 04:51:54 +08:00
|
|
|
_callback_logger(other._callback_logger),
|
2014-03-08 22:18:57 +08:00
|
|
|
// The move ctor should only be called on start of logging line,
|
|
|
|
// where no logging happened yet for this line so no need to copy the string from the other
|
2014-03-07 06:52:50 +08:00
|
|
|
_oss(),
|
2014-03-07 06:06:34 +08:00
|
|
|
_level(other._level) {
|
|
|
|
};
|
|
|
|
|
2014-02-22 04:51:54 +08:00
|
|
|
|
|
|
|
~line_logger() {
|
2014-03-07 06:06:34 +08:00
|
|
|
if (_enabled) {
|
2014-02-22 04:51:54 +08:00
|
|
|
_oss << '\n';
|
2014-03-07 06:52:50 +08:00
|
|
|
_callback_logger->_log_it(_oss.str_ref(), _level);
|
2014-02-22 04:51:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-07 06:06:34 +08:00
|
|
|
|
2014-02-22 04:51:54 +08:00
|
|
|
template<typename T>
|
2014-03-08 22:18:57 +08:00
|
|
|
line_logger&& operator<<(const T& msg) && {
|
2014-03-07 06:06:34 +08:00
|
|
|
if (_enabled)
|
2014-02-22 04:51:54 +08:00
|
|
|
_oss << msg;
|
2014-03-08 22:18:57 +08:00
|
|
|
return std::move(*this);
|
2014-02-22 04:51:54 +08:00
|
|
|
}
|
2014-01-25 17:09:04 +08:00
|
|
|
|
|
|
|
private:
|
2014-02-22 04:51:54 +08:00
|
|
|
logger* _callback_logger;
|
2014-03-07 06:52:50 +08:00
|
|
|
details::fast_oss _oss;
|
2014-02-22 04:51:54 +08:00
|
|
|
level::level_enum _level;
|
2014-03-07 06:06:34 +08:00
|
|
|
bool _enabled;
|
2014-01-25 17:09:04 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
} //Namespace details
|
2014-01-27 17:44:10 +08:00
|
|
|
} // Namespace c11log
|