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