blob: f5eff7c075d3dd2aa44753f3f1d52eaf3c37582c [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"
Alexander Afanasyeve289b532014-02-09 22:14:44 -080028
29namespace ndn {
Alexander Afanasyeve289b532014-02-09 22:14:44 -080030namespace nfd {
31
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040032/**
Alexander Afanasyev197e5652014-06-13 16:56:31 -070033 * \defgroup management Management
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040034 * \brief Classes and data structures to manage NDN forwarder
35 */
36/**
37 * \ingroup management
38 * \brief NFD Management protocol - ControlCommand client
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070039 */
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -070040class Controller : noncopyable
Alexander Afanasyeve289b532014-02-09 22:14:44 -080041{
42public:
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070043 /** \brief a callback on command success
Alexander Afanasyeve289b532014-02-09 22:14:44 -080044 */
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070045 typedef function<void(const ControlParameters&)> CommandSucceedCallback;
46
47 /** \brief a callback on command failure
48 */
49 typedef function<void(uint32_t/*code*/,const std::string&/*reason*/)> CommandFailCallback;
50
Junxiao Shi70911652014-08-12 10:14:24 -070051 /** \brief a function to sign the request Interest
Yingdi Yue66bf2a2014-04-28 17:07:36 -070052 */
53 typedef function<void(Interest&)> Sign;
54
Junxiao Shi70911652014-08-12 10:14:24 -070055 /** \brief construct a Controller that uses face for transport,
56 * and has an internal default KeyChain to sign commands
57 */
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070058 explicit
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080059 Controller(Face& face);
Alexander Afanasyeve289b532014-02-09 22:14:44 -080060
Junxiao Shi70911652014-08-12 10:14:24 -070061 /** \brief construct a Controller that uses face for transport,
62 * and uses the passed KeyChain to sign commands
63 */
64 Controller(Face& face, KeyChain& keyChain);
65
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070066 /** \brief start command execution
67 */
68 template<typename Command>
69 void
70 start(const ControlParameters& parameters,
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070071 const CommandSucceedCallback& onSuccess,
Junxiao Shi5c785d62014-04-20 18:10:20 -070072 const CommandFailCallback& onFailure,
Yingdi Yue66bf2a2014-04-28 17:07:36 -070073 const time::milliseconds& timeout = getDefaultCommandTimeout())
74 {
75 start<Command>(parameters, onSuccess, onFailure,
Junxiao Shi70911652014-08-12 10:14:24 -070076 bind(&KeyChain::sign<Interest>, &m_keyChain, _1),
Yingdi Yue66bf2a2014-04-28 17:07:36 -070077 timeout);
78 }
79
Junxiao Shi70911652014-08-12 10:14:24 -070080 /** \brief start command execution
Alexander Afanasyev7e6fefc2014-10-20 12:31:55 -040081 * \param certificate the certificate used to sign request Interests.
82 * If IdentityCertificate() is passed, the default signing certificate will be used.
83 *
84 * \note IdentityCertificate() creates a certificate with an empty name, which is an
85 * invalid certificate. A valid IdentityCertificate has at least 4 name components,
86 * as it follows `<...>/KEY/<...>/<key-id>/ID-CERT/<version>` naming model.
Junxiao Shi70911652014-08-12 10:14:24 -070087 */
88 template<typename Command>
89 void
90 start(const ControlParameters& parameters,
91 const CommandSucceedCallback& onSuccess,
92 const CommandFailCallback& onFailure,
93 const IdentityCertificate& certificate,
94 const time::milliseconds& timeout = getDefaultCommandTimeout())
95 {
Alexander Afanasyev7e6fefc2014-10-20 12:31:55 -040096 if (certificate.getName().empty()) {
97 start<Command>(parameters, onSuccess, onFailure, timeout);
98 }
99 else {
100 start<Command>(parameters, onSuccess, onFailure,
101 bind(static_cast<void(KeyChain::*)(Interest&,const Name&)>(&KeyChain::sign<Interest>),
102 &m_keyChain, _1, cref(certificate.getName())),
103 timeout);
104 }
Junxiao Shi70911652014-08-12 10:14:24 -0700105 }
106
107 /** \brief start command execution
108 * \param identity the identity used to sign request Interests
109 */
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700110 template<typename Command>
111 void
112 start(const ControlParameters& parameters,
113 const CommandSucceedCallback& onSuccess,
114 const CommandFailCallback& onFailure,
115 const Name& identity,
116 const time::milliseconds& timeout = getDefaultCommandTimeout())
117 {
118 start<Command>(parameters, onSuccess, onFailure,
Junxiao Shi70911652014-08-12 10:14:24 -0700119 bind(&KeyChain::signByIdentity<Interest>, &m_keyChain, _1, cref(identity)),
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700120 timeout);
121 }
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700122
Junxiao Shi70911652014-08-12 10:14:24 -0700123 /** \brief start command execution
124 * \param sign a function to sign request Interests
125 */
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700126 template<typename Command>
127 void
128 start(const ControlParameters& parameters,
129 const CommandSucceedCallback& onSuccess,
130 const CommandFailCallback& onFailure,
131 const Sign& sign,
Junxiao Shi70911652014-08-12 10:14:24 -0700132 const time::milliseconds& timeout = getDefaultCommandTimeout())
133 {
134 shared_ptr<ControlCommand> command = make_shared<Command>();
135 this->startCommand(command, parameters, onSuccess, onFailure, sign, timeout);
136 }
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700137
Alexander Afanasyeve289b532014-02-09 22:14:44 -0800138private:
139 void
Junxiao Shi70911652014-08-12 10:14:24 -0700140 startCommand(const shared_ptr<ControlCommand>& command,
141 const ControlParameters& parameters,
142 const CommandSucceedCallback& onSuccess,
143 const CommandFailCallback& onFailure,
144 const Sign& sign,
145 const time::milliseconds& timeout);
146
147 void
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700148 processCommandResponse(const Data& data,
149 const shared_ptr<ControlCommand>& command,
150 const CommandSucceedCallback& onSuccess,
151 const CommandFailCallback& onFailure);
hilata7d160f22014-03-13 19:51:42 -0500152
Junxiao Shi5c785d62014-04-20 18:10:20 -0700153public:
154 static time::milliseconds
155 getDefaultCommandTimeout()
156 {
157 return time::milliseconds(10000);
158 }
159
hilataa99e37e2014-02-15 23:52:46 -0600160protected:
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800161 Face& m_face;
Junxiao Shi70911652014-08-12 10:14:24 -0700162 shared_ptr<KeyChain> m_internalKeyChain;
163 KeyChain& m_keyChain;
Alexander Afanasyeve289b532014-02-09 22:14:44 -0800164};
165
166} // namespace nfd
167} // namespace ndn
168
Alexander Afanasyev26c24d22014-03-20 09:31:21 -0700169#endif // NDN_MANAGEMENT_NFD_CONTROLLER_HPP