Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [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 | |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_RIB_SERVICE_HPP |
| 27 | #define NFD_DAEMON_RIB_SERVICE_HPP |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 28 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 29 | #include "core/config-file.hpp" |
Davide Pesavento | 8a05c7f | 2019-02-28 02:26:19 -0500 | [diff] [blame] | 30 | #include "mgmt/rib-manager.hpp" |
| 31 | #include "rib/fib-updater.hpp" |
| 32 | #include "rib/rib.hpp" |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 33 | |
| 34 | #include <ndn-cxx/face.hpp> |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 35 | #include <ndn-cxx/mgmt/dispatcher.hpp> |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/mgmt/nfd/controller.hpp> |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 37 | #include <ndn-cxx/security/key-chain.hpp> |
| 38 | #include <ndn-cxx/transport/transport.hpp> |
Davide Pesavento | e1bdc08 | 2018-10-11 21:20:23 -0400 | [diff] [blame] | 39 | #include <ndn-cxx/util/scheduler.hpp> |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 40 | |
| 41 | namespace nfd { |
| 42 | namespace rib { |
| 43 | |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 44 | class Readvertise; |
Alexander Afanasyev | c3ea5a7 | 2015-02-12 20:14:16 -0800 | [diff] [blame] | 45 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 46 | /** |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 47 | * \brief initializes and executes NFD-RIB service thread |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 48 | * |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 49 | * Only one instance of this class can be created at any time. |
| 50 | * After initialization, NFD-RIB instance can be started by running the global io_service. |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 51 | */ |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 52 | class Service : noncopyable |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 53 | { |
| 54 | public: |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 55 | /** |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 56 | * \brief create NFD-RIB service |
| 57 | * \param configFile absolute or relative path of configuration file |
| 58 | * \param keyChain the KeyChain |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 59 | * \throw std::logic_error Instance of rib::Service has been already constructed |
| 60 | * \throw std::logic_error Instance of rib::Service is not constructed on RIB thread |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 61 | */ |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 62 | Service(const std::string& configFile, ndn::KeyChain& keyChain); |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 63 | |
| 64 | /** |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 65 | * \brief create NFD-RIB service |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 66 | * \param configSection parsed configuration section |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 67 | * \param keyChain the KeyChain |
| 68 | * \note This constructor overload is more appropriate for integrated environments, |
| 69 | * such as NS-3 or android. Error messages related to configuration file |
| 70 | * will use "internal://nfd.conf" as configuration filename. |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 71 | * \throw std::logic_error Instance of rib::Service has been already constructed |
| 72 | * \throw std::logic_error Instance of rib::Service is not constructed on RIB thread |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 73 | */ |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 74 | Service(const ConfigSection& configSection, ndn::KeyChain& keyChain); |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 75 | |
| 76 | /** |
Alexander Afanasyev | c3ea5a7 | 2015-02-12 20:14:16 -0800 | [diff] [blame] | 77 | * \brief Destructor |
| 78 | */ |
Junxiao Shi | b260017 | 2016-07-11 08:53:53 +0000 | [diff] [blame] | 79 | ~Service(); |
Alexander Afanasyev | c3ea5a7 | 2015-02-12 20:14:16 -0800 | [diff] [blame] | 80 | |
| 81 | /** |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 82 | * \brief Get a reference to the only instance of this class |
| 83 | * \throw std::logic_error No instance has been constructed |
| 84 | * \throw std::logic_error This function is invoked on a thread other than the RIB thread |
| 85 | */ |
| 86 | static Service& |
| 87 | get(); |
| 88 | |
Junxiao Shi | 5ba7dfc | 2018-09-26 14:24:05 +0000 | [diff] [blame] | 89 | RibManager& |
| 90 | getRibManager() |
| 91 | { |
| 92 | return m_ribManager; |
| 93 | } |
| 94 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 95 | private: |
Ashlesh Gawande | f84bac5 | 2018-08-27 07:39:31 +0000 | [diff] [blame] | 96 | template<typename ConfigParseFunc> |
| 97 | Service(ndn::KeyChain& keyChain, shared_ptr<ndn::Transport> localNfdTransport, |
| 98 | const ConfigParseFunc& configParse); |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 99 | |
| 100 | void |
| 101 | processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename); |
| 102 | |
| 103 | void |
| 104 | checkConfig(const ConfigSection& section, const std::string& filename); |
| 105 | |
| 106 | void |
| 107 | applyConfig(const ConfigSection& section, const std::string& filename); |
| 108 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 109 | private: |
Teng Liang | 04d5ce6 | 2018-08-06 10:20:24 +0800 | [diff] [blame] | 110 | static Service* s_instance; |
| 111 | |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 112 | ndn::KeyChain& m_keyChain; |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 113 | ndn::Face m_face; |
| 114 | ndn::nfd::Controller m_nfdController; |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 115 | |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 116 | Rib m_rib; |
| 117 | FibUpdater m_fibUpdater; |
Davide Pesavento | 9f8b10e | 2018-08-22 08:45:37 +0000 | [diff] [blame] | 118 | unique_ptr<Readvertise> m_readvertiseNlsr; |
Yanbiao Li | f48d080 | 2018-06-01 03:00:02 -0700 | [diff] [blame] | 119 | unique_ptr<Readvertise> m_readvertisePropagation; |
Junxiao Shi | f4cfed1 | 2018-08-22 23:26:29 +0000 | [diff] [blame] | 120 | ndn::mgmt::Dispatcher m_dispatcher; |
| 121 | RibManager m_ribManager; |
Alexander Afanasyev | 3136792 | 2015-02-09 20:51:10 -0800 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | } // namespace rib |
| 125 | } // namespace nfd |
| 126 | |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 127 | #endif // NFD_DAEMON_RIB_SERVICE_HPP |