blob: 8fc78bf6bdb5bb21309ddf052d6fa29c93cdf3c7 [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi4370fde2016-02-24 12:20:46 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Alexander Afanasyev28d586a2014-07-10 20:10:54 -070024 */
Junxiao Shicbba04c2014-01-26 14:21:22 -070025
26#include "pit.hpp"
Alexander Afanasyev750fa1c2015-01-03 17:28:31 -080027
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080028namespace nfd {
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070029namespace pit {
30
Junxiao Shif5409d42016-08-17 02:47:12 +000031static inline bool
32nteHasPitEntries(const name_tree::Entry& nte)
33{
34 return nte.hasPitEntries();
35}
36
Junxiao Shi30d35992014-04-03 14:51:58 -070037Pit::Pit(NameTree& nameTree)
38 : m_nameTree(nameTree)
39 , m_nItems(0)
Junxiao Shicbba04c2014-01-26 14:21:22 -070040{
41}
42
Junxiao Shi09cf13c2016-08-15 02:05:00 +000043std::pair<shared_ptr<Entry>, bool>
Junxiao Shi5e5e4452015-09-24 16:56:52 -070044Pit::findOrInsert(const Interest& interest, bool allowInsert)
Junxiao Shicbba04c2014-01-26 14:21:22 -070045{
Junxiao Shi28797792016-05-26 18:10:18 +000046 // determine which NameTree entry should the PIT entry be attached onto
Junxiao Shi4370fde2016-02-24 12:20:46 -070047 const Name& name = interest.getName();
48 bool isEndWithDigest = name.size() > 0 && name[-1].isImplicitSha256Digest();
Junxiao Shi28797792016-05-26 18:10:18 +000049 const Name& nteName = isEndWithDigest ? name.getPrefix(-1) : name;
50
51 // ensure NameTree entry exists
Junxiao Shi811c0102016-08-10 04:12:45 +000052 name_tree::Entry* nte = nullptr;
Junxiao Shi28797792016-05-26 18:10:18 +000053 if (allowInsert) {
Junxiao Shi7f358432016-08-11 17:06:33 +000054 nte = &m_nameTree.lookup(nteName);
Junxiao Shi28797792016-05-26 18:10:18 +000055 }
56 else {
57 nte = m_nameTree.findExactMatch(nteName);
58 if (nte == nullptr) {
59 return {nullptr, true};
60 }
61 }
Haowei Yuan78c84d12014-02-27 15:35:13 -060062
Junxiao Shi4370fde2016-02-24 12:20:46 -070063 // check if PIT entry already exists
Junxiao Shi28797792016-05-26 18:10:18 +000064 size_t nteNameLen = nteName.size();
Junxiao Shi09cf13c2016-08-15 02:05:00 +000065 const std::vector<shared_ptr<Entry>>& pitEntries = nte->getPitEntries();
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070066 auto it = std::find_if(pitEntries.begin(), pitEntries.end(),
Junxiao Shi09cf13c2016-08-15 02:05:00 +000067 [&interest, nteNameLen] (const shared_ptr<Entry>& entry) -> bool {
Junxiao Shi4370fde2016-02-24 12:20:46 -070068 // initial part of the name is guaranteed to be the same
69 BOOST_ASSERT(entry->getInterest().getName().compare(0, nteNameLen,
70 interest.getName(), 0, nteNameLen) == 0);
71 // compare implicit digest (or its absence) only
72 return entry->getInterest().getName().compare(nteNameLen, Name::npos,
73 interest.getName(), nteNameLen) == 0 &&
74 entry->getInterest().getSelectors() == interest.getSelectors();
75 });
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070076 if (it != pitEntries.end()) {
Junxiao Shi5e5e4452015-09-24 16:56:52 -070077 return {*it, false};
78 }
79
80 if (!allowInsert) {
Junxiao Shi28797792016-05-26 18:10:18 +000081 BOOST_ASSERT(!nte->isEmpty()); // nte shouldn't be created in this call
Junxiao Shi5e5e4452015-09-24 16:56:52 -070082 return {nullptr, true};
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070083 }
Haowei Yuan78c84d12014-02-27 15:35:13 -060084
Junxiao Shi09cf13c2016-08-15 02:05:00 +000085 auto entry = make_shared<Entry>(interest);
Junxiao Shi4370fde2016-02-24 12:20:46 -070086 nte->insertPitEntry(entry);
Junxiao Shi28797792016-05-26 18:10:18 +000087 ++m_nItems;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070088 return {entry, true};
Junxiao Shicbba04c2014-01-26 14:21:22 -070089}
90
Junxiao Shi09cf13c2016-08-15 02:05:00 +000091DataMatchResult
Junxiao Shicbba04c2014-01-26 14:21:22 -070092Pit::findAllDataMatches(const Data& data) const
93{
Junxiao Shif5409d42016-08-17 02:47:12 +000094 auto&& ntMatches = m_nameTree.findAllMatches(data.getName(), &nteHasPitEntries);
Junxiao Shi2b73ca32014-11-17 19:16:08 -070095
Junxiao Shi09cf13c2016-08-15 02:05:00 +000096 DataMatchResult matches;
Junxiao Shi2b73ca32014-11-17 19:16:08 -070097 for (const name_tree::Entry& nte : ntMatches) {
Junxiao Shi09cf13c2016-08-15 02:05:00 +000098 for (const shared_ptr<Entry>& pitEntry : nte.getPitEntries()) {
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070099 if (pitEntry->getInterest().matchesData(data))
100 matches.emplace_back(pitEntry);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700101 }
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700102 }
Haowei Yuan78c84d12014-02-27 15:35:13 -0600103
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700104 return matches;
Junxiao Shicbba04c2014-01-26 14:21:22 -0700105}
106
107void
Junxiao Shidbef6dc2016-08-15 02:58:36 +0000108Pit::erase(Entry* entry, bool canDeleteNte)
Junxiao Shi02b73f52016-07-28 01:48:27 +0000109{
Junxiao Shi7f358432016-08-11 17:06:33 +0000110 name_tree::Entry* nte = m_nameTree.getEntry(*entry);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000111 BOOST_ASSERT(nte != nullptr);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600112
Junxiao Shi02b73f52016-07-28 01:48:27 +0000113 nte->erasePitEntry(entry);
114 if (canDeleteNte) {
Junxiao Shi7f358432016-08-11 17:06:33 +0000115 m_nameTree.eraseIfEmpty(nte);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000116 }
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700117 --m_nItems;
Junxiao Shicbba04c2014-01-26 14:21:22 -0700118}
119
Junxiao Shi02b73f52016-07-28 01:48:27 +0000120void
Junxiao Shif5409d42016-08-17 02:47:12 +0000121Pit::deleteInOutRecords(Entry* entry, const Face& face)
Junxiao Shi02b73f52016-07-28 01:48:27 +0000122{
123 BOOST_ASSERT(entry != nullptr);
124
125 entry->deleteInRecord(face);
126 entry->deleteOutRecord(face);
127
128 /// \todo decide whether to delete PIT entry if there's no more in/out-record left
129}
130
Alexander Afanasyev750fa1c2015-01-03 17:28:31 -0800131Pit::const_iterator
132Pit::begin() const
133{
Junxiao Shif5409d42016-08-17 02:47:12 +0000134 return const_iterator(m_nameTree.fullEnumerate(&nteHasPitEntries).begin());
Alexander Afanasyev750fa1c2015-01-03 17:28:31 -0800135}
136
Junxiao Shi09cf13c2016-08-15 02:05:00 +0000137} // namespace pit
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800138} // namespace nfd