blob: 2c963b136cc40ae50e01ca28e45a609cdf318d51 [file] [log] [blame]
Yanbiao Li698f4fe2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento87fc0f82018-04-11 23:43:51 -04002/*
Davide Pesavento78ddcab2019-02-28 22:00:03 -05003 * Copyright (c) 2014-2019, Regents of the University of California,
Yanbiao Li698f4fe2015-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
Davide Pesavento78ddcab2019-02-28 22:00:03 -050026#ifndef NFD_DAEMON_MGMT_MANAGER_BASE_HPP
27#define NFD_DAEMON_MGMT_MANAGER_BASE_HPP
Yanbiao Li698f4fe2015-08-19 16:30:16 -070028
Davide Pesavento78ddcab2019-02-28 22:00:03 -050029#include "command-authenticator.hpp"
Yanbiao Li698f4fe2015-08-19 16:30:16 -070030
31#include <ndn-cxx/mgmt/dispatcher.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000032#include <ndn-cxx/mgmt/nfd/control-command.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000033#include <ndn-cxx/mgmt/nfd/control-parameters.hpp>
Davide Pesavento78ddcab2019-02-28 22:00:03 -050034#include <ndn-cxx/mgmt/nfd/control-response.hpp>
Yanbiao Li698f4fe2015-08-19 16:30:16 -070035
36namespace nfd {
37
38using ndn::mgmt::Dispatcher;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070039using ndn::nfd::ControlCommand;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070040using ndn::nfd::ControlParameters;
Davide Pesavento78ddcab2019-02-28 22:00:03 -050041using ndn::nfd::ControlResponse;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070042
43/**
Davide Pesavento78ddcab2019-02-28 22:00:03 -050044 * @brief A collection of common functions shared by all NFD managers,
Yanbiao Li698f4fe2015-08-19 16:30:16 -070045 * such as communicating with the dispatcher and command validator.
46 */
Yanbiao Lidf846e52016-01-30 21:53:47 -080047class ManagerBase : noncopyable
Yanbiao Li698f4fe2015-08-19 16:30:16 -070048{
49public:
50 class Error : public std::runtime_error
51 {
52 public:
Davide Pesavento78ddcab2019-02-28 22:00:03 -050053 using std::runtime_error::runtime_error;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070054 };
55
Davide Pesaventod396b612017-02-20 22:11:50 -050056 virtual
57 ~ManagerBase();
Yanbiao Li698f4fe2015-08-19 16:30:16 -070058
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000059 const std::string&
60 getModule() const
61 {
62 return m_module;
63 }
64
Davide Pesavento78ddcab2019-02-28 22:00:03 -050065protected:
66 /**
67 * @warning if you use this constructor, you MUST override makeAuthorization()
68 */
69 ManagerBase(const std::string& module, Dispatcher& dispatcher);
70
71 ManagerBase(const std::string& module, Dispatcher& dispatcher,
72 CommandAuthenticator& authenticator);
73
Yanbiao Li698f4fe2015-08-19 16:30:16 -070074PUBLIC_WITH_TESTS_ELSE_PROTECTED: // registrations to the dispatcher
Yanbiao Li698f4fe2015-08-19 16:30:16 -070075 // difference from mgmt::ControlCommand: accepts nfd::ControlParameters
Davide Pesavento87fc0f82018-04-11 23:43:51 -040076 using ControlCommandHandler = std::function<void(const ControlCommand& command,
77 const Name& prefix, const Interest& interest,
78 const ControlParameters& parameters,
79 const ndn::mgmt::CommandContinuation done)>;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070080
81 template<typename Command>
82 void
83 registerCommandHandler(const std::string& verb,
84 const ControlCommandHandler& handler);
85
86 void
87 registerStatusDatasetHandler(const std::string& verb,
88 const ndn::mgmt::StatusDatasetHandler& handler);
89
90 ndn::mgmt::PostNotification
91 registerNotificationStream(const std::string& verb);
92
Davide Pesavento78ddcab2019-02-28 22:00:03 -050093PUBLIC_WITH_TESTS_ELSE_PROTECTED: // helpers
Yanbiao Li698f4fe2015-08-19 16:30:16 -070094 /**
Davide Pesavento78ddcab2019-02-28 22:00:03 -050095 * @brief Extracts the requester from a ControlCommand request.
Yanbiao Li698f4fe2015-08-19 16:30:16 -070096 *
Davide Pesavento78ddcab2019-02-28 22:00:03 -050097 * This is called after the signature has been validated.
Yanbiao Li698f4fe2015-08-19 16:30:16 -070098 *
99 * @param interest a request for ControlCommand
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500100 * @param accept callback of successful validation, takes the requester string as a argument
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700101 */
102 void
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500103 extractRequester(const Interest& interest, ndn::mgmt::AcceptContinuation accept);
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700104
Junxiao Shi21738402016-08-19 19:48:00 +0000105PUBLIC_WITH_TESTS_ELSE_PRIVATE:
106 /**
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500107 * @brief Returns an authorization function for a specific management module and verb.
Junxiao Shi21738402016-08-19 19:48:00 +0000108 */
109 virtual ndn::mgmt::Authorization
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500110 makeAuthorization(const std::string& verb);
Junxiao Shi21738402016-08-19 19:48:00 +0000111
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700112 /**
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500113 * @brief Validates the @p parameters for a given @p command.
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700114 *
115 * @param parameters the original ControlParameters
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700116 * @return whether the original ControlParameters can be validated
117 */
118 static bool
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500119 validateParameters(const ControlCommand& command,
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700120 const ndn::mgmt::ControlParameters& parameters);
121
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500122 /**
123 * @brief Handles a control command.
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700124 */
125 static void
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500126 handleCommand(shared_ptr<ControlCommand> command,
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700127 const ControlCommandHandler& handler,
128 const Name& prefix, const Interest& interest,
129 const ndn::mgmt::ControlParameters& params,
130 ndn::mgmt::CommandContinuation done);
131
132 /**
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500133 * @brief Generates the relative prefix for a handler by appending the verb name to the module name.
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700134 *
135 * @param verb the verb name
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700136 * @return the generated relative prefix
137 */
138 PartialName
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500139 makeRelPrefix(const std::string& verb)
140 {
141 return PartialName(m_module).append(verb);
142 }
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700143
144private:
Junxiao Shi9ddf1b52016-08-22 03:58:55 +0000145 std::string m_module;
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500146 Dispatcher& m_dispatcher;
147 CommandAuthenticator* m_authenticator = nullptr;
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700148};
149
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700150template<typename Command>
151inline void
152ManagerBase::registerCommandHandler(const std::string& verb,
153 const ControlCommandHandler& handler)
154{
155 auto command = make_shared<Command>();
156
157 m_dispatcher.addControlCommand<ControlParameters>(
158 makeRelPrefix(verb),
Junxiao Shi21738402016-08-19 19:48:00 +0000159 makeAuthorization(verb),
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400160 bind(&ManagerBase::validateParameters, std::cref(*command), _1),
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700161 bind(&ManagerBase::handleCommand, command, handler, _1, _2, _3, _4));
162}
163
164} // namespace nfd
165
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500166#endif // NFD_DAEMON_MGMT_MANAGER_BASE_HPP