Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 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. |
| 10 | * |
| 11 | * 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/>. |
| 24 | */ |
| 25 | |
| 26 | #include "log-config-section.hpp" |
| 27 | |
| 28 | #include <ndn-cxx/util/logger.hpp> |
| 29 | #include <ndn-cxx/util/logging.hpp> |
| 30 | |
| 31 | namespace nfd { |
| 32 | namespace log { |
| 33 | |
| 34 | static ndn::util::LogLevel |
| 35 | parseLogLevel(const ConfigSection& item, const std::string& key) |
| 36 | { |
| 37 | try { |
| 38 | return ndn::util::parseLogLevel(item.get_value<std::string>()); |
| 39 | } |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 40 | catch (const std::invalid_argument&) { |
| 41 | NDN_THROW_NESTED(ConfigFile::Error("Invalid log level for '" + key + "' in section 'log'")); |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 42 | } |
| 43 | } |
| 44 | |
| 45 | static void |
| 46 | onConfig(const ConfigSection& section, bool isDryRun, const std::string&) |
| 47 | { |
| 48 | // log |
| 49 | // { |
| 50 | // ; default_level specifies the logging level for modules |
| 51 | // ; that are not explicitly named. All debugging levels |
| 52 | // ; listed above the selected value are enabled. |
| 53 | // |
| 54 | // default_level INFO |
| 55 | // |
| 56 | // ; You may also override the default for specific modules: |
| 57 | // |
| 58 | // FibManager DEBUG |
| 59 | // Forwarder WARN |
| 60 | // } |
| 61 | |
| 62 | auto defaultLevel = ndn::util::LogLevel::INFO; |
| 63 | auto item = section.get_child_optional("default_level"); |
| 64 | if (item) { |
| 65 | defaultLevel = parseLogLevel(*item, "default_level"); |
| 66 | } |
| 67 | if (!isDryRun) { |
| 68 | // default_level applies only to NFD loggers |
| 69 | ndn::util::Logging::setLevel("nfd.*", defaultLevel); |
| 70 | } |
| 71 | |
| 72 | for (const auto& i : section) { |
| 73 | if (i.first == "default_level") { |
| 74 | // do nothing |
| 75 | } |
| 76 | else { |
| 77 | auto level = parseLogLevel(i.second, i.first); |
| 78 | if (!isDryRun) { |
| 79 | if (i.first.find('.') == std::string::npos) |
| 80 | // backward compat: assume unqualified logger names refer to NFD loggers |
| 81 | ndn::util::Logging::setLevel("nfd." + i.first, level); |
| 82 | else |
| 83 | ndn::util::Logging::setLevel(i.first, level); |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | setConfigFile(ConfigFile& config) |
| 91 | { |
| 92 | config.addSectionHandler("log", &onConfig); |
| 93 | } |
| 94 | |
| 95 | } // namespace log |
| 96 | } // namespace nfd |