face-manager.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2019, 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"
30 #include "face/face-system.hpp"
31 
32 namespace nfd {
33 
38 class FaceManager : public ManagerBase
39 {
40 public:
41  FaceManager(FaceSystem& faceSystem,
42  Dispatcher& dispatcher, CommandAuthenticator& authenticator);
43 
44 private: // ControlCommand
45  void
46  createFace(const ControlParameters& parameters,
47  const ndn::mgmt::CommandContinuation& done);
48 
49  void
50  updateFace(const Interest& interest,
51  const ControlParameters& parameters,
52  const ndn::mgmt::CommandContinuation& done);
53 
54  void
55  destroyFace(const ControlParameters& parameters,
56  const ndn::mgmt::CommandContinuation& done);
57 
58 private: // helpers for ControlCommand
59  void
60  afterCreateFaceSuccess(const shared_ptr<Face>& face,
61  const ControlParameters& parameters,
62  const ndn::mgmt::CommandContinuation& done);
63 
64 private: // StatusDataset
65  void
66  listFaces(ndn::mgmt::StatusDatasetContext& context);
67 
68  void
69  listChannels(ndn::mgmt::StatusDatasetContext& context);
70 
71  void
72  queryFaces(const Interest& interest, ndn::mgmt::StatusDatasetContext& context);
73 
74 private: // NotificationStream
75  void
76  notifyFaceEvent(const Face& face, ndn::nfd::FaceEventKind kind);
77 
78  void
79  connectFaceStateChangeSignal(const Face& face);
80 
81 private:
82  FaceSystem& m_faceSystem;
83  FaceTable& m_faceTable;
84  ndn::mgmt::PostNotification m_postNotification;
85  signal::ScopedConnection m_faceAddConn;
86  signal::ScopedConnection m_faceRemoveConn;
87 
89  std::map<FaceId, signal::ScopedConnection> m_faceStateChangeConn;
90 };
91 
92 } // namespace nfd
93 
94 #endif // NFD_DAEMON_MGMT_FACE_MANAGER_HPP
container of all faces
Definition: face-table.hpp:37
Implements the Face Management of NFD Management Protocol.
FaceManager(FaceSystem &faceSystem, Dispatcher &dispatcher, CommandAuthenticator &authenticator)
Provides ControlCommand authorization according to NFD configuration file.
A collection of common functions shared by all NFD managers, such as communicating with the dispatche...
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
Definition: algorithm.hpp:32
#define PUBLIC_WITH_TESTS_ELSE_PRIVATE
Definition: common.hpp:41