blob: aeaeed19cd569955948a1718f32bee071fd5df6e [file] [log] [blame]
Alexander Afanasyev31c781e2015-02-09 17:39:59 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi2d491752017-07-14 21:32:05 +00002/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Alexander Afanasyev31c781e2015-02-09 17:39:59 -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
26#ifndef NFD_DAEMON_NFD_HPP
27#define NFD_DAEMON_NFD_HPP
28
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040029#include "common/config-file.hpp"
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080030
Davide Pesavento859a69e2019-07-13 17:10:46 -040031#include <ndn-cxx/face.hpp>
32#include <ndn-cxx/mgmt/dispatcher.hpp>
Junxiao Shi83be1da2017-06-30 13:37:37 +000033#include <ndn-cxx/net/network-monitor.hpp>
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080034#include <ndn-cxx/security/key-chain.hpp>
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050035#include <ndn-cxx/util/scheduler.hpp>
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080036
37namespace nfd {
38
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040039class FaceTable;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080040class Forwarder;
Junxiao Shif2bfb442018-01-05 12:34:57 +000041
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040042class CommandAuthenticator;
Yanbiao Li7cec7ea2015-08-19 16:30:16 -070043class ForwarderStatusManager;
Junxiao Shif2bfb442018-01-05 12:34:57 +000044class FaceManager;
45class FibManager;
46class CsManager;
47class StrategyChoiceManager;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080048
Junxiao Shicde37ad2015-12-24 01:02:05 -070049namespace face {
50class Face;
Junxiao Shiea47bde2017-01-26 17:49:16 +000051class FaceSystem;
Junxiao Shicde37ad2015-12-24 01:02:05 -070052} // namespace face
53
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080054/**
Davide Pesavento859a69e2019-07-13 17:10:46 -040055 * \brief Class representing the NFD instance.
56 *
57 * This class is used to initialize all components of NFD.
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080058 */
59class Nfd : noncopyable
60{
61public:
62 /**
Davide Pesavento859a69e2019-07-13 17:10:46 -040063 * \brief Create NFD instance using an absolute or relative path to a configuration file.
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080064 */
65 Nfd(const std::string& configFile, ndn::KeyChain& keyChain);
66
67 /**
Davide Pesavento859a69e2019-07-13 17:10:46 -040068 * \brief Create NFD instance using a parsed ConfigSection.
69 *
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080070 * This version of the constructor is more appropriate for integrated environments,
Davide Pesavento859a69e2019-07-13 17:10:46 -040071 * such as NS-3 or Android.
72 *
73 * \note When using this version of the constructor, error messages will show
74 * "internal://nfd.conf" when referring to configuration errors.
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080075 */
76 Nfd(const ConfigSection& config, ndn::KeyChain& keyChain);
77
78 /**
Davide Pesavento859a69e2019-07-13 17:10:46 -040079 * \brief Destructor.
Alexander Afanasyev2bda6f82015-02-10 14:17:19 -080080 */
81 ~Nfd();
82
83 /**
Davide Pesavento859a69e2019-07-13 17:10:46 -040084 * \brief Perform initialization of NFD instance.
85 *
86 * After initialization, NFD can be started by invoking `getGlobalIoService().run()`.
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080087 */
88 void
89 initialize();
90
91 /**
Davide Pesavento859a69e2019-07-13 17:10:46 -040092 * \brief Reload configuration file and apply updates (if any).
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080093 */
94 void
95 reloadConfigFile();
96
97private:
Junxiao Shi2d491752017-07-14 21:32:05 +000098 explicit
99 Nfd(ndn::KeyChain& keyChain);
100
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800101 void
Davide Pesaventoa3148082018-04-12 18:21:54 -0400102 configureLogging();
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800103
104 void
105 initializeManagement();
106
Alexander Afanasyev3f41ade2015-06-29 18:31:22 -0700107 void
108 reloadConfigFileFaceSection();
109
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800110private:
111 std::string m_configFile;
112 ConfigSection m_configSection;
113
Davide Pesaventoa4abfb02019-10-06 16:02:56 -0400114 unique_ptr<FaceTable> m_faceTable;
Junxiao Shiea47bde2017-01-26 17:49:16 +0000115 unique_ptr<face::FaceSystem> m_faceSystem;
Davide Pesaventoa4abfb02019-10-06 16:02:56 -0400116 unique_ptr<Forwarder> m_forwarder;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800117
Junxiao Shi9ddf1b52016-08-22 03:58:55 +0000118 ndn::KeyChain& m_keyChain;
119 shared_ptr<face::Face> m_internalFace;
120 shared_ptr<ndn::Face> m_internalClientFace;
121 unique_ptr<ndn::mgmt::Dispatcher> m_dispatcher;
122 shared_ptr<CommandAuthenticator> m_authenticator;
Yanbiao Li7cec7ea2015-08-19 16:30:16 -0700123 unique_ptr<ForwarderStatusManager> m_forwarderStatusManager;
Junxiao Shi9ddf1b52016-08-22 03:58:55 +0000124 unique_ptr<FaceManager> m_faceManager;
125 unique_ptr<FibManager> m_fibManager;
Junxiao Shif2bfb442018-01-05 12:34:57 +0000126 unique_ptr<CsManager> m_csManager;
Junxiao Shi9ddf1b52016-08-22 03:58:55 +0000127 unique_ptr<StrategyChoiceManager> m_strategyChoiceManager;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800128
Junxiao Shi2d491752017-07-14 21:32:05 +0000129 shared_ptr<ndn::net::NetworkMonitor> m_netmon;
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -0500130 ndn::scheduler::ScopedEventId m_reloadConfigEvent;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800131};
132
133} // namespace nfd
134
135#endif // NFD_DAEMON_NFD_HPP