blob: 1bfce8f438bbf2e1310e03f88efc5fad7992b2ae [file] [log] [blame]
Junxiao Shia60d9362014-11-12 09:38:21 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyevaf99f462015-01-19 21:43:09 -08003 * Copyright (c) 2013-2015 Regents of the University of California.
Junxiao Shia60d9362014-11-12 09:38:21 -07004 *
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
27namespace ndn {
28namespace util {
29
30const DummyClientFace::Options DummyClientFace::DEFAULT_OPTIONS { true, false };
31
32class DummyClientFace::Transport : public ndn::Transport
33{
34public:
35 void
Eric Newberry83872fd2015-08-06 17:01:24 -070036 receive(Block block)
Junxiao Shia60d9362014-11-12 09:38:21 -070037 {
Eric Newberry83872fd2015-08-06 17:01:24 -070038 block.encode();
39 if (static_cast<bool>(m_receiveCallback)) {
Junxiao Shia60d9362014-11-12 09:38:21 -070040 m_receiveCallback(block);
Eric Newberry83872fd2015-08-06 17:01:24 -070041 }
Junxiao Shia60d9362014-11-12 09:38:21 -070042 }
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 Shi27913b42014-12-23 14:49:38 -070062 onSendBlock(wire);
Junxiao Shia60d9362014-11-12 09:38:21 -070063 }
64
65 virtual void
66 send(const Block& header, const Block& payload)
67 {
Alexander Afanasyevea719672015-02-10 20:25:23 -080068 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 Shia60d9362014-11-12 09:38:21 -070073 }
74
75 boost::asio::io_service&
76 getIoService()
77 {
78 return *m_ioService;
79 }
80
Junxiao Shi27913b42014-12-23 14:49:38 -070081public:
82 Signal<Transport, Block> onSendBlock;
Junxiao Shia60d9362014-11-12 09:38:21 -070083};
84
85DummyClientFace::DummyClientFace(const Options& options, shared_ptr<Transport> transport)
86 : Face(transport)
87 , m_transport(transport)
88{
89 this->construct(options);
90}
91
92DummyClientFace::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
100void
101DummyClientFace::construct(const Options& options)
102{
Alexander Afanasyevea719672015-02-10 20:25:23 -0800103 m_transport->onSendBlock.connect([this] (const Block& blockFromDaemon) {
Eric Newberry83872fd2015-08-06 17:01:24 -0700104 try {
105 Block packet(blockFromDaemon);
106 packet.encode();
107 lp::Packet lpPacket(packet);
Alexander Afanasyevea719672015-02-10 20:25:23 -0800108
Eric Newberry83872fd2015-08-06 17:01:24 -0700109 Buffer::const_iterator begin, end;
110 std::tie(begin, end) = lpPacket.get<lp::FragmentField>();
111 Block block(&*begin, std::distance(begin, end));
Alexander Afanasyevea719672015-02-10 20:25:23 -0800112
Eric Newberry83872fd2015-08-06 17:01:24 -0700113 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 Shi27913b42014-12-23 14:49:38 -0700142 }
Eric Newberry83872fd2015-08-06 17:01:24 -0700143 catch (tlv::Error& e) {
144 throw tlv::Error("Error decoding NDNLPv2 packet");
Junxiao Shi27913b42014-12-23 14:49:38 -0700145 }
146 });
147
Junxiao Shia60d9362014-11-12 09:38:21 -0700148 if (options.enablePacketLogging)
149 this->enablePacketLogging();
150
151 if (options.enableRegistrationReply)
152 this->enableRegistrationReply();
153}
154
155void
156DummyClientFace::enablePacketLogging()
157{
Junxiao Shi27913b42014-12-23 14:49:38 -0700158 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 Newberry83872fd2015-08-06 17:01:24 -0700164 onSendNack.connect([this] (const lp::Nack& nack) {
165 this->sentNacks.push_back(nack);
166 });
Junxiao Shia60d9362014-11-12 09:38:21 -0700167}
168
169void
170DummyClientFace::enableRegistrationReply()
171{
Junxiao Shi27913b42014-12-23 14:49:38 -0700172 onSendInterest.connect([this] (const Interest& interest) {
Junxiao Shia60d9362014-11-12 09:38:21 -0700173 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 Yu1b0311c2015-06-10 14:58:47 -0700192 keyChain.sign(*data, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256));
Junxiao Shia60d9362014-11-12 09:38:21 -0700193
194 this->getIoService().post([this, data] { this->receive(*data); });
Junxiao Shi27913b42014-12-23 14:49:38 -0700195 });
Junxiao Shia60d9362014-11-12 09:38:21 -0700196}
197
198template<typename Packet>
199void
200DummyClientFace::receive(const Packet& packet)
201{
Eric Newberry83872fd2015-08-06 17:01:24 -0700202 lp::Packet lpPacket(packet.wireEncode());
Alexander Afanasyevea719672015-02-10 20:25:23 -0800203
Eric Newberry83872fd2015-08-06 17:01:24 -0700204 nfd::LocalControlHeader localControlHeader = packet.getLocalControlHeader();
Alexander Afanasyevea719672015-02-10 20:25:23 -0800205
Eric Newberry83872fd2015-08-06 17:01:24 -0700206 if (localControlHeader.hasIncomingFaceId()) {
207 lpPacket.add<lp::IncomingFaceIdField>(localControlHeader.getIncomingFaceId());
Alexander Afanasyevea719672015-02-10 20:25:23 -0800208 }
Eric Newberry83872fd2015-08-06 17:01:24 -0700209
210 if (localControlHeader.hasNextHopFaceId()) {
211 lpPacket.add<lp::NextHopFaceIdField>(localControlHeader.getNextHopFaceId());
Alexander Afanasyevea719672015-02-10 20:25:23 -0800212 }
Eric Newberry83872fd2015-08-06 17:01:24 -0700213
214 m_transport->receive(lpPacket.wireEncode());
Junxiao Shia60d9362014-11-12 09:38:21 -0700215}
216
217template void
218DummyClientFace::receive<Interest>(const Interest& packet);
219
220template void
221DummyClientFace::receive<Data>(const Data& packet);
222
Eric Newberry83872fd2015-08-06 17:01:24 -0700223template<>
224void
225DummyClientFace::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 Shia60d9362014-11-12 09:38:21 -0700240
241shared_ptr<DummyClientFace>
242makeDummyClientFace(const DummyClientFace::Options& options)
243{
Junxiao Shia1ea5062014-12-27 22:33:39 -0700244 // cannot use make_shared<DummyClientFace> because DummyClientFace constructor is private
Junxiao Shia60d9362014-11-12 09:38:21 -0700245 return shared_ptr<DummyClientFace>(
246 new DummyClientFace(options, make_shared<DummyClientFace::Transport>()));
247}
248
249shared_ptr<DummyClientFace>
250makeDummyClientFace(boost::asio::io_service& ioService,
251 const DummyClientFace::Options& options)
252{
Junxiao Shia1ea5062014-12-27 22:33:39 -0700253 // cannot use make_shared<DummyClientFace> because DummyClientFace constructor is private
Junxiao Shia60d9362014-11-12 09:38:21 -0700254 return shared_ptr<DummyClientFace>(
255 new DummyClientFace(options, make_shared<DummyClientFace::Transport>(),
256 ref(ioService)));
257}
258
259} // namespace util
260} // namespace ndn