blob: 778e824d93dde7e87b0de08fc5077956b0080a73 [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 Pesaventocfb1a312018-03-01 01:30:56 -05003 * Copyright (c) 2014-2018, 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"
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/**
35 * @brief implement 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 */
Yanbiao Lidf846e52016-01-30 21:53:47 -080038class FaceManager : public NfdManagerBase
Yanbiao Li73860e32015-08-19 16:30:16 -070039{
40public:
Junxiao Shiea47bde2017-01-26 17:49:16 +000041 FaceManager(FaceSystem& faceSystem,
Davide Pesaventocfb1a312018-03-01 01:30:56 -050042 Dispatcher& dispatcher,
43 CommandAuthenticator& authenticator);
Yanbiao Li73860e32015-08-19 16:30:16 -070044
Davide Pesavento28181322018-11-08 16:44:50 -050045private: // ControlCommand
Yanbiao Li73860e32015-08-19 16:30:16 -070046 void
Davide Pesavento28181322018-11-08 16:44:50 -050047 createFace(const ControlParameters& parameters,
48 const ndn::mgmt::CommandContinuation& done);
49
50 void
51 updateFace(const Interest& interest,
Yanbiao Li73860e32015-08-19 16:30:16 -070052 const ControlParameters& parameters,
53 const ndn::mgmt::CommandContinuation& done);
54
55 void
Davide Pesavento28181322018-11-08 16:44:50 -050056 destroyFace(const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -070057 const ndn::mgmt::CommandContinuation& done);
58
Davide Pesavento28181322018-11-08 16:44:50 -050059private: // helpers for ControlCommand
Yanbiao Li73860e32015-08-19 16:30:16 -070060 void
Davide Pesavento28181322018-11-08 16:44:50 -050061 afterCreateFaceSuccess(const shared_ptr<Face>& face,
62 const ControlParameters& parameters,
Yanbiao Li73860e32015-08-19 16:30:16 -070063 const ndn::mgmt::CommandContinuation& done);
64
Davide Pesavento28181322018-11-08 16:44:50 -050065private: // StatusDataset
Yanbiao Li73860e32015-08-19 16:30:16 -070066 void
Davide Pesavento28181322018-11-08 16:44:50 -050067 listFaces(ndn::mgmt::StatusDatasetContext& context);
Yanbiao Li73860e32015-08-19 16:30:16 -070068
69 void
Davide Pesavento28181322018-11-08 16:44:50 -050070 listChannels(ndn::mgmt::StatusDatasetContext& context);
Yanbiao Li73860e32015-08-19 16:30:16 -070071
72 void
Davide Pesavento28181322018-11-08 16:44:50 -050073 queryFaces(const Interest& interest, ndn::mgmt::StatusDatasetContext& context);
Junxiao Shida93f1f2015-11-11 06:13:16 -070074
Yanbiao Li73860e32015-08-19 16:30:16 -070075private: // NotificationStream
76 void
Eric Newberry1b4ba052016-10-07 23:04:07 -070077 notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind);
Yanbiao Li73860e32015-08-19 16:30:16 -070078
79 void
Eric Newberry1b4ba052016-10-07 23:04:07 -070080 connectFaceStateChangeSignal(const Face& face);
Yanbiao Li73860e32015-08-19 16:30:16 -070081
Davide Pesaventob5eee202017-09-21 23:59:22 -040082private:
Junxiao Shiea47bde2017-01-26 17:49:16 +000083 FaceSystem& m_faceSystem;
Eric Newberryb5aa7f52016-09-03 20:36:12 -070084 FaceTable& m_faceTable;
Junxiao Shiae04d342016-07-19 13:20:22 +000085 ndn::mgmt::PostNotification m_postNotification;
Yanbiao Li73860e32015-08-19 16:30:16 -070086 signal::ScopedConnection m_faceAddConn;
87 signal::ScopedConnection m_faceRemoveConn;
Davide Pesavento3cf75dc2018-03-17 00:38:03 -040088
89PUBLIC_WITH_TESTS_ELSE_PRIVATE:
90 std::map<FaceId, signal::ScopedConnection> m_faceStateChangeConn;
Yanbiao Li73860e32015-08-19 16:30:16 -070091};
92
93} // namespace nfd
94
95#endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP