blob: 620ab99ece38ad5471e1d37ca0f4c4a986dc51ee [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/*
Davide Pesavento78ddcab2019-02-28 22:00:03 -05003 * Copyright (c) 2014-2019, 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
Davide Pesavento78ddcab2019-02-28 22:00:03 -050029#include "manager-base.hpp"
Junxiao Shib8590312016-12-29 21:22:25 +000030#include "face/face-system.hpp"
Davide Pesaventocfb1a312018-03-01 01:30:56 -050031
Yanbiao Li73860e32015-08-19 16:30:16 -070032namespace nfd {
33
Yanbiao Li73860e32015-08-19 16:30:16 -070034/**
Davide Pesavento78ddcab2019-02-28 22:00:03 -050035 * @brief Implements the Face Management of NFD Management Protocol.
Alexander Afanasyev635bf202017-03-09 21:57:34 +000036 * @sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
Yanbiao Li73860e32015-08-19 16:30:16 -070037 */
Davide Pesavento78ddcab2019-02-28 22:00:03 -050038class FaceManager : public ManagerBase
Yanbiao Li73860e32015-08-19 16:30:16 -070039{
40public:
Junxiao Shiea47bde2017-01-26 17:49:16 +000041 FaceManager(FaceSystem& faceSystem,
Davide Pesavento78ddcab2019-02-28 22:00:03 -050042 Dispatcher& dispatcher, CommandAuthenticator& authenticator);
Yanbiao Li73860e32015-08-19 16:30:16 -070043
Davide Pesavento28181322018-11-08 16:44:50 -050044private: // ControlCommand
Yanbiao Li73860e32015-08-19 16:30:16 -070045 void
Davide Pesavento28181322018-11-08 16:44:50 -050046 createFace(const ControlParameters& parameters,
47 const ndn::mgmt::CommandContinuation& done);
48
49 void
50 updateFace(const Interest& interest,
Yanbiao Li73860e32015-08-19 16:30:16 -070051 const ControlParameters& parameters,
52 const ndn::mgmt::CommandContinuation& done);
53
54 void
Davide Pesavento28181322018-11-08 16:44:50 -050055 destroyFace(const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -070056 const ndn::mgmt::CommandContinuation& done);
57
Davide Pesavento28181322018-11-08 16:44:50 -050058private: // helpers for ControlCommand
Yanbiao Li73860e32015-08-19 16:30:16 -070059 void
Davide Pesavento28181322018-11-08 16:44:50 -050060 afterCreateFaceSuccess(const shared_ptr<Face>& face,
61 const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -070062 const ndn::mgmt::CommandContinuation& done);
63
Davide Pesavento28181322018-11-08 16:44:50 -050064private: // StatusDataset
Yanbiao Li73860e32015-08-19 16:30:16 -070065 void
Davide Pesavento28181322018-11-08 16:44:50 -050066 listFaces(ndn::mgmt::StatusDatasetContext& context);
Yanbiao Li73860e32015-08-19 16:30:16 -070067
68 void
Davide Pesavento28181322018-11-08 16:44:50 -050069 listChannels(ndn::mgmt::StatusDatasetContext& context);
Yanbiao Li73860e32015-08-19 16:30:16 -070070
71 void
Davide Pesavento28181322018-11-08 16:44:50 -050072 queryFaces(const Interest& interest, ndn::mgmt::StatusDatasetContext& context);
Junxiao Shida93f1f2015-11-11 06:13:16 -070073
Yanbiao Li73860e32015-08-19 16:30:16 -070074private: // NotificationStream
75 void
Eric Newberry1b4ba052016-10-07 23:04:07 -070076 notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind);
Yanbiao Li73860e32015-08-19 16:30:16 -070077
78 void
Eric Newberry1b4ba052016-10-07 23:04:07 -070079 connectFaceStateChangeSignal(const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -070080
Davide Pesaventob5eee202017-09-21 23:59:22 -040081private:
Junxiao Shiea47bde2017-01-26 17:49:16 +000082 FaceSystem& m_faceSystem;
Eric Newberryb5aa7f52016-09-03 20:36:12 -070083 FaceTable& m_faceTable;
Junxiao Shiae04d342016-07-19 13:20:22 +000084 ndn::mgmt::PostNotification m_postNotification;
Yanbiao Li73860e32015-08-19 16:30:16 -070085 signal::ScopedConnection m_faceAddConn;
86 signal::ScopedConnection m_faceRemoveConn;
Davide Pesavento3cf75dc2018-03-17 00:38:03 -040087
88PUBLIC_WITH_TESTS_ELSE_PRIVATE:
89 std::map<FaceId, signal::ScopedConnection> m_faceStateChangeConn;
Yanbiao Li73860e32015-08-19 16:30:16 -070090};
91
92} // namespace nfd
93
94#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP