blob: e50b85814fa87810f6f53cf9d98cc31e63c09030 [file] [log] [blame]
Yanbiao Li73860e32015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry2642cd22017-07-13 21:34:53 -04002/*
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,
Eric Newberry2642cd22017-07-13 21:34:53 -040082 const ControlParameters& parameters);
Eric Newberryb5aa7f52016-09-03 20:36:12 -070083
Yanbiao Li58ba3f92017-02-15 14:27:18 +000084 static ControlParameters
Junxiao Shi1cce2a32017-05-02 02:39:55 +000085 collectFaceProperties(const Face& face, bool wantUris);
Yanbiao Li58ba3f92017-02-15 14:27:18 +000086
Yanbiao Li73860e32015-08-19 16:30:16 -070087PUBLIC_WITH_TESTS_ELSE_PRIVATE: // StatusDataset
88 void
89 listFaces(const Name& topPrefix, const Interest& interest,
90 ndn::mgmt::StatusDatasetContext& context);
91
92 void
93 listChannels(const Name& topPrefix, const Interest& interest,
94 ndn::mgmt::StatusDatasetContext& context);
95
96 void
97 queryFaces(const Name& topPrefix, const Interest& interest,
98 ndn::mgmt::StatusDatasetContext& context);
99
100private: // helpers for StatusDataset handler
101 bool
Junxiao Shib84e6742016-07-19 13:16:22 +0000102 matchFilter(const ndn::nfd::FaceQueryFilter& filter, const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700103
Eric Newberryc64d30a2015-12-26 11:07:27 -0700104 /** \brief get status of face, including properties and counters
105 */
106 static ndn::nfd::FaceStatus
107 collectFaceStatus(const Face& face, const time::steady_clock::TimePoint& now);
108
Junxiao Shida93f1f2015-11-11 06:13:16 -0700109 /** \brief copy face properties into traits
110 * \tparam FaceTraits either FaceStatus or FaceEventNotification
111 */
112 template<typename FaceTraits>
113 static void
114 collectFaceProperties(const Face& face, FaceTraits& traits);
115
Yanbiao Li73860e32015-08-19 16:30:16 -0700116private: // NotificationStream
117 void
Eric Newberry1b4ba052016-10-07 23:04:07 -0700118 notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind);
Yanbiao Li73860e32015-08-19 16:30:16 -0700119
120 void
Eric Newberry1b4ba052016-10-07 23:04:07 -0700121 connectFaceStateChangeSignal(const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -0700122
Davide Pesaventob5eee202017-09-21 23:59:22 -0400123private:
Junxiao Shiea47bde2017-01-26 17:49:16 +0000124 FaceSystem& m_faceSystem;
Eric Newberryb5aa7f52016-09-03 20:36:12 -0700125 FaceTable& m_faceTable;
Davide Pesaventob5eee202017-09-21 23:59:22 -0400126
127PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Eric Newberry1b4ba052016-10-07 23:04:07 -0700128 std::map<FaceId, signal::ScopedConnection> m_faceStateChangeConn;
Yanbiao Li73860e32015-08-19 16:30:16 -0700129
130private:
Junxiao Shiae04d342016-07-19 13:20:22 +0000131 ndn::mgmt::PostNotification m_postNotification;
Yanbiao Li73860e32015-08-19 16:30:16 -0700132 signal::ScopedConnection m_faceAddConn;
133 signal::ScopedConnection m_faceRemoveConn;
134};
135
136} // namespace nfd
137
138#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP