You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/include/c11log/details/line_logger.h

71 lines
1.8 KiB
C

12 years ago
#pragma once
#include "../common_types.h"
#include "../logger.h"
#include "fast_oss.h"
// 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
12 years ago
namespace c11log
{
//class logger;
namespace details
{
12 years ago
class line_logger
{
12 years ago
public:
line_logger(logger* callback_logger, level::level_enum msg_level, bool enabled):
12 years ago
_callback_logger(callback_logger),
_oss(),
_level(msg_level),
_enabled(enabled) {
if(enabled) {
callback_logger->_formatter->format_header(callback_logger->_logger_name,
msg_level,
log_clock::now(),
_oss);
}
12 years ago
}
// No copy intended. Only move
line_logger(const line_logger& other) = delete;
line_logger& operator=(const line_logger&) = delete;
line_logger& operator=(line_logger&&) = delete;
line_logger(line_logger&& other) :
12 years ago
_callback_logger(other._callback_logger),
// 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
_oss(),
_level(other._level) {
};
12 years ago
~line_logger() {
if (_enabled) {
12 years ago
_oss << '\n';
_callback_logger->_log_it(_oss.str_ref(), _level);
12 years ago
}
}
12 years ago
template<typename T>
line_logger&& operator<<(const T& msg) && {
if (_enabled)
12 years ago
_oss << msg;
return std::move(*this);
12 years ago
}
12 years ago
private:
12 years ago
logger* _callback_logger;
details::fast_oss _oss;
12 years ago
level::level_enum _level;
bool _enabled;
12 years ago
};
} //Namespace details
12 years ago
} // Namespace c11log