blob: e9efba9fdd7f1d7da7e05c97b5b074856efec316 [file] [log] [blame]
Junxiao Shi7d054272016-08-04 17:00:41 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2016 Regents of the University of California.
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 Afanasyeved1e99d2016-11-05 09:59:35 -060027#ifdef HAVE_NDN_CXX_CUSTOM_LOGGER
28#include "ndn-cxx-custom-logger.hpp"
29#else
30
Junxiao Shi7d054272016-08-04 17:00:41 +000031#include <boost/log/common.hpp>
32#include <boost/log/sources/logger.hpp>
33#include <atomic>
34
35namespace ndn {
36namespace util {
37
38/** \brief indicates the severity level of a log message
39 */
40enum 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 */
54std::ostream&
55operator<<(std::ostream& os, LogLevel level);
56
57/** \brief parse LogLevel from string
58 * \throw std::invalid_argument unknown level name
59 */
60LogLevel
61parseLogLevel(const std::string& s);
62
63/** \brief represents a logger in logging facility
Junxiao Shi1fe7ce52016-08-08 05:48:02 +000064 * \note User should declare a new logger with \p NDN_LOG_INIT macro.
Junxiao Shi7d054272016-08-04 17:00:41 +000065 */
66class Logger : public boost::log::sources::logger_mt
67{
68public:
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
90private:
91 const std::string m_moduleName;
92 std::atomic<LogLevel> m_currentLevel;
93};
94
95/** \brief declare a log module
96 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +000097#define NDN_LOG_INIT(name) \
Junxiao Shi7d054272016-08-04 17:00:41 +000098 namespace { \
99 inline ::ndn::util::Logger& getNdnCxxLogger() \
100 { \
101 static ::ndn::util::Logger logger(BOOST_STRINGIZE(name)); \
102 return logger; \
103 } \
104 } \
105 struct ndn_cxx__allow_trailing_semicolon
106
107/** \brief a tag that writes a timestamp upon stream output
108 * \code
109 * std::clog << LoggerTimestamp();
110 * \endcode
111 */
112struct LoggerTimestamp
113{
114};
115
116/** \brief write a timestamp to \p os
117 * \note This function is thread-safe.
118 */
119std::ostream&
120operator<<(std::ostream& os, const LoggerTimestamp&);
121
122#if (BOOST_VERSION >= 105900) && (BOOST_VERSION < 106000)
123// workaround Boost bug 11549
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000124#define NDN_BOOST_LOG(x) BOOST_LOG(x) << ""
Junxiao Shi7d054272016-08-04 17:00:41 +0000125#else
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000126#define NDN_BOOST_LOG(x) BOOST_LOG(x)
Junxiao Shi7d054272016-08-04 17:00:41 +0000127#endif
128
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000129#define NDN_LOG(lvl, lvlstr, expression) \
Junxiao Shi7d054272016-08-04 17:00:41 +0000130 do { \
131 if (getNdnCxxLogger().isLevelEnabled(::ndn::util::LogLevel::lvl)) { \
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000132 NDN_BOOST_LOG(getNdnCxxLogger()) << ::ndn::util::LoggerTimestamp{} \
Junxiao Shi7d054272016-08-04 17:00:41 +0000133 << " " BOOST_STRINGIZE(lvlstr) ": [" << getNdnCxxLogger().getModuleName() << "] " \
134 << expression; \
135 } \
136 } while (false)
137
138/** \brief log at TRACE level
139 * \pre A log module must be declared in the same translation unit.
140 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000141#define NDN_LOG_TRACE(expression) NDN_LOG(TRACE, TRACE, expression)
Junxiao Shi7d054272016-08-04 17:00:41 +0000142
143/** \brief log at DEBUG level
144 * \pre A log module must be declared in the same translation unit.
145 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000146#define NDN_LOG_DEBUG(expression) NDN_LOG(DEBUG, DEBUG, expression)
Junxiao Shi7d054272016-08-04 17:00:41 +0000147
148/** \brief log at INFO level
149 * \pre A log module must be declared in the same translation unit.
150 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000151#define NDN_LOG_INFO(expression) NDN_LOG(INFO, INFO, expression)
Junxiao Shi7d054272016-08-04 17:00:41 +0000152
153/** \brief log at WARN level
154 * \pre A log module must be declared in the same translation unit.
155 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000156#define NDN_LOG_WARN(expression) NDN_LOG(WARN, WARNING, expression)
Junxiao Shi7d054272016-08-04 17:00:41 +0000157
158/** \brief log at ERROR level
159 * \pre A log module must be declared in the same translation unit.
160 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000161#define NDN_LOG_ERROR(expression) NDN_LOG(ERROR, ERROR, expression)
Junxiao Shi7d054272016-08-04 17:00:41 +0000162
163/** \brief log at FATAL level
164 * \pre A log module must be declared in the same translation unit.
165 */
Junxiao Shi1fe7ce52016-08-08 05:48:02 +0000166#define NDN_LOG_FATAL(expression) NDN_LOG(FATAL, FATAL, expression)
Junxiao Shi7d054272016-08-04 17:00:41 +0000167
168} // namespace util
169} // namespace ndn
170
Alexander Afanasyeved1e99d2016-11-05 09:59:35 -0600171#endif // HAVE_NDN_CXX_CUSTOM_LOGGER
172
Junxiao Shi7d054272016-08-04 17:00:41 +0000173#endif // NDN_UTIL_LOGGER_HPP