blob: c2f43bbbaa31b02a6b50859b4b587aa17c2a994a [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"
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 */
44class FaceManager : public ManagerBase
45{
46public:
47 FaceManager(FaceTable& faceTable,
48 Dispatcher& dispatcher,
49 CommandValidator& validator);
50
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
108 doesMatchFilter(const ndn::nfd::FaceQueryFilter& filter, shared_ptr<Face> face);
109
Junxiao Shida93f1f2015-11-11 06:13:16 -0700110 /** \brief copy face properties into traits
111 * \tparam FaceTraits either FaceStatus or FaceEventNotification
112 */
113 template<typename FaceTraits>
114 static void
115 collectFaceProperties(const Face& face, FaceTraits& traits);
116
117 /** \brief copy face counters into FaceStatus
118 */
119 static void
120 collectFaceCounters(const Face& face, ndn::nfd::FaceStatus& status);
121
Yanbiao Li73860e32015-08-19 16:30:16 -0700122private: // NotificationStream
123 void
124 afterFaceAdded(shared_ptr<Face> face,
125 const ndn::mgmt::PostNotification& post);
126
127 void
128 afterFaceRemoved(shared_ptr<Face> face,
129 const ndn::mgmt::PostNotification& post);
130
131private: // configuration
132 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200133 processConfig(const ConfigSection& configSection, bool isDryRun,
134 const std::string& filename);
Yanbiao Li73860e32015-08-19 16:30:16 -0700135
136 void
137 processSectionUnix(const ConfigSection& configSection, bool isDryRun);
138
139 void
140 processSectionTcp(const ConfigSection& configSection, bool isDryRun);
141
142 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200143 processSectionUdp(const ConfigSection& configSection, bool isDryRun,
Yanbiao Li73860e32015-08-19 16:30:16 -0700144 const std::vector<NetworkInterfaceInfo>& nicList);
145
146 void
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200147 processSectionEther(const ConfigSection& configSection, bool isDryRun,
Yanbiao Li73860e32015-08-19 16:30:16 -0700148 const std::vector<NetworkInterfaceInfo>& nicList);
149
150 void
151 processSectionWebSocket(const ConfigSection& configSection, bool isDryRun);
152
Yanbiao Li73860e32015-08-19 16:30:16 -0700153PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200154 std::map<std::string /*protocol*/, shared_ptr<ProtocolFactory>> m_factories;
Yanbiao Li73860e32015-08-19 16:30:16 -0700155
156private:
157 FaceTable& m_faceTable;
158 signal::ScopedConnection m_faceAddConn;
159 signal::ScopedConnection m_faceRemoveConn;
160};
161
162} // namespace nfd
163
164#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP