manager-base.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2024, 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_MANAGER_BASE_HPP
27 #define NFD_DAEMON_MGMT_MANAGER_BASE_HPP
28 
30 
31 #include <ndn-cxx/mgmt/dispatcher.hpp>
32 #include <ndn-cxx/mgmt/nfd/control-command.hpp>
33 #include <ndn-cxx/mgmt/nfd/control-parameters.hpp>
34 #include <ndn-cxx/mgmt/nfd/control-response.hpp>
35 
36 #include <functional>
37 
38 namespace nfd {
39 
40 using ndn::mgmt::Dispatcher;
41 using ndn::nfd::ControlCommand;
42 using ndn::nfd::ControlParameters;
43 using ndn::nfd::ControlResponse;
44 
49 class ManagerBase : noncopyable
50 {
51 public:
52  class Error : public std::runtime_error
53  {
54  public:
55  using std::runtime_error::runtime_error;
56  };
57 
58  const std::string&
59  getModule() const
60  {
61  return m_module;
62  }
63 
64 protected:
68  ManagerBase(std::string_view module, Dispatcher& dispatcher);
69 
70  ManagerBase(std::string_view module, Dispatcher& dispatcher,
71  CommandAuthenticator& authenticator);
72 
73  // ManagerBase is not supposed to be used polymorphically, so we make the destructor
74  // protected to prevent deletion of derived objects through a pointer to the base class,
75  // which would be UB when the destructor is non-virtual.
77 
78 NFD_PUBLIC_WITH_TESTS_ELSE_PROTECTED: // registrations to the dispatcher
79  // difference from mgmt::ControlCommand: accepts nfd::ControlParameters
80  using ControlCommandHandler = std::function<void(const ControlCommand& command,
81  const Name& prefix, const Interest& interest,
82  const ControlParameters& parameters,
83  const ndn::mgmt::CommandContinuation done)>;
84 
85  template<typename Command>
86  void
87  registerCommandHandler(const std::string& verb,
88  const ControlCommandHandler& handler);
89 
90  void
91  registerStatusDatasetHandler(const std::string& verb,
92  const ndn::mgmt::StatusDatasetHandler& handler);
93 
94  ndn::mgmt::PostNotification
95  registerNotificationStream(const std::string& verb);
96 
104  static std::string
105  extractSigner(const Interest& interest);
106 
111  virtual ndn::mgmt::Authorization
112  makeAuthorization(const std::string& verb);
113 
120  [[nodiscard]] static bool
121  validateParameters(const ControlCommand& command,
122  const ndn::mgmt::ControlParameters& parameters);
123 
127  static void
128  handleCommand(shared_ptr<ControlCommand> command,
129  const ControlCommandHandler& handler,
130  const Name& prefix, const Interest& interest,
131  const ndn::mgmt::ControlParameters& params,
132  const ndn::mgmt::CommandContinuation& done);
133 
140  PartialName
141  makeRelPrefix(const std::string& verb)
142  {
143  return PartialName(m_module).append(verb);
144  }
145 
146 private:
147  std::string m_module;
148  Dispatcher& m_dispatcher;
149  CommandAuthenticator* m_authenticator = nullptr;
150 };
151 
152 template<typename Command>
153 void
154 ManagerBase::registerCommandHandler(const std::string& verb,
155  const ControlCommandHandler& handler)
156 {
157  auto command = make_shared<Command>();
158 
159  m_dispatcher.addControlCommand<ControlParameters>(
160  makeRelPrefix(verb),
161  makeAuthorization(verb),
162  [=] (const auto& params) { return validateParameters(*command, params); },
163  [=] (auto&&... args) { handleCommand(command, handler, std::forward<decltype(args)>(args)...); });
164 }
165 
166 } // namespace nfd
167 
168 #endif // NFD_DAEMON_MGMT_MANAGER_BASE_HPP
Provides ControlCommand authorization according to NFD's configuration file.
A collection of common functions shared by all NFD managers, such as communicating with the dispatche...
const std::string & getModule() const
ndn::mgmt::PostNotification registerNotificationStream(const std::string &verb)
std::function< void(const ControlCommand &command, const Name &prefix, const Interest &interest, const ControlParameters &parameters, const ndn::mgmt::CommandContinuation done)> ControlCommandHandler
void registerStatusDatasetHandler(const std::string &verb, const ndn::mgmt::StatusDatasetHandler &handler)
void registerCommandHandler(const std::string &verb, const ControlCommandHandler &handler)
static std::string extractSigner(const Interest &interest)
Extracts the name from the KeyLocator of a ControlCommand request.
ManagerBase(std::string_view module, Dispatcher &dispatcher)
#define NFD_PUBLIC_WITH_TESTS_ELSE_PROTECTED
Definition: common.hpp:40
#define NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE
Definition: common.hpp:41
-status-http-server
Definition: common.hpp:71