Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
Alexander Afanasyev | 26c24d2 | 2014-03-20 09:31:21 -0700 | [diff] [blame] | 22 | #ifndef NDN_MANAGEMENT_NFD_CONTROLLER_HPP |
| 23 | #define NDN_MANAGEMENT_NFD_CONTROLLER_HPP |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 24 | |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 25 | #include "nfd-control-command.hpp" |
| 26 | #include "../face.hpp" |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 27 | #include "../security/key-chain.hpp" |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 28 | #include "nfd-command-options.hpp" |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 29 | |
| 30 | namespace ndn { |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 31 | namespace nfd { |
| 32 | |
Alexander Afanasyev | 4671bf7 | 2014-05-19 09:01:37 -0400 | [diff] [blame] | 33 | /** |
Alexander Afanasyev | 197e565 | 2014-06-13 16:56:31 -0700 | [diff] [blame] | 34 | * \defgroup management Management |
Alexander Afanasyev | 4671bf7 | 2014-05-19 09:01:37 -0400 | [diff] [blame] | 35 | * \brief Classes and data structures to manage NDN forwarder |
| 36 | */ |
| 37 | /** |
| 38 | * \ingroup management |
| 39 | * \brief NFD Management protocol - ControlCommand client |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 40 | */ |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 41 | class Controller : noncopyable |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 42 | { |
| 43 | public: |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 44 | /** \brief a callback on command success |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 45 | */ |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 46 | typedef function<void(const ControlParameters&)> CommandSucceedCallback; |
| 47 | |
| 48 | /** \brief a callback on command failure |
| 49 | */ |
| 50 | typedef function<void(uint32_t/*code*/,const std::string&/*reason*/)> CommandFailCallback; |
| 51 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 52 | /** \brief a function to sign the request Interest |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 53 | * \deprecated arbitrary signing function is no longer supported |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 54 | */ |
| 55 | typedef function<void(Interest&)> Sign; |
| 56 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 57 | /** \brief construct a Controller that uses face for transport, |
| 58 | * and has an internal default KeyChain to sign commands |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 59 | * \deprecated use two-parameter overload |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 60 | */ |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 61 | DEPRECATED( |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 62 | explicit |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 63 | Controller(Face& face)); |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 64 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 65 | /** \brief construct a Controller that uses face for transport, |
| 66 | * and uses the passed KeyChain to sign commands |
| 67 | */ |
| 68 | Controller(Face& face, KeyChain& keyChain); |
| 69 | |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 70 | /** \brief start command execution |
| 71 | */ |
| 72 | template<typename Command> |
| 73 | void |
| 74 | start(const ControlParameters& parameters, |
Alexander Afanasyev | d1b5c41 | 2014-03-27 15:03:51 -0700 | [diff] [blame] | 75 | const CommandSucceedCallback& onSuccess, |
Junxiao Shi | 5c785d6 | 2014-04-20 18:10:20 -0700 | [diff] [blame] | 76 | const CommandFailCallback& onFailure, |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 77 | const CommandOptions& options = CommandOptions()) |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 78 | { |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 79 | shared_ptr<ControlCommand> command = make_shared<Command>(); |
| 80 | this->startCommand(command, parameters, onSuccess, onFailure, options); |
| 81 | } |
| 82 | |
| 83 | /** \brief start command execution |
| 84 | * \deprecated use the overload taking CommandOptions |
| 85 | */ |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 86 | DEPRECATED( |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 87 | template<typename Command> |
| 88 | void |
| 89 | start(const ControlParameters& parameters, |
| 90 | const CommandSucceedCallback& onSuccess, |
| 91 | const CommandFailCallback& onFailure, |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 92 | const time::milliseconds& timeout)); |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 93 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 94 | /** \brief start command execution |
Alexander Afanasyev | 7e6fefc | 2014-10-20 12:31:55 -0400 | [diff] [blame] | 95 | * \param certificate the certificate used to sign request Interests. |
| 96 | * If IdentityCertificate() is passed, the default signing certificate will be used. |
| 97 | * |
| 98 | * \note IdentityCertificate() creates a certificate with an empty name, which is an |
| 99 | * invalid certificate. A valid IdentityCertificate has at least 4 name components, |
| 100 | * as it follows `<...>/KEY/<...>/<key-id>/ID-CERT/<version>` naming model. |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 101 | * |
| 102 | * \deprecated use the overload taking CommandOptions |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 103 | */ |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 104 | DEPRECATED( |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 105 | template<typename Command> |
| 106 | void |
| 107 | start(const ControlParameters& parameters, |
| 108 | const CommandSucceedCallback& onSuccess, |
| 109 | const CommandFailCallback& onFailure, |
| 110 | const IdentityCertificate& certificate, |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 111 | const time::milliseconds& timeout = CommandOptions::DEFAULT_TIMEOUT)); |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 112 | |
| 113 | /** \brief start command execution |
| 114 | * \param identity the identity used to sign request Interests |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 115 | * \deprecated use the overload taking CommandOptions |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 116 | */ |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 117 | DEPRECATED( |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 118 | template<typename Command> |
| 119 | void |
| 120 | start(const ControlParameters& parameters, |
| 121 | const CommandSucceedCallback& onSuccess, |
| 122 | const CommandFailCallback& onFailure, |
| 123 | const Name& identity, |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 124 | const time::milliseconds& timeout = CommandOptions::DEFAULT_TIMEOUT)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 125 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 126 | /** \brief start command execution |
| 127 | * \param sign a function to sign request Interests |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 128 | * \deprecated arbitrary signing function is no longer supported |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 129 | */ |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 130 | DEPRECATED( |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 131 | template<typename Command> |
| 132 | void |
| 133 | start(const ControlParameters& parameters, |
| 134 | const CommandSucceedCallback& onSuccess, |
| 135 | const CommandFailCallback& onFailure, |
| 136 | const Sign& sign, |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 137 | const time::milliseconds& timeout = CommandOptions::DEFAULT_TIMEOUT)); |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 138 | |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 139 | private: |
| 140 | void |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 141 | startCommand(const shared_ptr<ControlCommand>& command, |
| 142 | const ControlParameters& parameters, |
| 143 | const CommandSucceedCallback& onSuccess, |
| 144 | const CommandFailCallback& onFailure, |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 145 | const CommandOptions& options); |
| 146 | |
| 147 | /** \deprecated This is to support arbitrary signing function. |
| 148 | */ |
| 149 | void |
| 150 | startCommand(const shared_ptr<ControlCommand>& command, |
| 151 | const ControlParameters& parameters, |
| 152 | const CommandSucceedCallback& onSuccess, |
| 153 | const CommandFailCallback& onFailure, |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 154 | const Sign& sign, |
| 155 | const time::milliseconds& timeout); |
| 156 | |
| 157 | void |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 158 | processCommandResponse(const Data& data, |
| 159 | const shared_ptr<ControlCommand>& command, |
| 160 | const CommandSucceedCallback& onSuccess, |
| 161 | const CommandFailCallback& onFailure); |
hilata | 7d160f2 | 2014-03-13 19:51:42 -0500 | [diff] [blame] | 162 | |
Junxiao Shi | 5c785d6 | 2014-04-20 18:10:20 -0700 | [diff] [blame] | 163 | public: |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 164 | /** \deprecated use CommandOptions::DEFAULT_TIMEOUT |
| 165 | */ |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 166 | DEPRECATED( |
Junxiao Shi | 5c785d6 | 2014-04-20 18:10:20 -0700 | [diff] [blame] | 167 | static time::milliseconds |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 168 | getDefaultCommandTimeout()); |
Junxiao Shi | 5c785d6 | 2014-04-20 18:10:20 -0700 | [diff] [blame] | 169 | |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 170 | public: |
| 171 | /** \brief error code for timeout |
| 172 | * \note comes from http://msdn.microsoft.com/en-us/library/windows/desktop/ms740668.aspx |
| 173 | */ |
| 174 | static const uint32_t ERROR_TIMEOUT; |
| 175 | |
| 176 | /** \brief error code for server error |
| 177 | */ |
| 178 | static const uint32_t ERROR_SERVER; |
| 179 | |
| 180 | /** \brief inclusive lower bound of error codes |
| 181 | */ |
| 182 | static const uint32_t ERROR_LBOUND; |
| 183 | |
hilata | a99e37e | 2014-02-15 23:52:46 -0600 | [diff] [blame] | 184 | protected: |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 185 | Face& m_face; |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 186 | |
| 187 | /** \deprecated |
| 188 | */ |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 189 | shared_ptr<KeyChain> m_internalKeyChain; |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 190 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 191 | KeyChain& m_keyChain; |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 192 | }; |
| 193 | |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 194 | |
| 195 | // deprecated methods |
| 196 | |
| 197 | template<typename Command> |
| 198 | inline void |
| 199 | Controller::start(const ControlParameters& parameters, |
| 200 | const CommandSucceedCallback& onSuccess, |
| 201 | const CommandFailCallback& onFailure, |
| 202 | const time::milliseconds& timeout) |
| 203 | { |
| 204 | CommandOptions options; |
| 205 | options.setTimeout(timeout); |
| 206 | |
| 207 | this->start<Command>(parameters, onSuccess, onFailure, options); |
| 208 | } |
| 209 | |
| 210 | template<typename Command> |
| 211 | inline void |
| 212 | Controller::start(const ControlParameters& parameters, |
| 213 | const CommandSucceedCallback& onSuccess, |
| 214 | const CommandFailCallback& onFailure, |
| 215 | const IdentityCertificate& certificate, |
| 216 | const time::milliseconds& timeout) |
| 217 | { |
| 218 | CommandOptions options; |
| 219 | if (certificate.getName().empty()) { |
| 220 | options.setSigningDefault(); |
| 221 | } |
| 222 | else { |
| 223 | options.setSigningCertificate(certificate); |
| 224 | } |
| 225 | options.setTimeout(timeout); |
| 226 | |
| 227 | this->start<Command>(parameters, onSuccess, onFailure, options); |
| 228 | } |
| 229 | |
| 230 | template<typename Command> |
| 231 | inline void |
| 232 | Controller::start(const ControlParameters& parameters, |
| 233 | const CommandSucceedCallback& onSuccess, |
| 234 | const CommandFailCallback& onFailure, |
| 235 | const Name& identity, |
| 236 | const time::milliseconds& timeout) |
| 237 | { |
| 238 | CommandOptions options; |
| 239 | options.setSigningIdentity(identity); |
| 240 | options.setTimeout(timeout); |
| 241 | |
| 242 | this->start<Command>(parameters, onSuccess, onFailure, options); |
| 243 | } |
| 244 | |
| 245 | template<typename Command> |
| 246 | inline void |
| 247 | Controller::start(const ControlParameters& parameters, |
| 248 | const CommandSucceedCallback& onSuccess, |
| 249 | const CommandFailCallback& onFailure, |
| 250 | const Sign& sign, |
| 251 | const time::milliseconds& timeout) |
| 252 | { |
| 253 | shared_ptr<ControlCommand> command = make_shared<Command>(); |
| 254 | this->startCommand(command, parameters, onSuccess, onFailure, sign, timeout); |
| 255 | } |
| 256 | |
| 257 | inline time::milliseconds |
| 258 | Controller::getDefaultCommandTimeout() |
| 259 | { |
| 260 | return CommandOptions::DEFAULT_TIMEOUT; |
| 261 | } |
| 262 | |
| 263 | |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 264 | } // namespace nfd |
| 265 | } // namespace ndn |
| 266 | |
Alexander Afanasyev | 26c24d2 | 2014-03-20 09:31:21 -0700 | [diff] [blame] | 267 | #endif // NDN_MANAGEMENT_NFD_CONTROLLER_HPP |