blob: c94fa10226a09de1952a658b5a4183841eee6ff6 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyeve289b532014-02-09 22:14:44 -08002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyeve289b532014-02-09 22:14:44 -080020 */
21
Alexander Afanasyev26c24d22014-03-20 09:31:21 -070022#ifndef NDN_MANAGEMENT_NFD_CONTROLLER_HPP
23#define NDN_MANAGEMENT_NFD_CONTROLLER_HPP
Alexander Afanasyeve289b532014-02-09 22:14:44 -080024
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070025#include "nfd-control-command.hpp"
26#include "../face.hpp"
Junxiao Shi70911652014-08-12 10:14:24 -070027#include "../security/key-chain.hpp"
Junxiao Shi5de006b2014-10-26 20:20:52 -070028#include "nfd-command-options.hpp"
Alexander Afanasyeve289b532014-02-09 22:14:44 -080029
30namespace ndn {
Alexander Afanasyeve289b532014-02-09 22:14:44 -080031namespace nfd {
32
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040033/**
Alexander Afanasyev197e5652014-06-13 16:56:31 -070034 * \defgroup management Management
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040035 * \brief Classes and data structures to manage NDN forwarder
36 */
37/**
38 * \ingroup management
39 * \brief NFD Management protocol - ControlCommand client
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070040 */
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -070041class Controller : noncopyable
Alexander Afanasyeve289b532014-02-09 22:14:44 -080042{
43public:
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070044 /** \brief a callback on command success
Alexander Afanasyeve289b532014-02-09 22:14:44 -080045 */
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070046 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 Shi70911652014-08-12 10:14:24 -070052 /** \brief a function to sign the request Interest
Junxiao Shi5de006b2014-10-26 20:20:52 -070053 * \deprecated arbitrary signing function is no longer supported
Yingdi Yue66bf2a2014-04-28 17:07:36 -070054 */
55 typedef function<void(Interest&)> Sign;
56
Junxiao Shi70911652014-08-12 10:14:24 -070057 /** \brief construct a Controller that uses face for transport,
58 * and has an internal default KeyChain to sign commands
Junxiao Shiedd834e2014-10-28 20:28:58 -070059 * \deprecated use two-parameter overload
Junxiao Shi70911652014-08-12 10:14:24 -070060 */
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070061 explicit
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080062 Controller(Face& face);
Alexander Afanasyeve289b532014-02-09 22:14:44 -080063
Junxiao Shi70911652014-08-12 10:14:24 -070064 /** \brief construct a Controller that uses face for transport,
65 * and uses the passed KeyChain to sign commands
66 */
67 Controller(Face& face, KeyChain& keyChain);
68
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070069 /** \brief start command execution
70 */
71 template<typename Command>
72 void
73 start(const ControlParameters& parameters,
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070074 const CommandSucceedCallback& onSuccess,
Junxiao Shi5c785d62014-04-20 18:10:20 -070075 const CommandFailCallback& onFailure,
Junxiao Shi5de006b2014-10-26 20:20:52 -070076 const CommandOptions& options = CommandOptions())
Yingdi Yue66bf2a2014-04-28 17:07:36 -070077 {
Junxiao Shi5de006b2014-10-26 20:20:52 -070078 shared_ptr<ControlCommand> command = make_shared<Command>();
79 this->startCommand(command, parameters, onSuccess, onFailure, options);
80 }
81
82 /** \brief start command execution
83 * \deprecated use the overload taking CommandOptions
84 */
85 template<typename Command>
86 void
87 start(const ControlParameters& parameters,
88 const CommandSucceedCallback& onSuccess,
89 const CommandFailCallback& onFailure,
90 const time::milliseconds& timeout)
91 {
92 CommandOptions options;
93 options.setTimeout(timeout);
94
95 this->start<Command>(parameters, onSuccess, onFailure, options);
Yingdi Yue66bf2a2014-04-28 17:07:36 -070096 }
97
Junxiao Shi70911652014-08-12 10:14:24 -070098 /** \brief start command execution
Alexander Afanasyev7e6fefc2014-10-20 12:31:55 -040099 * \param certificate the certificate used to sign request Interests.
100 * If IdentityCertificate() is passed, the default signing certificate will be used.
101 *
102 * \note IdentityCertificate() creates a certificate with an empty name, which is an
103 * invalid certificate. A valid IdentityCertificate has at least 4 name components,
104 * as it follows `<...>/KEY/<...>/<key-id>/ID-CERT/<version>` naming model.
Junxiao Shi5de006b2014-10-26 20:20:52 -0700105 *
106 * \deprecated use the overload taking CommandOptions
Junxiao Shi70911652014-08-12 10:14:24 -0700107 */
108 template<typename Command>
109 void
110 start(const ControlParameters& parameters,
111 const CommandSucceedCallback& onSuccess,
112 const CommandFailCallback& onFailure,
113 const IdentityCertificate& certificate,
114 const time::milliseconds& timeout = getDefaultCommandTimeout())
115 {
Junxiao Shi5de006b2014-10-26 20:20:52 -0700116 CommandOptions options;
Alexander Afanasyev7e6fefc2014-10-20 12:31:55 -0400117 if (certificate.getName().empty()) {
Junxiao Shi5de006b2014-10-26 20:20:52 -0700118 options.setSigningDefault();
Alexander Afanasyev7e6fefc2014-10-20 12:31:55 -0400119 }
120 else {
Junxiao Shi5de006b2014-10-26 20:20:52 -0700121 options.setSigningCertificate(certificate);
Alexander Afanasyev7e6fefc2014-10-20 12:31:55 -0400122 }
Junxiao Shi5de006b2014-10-26 20:20:52 -0700123 options.setTimeout(timeout);
124
125 this->start<Command>(parameters, onSuccess, onFailure, options);
Junxiao Shi70911652014-08-12 10:14:24 -0700126 }
127
128 /** \brief start command execution
129 * \param identity the identity used to sign request Interests
Junxiao Shi5de006b2014-10-26 20:20:52 -0700130 * \deprecated use the overload taking CommandOptions
Junxiao Shi70911652014-08-12 10:14:24 -0700131 */
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700132 template<typename Command>
133 void
134 start(const ControlParameters& parameters,
135 const CommandSucceedCallback& onSuccess,
136 const CommandFailCallback& onFailure,
137 const Name& identity,
138 const time::milliseconds& timeout = getDefaultCommandTimeout())
139 {
Junxiao Shi5de006b2014-10-26 20:20:52 -0700140 CommandOptions options;
141 options.setSigningIdentity(identity);
142 options.setTimeout(timeout);
143
144 this->start<Command>(parameters, onSuccess, onFailure, options);
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700145 }
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700146
Junxiao Shi70911652014-08-12 10:14:24 -0700147 /** \brief start command execution
148 * \param sign a function to sign request Interests
Junxiao Shi5de006b2014-10-26 20:20:52 -0700149 * \deprecated arbitrary signing function is no longer supported
Junxiao Shi70911652014-08-12 10:14:24 -0700150 */
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700151 template<typename Command>
152 void
153 start(const ControlParameters& parameters,
154 const CommandSucceedCallback& onSuccess,
155 const CommandFailCallback& onFailure,
156 const Sign& sign,
Junxiao Shi70911652014-08-12 10:14:24 -0700157 const time::milliseconds& timeout = getDefaultCommandTimeout())
158 {
159 shared_ptr<ControlCommand> command = make_shared<Command>();
160 this->startCommand(command, parameters, onSuccess, onFailure, sign, timeout);
161 }
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700162
Alexander Afanasyeve289b532014-02-09 22:14:44 -0800163private:
164 void
Junxiao Shi70911652014-08-12 10:14:24 -0700165 startCommand(const shared_ptr<ControlCommand>& command,
166 const ControlParameters& parameters,
167 const CommandSucceedCallback& onSuccess,
168 const CommandFailCallback& onFailure,
Junxiao Shi5de006b2014-10-26 20:20:52 -0700169 const CommandOptions& options);
170
171 /** \deprecated This is to support arbitrary signing function.
172 */
173 void
174 startCommand(const shared_ptr<ControlCommand>& command,
175 const ControlParameters& parameters,
176 const CommandSucceedCallback& onSuccess,
177 const CommandFailCallback& onFailure,
Junxiao Shi70911652014-08-12 10:14:24 -0700178 const Sign& sign,
179 const time::milliseconds& timeout);
180
181 void
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700182 processCommandResponse(const Data& data,
183 const shared_ptr<ControlCommand>& command,
184 const CommandSucceedCallback& onSuccess,
185 const CommandFailCallback& onFailure);
hilata7d160f22014-03-13 19:51:42 -0500186
Junxiao Shi5c785d62014-04-20 18:10:20 -0700187public:
Junxiao Shi5de006b2014-10-26 20:20:52 -0700188 /** \deprecated use CommandOptions::DEFAULT_TIMEOUT
189 */
Junxiao Shi5c785d62014-04-20 18:10:20 -0700190 static time::milliseconds
191 getDefaultCommandTimeout()
192 {
193 return time::milliseconds(10000);
194 }
195
Junxiao Shi5de006b2014-10-26 20:20:52 -0700196public:
197 /** \brief error code for timeout
198 * \note comes from http://msdn.microsoft.com/en-us/library/windows/desktop/ms740668.aspx
199 */
200 static const uint32_t ERROR_TIMEOUT;
201
202 /** \brief error code for server error
203 */
204 static const uint32_t ERROR_SERVER;
205
206 /** \brief inclusive lower bound of error codes
207 */
208 static const uint32_t ERROR_LBOUND;
209
hilataa99e37e2014-02-15 23:52:46 -0600210protected:
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800211 Face& m_face;
Junxiao Shiedd834e2014-10-28 20:28:58 -0700212
213 /** \deprecated
214 */
Junxiao Shi70911652014-08-12 10:14:24 -0700215 shared_ptr<KeyChain> m_internalKeyChain;
Junxiao Shiedd834e2014-10-28 20:28:58 -0700216
Junxiao Shi70911652014-08-12 10:14:24 -0700217 KeyChain& m_keyChain;
Alexander Afanasyeve289b532014-02-09 22:14:44 -0800218};
219
220} // namespace nfd
221} // namespace ndn
222
Alexander Afanasyev26c24d22014-03-20 09:31:21 -0700223#endif // NDN_MANAGEMENT_NFD_CONTROLLER_HPP