blob: 77e820c812d9cc48398d9e058fb5d6ec27ebe831 [file] [log] [blame]
Yanbiao Li73860e32015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shiea47bde2017-01-26 17:49:16 +00003 * Copyright (c) 2014-2017, 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 Shib8590312016-12-29 21:22:25 +000030#include "face/face-system.hpp"
Junxiao Shi25c6ce42016-09-09 13:49:59 +000031#include <ndn-cxx/mgmt/nfd/face-status.hpp>
32#include <ndn-cxx/mgmt/nfd/face-query-filter.hpp>
Eric Newberry1b4ba052016-10-07 23:04:07 -070033#include <ndn-cxx/mgmt/nfd/face-event-notification.hpp>
Yanbiao Li73860e32015-08-19 16:30:16 -070034
35namespace nfd {
36
Yanbiao Li73860e32015-08-19 16:30:16 -070037/**
38 * @brief implement the Face Management of NFD Management Protocol.
Alexander Afanasyev635bf202017-03-09 21:57:34 +000039 * @sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
Yanbiao Li73860e32015-08-19 16:30:16 -070040 */
Yanbiao Lidf846e52016-01-30 21:53:47 -080041class FaceManager : public NfdManagerBase
Yanbiao Li73860e32015-08-19 16:30:16 -070042{
43public:
Junxiao Shiea47bde2017-01-26 17:49:16 +000044 FaceManager(FaceSystem& faceSystem,
45 Dispatcher& dispatcher, CommandAuthenticator& authenticator);
Yanbiao Li73860e32015-08-19 16:30:16 -070046
47 /**
48 * @brief Subscribe to face_system section for the config file
49 */
50 void
51 setConfigFile(ConfigFile& configFile);
52
53PUBLIC_WITH_TESTS_ELSE_PRIVATE: // ControlCommand
54 void
55 createFace(const Name& topPrefix, const Interest& interest,
56 const ControlParameters& parameters,
57 const ndn::mgmt::CommandContinuation& done);
58
59 void
Eric Newberryb5aa7f52016-09-03 20:36:12 -070060 updateFace(const Name& topPrefix, const Interest& interest,
61 const ControlParameters& parameters,
62 const ndn::mgmt::CommandContinuation& done);
63
64 void
Yanbiao Li73860e32015-08-19 16:30:16 -070065 destroyFace(const Name& topPrefix, const Interest& interest,
66 const ControlParameters& parameters,
67 const ndn::mgmt::CommandContinuation& done);
68
Yanbiao Li73860e32015-08-19 16:30:16 -070069PUBLIC_WITH_TESTS_ELSE_PRIVATE: // helpers for ControlCommand
70 void
Eric Newberry42602412016-08-27 09:33:18 -070071 afterCreateFaceSuccess(const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -070072 const shared_ptr<Face>& newFace,
73 const ndn::mgmt::CommandContinuation& done);
74
75 void
Eric Newberry42602412016-08-27 09:33:18 -070076 afterCreateFaceFailure(uint32_t status,
77 const std::string& reason,
Yanbiao Li73860e32015-08-19 16:30:16 -070078 const ndn::mgmt::CommandContinuation& done);
79
Eric Newberryb5aa7f52016-09-03 20:36:12 -070080 static void
81 setLinkServiceOptions(Face& face,
82 const ControlParameters& parameters,
83 ControlParameters& response);
84
Yanbiao Li58ba3f92017-02-15 14:27:18 +000085 static ControlParameters
86 collectFaceProperties(const Face& face);
87
Yanbiao Li73860e32015-08-19 16:30:16 -070088PUBLIC_WITH_TESTS_ELSE_PRIVATE: // StatusDataset
89 void
90 listFaces(const Name& topPrefix, const Interest& interest,
91 ndn::mgmt::StatusDatasetContext& context);
92
93 void
94 listChannels(const Name& topPrefix, const Interest& interest,
95 ndn::mgmt::StatusDatasetContext& context);
96
97 void
98 queryFaces(const Name& topPrefix, const Interest& interest,
99 ndn::mgmt::StatusDatasetContext& context);
100
101private: // helpers for StatusDataset handler
102 bool
Junxiao Shib84e6742016-07-19 13:16:22 +0000103 matchFilter(const ndn::nfd::FaceQueryFilter& filter, const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700104
Eric Newberryc64d30a2015-12-26 11:07:27 -0700105 /** \brief get status of face, including properties and counters
106 */
107 static ndn::nfd::FaceStatus
108 collectFaceStatus(const Face& face, const time::steady_clock::TimePoint& now);
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
Yanbiao Li73860e32015-08-19 16:30:16 -0700117private: // NotificationStream
118 void
Eric Newberry1b4ba052016-10-07 23:04:07 -0700119 notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind);
Yanbiao Li73860e32015-08-19 16:30:16 -0700120
121 void
Eric Newberry1b4ba052016-10-07 23:04:07 -0700122 connectFaceStateChangeSignal(const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700123
Yanbiao Li73860e32015-08-19 16:30:16 -0700124PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shiea47bde2017-01-26 17:49:16 +0000125 FaceSystem& m_faceSystem;
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700126 FaceTable& m_faceTable;
Eric Newberry1b4ba052016-10-07 23:04:07 -0700127 std::map<FaceId, signal::ScopedConnection> m_faceStateChangeConn;
Yanbiao Li73860e32015-08-19 16:30:16 -0700128
129private:
Junxiao Shiae04d342016-07-19 13:20:22 +0000130 ndn::mgmt::PostNotification m_postNotification;
Yanbiao Li73860e32015-08-19 16:30:16 -0700131 signal::ScopedConnection m_faceAddConn;
132 signal::ScopedConnection m_faceRemoveConn;
133};
134
135} // namespace nfd
136
137#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP