blob: 5f2f1331edc52ff5aef740770d8e6e5f85a489e4 [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 Afanasyeve289b532014-02-09 22:14:44 -080022#include "nfd-controller.hpp"
Alexander Afanasyeve289b532014-02-09 22:14:44 -080023#include "nfd-control-response.hpp"
24
25namespace ndn {
26namespace nfd {
27
Junxiao Shi5de006b2014-10-26 20:20:52 -070028const uint32_t Controller::ERROR_TIMEOUT = 10060;
29const uint32_t Controller::ERROR_SERVER = 500;
30const uint32_t Controller::ERROR_LBOUND = 400;
31
Junxiao Shi70911652014-08-12 10:14:24 -070032Controller::Controller(Face& face, KeyChain& keyChain)
33 : m_face(face)
34 , m_keyChain(keyChain)
35{
36}
37
38void
39Controller::startCommand(const shared_ptr<ControlCommand>& command,
40 const ControlParameters& parameters,
41 const CommandSucceedCallback& onSuccess,
42 const CommandFailCallback& onFailure,
Junxiao Shi5de006b2014-10-26 20:20:52 -070043 const CommandOptions& options)
44{
45 Name requestName = command->getRequestName(options.getPrefix(), parameters);
46 Interest interest(requestName);
47 interest.setInterestLifetime(options.getTimeout());
48
49 switch (options.getSigningParamsKind()) {
50 case CommandOptions::SIGNING_PARAMS_DEFAULT:
51 m_keyChain.sign(interest);
52 break;
53 case CommandOptions::SIGNING_PARAMS_IDENTITY:
Yingdi Yu1b0311c2015-06-10 14:58:47 -070054 m_keyChain.sign(interest, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID,
55 options.getSigningIdentity()));
Junxiao Shi5de006b2014-10-26 20:20:52 -070056 break;
57 case CommandOptions::SIGNING_PARAMS_CERTIFICATE:
Yingdi Yu1b0311c2015-06-10 14:58:47 -070058 m_keyChain.sign(interest, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_CERT,
59 options.getSigningCertificate()));
Junxiao Shi5de006b2014-10-26 20:20:52 -070060 break;
61 default:
62 BOOST_ASSERT(false);
63 break;
64 }
65
66 m_face.expressInterest(interest,
67 bind(&Controller::processCommandResponse, this, _2,
68 command, onSuccess, onFailure),
69 bind(onFailure, ERROR_TIMEOUT, "request timed out"));
70}
71
72void
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070073Controller::processCommandResponse(const Data& data,
74 const shared_ptr<ControlCommand>& command,
75 const CommandSucceedCallback& onSuccess,
76 const CommandFailCallback& onFailure)
77{
78 /// \todo verify Data signature
79
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070080 ControlResponse response;
81 try {
82 response.wireDecode(data.getContent().blockFromValue());
83 }
Junxiao Shi5de006b2014-10-26 20:20:52 -070084 catch (tlv::Error& e) {
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070085 if (static_cast<bool>(onFailure))
Junxiao Shi5de006b2014-10-26 20:20:52 -070086 onFailure(ERROR_SERVER, e.what());
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070087 return;
88 }
89
90 uint32_t code = response.getCode();
Junxiao Shi5de006b2014-10-26 20:20:52 -070091 if (code >= ERROR_LBOUND) {
Junxiao Shi7b6b79d2014-03-26 20:59:35 -070092 if (static_cast<bool>(onFailure))
93 onFailure(code, response.getText());
94 return;
95 }
96
97 ControlParameters parameters;
98 try {
99 parameters.wireDecode(response.getBody());
100 }
Junxiao Shi5de006b2014-10-26 20:20:52 -0700101 catch (tlv::Error& e) {
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700102 if (static_cast<bool>(onFailure))
Junxiao Shi5de006b2014-10-26 20:20:52 -0700103 onFailure(ERROR_SERVER, e.what());
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700104 return;
105 }
106
107 try {
108 command->validateResponse(parameters);
109 }
110 catch (ControlCommand::ArgumentError& e) {
111 if (static_cast<bool>(onFailure))
Junxiao Shi5de006b2014-10-26 20:20:52 -0700112 onFailure(ERROR_SERVER, e.what());
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700113 return;
114 }
115
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700116 if (static_cast<bool>(onSuccess))
117 onSuccess(parameters);
Junxiao Shi7b6b79d2014-03-26 20:59:35 -0700118}
119
Alexander Afanasyeve289b532014-02-09 22:14:44 -0800120} // namespace nfd
121} // namespace ndn