blob: 57b5e8a6dbb8011d0aa55d0d46432400956cc40d [file] [log] [blame]
Alexander Afanasyev31c781e2015-02-09 17:39:59 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, Regents of the University of California,
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#ifndef NFD_DAEMON_NFD_HPP
27#define NFD_DAEMON_NFD_HPP
28
29#include "common.hpp"
30#include "core/config-file.hpp"
Alexander Afanasyev3f41ade2015-06-29 18:31:22 -070031#include "core/scheduler.hpp"
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080032
33#include <ndn-cxx/security/key-chain.hpp>
Alexander Afanasyev3f41ade2015-06-29 18:31:22 -070034#include <ndn-cxx/util/network-monitor.hpp>
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080035
Yanbiao Li698f4fe2015-08-19 16:30:16 -070036namespace ndn {
Junxiao Shi6535f1e2015-10-08 13:02:18 -070037
38class Face;
39
Yanbiao Li698f4fe2015-08-19 16:30:16 -070040namespace mgmt {
41
42class Dispatcher;
43
44}
45}
46
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080047namespace nfd {
48
Junxiao Shi6535f1e2015-10-08 13:02:18 -070049class Face;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080050class Forwarder;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080051class FibManager;
52class FaceManager;
53class StrategyChoiceManager;
Yanbiao Li7cec7ea2015-08-19 16:30:16 -070054class ForwarderStatusManager;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070055class CommandValidator;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080056
57/**
58 * \brief Class representing NFD instance
59 * This class can be used to initialize all components of NFD
60 */
61class Nfd : noncopyable
62{
63public:
64 /**
65 * \brief Create NFD instance using absolute or relative path to \p configFile
66 */
67 Nfd(const std::string& configFile, ndn::KeyChain& keyChain);
68
69 /**
70 * \brief Create NFD instance using a parsed ConfigSection \p config
71 * This version of the constructor is more appropriate for integrated environments,
72 * such as NS-3 or android.
73 * \note When using this version of the constructor, error messages will include
74 * "internal://nfd.conf" when referring to configuration errors.
75 */
76 Nfd(const ConfigSection& config, ndn::KeyChain& keyChain);
77
78 /**
Alexander Afanasyev2bda6f82015-02-10 14:17:19 -080079 * \brief Destructor
80 */
81 ~Nfd();
82
83 /**
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080084 * \brief Perform initialization of NFD instance
85 * After initialization, NFD instance can be started by invoking run on globalIoService
86 */
87 void
88 initialize();
89
90 /**
91 * \brief Reload configuration file and apply update (if any)
92 */
93 void
94 reloadConfigFile();
95
96private:
97 void
98 initializeLogging();
99
100 void
101 initializeManagement();
102
Alexander Afanasyev3f41ade2015-06-29 18:31:22 -0700103 void
104 reloadConfigFileFaceSection();
105
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800106private:
107 std::string m_configFile;
108 ConfigSection m_configSection;
109
Alexander Afanasyev2bda6f82015-02-10 14:17:19 -0800110 unique_ptr<Forwarder> m_forwarder;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800111
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700112 ndn::KeyChain& m_keyChain;
113 shared_ptr<Face> m_internalFace;
114 shared_ptr<ndn::Face> m_internalClientFace;
115 unique_ptr<CommandValidator> m_validator;
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700116
Yanbiao Li7cec7ea2015-08-19 16:30:16 -0700117 unique_ptr<ndn::mgmt::Dispatcher> m_dispatcher;
118 unique_ptr<FibManager> m_fibManager;
119 unique_ptr<FaceManager> m_faceManager;
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700120 unique_ptr<StrategyChoiceManager> m_strategyChoiceManager;
Yanbiao Li7cec7ea2015-08-19 16:30:16 -0700121 unique_ptr<ForwarderStatusManager> m_forwarderStatusManager;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800122
Alexander Afanasyev441ba212015-09-10 23:41:07 -0700123 unique_ptr<ndn::util::NetworkMonitor> m_networkMonitor;
124 scheduler::ScopedEventId m_reloadConfigEvent;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800125};
126
127} // namespace nfd
128
129#endif // NFD_DAEMON_NFD_HPP