blob: 92e6efdd62cb0b7414abf0d44f5c6fdbd7415360 [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"
31
32#include <ndn-cxx/security/key-chain.hpp>
33
34namespace nfd {
35
36class Forwarder;
37class InternalFace;
38class FibManager;
39class FaceManager;
40class StrategyChoiceManager;
41class StatusServer;
42
43/**
44 * \brief Class representing NFD instance
45 * This class can be used to initialize all components of NFD
46 */
47class Nfd : noncopyable
48{
49public:
50 /**
51 * \brief Create NFD instance using absolute or relative path to \p configFile
52 */
53 Nfd(const std::string& configFile, ndn::KeyChain& keyChain);
54
55 /**
56 * \brief Create NFD instance using a parsed ConfigSection \p config
57 * This version of the constructor is more appropriate for integrated environments,
58 * such as NS-3 or android.
59 * \note When using this version of the constructor, error messages will include
60 * "internal://nfd.conf" when referring to configuration errors.
61 */
62 Nfd(const ConfigSection& config, ndn::KeyChain& keyChain);
63
64 /**
Alexander Afanasyev2bda6f82015-02-10 14:17:19 -080065 * \brief Destructor
66 */
67 ~Nfd();
68
69 /**
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080070 * \brief Perform initialization of NFD instance
71 * After initialization, NFD instance can be started by invoking run on globalIoService
72 */
73 void
74 initialize();
75
76 /**
77 * \brief Reload configuration file and apply update (if any)
78 */
79 void
80 reloadConfigFile();
81
82private:
83 void
84 initializeLogging();
85
86 void
87 initializeManagement();
88
89private:
90 std::string m_configFile;
91 ConfigSection m_configSection;
92
Alexander Afanasyev2bda6f82015-02-10 14:17:19 -080093 unique_ptr<Forwarder> m_forwarder;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -080094
95 shared_ptr<InternalFace> m_internalFace;
Alexander Afanasyev2bda6f82015-02-10 14:17:19 -080096 unique_ptr<FibManager> m_fibManager;
97 unique_ptr<FaceManager> m_faceManager;
98 unique_ptr<StrategyChoiceManager> m_strategyChoiceManager;
99 unique_ptr<StatusServer> m_statusServer;
Alexander Afanasyev31c781e2015-02-09 17:39:59 -0800100
101 ndn::KeyChain& m_keyChain;
102};
103
104} // namespace nfd
105
106#endif // NFD_DAEMON_NFD_HPP