blob: 0d0aa07a15c90b1a09d32b9ce7416fb6ea0cc55d [file] [log] [blame]
Alexander Afanasyev31367922015-02-09 20:51:10 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Alexander Afanasyev31367922015-02-09 20:51:10 -08004 * 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 Pesavento1b077f62019-02-19 19:19:44 -050026#ifndef NFD_DAEMON_RIB_SERVICE_HPP
27#define NFD_DAEMON_RIB_SERVICE_HPP
Alexander Afanasyev31367922015-02-09 20:51:10 -080028
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040029#include "common/config-file.hpp"
Davide Pesavento8a05c7f2019-02-28 02:26:19 -050030#include "mgmt/rib-manager.hpp"
31#include "rib/fib-updater.hpp"
32#include "rib/rib.hpp"
Alexander Afanasyev31367922015-02-09 20:51:10 -080033
34#include <ndn-cxx/face.hpp>
Davide Pesaventoa3148082018-04-12 18:21:54 -040035#include <ndn-cxx/mgmt/dispatcher.hpp>
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000036#include <ndn-cxx/mgmt/nfd/controller.hpp>
Alexander Afanasyev31367922015-02-09 20:51:10 -080037#include <ndn-cxx/security/key-chain.hpp>
38#include <ndn-cxx/transport/transport.hpp>
Davide Pesaventoe1bdc082018-10-11 21:20:23 -040039#include <ndn-cxx/util/scheduler.hpp>
Alexander Afanasyev31367922015-02-09 20:51:10 -080040
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040041namespace nfd::rib {
Alexander Afanasyev31367922015-02-09 20:51:10 -080042
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000043class Readvertise;
Alexander Afanasyevc3ea5a72015-02-12 20:14:16 -080044
Alexander Afanasyev31367922015-02-09 20:51:10 -080045/**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040046 * \brief Initializes and executes the NFD-RIB service thread.
Teng Liang04d5ce62018-08-06 10:20:24 +080047 *
Junxiao Shif4cfed12018-08-22 23:26:29 +000048 * Only one instance of this class can be created at any time.
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040049 * After initialization, NFD-RIB instance can be started by running the global io_context.
Alexander Afanasyev31367922015-02-09 20:51:10 -080050 */
Junxiao Shib2600172016-07-11 08:53:53 +000051class Service : noncopyable
Alexander Afanasyev31367922015-02-09 20:51:10 -080052{
53public:
Alexander Afanasyev31367922015-02-09 20:51:10 -080054 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040055 * \brief Create NFD-RIB service.
Junxiao Shib2600172016-07-11 08:53:53 +000056 * \param configFile absolute or relative path of configuration file
57 * \param keyChain the KeyChain
Teng Liang04d5ce62018-08-06 10:20:24 +080058 * \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 Afanasyev31367922015-02-09 20:51:10 -080060 */
Junxiao Shib2600172016-07-11 08:53:53 +000061 Service(const std::string& configFile, ndn::KeyChain& keyChain);
Alexander Afanasyev31367922015-02-09 20:51:10 -080062
63 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040064 * \brief Create NFD-RIB service.
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000065 * \param configSection parsed configuration section
Junxiao Shib2600172016-07-11 08:53:53 +000066 * \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 Liang04d5ce62018-08-06 10:20:24 +080070 * \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 Afanasyev31367922015-02-09 20:51:10 -080072 */
Davide Pesavento9f8b10e2018-08-22 08:45:37 +000073 Service(const ConfigSection& configSection, ndn::KeyChain& keyChain);
Alexander Afanasyev31367922015-02-09 20:51:10 -080074
Junxiao Shib2600172016-07-11 08:53:53 +000075 ~Service();
Alexander Afanasyevc3ea5a72015-02-12 20:14:16 -080076
77 /**
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040078 * \brief Get a reference to the only instance of this class.
Teng Liang04d5ce62018-08-06 10:20:24 +080079 * \throw std::logic_error No instance has been constructed
80 * \throw std::logic_error This function is invoked on a thread other than the RIB thread
81 */
82 static Service&
83 get();
84
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000085 RibManager&
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040086 getRibManager() noexcept
Junxiao Shi5ba7dfc2018-09-26 14:24:05 +000087 {
88 return m_ribManager;
89 }
90
Alexander Afanasyev31367922015-02-09 20:51:10 -080091private:
Ashlesh Gawandef84bac52018-08-27 07:39:31 +000092 template<typename ConfigParseFunc>
93 Service(ndn::KeyChain& keyChain, shared_ptr<ndn::Transport> localNfdTransport,
94 const ConfigParseFunc& configParse);
Junxiao Shif4cfed12018-08-22 23:26:29 +000095
96 void
97 processConfig(const ConfigSection& section, bool isDryRun, const std::string& filename);
98
99 void
100 checkConfig(const ConfigSection& section, const std::string& filename);
101
102 void
103 applyConfig(const ConfigSection& section, const std::string& filename);
104
Alexander Afanasyev31367922015-02-09 20:51:10 -0800105private:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400106 static inline Service* s_instance = nullptr;
Teng Liang04d5ce62018-08-06 10:20:24 +0800107
Alexander Afanasyev31367922015-02-09 20:51:10 -0800108 ndn::KeyChain& m_keyChain;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000109 ndn::Face m_face;
110 ndn::nfd::Controller m_nfdController;
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000111
Junxiao Shif4cfed12018-08-22 23:26:29 +0000112 Rib m_rib;
113 FibUpdater m_fibUpdater;
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000114 unique_ptr<Readvertise> m_readvertiseNlsr;
Yanbiao Lif48d0802018-06-01 03:00:02 -0700115 unique_ptr<Readvertise> m_readvertisePropagation;
Junxiao Shif4cfed12018-08-22 23:26:29 +0000116 ndn::mgmt::Dispatcher m_dispatcher;
117 RibManager m_ribManager;
Alexander Afanasyev31367922015-02-09 20:51:10 -0800118};
119
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400120} // namespace nfd::rib
Alexander Afanasyev31367922015-02-09 20:51:10 -0800121
Davide Pesavento1b077f62019-02-19 19:19:44 -0500122#endif // NFD_DAEMON_RIB_SERVICE_HPP