blob: ad6844788cc08e8a531c34c6cce2dc1e035db34f [file] [log] [blame]
Junxiao Shi5e5e4452015-09-24 16:56:52 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shifab9e0d2017-02-02 06:04:59 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shi5e5e4452015-09-24 16:56:52 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "topology-tester.hpp"
27#include <ndn-cxx/encoding/encoding-buffer-fwd.hpp>
28#include "face/generic-link-service.hpp"
29
30namespace nfd {
31namespace fw {
32namespace tests {
33
Junxiao Shi6535f1e2015-10-08 13:02:18 -070034using face::InternalTransportBase;
35using face::InternalForwarderTransport;
36using face::InternalClientTransport;
Junxiao Shi6535f1e2015-10-08 13:02:18 -070037using face::GenericLinkService;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070038
Junxiao Shi6535f1e2015-10-08 13:02:18 -070039TopologyLink::TopologyLink(const time::nanoseconds& delay)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070040 : m_isUp(true)
Hila Ben Abraham39a79be2016-03-30 22:00:55 -070041{
42 this->setDelay(delay);
43}
44
45void
46TopologyLink::setDelay(const time::nanoseconds& delay)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070047{
Junxiao Shi6535f1e2015-10-08 13:02:18 -070048 BOOST_ASSERT(delay > time::nanoseconds::zero());
49 // zero delay does not work on OSX
Hila Ben Abraham39a79be2016-03-30 22:00:55 -070050
51 m_delay = delay;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070052}
53
54void
Junxiao Shicde37ad2015-12-24 01:02:05 -070055TopologyLink::addFace(TopologyNode i, shared_ptr<Face> face)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070056{
Junxiao Shicde37ad2015-12-24 01:02:05 -070057 this->attachTransport(i, dynamic_cast<InternalTransportBase*>(face->getTransport()));
Junxiao Shi6535f1e2015-10-08 13:02:18 -070058 m_faces[i] = face;
59}
60
61void
62TopologyLink::attachTransport(TopologyNode i, InternalTransportBase* transport)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070063{
64 BOOST_ASSERT(transport != nullptr);
65 BOOST_ASSERT(m_transports.count(i) == 0);
66
67 m_transports[i] = transport;
68 transport->afterSend.connect([this, i] (const Block& packet) { this->transmit(i, packet); });
69}
70
71void
Junxiao Shi6535f1e2015-10-08 13:02:18 -070072TopologyLink::transmit(TopologyNode i, const Block& packet)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070073{
74 if (!m_isUp) {
75 return;
76 }
77
Davide Pesavento97210d52016-10-14 15:45:48 +020078 for (const auto& p : m_transports) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -070079 if (p.first == i) {
80 continue;
81 }
82
Junxiao Shi6535f1e2015-10-08 13:02:18 -070083 InternalTransportBase* recipient = p.second;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070084 this->scheduleReceive(recipient, packet);
85 }
86}
87
Junxiao Shi5e5e4452015-09-24 16:56:52 -070088void
Junxiao Shi6535f1e2015-10-08 13:02:18 -070089TopologyLink::scheduleReceive(InternalTransportBase* recipient, const Block& packet)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070090{
91 scheduler::schedule(m_delay, [packet, recipient] {
Junxiao Shi6535f1e2015-10-08 13:02:18 -070092 recipient->receiveFromLink(packet);
Junxiao Shi5e5e4452015-09-24 16:56:52 -070093 });
94}
95
Junxiao Shicde37ad2015-12-24 01:02:05 -070096TopologyAppLink::TopologyAppLink(shared_ptr<Face> forwarderFace)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070097 : m_face(forwarderFace)
Junxiao Shicde37ad2015-12-24 01:02:05 -070098 , m_forwarderTransport(static_cast<InternalForwarderTransport*>(forwarderFace->getTransport()))
Junxiao Shi6535f1e2015-10-08 13:02:18 -070099 , m_clientTransport(make_shared<InternalClientTransport>())
100 , m_client(make_shared<ndn::Face>(m_clientTransport, getGlobalIoService()))
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700101{
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700102 this->recover();
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700103}
104
105void
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700106TopologyAppLink::fail()
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700107{
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700108 m_clientTransport->connectToForwarder(nullptr);
109}
110
111void
112TopologyAppLink::recover()
113{
114 m_clientTransport->connectToForwarder(m_forwarderTransport);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700115}
116
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000117class TopologyPcapLinkService : public GenericLinkService
118 , public TopologyPcap
119{
120private:
121 ///\todo #3941 call GenericLinkServiceCounters constructor in TopologyPcapLinkService constructor
122
123 void
124 doSendInterest(const Interest& interest) override
125 {
126 this->sentInterests.push_back(interest);
127 this->sentInterests.back().setTag(std::make_shared<TopologyPcapTimestamp>(time::steady_clock::now()));
128 this->GenericLinkService::doSendInterest(interest);
129 }
130
131 void
132 doSendData(const Data& data) override
133 {
134 this->sentData.push_back(data);
135 this->sentData.back().setTag(std::make_shared<TopologyPcapTimestamp>(time::steady_clock::now()));
136 this->GenericLinkService::doSendData(data);
137 }
138
139 void
140 doSendNack(const lp::Nack& nack) override
141 {
142 this->sentNacks.push_back(nack);
143 this->sentNacks.back().setTag(std::make_shared<TopologyPcapTimestamp>(time::steady_clock::now()));
144 this->GenericLinkService::doSendNack(nack);
145 }
146};
147
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700148TopologyNode
149TopologyTester::addForwarder(const std::string& label)
150{
151 size_t i = m_forwarders.size();
Davide Pesavento459cf192016-03-03 02:20:12 +0100152 m_forwarders.push_back(make_unique<Forwarder>());
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700153 m_forwarderLabels.push_back(label);
154 BOOST_ASSERT(m_forwarders.size() == m_forwarderLabels.size());
155 return i;
156}
157
158shared_ptr<TopologyLink>
159TopologyTester::addLink(const std::string& label, const time::nanoseconds& delay,
160 std::initializer_list<TopologyNode> forwarders,
161 bool forceMultiAccessFace)
162{
Yumin Xiaab497452016-05-10 20:23:24 +0800163 auto link = std::make_shared<TopologyLink>(delay);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700164 FaceUri remoteUri("topology://link/" + label);
165 ndn::nfd::LinkType linkType = (forceMultiAccessFace || forwarders.size() > 2) ?
166 ndn::nfd::LINK_TYPE_MULTI_ACCESS :
167 ndn::nfd::LINK_TYPE_POINT_TO_POINT;
168
169 for (TopologyNode i : forwarders) {
170 Forwarder& forwarder = this->getForwarder(i);
171 FaceUri localUri("topology://" + m_forwarderLabels.at(i) + "/" + label);
172
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000173 unique_ptr<GenericLinkService> service = m_wantPcap ? make_unique<TopologyPcapLinkService>() :
174 make_unique<GenericLinkService>();
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700175 auto transport = make_unique<InternalForwarderTransport>(localUri, remoteUri,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700176 ndn::nfd::FACE_SCOPE_NON_LOCAL, linkType);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700177 auto face = make_shared<Face>(std::move(service), std::move(transport));
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700178
Junxiao Shicde37ad2015-12-24 01:02:05 -0700179 forwarder.addFace(face);
180 link->addFace(i, face);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700181 }
182
183 m_links.push_back(link); // keep a shared_ptr so callers don't have to
184 return link;
185}
186
187shared_ptr<TopologyAppLink>
188TopologyTester::addAppFace(const std::string& label, TopologyNode i)
189{
190 Forwarder& forwarder = this->getForwarder(i);
191 FaceUri localUri("topology://" + m_forwarderLabels.at(i) + "/local/" + label);
192 FaceUri remoteUri("topology://" + m_forwarderLabels.at(i) + "/app/" + label);
193
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000194 unique_ptr<GenericLinkService> service = m_wantPcap ? make_unique<TopologyPcapLinkService>() :
195 make_unique<GenericLinkService>();
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700196 auto transport = make_unique<InternalForwarderTransport>(localUri, remoteUri,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700197 ndn::nfd::FACE_SCOPE_LOCAL, ndn::nfd::LINK_TYPE_POINT_TO_POINT);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700198 auto face = make_shared<Face>(std::move(service), std::move(transport));
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700199
Junxiao Shicde37ad2015-12-24 01:02:05 -0700200 forwarder.addFace(face);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700201
Junxiao Shicde37ad2015-12-24 01:02:05 -0700202 auto al = make_shared<TopologyAppLink>(face);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700203 m_appLinks.push_back(al); // keep a shared_ptr so callers don't have to
204 return al;
205}
206
207shared_ptr<TopologyAppLink>
208TopologyTester::addAppFace(const std::string& label, TopologyNode i, const Name& prefix, uint64_t cost)
209{
210 shared_ptr<TopologyAppLink> al = this->addAppFace(label, i);
211 this->registerPrefix(i, al->getForwarderFace(), prefix, cost);
212 return al;
213}
214
215void
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000216TopologyTester::enablePcap(bool isEnabled)
217{
218 m_wantPcap = isEnabled;
219}
220
221TopologyPcap&
222TopologyTester::getPcap(const Face& face)
223{
224 return dynamic_cast<TopologyPcapLinkService&>(*face.getLinkService());
225}
226
227void
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700228TopologyTester::registerPrefix(TopologyNode i, const Face& face, const Name& prefix, uint64_t cost)
229{
230 Forwarder& forwarder = this->getForwarder(i);
231 Fib& fib = forwarder.getFib();
Junxiao Shia6de4292016-07-12 02:08:10 +0000232 fib.insert(prefix).first->addNextHop(const_cast<Face&>(face), cost);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700233}
234
235void
236TopologyTester::addEchoProducer(ndn::Face& face, const Name& prefix)
237{
238 face.setInterestFilter(prefix,
239 [&face] (const ndn::InterestFilter&, const Interest& interest) {
240 shared_ptr<Data> data = makeData(interest.getName());
241 face.put(*data);
242 });
243}
244
245void
246TopologyTester::addIntervalConsumer(ndn::Face& face, const Name& prefix,
247 const time::nanoseconds& interval, size_t n)
248{
249 Name name(prefix);
250 name.appendTimestamp();
251 shared_ptr<Interest> interest = makeInterest(name);
Junxiao Shi9ede5bd2016-08-09 03:51:27 +0000252 face.expressInterest(*interest, nullptr, nullptr, nullptr);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700253
254 if (n > 1) {
255 scheduler::schedule(interval, bind(&TopologyTester::addIntervalConsumer, this,
256 ref(face), prefix, interval, n - 1));
257 }
258}
259
260} // namespace tests
261} // namespace fw
262} // namespace nfd