blob: 57788b7ef1f8be9f11b38f53b0d97b26974771c6 [file] [log] [blame]
Yanbiao Li73860e32015-08-19 16:30:16 -07001/* -*- 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_MGMT_FACE_MANAGER_HPP
27#define NFD_DAEMON_MGMT_FACE_MANAGER_HPP
28
29#include "manager-base.hpp"
30#include "face/local-face.hpp"
31#include <ndn-cxx/management/nfd-face-query-filter.hpp>
32
33namespace nfd {
34
35class FaceTable;
36class NetworkInterfaceInfo;
37class ProtocolFactory;
38
Junxiao Shi40cb61c2015-09-23 18:36:45 -070039namespace face {
40class LpFace;
41} // namespace face
42
Yanbiao Li73860e32015-08-19 16:30:16 -070043/**
44 * @brief implement the Face Management of NFD Management Protocol.
45 * @sa http://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
46 */
47class FaceManager : public ManagerBase
48{
49public:
50 FaceManager(FaceTable& faceTable,
51 Dispatcher& dispatcher,
52 CommandValidator& validator);
53
54 /**
55 * @brief Subscribe to face_system section for the config file
56 */
57 void
58 setConfigFile(ConfigFile& configFile);
59
60PUBLIC_WITH_TESTS_ELSE_PRIVATE: // ControlCommand
61 void
62 createFace(const Name& topPrefix, const Interest& interest,
63 const ControlParameters& parameters,
64 const ndn::mgmt::CommandContinuation& done);
65
66 void
67 destroyFace(const Name& topPrefix, const Interest& interest,
68 const ControlParameters& parameters,
69 const ndn::mgmt::CommandContinuation& done);
70
71 void
72 enableLocalControl(const Name& topPrefix, const Interest& interest,
73 const ControlParameters& parameters,
74 const ndn::mgmt::CommandContinuation& done);
75
76 void
77 disableLocalControl(const Name& topPrefix, const Interest& interest,
78 const ControlParameters& parameters,
79 const ndn::mgmt::CommandContinuation& done);
80
81PUBLIC_WITH_TESTS_ELSE_PRIVATE: // helpers for ControlCommand
82 void
83 afterCreateFaceSuccess(ControlParameters& parameters,
84 const shared_ptr<Face>& newFace,
85 const ndn::mgmt::CommandContinuation& done);
86
87 void
88 afterCreateFaceFailure(const std::string& reason,
89 const ndn::mgmt::CommandContinuation& done);
90
91 struct ExtractLocalControlParametersResult
92 {
93 bool isValid;
94 shared_ptr<LocalFace> face;
Junxiao Shi40cb61c2015-09-23 18:36:45 -070095 face::LpFace* lpFace;
Yanbiao Li73860e32015-08-19 16:30:16 -070096 LocalControlFeature feature;
97 };
98
99 ExtractLocalControlParametersResult
100 extractLocalControlParameters(const Interest& request,
101 const ControlParameters& parameters,
102 const ndn::mgmt::CommandContinuation& done);
103
104PUBLIC_WITH_TESTS_ELSE_PRIVATE: // StatusDataset
105 void
106 listFaces(const Name& topPrefix, const Interest& interest,
107 ndn::mgmt::StatusDatasetContext& context);
108
109 void
110 listChannels(const Name& topPrefix, const Interest& interest,
111 ndn::mgmt::StatusDatasetContext& context);
112
113 void
114 queryFaces(const Name& topPrefix, const Interest& interest,
115 ndn::mgmt::StatusDatasetContext& context);
116
117private: // helpers for StatusDataset handler
118 bool
119 doesMatchFilter(const ndn::nfd::FaceQueryFilter& filter, shared_ptr<Face> face);
120
121private: // NotificationStream
122 void
123 afterFaceAdded(shared_ptr<Face> face,
124 const ndn::mgmt::PostNotification& post);
125
126 void
127 afterFaceRemoved(shared_ptr<Face> face,
128 const ndn::mgmt::PostNotification& post);
129
130private: // configuration
131 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200132 processConfig(const ConfigSection& configSection, bool isDryRun,
133 const std::string& filename);
Yanbiao Li73860e32015-08-19 16:30:16 -0700134
135 void
136 processSectionUnix(const ConfigSection& configSection, bool isDryRun);
137
138 void
139 processSectionTcp(const ConfigSection& configSection, bool isDryRun);
140
141 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200142 processSectionUdp(const ConfigSection& configSection, bool isDryRun,
Yanbiao Li73860e32015-08-19 16:30:16 -0700143 const std::vector<NetworkInterfaceInfo>& nicList);
144
145 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200146 processSectionEther(const ConfigSection& configSection, bool isDryRun,
Yanbiao Li73860e32015-08-19 16:30:16 -0700147 const std::vector<NetworkInterfaceInfo>& nicList);
148
149 void
150 processSectionWebSocket(const ConfigSection& configSection, bool isDryRun);
151
Yanbiao Li73860e32015-08-19 16:30:16 -0700152PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200153 std::map<std::string /*protocol*/, shared_ptr<ProtocolFactory>> m_factories;
Yanbiao Li73860e32015-08-19 16:30:16 -0700154
155private:
156 FaceTable& m_faceTable;
157 signal::ScopedConnection m_faceAddConn;
158 signal::ScopedConnection m_faceRemoveConn;
159};
160
161} // namespace nfd
162
163#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP