Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
dmcoomes | e062a18 | 2017-06-12 11:10:31 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #ifndef NDN_UTIL_LOGGER_HPP |
| 23 | #define NDN_UTIL_LOGGER_HPP |
| 24 | |
| 25 | #include "../common.hpp" |
| 26 | |
Alexander Afanasyev | ed1e99d | 2016-11-05 09:59:35 -0600 | [diff] [blame] | 27 | #ifdef HAVE_NDN_CXX_CUSTOM_LOGGER |
| 28 | #include "ndn-cxx-custom-logger.hpp" |
| 29 | #else |
| 30 | |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 31 | #include <atomic> |
| 32 | |
Spyridon Mastorakis | dec3092 | 2016-12-05 18:34:12 -0800 | [diff] [blame^] | 33 | #include "ns3/log.h" |
| 34 | |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 35 | namespace ndn { |
| 36 | namespace util { |
| 37 | |
| 38 | /** \brief indicates the severity level of a log message |
| 39 | */ |
| 40 | enum class LogLevel { |
| 41 | FATAL = -1, ///< fatal (will be logged unconditionally) |
| 42 | NONE = 0, ///< no messages |
| 43 | ERROR = 1, ///< serious error messages |
| 44 | WARN = 2, ///< warning messages |
| 45 | INFO = 3, ///< informational messages |
| 46 | DEBUG = 4, ///< debug messages |
| 47 | TRACE = 5, ///< trace messages (most verbose) |
| 48 | ALL = 255 ///< all messages |
| 49 | }; |
| 50 | |
| 51 | /** \brief output LogLevel as string |
| 52 | * \throw std::invalid_argument unknown \p level |
| 53 | */ |
| 54 | std::ostream& |
| 55 | operator<<(std::ostream& os, LogLevel level); |
| 56 | |
| 57 | /** \brief parse LogLevel from string |
| 58 | * \throw std::invalid_argument unknown level name |
| 59 | */ |
| 60 | LogLevel |
| 61 | parseLogLevel(const std::string& s); |
| 62 | |
| 63 | /** \brief represents a logger in logging facility |
Junxiao Shi | 1fe7ce5 | 2016-08-08 05:48:02 +0000 | [diff] [blame] | 64 | * \note User should declare a new logger with \p NDN_LOG_INIT macro. |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 65 | */ |
Spyridon Mastorakis | dec3092 | 2016-12-05 18:34:12 -0800 | [diff] [blame^] | 66 | class Logger |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 67 | { |
| 68 | public: |
| 69 | explicit |
| 70 | Logger(const std::string& name); |
| 71 | |
| 72 | const std::string& |
| 73 | getModuleName() const |
| 74 | { |
| 75 | return m_moduleName; |
| 76 | } |
| 77 | |
| 78 | bool |
| 79 | isLevelEnabled(LogLevel level) const |
| 80 | { |
| 81 | return m_currentLevel.load(std::memory_order_relaxed) >= level; |
| 82 | } |
| 83 | |
| 84 | void |
| 85 | setLevel(LogLevel level) |
| 86 | { |
| 87 | m_currentLevel.store(level, std::memory_order_relaxed); |
| 88 | } |
| 89 | |
| 90 | private: |
| 91 | const std::string m_moduleName; |
| 92 | std::atomic<LogLevel> m_currentLevel; |
| 93 | }; |
| 94 | |
| 95 | /** \brief declare a log module |
dmcoomes | e062a18 | 2017-06-12 11:10:31 -0500 | [diff] [blame] | 96 | * |
| 97 | * \note Logger name is restricted to alphanumeric characters and a select set of |
| 98 | * symbols: `~`, `#`, `%`, `_`, `<`, `>`, `.`, `-` |
| 99 | * A logger name must not start or end with `.` or contain consecutive `.` |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 100 | */ |
Spyridon Mastorakis | dec3092 | 2016-12-05 18:34:12 -0800 | [diff] [blame^] | 101 | #define NDN_LOG_INIT(name) NS_LOG_COMPONENT_DEFINE(BOOST_STRINGIZE(name)); |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 102 | |
| 103 | /** \brief a tag that writes a timestamp upon stream output |
| 104 | * \code |
| 105 | * std::clog << LoggerTimestamp(); |
| 106 | * \endcode |
| 107 | */ |
| 108 | struct LoggerTimestamp |
| 109 | { |
| 110 | }; |
| 111 | |
| 112 | /** \brief write a timestamp to \p os |
| 113 | * \note This function is thread-safe. |
| 114 | */ |
| 115 | std::ostream& |
| 116 | operator<<(std::ostream& os, const LoggerTimestamp&); |
| 117 | |
Spyridon Mastorakis | dec3092 | 2016-12-05 18:34:12 -0800 | [diff] [blame^] | 118 | #define NDN_LOG_TRACE(expression) NS_LOG_LOGIC(expression) |
| 119 | #define NDN_LOG_DEBUG(expression) NS_LOG_DEBUG(expression) |
| 120 | #define NDN_LOG_INFO(expression) NS_LOG_INFO(expression) |
| 121 | #define NDN_LOG_WARN(expression) NS_LOG_ERROR(expression) |
| 122 | #define NDN_LOG_ERROR(expression) NS_LOG_WARN(expression) |
| 123 | #define NDN_LOG_FATAL(expression) NS_LOG_FATAL(expression) |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 124 | |
| 125 | } // namespace util |
| 126 | } // namespace ndn |
| 127 | |
Alexander Afanasyev | ed1e99d | 2016-11-05 09:59:35 -0600 | [diff] [blame] | 128 | #endif // HAVE_NDN_CXX_CUSTOM_LOGGER |
| 129 | |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 130 | #endif // NDN_UTIL_LOGGER_HPP |