blob: 6d01fa0d4fba1e5c1cb36fefa0aae7530db5e079 [file] [log] [blame]
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev8269a052015-02-09 16:25:36 -08003 * Copyright (c) 2014-2015, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080010 *
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070011 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shi70db9922014-11-16 21:12:03 -070024 */
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080025
26#ifndef NFD_CORE_LOGGER_HPP
27#define NFD_CORE_LOGGER_HPP
28
29#include "common.hpp"
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080030
Alexander Afanasyev8269a052015-02-09 16:25:36 -080031#ifdef HAVE_CUSTOM_LOGGER
32#include "custom-logger.hpp"
33#else
34
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080035namespace nfd {
36
Junxiao Shi70db9922014-11-16 21:12:03 -070037/** \brief indicates a log level
38 * \note This type is internal. Logger should be accessed through NFD_LOG_* macros.
39 */
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080040enum LogLevel {
Alexander Afanasyev8269a052015-02-09 16:25:36 -080041 LOG_FATAL = -1, // fatal (will be logged unconditionally)
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080042 LOG_NONE = 0, // no messages
43 LOG_ERROR = 1, // serious error messages
44 LOG_WARN = 2, // warning messages
Alexander Afanasyevb84cc922014-02-24 17:52:58 -080045 LOG_INFO = 3, // informational messages
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080046 LOG_DEBUG = 4, // debug messages
Alexander Afanasyevb84cc922014-02-24 17:52:58 -080047 LOG_TRACE = 5, // trace messages (most verbose)
Davide Pesavento1bdef282014-04-08 20:59:50 +020048 LOG_ALL = 255 // all messages
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080049};
50
Junxiao Shi70db9922014-11-16 21:12:03 -070051/** \brief provides logging for a module
52 * \note This type is internal. Logger should be accessed through NFD_LOG_* macros.
53 * \note This type is copyable because logger can be declared as a field of
54 * (usually template) classes, and shouldn't prevent those classes to be copyable.
55 */
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080056class Logger
57{
58public:
Junxiao Shi70db9922014-11-16 21:12:03 -070059 Logger(const std::string& name, LogLevel level);
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060060
61 bool
62 isEnabled(LogLevel level) const
63 {
Alexander Afanasyev8269a052015-02-09 16:25:36 -080064 return m_enabledLogLevel >= level;
Alexander Afanasyevb84cc922014-02-24 17:52:58 -080065 }
66
67 void
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060068 setLogLevel(LogLevel level)
Alexander Afanasyevb84cc922014-02-24 17:52:58 -080069 {
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060070 m_enabledLogLevel = level;
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080071 }
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060072
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080073 const std::string&
74 getName() const
75 {
76 return m_moduleName;
77 }
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060078
79 void
80 setName(const std::string& name)
81 {
82 m_moduleName = name;
83 }
84
Junxiao Shi70db9922014-11-16 21:12:03 -070085 /** \return string representation of time since epoch: seconds.microseconds
86 * \warning Return value is in a statically allocated buffer,
87 * which subsequent calls will overwrite.
88 */
89 static const char*
90 now();
Steve DiBenedetto3a61fb42014-04-04 10:32:51 -060091
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080092private:
93 std::string m_moduleName;
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060094 LogLevel m_enabledLogLevel;
Ilya Moiseenkoa807e652014-01-28 11:51:01 -080095};
96
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060097inline std::ostream&
Steve DiBenedetto3a61fb42014-04-04 10:32:51 -060098operator<<(std::ostream& output, const Logger& logger)
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060099{
Steve DiBenedetto3a61fb42014-04-04 10:32:51 -0600100 output << logger.getName();
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600101 return output;
102}
103
104} // namespace nfd
105
106#include "core/logger-factory.hpp"
107
108namespace nfd {
Ilya Moiseenkoa807e652014-01-28 11:51:01 -0800109
Davide Pesavento1bdef282014-04-08 20:59:50 +0200110#define NFD_LOG_INIT(name) \
111static nfd::Logger& g_logger = nfd::LoggerFactory::create(name)
Ilya Moiseenkoa807e652014-01-28 11:51:01 -0800112
Davide Pesavento1bdef282014-04-08 20:59:50 +0200113#define NFD_LOG_INCLASS_DECLARE() \
114static nfd::Logger& g_logger
Alexander Afanasyev66886812014-01-31 14:48:48 -0800115
Davide Pesavento1bdef282014-04-08 20:59:50 +0200116#define NFD_LOG_INCLASS_DEFINE(cls, name) \
117nfd::Logger& cls::g_logger = nfd::LoggerFactory::create(name)
Alexander Afanasyev66886812014-01-31 14:48:48 -0800118
Davide Pesavento1bdef282014-04-08 20:59:50 +0200119#define NFD_LOG_INCLASS_TEMPLATE_DEFINE(cls, name) \
120template<class T> \
121nfd::Logger& cls<T>::g_logger = nfd::LoggerFactory::create(name)
Alexander Afanasyev66886812014-01-31 14:48:48 -0800122
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600123#define NFD_LOG_INCLASS_TEMPLATE_SPECIALIZATION_DEFINE(cls, specialization, name) \
Davide Pesavento1bdef282014-04-08 20:59:50 +0200124template<> \
125nfd::Logger& cls<specialization>::g_logger = nfd::LoggerFactory::create(name)
Alexander Afanasyev66886812014-01-31 14:48:48 -0800126
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800127#define NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(cls, s1, s2, name) \
Davide Pesavento1bdef282014-04-08 20:59:50 +0200128template<> \
129nfd::Logger& cls<s1, s2>::g_logger = nfd::LoggerFactory::create(name)
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600130
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800131
Junxiao Shi70db9922014-11-16 21:12:03 -0700132#define NFD_LOG(level, msg, expression) \
133do { \
134 if (g_logger.isEnabled(::nfd::LOG_##level)) \
135 std::clog << ::nfd::Logger::now() << " "#msg": " \
136 << "[" << g_logger << "] " << expression << "\n"; \
Steve DiBenedetto3a61fb42014-04-04 10:32:51 -0600137} while (false)
Ilya Moiseenkoa807e652014-01-28 11:51:01 -0800138
Junxiao Shi70db9922014-11-16 21:12:03 -0700139#define NFD_LOG_TRACE(expression) NFD_LOG(TRACE, TRACE, expression)
140#define NFD_LOG_DEBUG(expression) NFD_LOG(DEBUG, DEBUG, expression)
141#define NFD_LOG_INFO(expression) NFD_LOG(INFO, INFO, expression)
142#define NFD_LOG_WARN(expression) NFD_LOG(WARN, WARNING, expression)
143#define NFD_LOG_ERROR(expression) NFD_LOG(ERROR, ERROR, expression)
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800144#define NFD_LOG_FATAL(expression) NFD_LOG(FATAL, FATAL, expression)
Ilya Moiseenkoa807e652014-01-28 11:51:01 -0800145
Junxiao Shi70db9922014-11-16 21:12:03 -0700146} // namespace nfd
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -0600147
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800148#endif // HAVE_CUSTOM_LOGGER
149
Junxiao Shi70db9922014-11-16 21:12:03 -0700150#endif // NFD_CORE_LOGGER_HPP