Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 042a331 | 2017-09-15 02:51:20 +0000 | [diff] [blame] | 2 | /* |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 25 | |
| 26 | #include "pit.hpp" |
Alexander Afanasyev | 750fa1c | 2015-01-03 17:28:31 -0800 | [diff] [blame] | 27 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 28 | namespace nfd { |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 29 | namespace pit { |
| 30 | |
Junxiao Shi | f5409d4 | 2016-08-17 02:47:12 +0000 | [diff] [blame] | 31 | static inline bool |
| 32 | nteHasPitEntries(const name_tree::Entry& nte) |
| 33 | { |
| 34 | return nte.hasPitEntries(); |
| 35 | } |
| 36 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 37 | Pit::Pit(NameTree& nameTree) |
| 38 | : m_nameTree(nameTree) |
| 39 | , m_nItems(0) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 40 | { |
| 41 | } |
| 42 | |
Junxiao Shi | 09cf13c | 2016-08-15 02:05:00 +0000 | [diff] [blame] | 43 | std::pair<shared_ptr<Entry>, bool> |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 44 | Pit::findOrInsert(const Interest& interest, bool allowInsert) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 45 | { |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 46 | // determine which NameTree entry should the PIT entry be attached onto |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 47 | const Name& name = interest.getName(); |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 48 | bool hasDigest = name.size() > 0 && name[-1].isImplicitSha256Digest(); |
| 49 | size_t nteDepth = name.size() - static_cast<int>(hasDigest); |
| 50 | nteDepth = std::min(nteDepth, NameTree::getMaxDepth()); |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 51 | |
| 52 | // ensure NameTree entry exists |
Junxiao Shi | 811c010 | 2016-08-10 04:12:45 +0000 | [diff] [blame] | 53 | name_tree::Entry* nte = nullptr; |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 54 | if (allowInsert) { |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 55 | nte = &m_nameTree.lookup(name, nteDepth); |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 56 | } |
| 57 | else { |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 58 | nte = m_nameTree.findExactMatch(name, nteDepth); |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 59 | if (nte == nullptr) { |
| 60 | return {nullptr, true}; |
| 61 | } |
| 62 | } |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 63 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 64 | // check if PIT entry already exists |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 65 | const auto& pitEntries = nte->getPitEntries(); |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 66 | auto it = std::find_if(pitEntries.begin(), pitEntries.end(), |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 67 | [&interest, nteDepth] (const shared_ptr<Entry>& entry) { |
| 68 | // NameTree guarantees first nteDepth components are equal |
| 69 | return entry->canMatch(interest, nteDepth); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 70 | }); |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 71 | if (it != pitEntries.end()) { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 72 | return {*it, false}; |
| 73 | } |
| 74 | |
| 75 | if (!allowInsert) { |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 76 | BOOST_ASSERT(!nte->isEmpty()); // nte shouldn't be created in this call |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 77 | return {nullptr, true}; |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 78 | } |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 79 | |
Junxiao Shi | 09cf13c | 2016-08-15 02:05:00 +0000 | [diff] [blame] | 80 | auto entry = make_shared<Entry>(interest); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 81 | nte->insertPitEntry(entry); |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 82 | ++m_nItems; |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 83 | return {entry, true}; |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Junxiao Shi | 09cf13c | 2016-08-15 02:05:00 +0000 | [diff] [blame] | 86 | DataMatchResult |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 87 | Pit::findAllDataMatches(const Data& data) const |
| 88 | { |
Junxiao Shi | f5409d4 | 2016-08-17 02:47:12 +0000 | [diff] [blame] | 89 | auto&& ntMatches = m_nameTree.findAllMatches(data.getName(), &nteHasPitEntries); |
Junxiao Shi | 2b73ca3 | 2014-11-17 19:16:08 -0700 | [diff] [blame] | 90 | |
Junxiao Shi | 09cf13c | 2016-08-15 02:05:00 +0000 | [diff] [blame] | 91 | DataMatchResult matches; |
Junxiao Shi | 2b73ca3 | 2014-11-17 19:16:08 -0700 | [diff] [blame] | 92 | for (const name_tree::Entry& nte : ntMatches) { |
Junxiao Shi | 09cf13c | 2016-08-15 02:05:00 +0000 | [diff] [blame] | 93 | for (const shared_ptr<Entry>& pitEntry : nte.getPitEntries()) { |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 94 | if (pitEntry->getInterest().matchesData(data)) |
| 95 | matches.emplace_back(pitEntry); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 96 | } |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 97 | } |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 98 | |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 99 | return matches; |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void |
Junxiao Shi | dbef6dc | 2016-08-15 02:58:36 +0000 | [diff] [blame] | 103 | Pit::erase(Entry* entry, bool canDeleteNte) |
Junxiao Shi | 02b73f5 | 2016-07-28 01:48:27 +0000 | [diff] [blame] | 104 | { |
Junxiao Shi | 7f35843 | 2016-08-11 17:06:33 +0000 | [diff] [blame] | 105 | name_tree::Entry* nte = m_nameTree.getEntry(*entry); |
Junxiao Shi | 02b73f5 | 2016-07-28 01:48:27 +0000 | [diff] [blame] | 106 | BOOST_ASSERT(nte != nullptr); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 107 | |
Junxiao Shi | 02b73f5 | 2016-07-28 01:48:27 +0000 | [diff] [blame] | 108 | nte->erasePitEntry(entry); |
| 109 | if (canDeleteNte) { |
Junxiao Shi | 7f35843 | 2016-08-11 17:06:33 +0000 | [diff] [blame] | 110 | m_nameTree.eraseIfEmpty(nte); |
Junxiao Shi | 02b73f5 | 2016-07-28 01:48:27 +0000 | [diff] [blame] | 111 | } |
Junxiao Shi | 9f7455b | 2014-04-07 21:02:16 -0700 | [diff] [blame] | 112 | --m_nItems; |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Junxiao Shi | 02b73f5 | 2016-07-28 01:48:27 +0000 | [diff] [blame] | 115 | void |
Junxiao Shi | f5409d4 | 2016-08-17 02:47:12 +0000 | [diff] [blame] | 116 | Pit::deleteInOutRecords(Entry* entry, const Face& face) |
Junxiao Shi | 02b73f5 | 2016-07-28 01:48:27 +0000 | [diff] [blame] | 117 | { |
| 118 | BOOST_ASSERT(entry != nullptr); |
| 119 | |
| 120 | entry->deleteInRecord(face); |
| 121 | entry->deleteOutRecord(face); |
| 122 | |
| 123 | /// \todo decide whether to delete PIT entry if there's no more in/out-record left |
| 124 | } |
| 125 | |
Alexander Afanasyev | 750fa1c | 2015-01-03 17:28:31 -0800 | [diff] [blame] | 126 | Pit::const_iterator |
| 127 | Pit::begin() const |
| 128 | { |
Junxiao Shi | f5409d4 | 2016-08-17 02:47:12 +0000 | [diff] [blame] | 129 | return const_iterator(m_nameTree.fullEnumerate(&nteHasPitEntries).begin()); |
Alexander Afanasyev | 750fa1c | 2015-01-03 17:28:31 -0800 | [diff] [blame] | 130 | } |
| 131 | |
Junxiao Shi | 09cf13c | 2016-08-15 02:05:00 +0000 | [diff] [blame] | 132 | } // namespace pit |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 133 | } // namespace nfd |