Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | af99f46 | 2015-01-19 21:43:09 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 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. |
| 20 | */ |
| 21 | |
| 22 | #include "dummy-client-face.hpp" |
| 23 | #include "../transport/transport.hpp" |
| 24 | #include "../management/nfd-controller.hpp" |
| 25 | #include "../management/nfd-control-response.hpp" |
| 26 | |
| 27 | namespace ndn { |
| 28 | namespace util { |
| 29 | |
| 30 | const DummyClientFace::Options DummyClientFace::DEFAULT_OPTIONS { true, false }; |
| 31 | |
| 32 | class DummyClientFace::Transport : public ndn::Transport |
| 33 | { |
| 34 | public: |
| 35 | void |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 36 | receive(Block block) |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 37 | { |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 38 | block.encode(); |
| 39 | if (static_cast<bool>(m_receiveCallback)) { |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 40 | m_receiveCallback(block); |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 41 | } |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | virtual void |
| 45 | close() |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | virtual void |
| 50 | pause() |
| 51 | { |
| 52 | } |
| 53 | |
| 54 | virtual void |
| 55 | resume() |
| 56 | { |
| 57 | } |
| 58 | |
| 59 | virtual void |
| 60 | send(const Block& wire) |
| 61 | { |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 62 | onSendBlock(wire); |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | virtual void |
| 66 | send(const Block& header, const Block& payload) |
| 67 | { |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 68 | EncodingBuffer encoder(header.size() + payload.size(), header.size() + payload.size()); |
| 69 | encoder.appendByteArray(header.wire(), header.size()); |
| 70 | encoder.appendByteArray(payload.wire(), payload.size()); |
| 71 | |
| 72 | this->send(encoder.block()); |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | boost::asio::io_service& |
| 76 | getIoService() |
| 77 | { |
| 78 | return *m_ioService; |
| 79 | } |
| 80 | |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 81 | public: |
| 82 | Signal<Transport, Block> onSendBlock; |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | DummyClientFace::DummyClientFace(const Options& options, shared_ptr<Transport> transport) |
| 86 | : Face(transport) |
| 87 | , m_transport(transport) |
| 88 | { |
| 89 | this->construct(options); |
| 90 | } |
| 91 | |
| 92 | DummyClientFace::DummyClientFace(const Options& options, shared_ptr<Transport> transport, |
| 93 | boost::asio::io_service& ioService) |
| 94 | : Face(transport, ioService) |
| 95 | , m_transport(transport) |
| 96 | { |
| 97 | this->construct(options); |
| 98 | } |
| 99 | |
| 100 | void |
| 101 | DummyClientFace::construct(const Options& options) |
| 102 | { |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 103 | m_transport->onSendBlock.connect([this] (const Block& blockFromDaemon) { |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 104 | try { |
| 105 | Block packet(blockFromDaemon); |
| 106 | packet.encode(); |
| 107 | lp::Packet lpPacket(packet); |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 108 | |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 109 | Buffer::const_iterator begin, end; |
| 110 | std::tie(begin, end) = lpPacket.get<lp::FragmentField>(); |
| 111 | Block block(&*begin, std::distance(begin, end)); |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 112 | |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 113 | if (block.type() == tlv::Interest) { |
| 114 | shared_ptr<Interest> interest = make_shared<Interest>(block); |
| 115 | if (lpPacket.has<lp::NackField>()) { |
| 116 | shared_ptr<lp::Nack> nack = make_shared<lp::Nack>(std::move(*interest)); |
| 117 | nack->setHeader(lpPacket.get<lp::NackField>()); |
| 118 | if (lpPacket.has<lp::NextHopFaceIdField>()) { |
| 119 | nack->getLocalControlHeader().setNextHopFaceId(lpPacket.get<lp::NextHopFaceIdField>()); |
| 120 | } |
| 121 | onSendNack(*nack); |
| 122 | } |
| 123 | else { |
| 124 | if (lpPacket.has<lp::NextHopFaceIdField>()) { |
| 125 | interest->getLocalControlHeader(). |
| 126 | setNextHopFaceId(lpPacket.get<lp::NextHopFaceIdField>()); |
| 127 | } |
| 128 | onSendInterest(*interest); |
| 129 | } |
| 130 | } |
| 131 | else if (block.type() == tlv::Data) { |
| 132 | shared_ptr<Data> data = make_shared<Data>(block); |
| 133 | |
| 134 | if (lpPacket.has<lp::CachePolicyField>()) { |
| 135 | if (lpPacket.get<lp::CachePolicyField>().getPolicy() == lp::CachePolicyType::NO_CACHE) { |
| 136 | data->getLocalControlHeader().setCachingPolicy(nfd::LocalControlHeader::CachingPolicy::NO_CACHE); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | onSendData(*data); |
| 141 | } |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 142 | } |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 143 | catch (tlv::Error& e) { |
| 144 | throw tlv::Error("Error decoding NDNLPv2 packet"); |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 145 | } |
| 146 | }); |
| 147 | |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 148 | if (options.enablePacketLogging) |
| 149 | this->enablePacketLogging(); |
| 150 | |
| 151 | if (options.enableRegistrationReply) |
| 152 | this->enableRegistrationReply(); |
| 153 | } |
| 154 | |
| 155 | void |
| 156 | DummyClientFace::enablePacketLogging() |
| 157 | { |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 158 | onSendInterest.connect([this] (const Interest& interest) { |
| 159 | this->sentInterests.push_back(interest); |
| 160 | }); |
| 161 | onSendData.connect([this] (const Data& data) { |
| 162 | this->sentDatas.push_back(data); |
| 163 | }); |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 164 | onSendNack.connect([this] (const lp::Nack& nack) { |
| 165 | this->sentNacks.push_back(nack); |
| 166 | }); |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | void |
| 170 | DummyClientFace::enableRegistrationReply() |
| 171 | { |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 172 | onSendInterest.connect([this] (const Interest& interest) { |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 173 | static const Name localhostRegistration("/localhost/nfd/rib"); |
| 174 | if (!localhostRegistration.isPrefixOf(interest.getName())) |
| 175 | return; |
| 176 | |
| 177 | nfd::ControlParameters params(interest.getName().get(-5).blockFromValue()); |
| 178 | params.setFaceId(1); |
| 179 | params.setOrigin(0); |
| 180 | if (interest.getName().get(3) == name::Component("register")) { |
| 181 | params.setCost(0); |
| 182 | } |
| 183 | |
| 184 | nfd::ControlResponse resp; |
| 185 | resp.setCode(200); |
| 186 | resp.setBody(params.wireEncode()); |
| 187 | |
| 188 | shared_ptr<Data> data = make_shared<Data>(interest.getName()); |
| 189 | data->setContent(resp.wireEncode()); |
| 190 | |
| 191 | KeyChain keyChain; |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 192 | keyChain.sign(*data, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256)); |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 193 | |
| 194 | this->getIoService().post([this, data] { this->receive(*data); }); |
Junxiao Shi | 27913b4 | 2014-12-23 14:49:38 -0700 | [diff] [blame] | 195 | }); |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | template<typename Packet> |
| 199 | void |
| 200 | DummyClientFace::receive(const Packet& packet) |
| 201 | { |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 202 | lp::Packet lpPacket(packet.wireEncode()); |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 203 | |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 204 | nfd::LocalControlHeader localControlHeader = packet.getLocalControlHeader(); |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 205 | |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 206 | if (localControlHeader.hasIncomingFaceId()) { |
| 207 | lpPacket.add<lp::IncomingFaceIdField>(localControlHeader.getIncomingFaceId()); |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 208 | } |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 209 | |
| 210 | if (localControlHeader.hasNextHopFaceId()) { |
| 211 | lpPacket.add<lp::NextHopFaceIdField>(localControlHeader.getNextHopFaceId()); |
Alexander Afanasyev | ea71967 | 2015-02-10 20:25:23 -0800 | [diff] [blame] | 212 | } |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 213 | |
| 214 | m_transport->receive(lpPacket.wireEncode()); |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | template void |
| 218 | DummyClientFace::receive<Interest>(const Interest& packet); |
| 219 | |
| 220 | template void |
| 221 | DummyClientFace::receive<Data>(const Data& packet); |
| 222 | |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 223 | template<> |
| 224 | void |
| 225 | DummyClientFace::receive<lp::Nack>(const lp::Nack& nack) |
| 226 | { |
| 227 | lp::Packet lpPacket; |
| 228 | lpPacket.add<lp::NackField>(nack.getHeader()); |
| 229 | Block interest = nack.getInterest().wireEncode(); |
| 230 | lpPacket.add<lp::FragmentField>(make_pair(interest.begin(), interest.end())); |
| 231 | |
| 232 | nfd::LocalControlHeader localControlHeader = nack.getLocalControlHeader(); |
| 233 | |
| 234 | if (localControlHeader.hasIncomingFaceId()) { |
| 235 | lpPacket.add<lp::IncomingFaceIdField>(localControlHeader.getIncomingFaceId()); |
| 236 | } |
| 237 | |
| 238 | m_transport->receive(lpPacket.wireEncode()); |
| 239 | } |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 240 | |
| 241 | shared_ptr<DummyClientFace> |
| 242 | makeDummyClientFace(const DummyClientFace::Options& options) |
| 243 | { |
Junxiao Shi | a1ea506 | 2014-12-27 22:33:39 -0700 | [diff] [blame] | 244 | // cannot use make_shared<DummyClientFace> because DummyClientFace constructor is private |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 245 | return shared_ptr<DummyClientFace>( |
| 246 | new DummyClientFace(options, make_shared<DummyClientFace::Transport>())); |
| 247 | } |
| 248 | |
| 249 | shared_ptr<DummyClientFace> |
| 250 | makeDummyClientFace(boost::asio::io_service& ioService, |
| 251 | const DummyClientFace::Options& options) |
| 252 | { |
Junxiao Shi | a1ea506 | 2014-12-27 22:33:39 -0700 | [diff] [blame] | 253 | // cannot use make_shared<DummyClientFace> because DummyClientFace constructor is private |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 254 | return shared_ptr<DummyClientFace>( |
| 255 | new DummyClientFace(options, make_shared<DummyClientFace::Transport>(), |
| 256 | ref(ioService))); |
| 257 | } |
| 258 | |
| 259 | } // namespace util |
| 260 | } // namespace ndn |