blob: 57ee91152231b6e442a85d9f1412ff6f4c41cab6 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi4460e822017-08-07 22:02:45 +00002/*
Alexander Afanasyev1013fd02017-01-03 13:19:03 -08003 * Copyright (c) 2013-2017 Regents of the University of California.
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyev258ec2b2014-05-14 16:15:37 -070020 */
21
22#ifndef NDN_DETAIL_FACE_IMPL_HPP
23#define NDN_DETAIL_FACE_IMPL_HPP
24
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070025#include "../face.hpp"
Alexander Afanasyev9d158f02015-02-17 21:30:19 -080026#include "container-with-on-empty-signal.hpp"
Junxiao Shib6e276f2017-08-14 20:10:04 +000027#include "lp-field-tag.hpp"
Junxiao Shi4460e822017-08-07 22:02:45 +000028#include "pending-interest.hpp"
29#include "registered-prefix.hpp"
Eric Newberry83872fd2015-08-06 17:01:24 -070030#include "../lp/packet.hpp"
Junxiao Shi4b469982015-12-03 18:20:19 +000031#include "../lp/tags.hpp"
Junxiao Shi4460e822017-08-07 22:02:45 +000032#include "../mgmt/nfd/command-options.hpp"
33#include "../mgmt/nfd/controller.hpp"
34#include "../transport/tcp-transport.hpp"
35#include "../transport/unix-transport.hpp"
36#include "../util/config-file.hpp"
37#include "../util/logger.hpp"
38#include "../util/scheduler.hpp"
39#include "../util/signal.hpp"
40
41NDN_LOG_INIT(ndn.Face);
42// INFO level: prefix registration, etc.
43//
44// DEBUG level: packet logging.
45// Each log entry starts with a direction symbol ('<' denotes an outgoing packet, '>' denotes an
46// incoming packet) and a packet type symbol ('I' denotes an Interest, 'D' denotes a Data, 'N'
47// denotes a Nack). Interest is printed as its string representation, Data is printed as name only,
48// Nack is printed as the Interest followed by the Nack reason and delimited by a '~' symbol. A
49// log line about an incoming packet may be followed by zero or more lines about Interest matching
50// InterestFilter, Data satisfying Interest, or Nack rejecting Interest, which are also written at
51// DEBUG level.
52//
53// TRACE level: more detailed unstructured messages.
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070054
55namespace ndn {
56
Junxiao Shib6e276f2017-08-14 20:10:04 +000057/** @brief implementation detail of Face
Junxiao Shi103d8ed2016-08-07 20:34:10 +000058 */
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070059class Face::Impl : noncopyable
60{
61public:
Junxiao Shib6e276f2017-08-14 20:10:04 +000062 using PendingInterestTable = ContainerWithOnEmptySignal<shared_ptr<PendingInterest>>;
63 using InterestFilterTable = std::list<shared_ptr<InterestFilterRecord>>;
64 using RegisteredPrefixTable = ContainerWithOnEmptySignal<shared_ptr<RegisteredPrefix>>;
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070065
66 explicit
67 Impl(Face& face)
68 : m_face(face)
Alexander Afanasyev9d158f02015-02-17 21:30:19 -080069 , m_scheduler(m_face.getIoService())
70 , m_processEventsTimeoutEvent(m_scheduler)
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070071 {
Alexander Afanasyev9d158f02015-02-17 21:30:19 -080072 auto postOnEmptyPitOrNoRegisteredPrefixes = [this] {
Junxiao Shi103d8ed2016-08-07 20:34:10 +000073 this->m_face.getIoService().post([this] { this->onEmptyPitOrNoRegisteredPrefixes(); });
Alexander Afanasyev9d158f02015-02-17 21:30:19 -080074 // without this extra "post", transport can get paused (-async_read) and then resumed
75 // (+async_read) from within onInterest/onData callback. After onInterest/onData
76 // finishes, there is another +async_read with the same memory block. A few of such
77 // async_read duplications can cause various effects and result in segfault.
78 };
79
80 m_pendingInterestTable.onEmpty.connect(postOnEmptyPitOrNoRegisteredPrefixes);
81 m_registeredPrefixTable.onEmpty.connect(postOnEmptyPitOrNoRegisteredPrefixes);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070082 }
83
Junxiao Shi103d8ed2016-08-07 20:34:10 +000084public: // consumer
Junxiao Shia1ea5062014-12-27 22:33:39 -070085 void
Eric Newberry83872fd2015-08-06 17:01:24 -070086 asyncExpressInterest(shared_ptr<const Interest> interest,
87 const DataCallback& afterSatisfied,
88 const NackCallback& afterNacked,
89 const TimeoutCallback& afterTimeout)
Junxiao Shia1ea5062014-12-27 22:33:39 -070090 {
Alexander Afanasyev9d158f02015-02-17 21:30:19 -080091 this->ensureConnected(true);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070092
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +000093 const Interest& interest2 = *interest;
Junxiao Shi79a7a162017-09-09 08:33:57 +000094 auto i = m_pendingInterestTable.insert(make_shared<PendingInterest>(
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +000095 std::move(interest), afterSatisfied, afterNacked, afterTimeout, ref(m_scheduler))).first;
Junxiao Shi79a7a162017-09-09 08:33:57 +000096 PendingInterest& entry = **i;
97 entry.setDeleter([this, i] { m_pendingInterestTable.erase(i); });
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070098
Junxiao Shib6e276f2017-08-14 20:10:04 +000099 lp::Packet lpPacket;
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000100 addFieldFromTag<lp::NextHopFaceIdField, lp::NextHopFaceIdTag>(lpPacket, interest2);
101 addFieldFromTag<lp::CongestionMarkField, lp::CongestionMarkTag>(lpPacket, interest2);
Eric Newberry83872fd2015-08-06 17:01:24 -0700102
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000103 m_face.m_transport->send(finishEncoding(std::move(lpPacket), interest2.wireEncode(),
104 'I', interest2.getName()));
Junxiao Shi79a7a162017-09-09 08:33:57 +0000105 entry.recordForwarding();
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700106 }
107
108 void
109 asyncRemovePendingInterest(const PendingInterestId* pendingInterestId)
110 {
111 m_pendingInterestTable.remove_if(MatchPendingInterestId(pendingInterestId));
112 }
113
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700114 void
Ilya Moiseenko56b0bf82015-11-08 11:14:28 -0500115 asyncRemoveAllPendingInterests()
116 {
117 m_pendingInterestTable.clear();
118 }
119
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000120 /** @return whether the Data should be sent to the forwarder, if it does not come from the forwarder
121 */
122 bool
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000123 satisfyPendingInterests(const Data& data)
124 {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000125 bool hasAppMatch = false, hasForwarderMatch = false;
Junxiao Shi79a7a162017-09-09 08:33:57 +0000126 for (auto i = m_pendingInterestTable.begin(); i != m_pendingInterestTable.end(); ) {
127 shared_ptr<PendingInterest> entry = *i;
128 if (!entry->getInterest()->matchesData(data)) {
129 ++i;
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000130 continue;
131 }
132
Junxiao Shi79a7a162017-09-09 08:33:57 +0000133 NDN_LOG_DEBUG(" satisfying " << *entry->getInterest() << " from " << entry->getOrigin());
134 i = m_pendingInterestTable.erase(i);
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000135
Junxiao Shi79a7a162017-09-09 08:33:57 +0000136 if (entry->getOrigin() == PendingInterestOrigin::APP) {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000137 hasAppMatch = true;
Junxiao Shi79a7a162017-09-09 08:33:57 +0000138 entry->invokeDataCallback(data);
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000139 }
140 else {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000141 hasForwarderMatch = true;
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000142 }
143 }
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000144 // if Data matches no pending Interest record, it is sent to the forwarder as unsolicited Data
145 return hasForwarderMatch || !hasAppMatch;
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000146 }
147
Junxiao Shi79a7a162017-09-09 08:33:57 +0000148 /** @return a Nack to be sent to the forwarder, or nullopt if no Nack should be sent
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000149 */
Junxiao Shi79a7a162017-09-09 08:33:57 +0000150 optional<lp::Nack>
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000151 nackPendingInterests(const lp::Nack& nack)
152 {
Junxiao Shi79a7a162017-09-09 08:33:57 +0000153 optional<lp::Nack> outNack;
154 for (auto i = m_pendingInterestTable.begin(); i != m_pendingInterestTable.end(); ) {
155 shared_ptr<PendingInterest> entry = *i;
156 if (!nack.getInterest().matchesInterest(*entry->getInterest())) {
157 ++i;
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000158 continue;
159 }
160
Junxiao Shi79a7a162017-09-09 08:33:57 +0000161 NDN_LOG_DEBUG(" nacking " << *entry->getInterest() << " from " << entry->getOrigin());
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000162
Junxiao Shi79a7a162017-09-09 08:33:57 +0000163 optional<lp::Nack> outNack1 = entry->recordNack(nack);
164 if (!outNack1) {
165 ++i;
166 continue;
167 }
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000168
Junxiao Shi79a7a162017-09-09 08:33:57 +0000169 if (entry->getOrigin() == PendingInterestOrigin::APP) {
170 entry->invokeNackCallback(*outNack1);
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000171 }
172 else {
Junxiao Shi79a7a162017-09-09 08:33:57 +0000173 outNack = outNack1;
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000174 }
Junxiao Shi79a7a162017-09-09 08:33:57 +0000175 i = m_pendingInterestTable.erase(i);
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000176 }
Junxiao Shi79a7a162017-09-09 08:33:57 +0000177 // send "least severe" Nack from any PendingInterest record originated from forwarder, because
178 // it is unimportant to consider Nack reason for the unlikely case when forwarder sends multiple
179 // Interests to an app in a short while
180 return outNack;
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000181 }
182
183public: // producer
184 void
185 asyncSetInterestFilter(shared_ptr<InterestFilterRecord> interestFilterRecord)
186 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000187 NDN_LOG_INFO("setting InterestFilter: " << interestFilterRecord->getFilter());
188 m_interestFilterTable.push_back(std::move(interestFilterRecord));
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000189 }
190
191 void
192 asyncUnsetInterestFilter(const InterestFilterId* interestFilterId)
193 {
194 InterestFilterTable::iterator i = std::find_if(m_interestFilterTable.begin(),
195 m_interestFilterTable.end(),
196 MatchInterestFilterId(interestFilterId));
197 if (i != m_interestFilterTable.end()) {
Junxiao Shi4460e822017-08-07 22:02:45 +0000198 NDN_LOG_INFO("unsetting InterestFilter: " << (*i)->getFilter());
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000199 m_interestFilterTable.erase(i);
200 }
201 }
202
203 void
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000204 processIncomingInterest(shared_ptr<const Interest> interest)
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000205 {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000206 const Interest& interest2 = *interest;
Junxiao Shi79a7a162017-09-09 08:33:57 +0000207 auto i = m_pendingInterestTable.insert(make_shared<PendingInterest>(
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000208 std::move(interest), ref(m_scheduler))).first;
Junxiao Shi79a7a162017-09-09 08:33:57 +0000209 PendingInterest& entry = **i;
210 entry.setDeleter([this, i] { m_pendingInterestTable.erase(i); });
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000211
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000212 for (const auto& filter : m_interestFilterTable) {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000213 if (filter->doesMatch(interest2.getName())) {
Junxiao Shi4460e822017-08-07 22:02:45 +0000214 NDN_LOG_DEBUG(" matches " << filter->getFilter());
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000215 filter->invokeInterestCallback(interest2);
Junxiao Shi79a7a162017-09-09 08:33:57 +0000216 entry.recordForwarding();
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000217 }
218 }
219 }
220
221 void
Junxiao Shib6e276f2017-08-14 20:10:04 +0000222 asyncPutData(const Data& data)
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700223 {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000224 bool shouldSendToForwarder = satisfyPendingInterests(data);
225 if (!shouldSendToForwarder) {
226 return;
227 }
228
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800229 this->ensureConnected(true);
Junxiao Shib6e276f2017-08-14 20:10:04 +0000230
231 lp::Packet lpPacket;
232 addFieldFromTag<lp::CachePolicyField, lp::CachePolicyTag>(lpPacket, data);
233 addFieldFromTag<lp::CongestionMarkField, lp::CongestionMarkTag>(lpPacket, data);
234
235 m_face.m_transport->send(finishEncoding(std::move(lpPacket), data.wireEncode(),
236 'D', data.getName()));
237 }
238
239 void
240 asyncPutNack(const lp::Nack& nack)
241 {
Junxiao Shi79a7a162017-09-09 08:33:57 +0000242 optional<lp::Nack> outNack = nackPendingInterests(nack);
243 if (!outNack) {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000244 return;
245 }
246
Junxiao Shib6e276f2017-08-14 20:10:04 +0000247 this->ensureConnected(true);
248
249 lp::Packet lpPacket;
Junxiao Shi79a7a162017-09-09 08:33:57 +0000250 lpPacket.add<lp::NackField>(outNack->getHeader());
251 addFieldFromTag<lp::CongestionMarkField, lp::CongestionMarkTag>(lpPacket, *outNack);
Junxiao Shib6e276f2017-08-14 20:10:04 +0000252
Junxiao Shi79a7a162017-09-09 08:33:57 +0000253 const Interest& interest = outNack->getInterest();
Junxiao Shib6e276f2017-08-14 20:10:04 +0000254 m_face.m_transport->send(finishEncoding(std::move(lpPacket), interest.wireEncode(),
255 'N', interest.getName()));
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700256 }
257
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000258public: // prefix registration
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700259 const RegisteredPrefixId*
260 registerPrefix(const Name& prefix,
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000261 shared_ptr<InterestFilterRecord> filter,
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700262 const RegisterPrefixSuccessCallback& onSuccess,
263 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700264 uint64_t flags,
Junxiao Shi388ec252014-11-02 15:19:57 -0700265 const nfd::CommandOptions& options)
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700266 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000267 NDN_LOG_INFO("registering prefix: " << prefix);
268 auto record = make_shared<RegisteredPrefix>(prefix, filter, options);
269
Junxiao Shie7c7f152016-08-20 22:36:22 +0000270 nfd::ControlParameters params;
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400271 params.setName(prefix);
272 params.setFlags(flags);
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000273 m_face.m_nfdController->start<nfd::RibRegisterCommand>(
274 params,
Junxiao Shi4460e822017-08-07 22:02:45 +0000275 [=] (const nfd::ControlParameters&) { this->afterPrefixRegistered(record, onSuccess); },
276 [=] (const nfd::ControlResponse& resp) {
277 NDN_LOG_INFO("register prefix failed: " << record->getPrefix());
278 onFailure(record->getPrefix(), resp.getText());
279 },
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000280 options);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700281
Junxiao Shi4460e822017-08-07 22:02:45 +0000282 return reinterpret_cast<const RegisteredPrefixId*>(record.get());
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700283 }
284
285 void
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000286 afterPrefixRegistered(shared_ptr<RegisteredPrefix> registeredPrefix,
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700287 const RegisterPrefixSuccessCallback& onSuccess)
288 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000289 NDN_LOG_INFO("registered prefix: " << registeredPrefix->getPrefix());
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800290 m_registeredPrefixTable.insert(registeredPrefix);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700291
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000292 if (registeredPrefix->getFilter() != nullptr) {
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700293 // it was a combined operation
294 m_interestFilterTable.push_back(registeredPrefix->getFilter());
295 }
296
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000297 if (onSuccess != nullptr) {
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700298 onSuccess(registeredPrefix->getPrefix());
299 }
300 }
301
302 void
303 asyncUnregisterPrefix(const RegisteredPrefixId* registeredPrefixId,
304 const UnregisterPrefixSuccessCallback& onSuccess,
305 const UnregisterPrefixFailureCallback& onFailure)
306 {
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400307 auto i = std::find_if(m_registeredPrefixTable.begin(),
308 m_registeredPrefixTable.end(),
309 MatchRegisteredPrefixId(registeredPrefixId));
310 if (i != m_registeredPrefixTable.end()) {
311 RegisteredPrefix& record = **i;
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400312 const shared_ptr<InterestFilterRecord>& filter = record.getFilter();
313
314 if (filter != nullptr) {
315 // it was a combined operation
316 m_interestFilterTable.remove(filter);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700317 }
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400318
Junxiao Shi4460e822017-08-07 22:02:45 +0000319 NDN_LOG_INFO("unregistering prefix: " << record.getPrefix());
320
Junxiao Shie7c7f152016-08-20 22:36:22 +0000321 nfd::ControlParameters params;
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400322 params.setName(record.getPrefix());
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000323 m_face.m_nfdController->start<nfd::RibUnregisterCommand>(
324 params,
Junxiao Shie7c7f152016-08-20 22:36:22 +0000325 [=] (const nfd::ControlParameters&) { this->finalizeUnregisterPrefix(i, onSuccess); },
Junxiao Shi4460e822017-08-07 22:02:45 +0000326 [=] (const nfd::ControlResponse& resp) {
327 NDN_LOG_INFO("unregister prefix failed: " << params.getName());
328 onFailure(resp.getText());
329 },
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000330 record.getCommandOptions());
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400331 }
Alexander Afanasyev851228a2014-10-20 15:55:28 -0400332 else {
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400333 if (onFailure != nullptr) {
Alexander Afanasyev851228a2014-10-20 15:55:28 -0400334 onFailure("Unrecognized PrefixId");
335 }
336 }
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700337
338 // there cannot be two registered prefixes with the same id
339 }
340
341 void
342 finalizeUnregisterPrefix(RegisteredPrefixTable::iterator item,
343 const UnregisterPrefixSuccessCallback& onSuccess)
344 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000345 NDN_LOG_INFO("unregistered prefix: " << (*item)->getPrefix());
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700346 m_registeredPrefixTable.erase(item);
347
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000348 if (onSuccess != nullptr) {
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700349 onSuccess();
350 }
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700351 }
352
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000353public: // IO routine
354 void
355 ensureConnected(bool wantResume)
356 {
357 if (!m_face.m_transport->isConnected())
358 m_face.m_transport->connect(m_face.m_ioService,
359 [=] (const Block& wire) { m_face.onReceiveElement(wire); });
360
361 if (wantResume && !m_face.m_transport->isReceiving()) {
362 m_face.m_transport->resume();
363 }
364 }
365
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700366 void
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800367 onEmptyPitOrNoRegisteredPrefixes()
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700368 {
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800369 if (m_pendingInterestTable.empty() && m_registeredPrefixTable.empty()) {
370 m_face.m_transport->pause();
371 if (!m_ioServiceWork) {
372 m_processEventsTimeoutEvent.cancel();
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700373 }
374 }
375 }
376
377private:
Junxiao Shib6e276f2017-08-14 20:10:04 +0000378 /** @brief Finish packet encoding
379 * @param lpPacket NDNLP packet without FragmentField
380 * @param wire wire encoding of Interest or Data
381 * @param pktType packet type, 'I' for Interest, 'D' for Data, 'N' for Nack
382 * @param name packet name
383 * @return wire encoding of either NDNLP or bare network packet
384 * @throw Face::OversizedPacketError wire encoding exceeds limit
385 */
386 Block
387 finishEncoding(lp::Packet&& lpPacket, Block wire, char pktType, const Name& name)
388 {
389 if (!lpPacket.empty()) {
390 lpPacket.add<lp::FragmentField>(std::make_pair(wire.begin(), wire.end()));
391 wire = lpPacket.wireEncode();
392 }
393
394 if (wire.size() > MAX_NDN_PACKET_SIZE) {
395 BOOST_THROW_EXCEPTION(Face::OversizedPacketError(pktType, name, wire.size()));
396 }
397
398 return wire;
399 }
400
401private:
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700402 Face& m_face;
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800403 util::Scheduler m_scheduler;
404 util::scheduler::ScopedEventId m_processEventsTimeoutEvent;
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700405
406 PendingInterestTable m_pendingInterestTable;
407 InterestFilterTable m_interestFilterTable;
408 RegisteredPrefixTable m_registeredPrefixTable;
409
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800410 unique_ptr<boost::asio::io_service::work> m_ioServiceWork; // if thread needs to be preserved
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700411
412 friend class Face;
413};
414
415} // namespace ndn
416
417#endif // NDN_DETAIL_FACE_IMPL_HPP