Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame^] | 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 4 | * 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" |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 27 | |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 28 | #include "common/global.hpp" |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 29 | #include "face/generic-link-service.hpp" |
| 30 | |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 31 | #include <ndn-cxx/encoding/encoding-buffer-fwd.hpp> |
| 32 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 33 | namespace nfd { |
| 34 | namespace fw { |
| 35 | namespace tests { |
| 36 | |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 37 | using face::GenericLinkService; |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 38 | using face::InternalClientTransport; |
| 39 | using face::InternalForwarderTransport; |
| 40 | |
| 41 | TopologyLink::NodeTransport::NodeTransport(shared_ptr<Face> f, ReceiveProxy::Callback cb) |
| 42 | : face(std::move(f)) |
| 43 | , transport(dynamic_cast<InternalForwarderTransport*>(face->getTransport())) |
| 44 | , proxy(std::move(cb)) |
| 45 | { |
| 46 | BOOST_ASSERT(transport != nullptr); |
| 47 | } |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 48 | |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 49 | TopologyLink::TopologyLink(time::nanoseconds delay) |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 50 | { |
| 51 | this->setDelay(delay); |
| 52 | } |
| 53 | |
| 54 | void |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 55 | TopologyLink::block(TopologyNode i, TopologyNode j) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 56 | { |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 57 | m_transports.at(i).blockedDestinations.insert(j); |
| 58 | } |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 59 | |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 60 | void |
| 61 | TopologyLink::unblock(TopologyNode i, TopologyNode j) |
| 62 | { |
| 63 | m_transports.at(i).blockedDestinations.erase(j); |
| 64 | } |
| 65 | |
| 66 | void |
| 67 | TopologyLink::setDelay(time::nanoseconds delay) |
| 68 | { |
| 69 | BOOST_ASSERT(delay > time::nanoseconds::zero()); // zero delay does not work on macOS |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 70 | m_delay = delay; |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | void |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 74 | TopologyLink::addFace(TopologyNode i, shared_ptr<Face> face) |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 75 | { |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 76 | auto receiveCb = [this, i] (const Block& packet) { transmit(i, packet); }; |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame^] | 77 | auto ret = m_transports.try_emplace(i, std::move(face), std::move(receiveCb)); |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 78 | BOOST_ASSERT(ret.second); |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 79 | |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 80 | auto& node = ret.first->second; |
| 81 | node.transport->setPeer(&node.proxy); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 85 | TopologyLink::transmit(TopologyNode i, const Block& packet) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 86 | { |
| 87 | if (!m_isUp) { |
| 88 | return; |
| 89 | } |
| 90 | |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 91 | const auto& blockedDestinations = m_transports.at(i).blockedDestinations; |
| 92 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame^] | 93 | for (const auto& [node, transport] : m_transports) { |
| 94 | if (node == i || blockedDestinations.count(node) > 0) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 95 | continue; |
| 96 | } |
| 97 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame^] | 98 | getScheduler().schedule(m_delay, [packet, recipient = transport.transport] { |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 99 | recipient->receivePacket(packet); |
| 100 | }); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 101 | } |
| 102 | } |
| 103 | |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 104 | TopologySingleLink::TopologySingleLink(shared_ptr<Face> forwarderFace) |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 105 | : m_face(std::move(forwarderFace)) |
| 106 | , m_forwarderTransport(static_cast<InternalForwarderTransport*>(m_face->getTransport())) |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 107 | { |
| 108 | } |
| 109 | |
| 110 | TopologyAppLink::TopologyAppLink(shared_ptr<Face> forwarderFace) |
| 111 | : TopologySingleLink(std::move(forwarderFace)) |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 112 | , m_clientTransport(make_shared<InternalClientTransport>()) |
| 113 | , m_client(make_shared<ndn::Face>(m_clientTransport, getGlobalIoService())) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 114 | { |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 115 | this->recover(); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | void |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 119 | TopologyAppLink::fail() |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 120 | { |
Junxiao Shi | 6535f1e | 2015-10-08 13:02:18 -0700 | [diff] [blame] | 121 | m_clientTransport->connectToForwarder(nullptr); |
| 122 | } |
| 123 | |
| 124 | void |
| 125 | TopologyAppLink::recover() |
| 126 | { |
| 127 | m_clientTransport->connectToForwarder(m_forwarderTransport); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 130 | class TopologyBareLink::Observer : public face::InternalTransportBase |
| 131 | { |
| 132 | public: |
| 133 | explicit |
| 134 | Observer(std::vector<Block>& receivedPackets) |
| 135 | : m_receivedPackets(receivedPackets) |
| 136 | { |
| 137 | } |
| 138 | |
| 139 | void |
| 140 | receivePacket(const Block& packet) final |
| 141 | { |
| 142 | m_receivedPackets.push_back(packet); |
| 143 | } |
| 144 | |
| 145 | private: |
| 146 | std::vector<Block>& m_receivedPackets; |
| 147 | }; |
| 148 | |
| 149 | TopologyBareLink::TopologyBareLink(shared_ptr<Face> forwarderFace) |
| 150 | : TopologySingleLink(std::move(forwarderFace)) |
| 151 | , m_observer(make_unique<Observer>(sentPackets)) |
| 152 | { |
| 153 | m_forwarderTransport->setPeer(m_observer.get()); |
| 154 | } |
| 155 | |
| 156 | void |
| 157 | TopologyBareLink::receivePacket(const Block& packet) |
| 158 | { |
| 159 | m_forwarderTransport->receivePacket(packet); |
| 160 | } |
| 161 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 162 | class TopologyPcapLinkService : public GenericLinkService |
| 163 | , public TopologyPcap |
| 164 | { |
| 165 | private: |
| 166 | ///\todo #3941 call GenericLinkServiceCounters constructor in TopologyPcapLinkService constructor |
| 167 | |
| 168 | void |
Teng Liang | f3bc3ae | 2020-06-08 10:19:25 -0700 | [diff] [blame] | 169 | doSendInterest(const Interest& interest) override |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 170 | { |
| 171 | this->sentInterests.push_back(interest); |
| 172 | this->sentInterests.back().setTag(std::make_shared<TopologyPcapTimestamp>(time::steady_clock::now())); |
Teng Liang | f3bc3ae | 2020-06-08 10:19:25 -0700 | [diff] [blame] | 173 | this->GenericLinkService::doSendInterest(interest); |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | void |
Teng Liang | f3bc3ae | 2020-06-08 10:19:25 -0700 | [diff] [blame] | 177 | doSendData(const Data& data) override |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 178 | { |
| 179 | this->sentData.push_back(data); |
| 180 | this->sentData.back().setTag(std::make_shared<TopologyPcapTimestamp>(time::steady_clock::now())); |
Teng Liang | f3bc3ae | 2020-06-08 10:19:25 -0700 | [diff] [blame] | 181 | this->GenericLinkService::doSendData(data); |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | void |
Teng Liang | f3bc3ae | 2020-06-08 10:19:25 -0700 | [diff] [blame] | 185 | doSendNack(const lp::Nack& nack) override |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 186 | { |
| 187 | this->sentNacks.push_back(nack); |
| 188 | this->sentNacks.back().setTag(std::make_shared<TopologyPcapTimestamp>(time::steady_clock::now())); |
Teng Liang | f3bc3ae | 2020-06-08 10:19:25 -0700 | [diff] [blame] | 189 | this->GenericLinkService::doSendNack(nack); |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 190 | } |
| 191 | }; |
| 192 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 193 | TopologyNode |
| 194 | TopologyTester::addForwarder(const std::string& label) |
| 195 | { |
| 196 | size_t i = m_forwarders.size(); |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 197 | m_forwarders.push_back(make_unique<TopologyForwarder>(label)); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 198 | return i; |
| 199 | } |
| 200 | |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 201 | shared_ptr<Face> |
| 202 | TopologyTester::makeFace(TopologyNode i, const FaceUri& localUri, const FaceUri& remoteUri, |
| 203 | ndn::nfd::FaceScope scope, ndn::nfd::LinkType linkType) |
| 204 | { |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 205 | unique_ptr<GenericLinkService> service = m_wantPcap ? make_unique<TopologyPcapLinkService>() : |
| 206 | make_unique<GenericLinkService>(); |
| 207 | auto transport = make_unique<InternalForwarderTransport>(localUri, remoteUri, scope, linkType); |
| 208 | auto face = make_shared<Face>(std::move(service), std::move(transport)); |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 209 | m_forwarders.at(i)->faceTable.add(face); |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 210 | return face; |
| 211 | } |
| 212 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 213 | shared_ptr<TopologyLink> |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 214 | TopologyTester::addLink(const std::string& label, time::nanoseconds delay, |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 215 | std::initializer_list<TopologyNode> forwarders, |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 216 | ndn::nfd::LinkType linkType) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 217 | { |
Yumin Xia | ab49745 | 2016-05-10 20:23:24 +0800 | [diff] [blame] | 218 | auto link = std::make_shared<TopologyLink>(delay); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 219 | FaceUri remoteUri("topology://link/" + label); |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 220 | if (linkType == ndn::nfd::LINK_TYPE_NONE) { |
| 221 | linkType = forwarders.size() > 2 ? ndn::nfd::LINK_TYPE_MULTI_ACCESS : |
| 222 | ndn::nfd::LINK_TYPE_POINT_TO_POINT; |
| 223 | } |
| 224 | BOOST_ASSERT(forwarders.size() <= 2 || linkType != ndn::nfd::LINK_TYPE_POINT_TO_POINT); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 225 | |
| 226 | for (TopologyNode i : forwarders) { |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 227 | FaceUri localUri("topology://" + m_forwarders.at(i)->label + "/" + label); |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 228 | auto face = makeFace(i, localUri, remoteUri, ndn::nfd::FACE_SCOPE_NON_LOCAL, linkType); |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 229 | link->addFace(i, std::move(face)); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | m_links.push_back(link); // keep a shared_ptr so callers don't have to |
| 233 | return link; |
| 234 | } |
| 235 | |
| 236 | shared_ptr<TopologyAppLink> |
| 237 | TopologyTester::addAppFace(const std::string& label, TopologyNode i) |
| 238 | { |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 239 | FaceUri localUri("topology://" + m_forwarders.at(i)->label + "/local/" + label); |
| 240 | FaceUri remoteUri("topology://" + m_forwarders.at(i)->label + "/app/" + label); |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 241 | auto face = makeFace(i, localUri, remoteUri, ndn::nfd::FACE_SCOPE_LOCAL, ndn::nfd::LINK_TYPE_POINT_TO_POINT); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 242 | |
Davide Pesavento | 284bd62 | 2019-03-31 02:10:02 -0400 | [diff] [blame] | 243 | auto al = make_shared<TopologyAppLink>(std::move(face)); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 244 | m_appLinks.push_back(al); // keep a shared_ptr so callers don't have to |
| 245 | return al; |
| 246 | } |
| 247 | |
| 248 | shared_ptr<TopologyAppLink> |
| 249 | TopologyTester::addAppFace(const std::string& label, TopologyNode i, const Name& prefix, uint64_t cost) |
| 250 | { |
| 251 | shared_ptr<TopologyAppLink> al = this->addAppFace(label, i); |
| 252 | this->registerPrefix(i, al->getForwarderFace(), prefix, cost); |
| 253 | return al; |
| 254 | } |
| 255 | |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 256 | shared_ptr<TopologyBareLink> |
| 257 | TopologyTester::addBareLink(const std::string& label, TopologyNode i, ndn::nfd::FaceScope scope, |
| 258 | ndn::nfd::LinkType linkType) |
| 259 | { |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 260 | FaceUri localUri("topology://" + m_forwarders.at(i)->label + "/local/" + label); |
| 261 | FaceUri remoteUri("topology://" + m_forwarders.at(i)->label + "/bare/" + label); |
Junxiao Shi | 606d5dd | 2019-09-23 12:47:44 -0600 | [diff] [blame] | 262 | auto face = makeFace(i, localUri, remoteUri, scope, linkType); |
| 263 | |
| 264 | auto bl = make_shared<TopologyBareLink>(std::move(face)); |
| 265 | m_bareLinks.push_back(bl); // keep a shared_ptr so callers don't have to |
| 266 | return bl; |
| 267 | } |
| 268 | |
Junxiao Shi | fab9e0d | 2017-02-02 06:04:59 +0000 | [diff] [blame] | 269 | TopologyPcap& |
| 270 | TopologyTester::getPcap(const Face& face) |
| 271 | { |
| 272 | return dynamic_cast<TopologyPcapLinkService&>(*face.getLinkService()); |
| 273 | } |
| 274 | |
| 275 | void |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 276 | TopologyTester::registerPrefix(TopologyNode i, const Face& face, const Name& prefix, uint64_t cost) |
| 277 | { |
| 278 | Forwarder& forwarder = this->getForwarder(i); |
| 279 | Fib& fib = forwarder.getFib(); |
Ju Pan | d8315bf | 2019-07-31 06:59:07 +0000 | [diff] [blame] | 280 | fib::Entry* entry = fib.insert(prefix).first; |
| 281 | fib.addOrUpdateNextHop(*entry, const_cast<Face&>(face), cost); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | void |
Saurab Dulal | a6dec22 | 2019-04-01 00:15:10 -0500 | [diff] [blame] | 285 | TopologyTester::addEchoProducer(ndn::Face& face, const Name& prefix, time::nanoseconds replyDelay) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 286 | { |
Saurab Dulal | a6dec22 | 2019-04-01 00:15:10 -0500 | [diff] [blame] | 287 | BOOST_ASSERT(replyDelay >= 0_ns); |
| 288 | |
| 289 | face.setInterestFilter(prefix, [=, &face] (const auto&, const auto& interest) { |
| 290 | auto data = makeData(interest.getName()); |
| 291 | if (replyDelay == 0_ns) { |
| 292 | // reply immediately |
| 293 | face.put(*data); |
| 294 | } |
| 295 | else { |
| 296 | // delay the reply |
| 297 | getScheduler().schedule(replyDelay, [&face, data = std::move(data)] { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 298 | face.put(*data); |
| 299 | }); |
Saurab Dulal | a6dec22 | 2019-04-01 00:15:10 -0500 | [diff] [blame] | 300 | } |
| 301 | }); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | void |
| 305 | TopologyTester::addIntervalConsumer(ndn::Face& face, const Name& prefix, |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 306 | time::nanoseconds interval, size_t n, int seq) |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 307 | { |
| 308 | Name name(prefix); |
Teng Liang | f995f38 | 2017-04-04 22:09:39 +0000 | [diff] [blame] | 309 | if (seq >= 0) { |
| 310 | name.appendSequenceNumber(seq); |
| 311 | ++seq; |
| 312 | } |
| 313 | else { |
| 314 | name.appendTimestamp(); |
| 315 | } |
| 316 | |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 317 | auto interest = makeInterest(name); |
Junxiao Shi | 9ede5bd | 2016-08-09 03:51:27 +0000 | [diff] [blame] | 318 | face.expressInterest(*interest, nullptr, nullptr, nullptr); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 319 | |
| 320 | if (n > 1) { |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 321 | getScheduler().schedule(interval, [=, &face] { |
| 322 | addIntervalConsumer(face, prefix, interval, n - 1, seq); |
| 323 | }); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
| 327 | } // namespace tests |
| 328 | } // namespace fw |
| 329 | } // namespace nfd |