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 | 73e3004 | 2015-09-17 17:09:51 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 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 | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 22 | #include "nfd-controller.hpp" |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 23 | #include "nfd-control-response.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace nfd { |
| 27 | |
Junxiao Shi | b1990df | 2015-11-05 00:14:44 +0000 | [diff] [blame] | 28 | const uint32_t Controller::ERROR_TIMEOUT = 10060; // WinSock ESAETIMEDOUT |
| 29 | const uint32_t Controller::ERROR_NACK = 10800; // 10000 + TLV-TYPE of Nack header |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 30 | const uint32_t Controller::ERROR_SERVER = 500; |
| 31 | const uint32_t Controller::ERROR_LBOUND = 400; |
| 32 | |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 33 | Controller::Controller(Face& face, KeyChain& keyChain) |
| 34 | : m_face(face) |
| 35 | , m_keyChain(keyChain) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | void |
| 40 | Controller::startCommand(const shared_ptr<ControlCommand>& command, |
| 41 | const ControlParameters& parameters, |
| 42 | const CommandSucceedCallback& onSuccess, |
| 43 | const CommandFailCallback& onFailure, |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 44 | const CommandOptions& options) |
| 45 | { |
| 46 | Name requestName = command->getRequestName(options.getPrefix(), parameters); |
| 47 | Interest interest(requestName); |
| 48 | interest.setInterestLifetime(options.getTimeout()); |
Junxiao Shi | c6acc7a | 2015-06-23 10:03:56 -0700 | [diff] [blame] | 49 | m_keyChain.sign(interest, options.getSigningInfo()); |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 50 | |
| 51 | m_face.expressInterest(interest, |
| 52 | bind(&Controller::processCommandResponse, this, _2, |
| 53 | command, onSuccess, onFailure), |
Junxiao Shi | b1990df | 2015-11-05 00:14:44 +0000 | [diff] [blame] | 54 | bind(onFailure, ERROR_NACK, "network Nack received"), |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 55 | bind(onFailure, ERROR_TIMEOUT, "request timed out")); |
| 56 | } |
| 57 | |
| 58 | void |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 59 | Controller::processCommandResponse(const Data& data, |
| 60 | const shared_ptr<ControlCommand>& command, |
| 61 | const CommandSucceedCallback& onSuccess, |
| 62 | const CommandFailCallback& onFailure) |
| 63 | { |
| 64 | /// \todo verify Data signature |
| 65 | |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 66 | ControlResponse response; |
| 67 | try { |
| 68 | response.wireDecode(data.getContent().blockFromValue()); |
| 69 | } |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 70 | catch (tlv::Error& e) { |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 71 | if (static_cast<bool>(onFailure)) |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 72 | onFailure(ERROR_SERVER, e.what()); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 73 | return; |
| 74 | } |
| 75 | |
| 76 | uint32_t code = response.getCode(); |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 77 | if (code >= ERROR_LBOUND) { |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 78 | if (static_cast<bool>(onFailure)) |
| 79 | onFailure(code, response.getText()); |
| 80 | return; |
| 81 | } |
| 82 | |
| 83 | ControlParameters parameters; |
| 84 | try { |
| 85 | parameters.wireDecode(response.getBody()); |
| 86 | } |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 87 | catch (tlv::Error& e) { |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 88 | if (static_cast<bool>(onFailure)) |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 89 | onFailure(ERROR_SERVER, e.what()); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 90 | return; |
| 91 | } |
| 92 | |
| 93 | try { |
| 94 | command->validateResponse(parameters); |
| 95 | } |
| 96 | catch (ControlCommand::ArgumentError& e) { |
| 97 | if (static_cast<bool>(onFailure)) |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 98 | onFailure(ERROR_SERVER, e.what()); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 99 | return; |
| 100 | } |
| 101 | |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 102 | if (static_cast<bool>(onSuccess)) |
| 103 | onSuccess(parameters); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Alexander Afanasyev | e289b53 | 2014-02-09 22:14:44 -0800 | [diff] [blame] | 106 | } // namespace nfd |
| 107 | } // namespace ndn |