moved to log_msg

This commit is contained in:
gabime
2014-03-28 16:05:09 +03:00
parent 0b2bd0fc73
commit f909caf38b
11 changed files with 118 additions and 87 deletions

View File

@@ -2,7 +2,7 @@
#include "../common_types.h"
#include "../logger.h"
#include "fast_oss.h"
#include "stack_oss.h"
// line logger class. should be used by the logger as an rvalue only.
@@ -20,16 +20,19 @@ class line_logger
public:
line_logger(logger* callback_logger, level::level_enum msg_level, bool enabled):
_callback_logger(callback_logger),
_log_msg(),
_oss(),
_level(msg_level),
_enabled(enabled)
{
if(enabled)
{
_log_msg.when = log_clock::now();
_log_msg.msg_level = msg_level;
callback_logger->_formatter->format_header(callback_logger->_logger_name,
msg_level,
log_clock::now(),
_log_msg.msg_level,
_log_msg.when,
_oss);
_log_msg.header_size = _oss.size();
}
}
@@ -38,12 +41,12 @@ public:
line_logger& operator=(const line_logger&) = delete;
line_logger& operator=(line_logger&&) = delete;
// 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
line_logger(line_logger&& other) :
_callback_logger(other._callback_logger),
_log_msg(other._log_msg),
// 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 oss from the other
_oss(),
_level(other._level),
_enabled(other._enabled) {}
@@ -52,26 +55,28 @@ public:
if (_enabled)
{
_oss << os::eol();
_callback_logger->_log_it(_oss.buf(), _level);
_log_msg.msg_buf = _oss.buf();
_callback_logger->_log_it(_log_msg);
}
}
template<typename T>
line_logger&& operator<<(const T& msg)
line_logger&& operator<<(const T& what)
{
if (_enabled)
_oss << msg;
_oss << what;
return std::move(*this);
}
private:
logger* _callback_logger;
details::fast_oss _oss;
level::level_enum _level;
c11log::log_msg _log_msg;
details::stack_oss _oss;
bool _enabled;
};
} //Namespace details
} // Namespace c11log