blob: f0c7231d85491f3c0dbc0e6646560104275189c9 [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 Shi859888f2017-09-12 14:29:16 +0000103 entry.recordForwarding();
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000104 m_face.m_transport->send(finishEncoding(std::move(lpPacket), interest2.wireEncode(),
105 'I', interest2.getName()));
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 Shi859888f2017-09-12 14:29:16 +0000209 // InterestCallback may put Data right away and delete the entry from PendingInterestTable.
210 // shared_ptr is retained to ensure PendingInterest instance is valid throughout the loop.
211 shared_ptr<PendingInterest> entry = *i;
212 entry->setDeleter([this, i] { m_pendingInterestTable.erase(i); });
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000213
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000214 for (const auto& filter : m_interestFilterTable) {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000215 if (filter->doesMatch(interest2.getName())) {
Junxiao Shi4460e822017-08-07 22:02:45 +0000216 NDN_LOG_DEBUG(" matches " << filter->getFilter());
Junxiao Shi859888f2017-09-12 14:29:16 +0000217 entry->recordForwarding();
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000218 filter->invokeInterestCallback(interest2);
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000219 }
220 }
221 }
222
223 void
Junxiao Shib6e276f2017-08-14 20:10:04 +0000224 asyncPutData(const Data& data)
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700225 {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000226 bool shouldSendToForwarder = satisfyPendingInterests(data);
227 if (!shouldSendToForwarder) {
228 return;
229 }
230
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800231 this->ensureConnected(true);
Junxiao Shib6e276f2017-08-14 20:10:04 +0000232
233 lp::Packet lpPacket;
234 addFieldFromTag<lp::CachePolicyField, lp::CachePolicyTag>(lpPacket, data);
235 addFieldFromTag<lp::CongestionMarkField, lp::CongestionMarkTag>(lpPacket, data);
236
237 m_face.m_transport->send(finishEncoding(std::move(lpPacket), data.wireEncode(),
238 'D', data.getName()));
239 }
240
241 void
242 asyncPutNack(const lp::Nack& nack)
243 {
Junxiao Shi79a7a162017-09-09 08:33:57 +0000244 optional<lp::Nack> outNack = nackPendingInterests(nack);
245 if (!outNack) {
Junxiao Shi1ad0b4b2017-08-18 14:19:14 +0000246 return;
247 }
248
Junxiao Shib6e276f2017-08-14 20:10:04 +0000249 this->ensureConnected(true);
250
251 lp::Packet lpPacket;
Junxiao Shi79a7a162017-09-09 08:33:57 +0000252 lpPacket.add<lp::NackField>(outNack->getHeader());
253 addFieldFromTag<lp::CongestionMarkField, lp::CongestionMarkTag>(lpPacket, *outNack);
Junxiao Shib6e276f2017-08-14 20:10:04 +0000254
Junxiao Shi79a7a162017-09-09 08:33:57 +0000255 const Interest& interest = outNack->getInterest();
Junxiao Shib6e276f2017-08-14 20:10:04 +0000256 m_face.m_transport->send(finishEncoding(std::move(lpPacket), interest.wireEncode(),
257 'N', interest.getName()));
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700258 }
259
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000260public: // prefix registration
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700261 const RegisteredPrefixId*
262 registerPrefix(const Name& prefix,
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000263 shared_ptr<InterestFilterRecord> filter,
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700264 const RegisterPrefixSuccessCallback& onSuccess,
265 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700266 uint64_t flags,
Junxiao Shi388ec252014-11-02 15:19:57 -0700267 const nfd::CommandOptions& options)
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700268 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000269 NDN_LOG_INFO("registering prefix: " << prefix);
270 auto record = make_shared<RegisteredPrefix>(prefix, filter, options);
271
Junxiao Shie7c7f152016-08-20 22:36:22 +0000272 nfd::ControlParameters params;
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400273 params.setName(prefix);
274 params.setFlags(flags);
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000275 m_face.m_nfdController->start<nfd::RibRegisterCommand>(
276 params,
Junxiao Shi4460e822017-08-07 22:02:45 +0000277 [=] (const nfd::ControlParameters&) { this->afterPrefixRegistered(record, onSuccess); },
278 [=] (const nfd::ControlResponse& resp) {
279 NDN_LOG_INFO("register prefix failed: " << record->getPrefix());
280 onFailure(record->getPrefix(), resp.getText());
281 },
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000282 options);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700283
Junxiao Shi4460e822017-08-07 22:02:45 +0000284 return reinterpret_cast<const RegisteredPrefixId*>(record.get());
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700285 }
286
287 void
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000288 afterPrefixRegistered(shared_ptr<RegisteredPrefix> registeredPrefix,
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700289 const RegisterPrefixSuccessCallback& onSuccess)
290 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000291 NDN_LOG_INFO("registered prefix: " << registeredPrefix->getPrefix());
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800292 m_registeredPrefixTable.insert(registeredPrefix);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700293
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000294 if (registeredPrefix->getFilter() != nullptr) {
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700295 // it was a combined operation
296 m_interestFilterTable.push_back(registeredPrefix->getFilter());
297 }
298
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000299 if (onSuccess != nullptr) {
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700300 onSuccess(registeredPrefix->getPrefix());
301 }
302 }
303
304 void
305 asyncUnregisterPrefix(const RegisteredPrefixId* registeredPrefixId,
306 const UnregisterPrefixSuccessCallback& onSuccess,
307 const UnregisterPrefixFailureCallback& onFailure)
308 {
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400309 auto i = std::find_if(m_registeredPrefixTable.begin(),
310 m_registeredPrefixTable.end(),
311 MatchRegisteredPrefixId(registeredPrefixId));
312 if (i != m_registeredPrefixTable.end()) {
313 RegisteredPrefix& record = **i;
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400314 const shared_ptr<InterestFilterRecord>& filter = record.getFilter();
315
316 if (filter != nullptr) {
317 // it was a combined operation
318 m_interestFilterTable.remove(filter);
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700319 }
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400320
Junxiao Shi4460e822017-08-07 22:02:45 +0000321 NDN_LOG_INFO("unregistering prefix: " << record.getPrefix());
322
Junxiao Shie7c7f152016-08-20 22:36:22 +0000323 nfd::ControlParameters params;
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400324 params.setName(record.getPrefix());
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000325 m_face.m_nfdController->start<nfd::RibUnregisterCommand>(
326 params,
Junxiao Shie7c7f152016-08-20 22:36:22 +0000327 [=] (const nfd::ControlParameters&) { this->finalizeUnregisterPrefix(i, onSuccess); },
Junxiao Shi4460e822017-08-07 22:02:45 +0000328 [=] (const nfd::ControlResponse& resp) {
329 NDN_LOG_INFO("unregister prefix failed: " << params.getName());
330 onFailure(resp.getText());
331 },
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000332 record.getCommandOptions());
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400333 }
Alexander Afanasyev851228a2014-10-20 15:55:28 -0400334 else {
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400335 if (onFailure != nullptr) {
Alexander Afanasyev851228a2014-10-20 15:55:28 -0400336 onFailure("Unrecognized PrefixId");
337 }
338 }
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700339
340 // there cannot be two registered prefixes with the same id
341 }
342
343 void
344 finalizeUnregisterPrefix(RegisteredPrefixTable::iterator item,
345 const UnregisterPrefixSuccessCallback& onSuccess)
346 {
Junxiao Shi4460e822017-08-07 22:02:45 +0000347 NDN_LOG_INFO("unregistered prefix: " << (*item)->getPrefix());
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700348 m_registeredPrefixTable.erase(item);
349
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000350 if (onSuccess != nullptr) {
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700351 onSuccess();
352 }
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700353 }
354
Junxiao Shi103d8ed2016-08-07 20:34:10 +0000355public: // IO routine
356 void
357 ensureConnected(bool wantResume)
358 {
359 if (!m_face.m_transport->isConnected())
360 m_face.m_transport->connect(m_face.m_ioService,
361 [=] (const Block& wire) { m_face.onReceiveElement(wire); });
362
363 if (wantResume && !m_face.m_transport->isReceiving()) {
364 m_face.m_transport->resume();
365 }
366 }
367
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700368 void
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800369 onEmptyPitOrNoRegisteredPrefixes()
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700370 {
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800371 if (m_pendingInterestTable.empty() && m_registeredPrefixTable.empty()) {
372 m_face.m_transport->pause();
373 if (!m_ioServiceWork) {
374 m_processEventsTimeoutEvent.cancel();
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700375 }
376 }
377 }
378
379private:
Junxiao Shib6e276f2017-08-14 20:10:04 +0000380 /** @brief Finish packet encoding
381 * @param lpPacket NDNLP packet without FragmentField
382 * @param wire wire encoding of Interest or Data
383 * @param pktType packet type, 'I' for Interest, 'D' for Data, 'N' for Nack
384 * @param name packet name
385 * @return wire encoding of either NDNLP or bare network packet
386 * @throw Face::OversizedPacketError wire encoding exceeds limit
387 */
388 Block
389 finishEncoding(lp::Packet&& lpPacket, Block wire, char pktType, const Name& name)
390 {
391 if (!lpPacket.empty()) {
392 lpPacket.add<lp::FragmentField>(std::make_pair(wire.begin(), wire.end()));
393 wire = lpPacket.wireEncode();
394 }
395
396 if (wire.size() > MAX_NDN_PACKET_SIZE) {
397 BOOST_THROW_EXCEPTION(Face::OversizedPacketError(pktType, name, wire.size()));
398 }
399
400 return wire;
401 }
402
403private:
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700404 Face& m_face;
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800405 util::Scheduler m_scheduler;
406 util::scheduler::ScopedEventId m_processEventsTimeoutEvent;
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700407
408 PendingInterestTable m_pendingInterestTable;
409 InterestFilterTable m_interestFilterTable;
410 RegisteredPrefixTable m_registeredPrefixTable;
411
Alexander Afanasyev9d158f02015-02-17 21:30:19 -0800412 unique_ptr<boost::asio::io_service::work> m_ioServiceWork; // if thread needs to be preserved
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700413
414 friend class Face;
415};
416
417} // namespace ndn
418
419#endif // NDN_DETAIL_FACE_IMPL_HPP