X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=inline;f=src%2Fvpp-api%2Fvom%2Flogger.cpp;h=80f2d92c6035a6293cf2aa63adbc6e34dc4b5c12;hb=f7ad5cbe819533523169e8a88876b94b9f38789c;hp=1ae55b921cf30c29ef3eaeee5afe40a6189ffc6b;hpb=c3a2a2f93017e5422272d6b5c2586708c582b075;p=vpp.git diff --git a/src/vpp-api/vom/logger.cpp b/src/vpp-api/vom/logger.cpp index 1ae55b921cf..80f2d92c603 100644 --- a/src/vpp-api/vom/logger.cpp +++ b/src/vpp-api/vom/logger.cpp @@ -43,7 +43,7 @@ logger() log_t::log_t() : m_level(log_level_t::ERROR) - , m_o_stream(&std::cout) + , m_handler(new cout_handler()) { } @@ -54,45 +54,113 @@ log_t::set(const log_level_t& level) } void -log_t::set(const std::string& ofile) +log_t::set(handler* h) { - m_file_stream.open(ofile); - m_o_stream = &m_file_stream; + m_handler = h; +} + +void +log_t::write(const std::string& file, + const int line, + const std::string& function, + const log_level_t& level, + const std::string& message) +{ + m_handler->handle_message(file, line, function, level, message); +} + +/** + * The configured level + */ +const log_level_t& +log_t::level() const +{ + return (m_level); +} + +static std::string +get_filename(const std::string& file) +{ + std::vector dirs; + boost::split(dirs, file, boost::is_any_of("/")); + + return dirs.back(); +} + +log_t::entry::entry(const char* file, + const char* function, + int line, + const log_level_t& level) + : m_file(get_filename(file)) + , m_function(function) + , m_level(level) + , m_line(line) +{ +} + +log_t::entry::~entry() +{ + logger().write(m_file, m_line, m_function, m_level, m_stream.str()); +} + +std::stringstream& +log_t::entry::stream() +{ + return (m_stream); } -std::ostream& -log_t::stream(const char* file, int line) +static std::string +get_timestamp() { auto end = std::chrono::system_clock::now(); auto end_time = std::chrono::system_clock::to_time_t(end); /* - * put-time is not support in gcc in 4.8 - * so we play this dance with ctime - */ + * put-time is not support in gcc in 4.8 + * so we play this dance with ctime + */ std::string display = std::ctime(&end_time); display.pop_back(); - std::vector dirs; - boost::split(dirs, file, boost::is_any_of("/")); + return (display); +} - *m_o_stream << std::endl - << display << "]" - << " " << dirs.back() << ":" << line << ": "; +file_handler::file_handler(const std::string& ofile) +{ + m_file_stream.open(ofile); +} - return (*m_o_stream); +file_handler::~file_handler() +{ + m_file_stream.close(); } -/** - * The configured level - */ -const log_level_t& -log_t::level() const +void +file_handler::handle_message(const std::string& file, + const int line, + const std::string& function, + const log_level_t& level, + const std::string& message) { - return (m_level); + m_file_stream << get_timestamp(); + m_file_stream << " [" << level.to_string() << "]" << file << ":" << line + << " " << function << "() " << message << std::endl; } + +void +cout_handler::handle_message(const std::string& file, + const int line, + const std::string& function, + const log_level_t& level, + const std::string& message) +{ + std::cout << get_timestamp(); + std::cout << " [" << level.to_string() << "]" << file << ":" << line << " " + << function << "() " << message << std::endl; } +}; // namespace VOM + /* * fd.io coding-style-patch-verification: ON *