Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 1 | /* -*- 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 Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 31 | #include "core/scheduler.hpp" |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 32 | |
| 33 | #include <ndn-cxx/security/key-chain.hpp> |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 34 | #include <ndn-cxx/util/network-monitor.hpp> |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 35 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 36 | namespace ndn { |
| 37 | namespace mgmt { |
| 38 | |
| 39 | class Dispatcher; |
| 40 | |
| 41 | } |
| 42 | } |
| 43 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 44 | namespace nfd { |
| 45 | |
| 46 | class Forwarder; |
| 47 | class InternalFace; |
| 48 | class FibManager; |
| 49 | class FaceManager; |
| 50 | class StrategyChoiceManager; |
| 51 | class StatusServer; |
Yanbiao Li | 4ee73d4 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 52 | class InternalClientFace; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 53 | class CommandValidator; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 54 | |
| 55 | /** |
| 56 | * \brief Class representing NFD instance |
| 57 | * This class can be used to initialize all components of NFD |
| 58 | */ |
| 59 | class Nfd : noncopyable |
| 60 | { |
| 61 | public: |
| 62 | /** |
| 63 | * \brief Create NFD instance using absolute or relative path to \p configFile |
| 64 | */ |
| 65 | Nfd(const std::string& configFile, ndn::KeyChain& keyChain); |
| 66 | |
| 67 | /** |
| 68 | * \brief Create NFD instance using a parsed ConfigSection \p config |
| 69 | * This version of the constructor is more appropriate for integrated environments, |
| 70 | * such as NS-3 or android. |
| 71 | * \note When using this version of the constructor, error messages will include |
| 72 | * "internal://nfd.conf" when referring to configuration errors. |
| 73 | */ |
| 74 | Nfd(const ConfigSection& config, ndn::KeyChain& keyChain); |
| 75 | |
| 76 | /** |
Alexander Afanasyev | 2bda6f8 | 2015-02-10 14:17:19 -0800 | [diff] [blame] | 77 | * \brief Destructor |
| 78 | */ |
| 79 | ~Nfd(); |
| 80 | |
| 81 | /** |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 82 | * \brief Perform initialization of NFD instance |
| 83 | * After initialization, NFD instance can be started by invoking run on globalIoService |
| 84 | */ |
| 85 | void |
| 86 | initialize(); |
| 87 | |
| 88 | /** |
| 89 | * \brief Reload configuration file and apply update (if any) |
| 90 | */ |
| 91 | void |
| 92 | reloadConfigFile(); |
| 93 | |
| 94 | private: |
| 95 | void |
| 96 | initializeLogging(); |
| 97 | |
| 98 | void |
| 99 | initializeManagement(); |
| 100 | |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 101 | void |
| 102 | reloadConfigFileFaceSection(); |
| 103 | |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 104 | private: |
| 105 | std::string m_configFile; |
| 106 | ConfigSection m_configSection; |
| 107 | |
Alexander Afanasyev | 2bda6f8 | 2015-02-10 14:17:19 -0800 | [diff] [blame] | 108 | unique_ptr<Forwarder> m_forwarder; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 109 | |
Yanbiao Li | 4ee73d4 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 110 | ndn::KeyChain& m_keyChain; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 111 | shared_ptr<InternalFace> m_internalFace; |
Yanbiao Li | 4ee73d4 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 112 | shared_ptr<InternalClientFace> m_internalClientFace; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 113 | unique_ptr<CommandValidator> m_validator; |
| 114 | |
| 115 | unique_ptr<ndn::mgmt::Dispatcher> m_dispatcher; |
Yanbiao Li | 36f3500 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 116 | // unique_ptr<FibManager> m_fibManager; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame^] | 117 | unique_ptr<FaceManager> m_faceManager; |
Yanbiao Li | 36f3500 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 118 | // unique_ptr<StrategyChoiceManager> m_strategyChoiceManager; |
| 119 | // unique_ptr<StatusServer> m_statusServer; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 120 | |
Alexander Afanasyev | 3f41ade | 2015-06-29 18:31:22 -0700 | [diff] [blame] | 121 | ndn::util::NetworkMonitor m_networkMonitor; |
| 122 | scheduler::ScopedEventId m_reloadConfigEvent; |
Alexander Afanasyev | 31c781e | 2015-02-09 17:39:59 -0800 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | } // namespace nfd |
| 126 | |
| 127 | #endif // NFD_DAEMON_NFD_HPP |