blob: f31f04b24d88f77955d59f8787afcb325b1debb3 [file] [log] [blame]
Yanbiao Li73860e32015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yanbiao Lidf846e52016-01-30 21:53:47 -08003 * Copyright (c) 2014-2016, Regents of the University of California,
Yanbiao Li73860e32015-08-19 16:30:16 -07004 * 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_MGMT_FACE_MANAGER_HPP
27#define NFD_DAEMON_MGMT_FACE_MANAGER_HPP
28
Yanbiao Lidf846e52016-01-30 21:53:47 -080029#include "nfd-manager-base.hpp"
Junxiao Shi0de23a22015-12-03 20:07:02 +000030#include <ndn-cxx/management/nfd-face-status.hpp>
Yanbiao Li73860e32015-08-19 16:30:16 -070031#include <ndn-cxx/management/nfd-face-query-filter.hpp>
Junxiao Shicde37ad2015-12-24 01:02:05 -070032#include "face/face.hpp"
Yanbiao Li73860e32015-08-19 16:30:16 -070033
34namespace nfd {
35
36class FaceTable;
37class NetworkInterfaceInfo;
38class ProtocolFactory;
39
40/**
41 * @brief implement the Face Management of NFD Management Protocol.
42 * @sa http://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
43 */
Yanbiao Lidf846e52016-01-30 21:53:47 -080044class FaceManager : public NfdManagerBase
Yanbiao Li73860e32015-08-19 16:30:16 -070045{
46public:
47 FaceManager(FaceTable& faceTable,
48 Dispatcher& dispatcher,
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000049 CommandAuthenticator& authenticator);
Yanbiao Li73860e32015-08-19 16:30:16 -070050
51 /**
52 * @brief Subscribe to face_system section for the config file
53 */
54 void
55 setConfigFile(ConfigFile& configFile);
56
57PUBLIC_WITH_TESTS_ELSE_PRIVATE: // ControlCommand
58 void
59 createFace(const Name& topPrefix, const Interest& interest,
60 const ControlParameters& parameters,
61 const ndn::mgmt::CommandContinuation& done);
62
63 void
64 destroyFace(const Name& topPrefix, const Interest& interest,
65 const ControlParameters& parameters,
66 const ndn::mgmt::CommandContinuation& done);
67
68 void
69 enableLocalControl(const Name& topPrefix, const Interest& interest,
70 const ControlParameters& parameters,
71 const ndn::mgmt::CommandContinuation& done);
72
73 void
74 disableLocalControl(const Name& topPrefix, const Interest& interest,
75 const ControlParameters& parameters,
76 const ndn::mgmt::CommandContinuation& done);
77
78PUBLIC_WITH_TESTS_ELSE_PRIVATE: // helpers for ControlCommand
79 void
80 afterCreateFaceSuccess(ControlParameters& parameters,
81 const shared_ptr<Face>& newFace,
82 const ndn::mgmt::CommandContinuation& done);
83
84 void
85 afterCreateFaceFailure(const std::string& reason,
86 const ndn::mgmt::CommandContinuation& done);
87
Junxiao Shicde37ad2015-12-24 01:02:05 -070088 Face*
89 findFaceForLocalControl(const Interest& request,
90 const ControlParameters& parameters,
91 const ndn::mgmt::CommandContinuation& done);
Yanbiao Li73860e32015-08-19 16:30:16 -070092
93PUBLIC_WITH_TESTS_ELSE_PRIVATE: // StatusDataset
94 void
95 listFaces(const Name& topPrefix, const Interest& interest,
96 ndn::mgmt::StatusDatasetContext& context);
97
98 void
99 listChannels(const Name& topPrefix, const Interest& interest,
100 ndn::mgmt::StatusDatasetContext& context);
101
102 void
103 queryFaces(const Name& topPrefix, const Interest& interest,
104 ndn::mgmt::StatusDatasetContext& context);
105
106private: // helpers for StatusDataset handler
107 bool
Junxiao Shib84e6742016-07-19 13:16:22 +0000108 matchFilter(const ndn::nfd::FaceQueryFilter& filter, const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700109
Eric Newberryc64d30a2015-12-26 11:07:27 -0700110 /** \brief get status of face, including properties and counters
111 */
112 static ndn::nfd::FaceStatus
113 collectFaceStatus(const Face& face, const time::steady_clock::TimePoint& now);
114
Junxiao Shida93f1f2015-11-11 06:13:16 -0700115 /** \brief copy face properties into traits
116 * \tparam FaceTraits either FaceStatus or FaceEventNotification
117 */
118 template<typename FaceTraits>
119 static void
120 collectFaceProperties(const Face& face, FaceTraits& traits);
121
Yanbiao Li73860e32015-08-19 16:30:16 -0700122private: // NotificationStream
123 void
Junxiao Shiae04d342016-07-19 13:20:22 +0000124 notifyAddFace(const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700125
126 void
Junxiao Shiae04d342016-07-19 13:20:22 +0000127 notifyRemoveFace(const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700128
129private: // configuration
130 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200131 processConfig(const ConfigSection& configSection, bool isDryRun,
132 const std::string& filename);
Yanbiao Li73860e32015-08-19 16:30:16 -0700133
134 void
135 processSectionUnix(const ConfigSection& configSection, bool isDryRun);
136
137 void
138 processSectionTcp(const ConfigSection& configSection, bool isDryRun);
139
140 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200141 processSectionUdp(const ConfigSection& configSection, bool isDryRun,
Yanbiao Li73860e32015-08-19 16:30:16 -0700142 const std::vector<NetworkInterfaceInfo>& nicList);
143
144 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200145 processSectionEther(const ConfigSection& configSection, bool isDryRun,
Yanbiao Li73860e32015-08-19 16:30:16 -0700146 const std::vector<NetworkInterfaceInfo>& nicList);
147
148 void
149 processSectionWebSocket(const ConfigSection& configSection, bool isDryRun);
150
Yanbiao Li73860e32015-08-19 16:30:16 -0700151PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200152 std::map<std::string /*protocol*/, shared_ptr<ProtocolFactory>> m_factories;
Yanbiao Li73860e32015-08-19 16:30:16 -0700153
154private:
155 FaceTable& m_faceTable;
Junxiao Shiae04d342016-07-19 13:20:22 +0000156 ndn::mgmt::PostNotification m_postNotification;
Yanbiao Li73860e32015-08-19 16:30:16 -0700157 signal::ScopedConnection m_faceAddConn;
158 signal::ScopedConnection m_faceRemoveConn;
159};
160
161} // namespace nfd
162
163#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP