Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014, Regents of the University of California, |
| 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-entry.hpp" |
| 27 | #include <algorithm> |
| 28 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 29 | namespace nfd { |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 30 | namespace pit { |
| 31 | |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 32 | const Name Entry::LOCALHOST_NAME("ndn:/localhost"); |
| 33 | const Name Entry::LOCALHOP_NAME("ndn:/localhop"); |
| 34 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 35 | Entry::Entry(const Interest& interest) |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 36 | : m_interest(interest.shared_from_this()) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 37 | { |
| 38 | } |
| 39 | |
| 40 | const Name& |
| 41 | Entry::getName() const |
| 42 | { |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 43 | return m_interest->getName(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | const InRecordCollection& |
| 47 | Entry::getInRecords() const |
| 48 | { |
| 49 | return m_inRecords; |
| 50 | } |
| 51 | |
| 52 | const OutRecordCollection& |
| 53 | Entry::getOutRecords() const |
| 54 | { |
| 55 | return m_outRecords; |
| 56 | } |
| 57 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 58 | static inline bool |
Junxiao Shi | 11bd9c2 | 2014-03-13 20:44:13 -0700 | [diff] [blame] | 59 | predicate_InRecord_isLocal(const InRecord& inRecord) |
| 60 | { |
| 61 | return inRecord.getFace()->isLocal(); |
| 62 | } |
| 63 | |
| 64 | bool |
| 65 | Entry::hasLocalInRecord() const |
| 66 | { |
| 67 | InRecordCollection::const_iterator it = std::find_if( |
| 68 | m_inRecords.begin(), m_inRecords.end(), &predicate_InRecord_isLocal); |
| 69 | return it != m_inRecords.end(); |
| 70 | } |
| 71 | |
| 72 | static inline bool |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 73 | predicate_FaceRecord_Face(const FaceRecord& faceRecord, const Face* face) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 74 | { |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 75 | return faceRecord.getFace().get() == face; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static inline bool |
| 79 | predicate_FaceRecord_ne_Face_and_unexpired(const FaceRecord& faceRecord, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 80 | const Face* face, const time::steady_clock::TimePoint& now) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 81 | { |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 82 | return faceRecord.getFace().get() != face && faceRecord.getExpiry() >= now; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | bool |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 86 | Entry::canForwardTo(const Face& face) const |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 87 | { |
| 88 | OutRecordCollection::const_iterator outIt = std::find_if( |
| 89 | m_outRecords.begin(), m_outRecords.end(), |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 90 | bind(&predicate_FaceRecord_Face, _1, &face)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 91 | bool hasUnexpiredOutRecord = outIt != m_outRecords.end() && |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 92 | outIt->getExpiry() >= time::steady_clock::now(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 93 | if (hasUnexpiredOutRecord) { |
| 94 | return false; |
| 95 | } |
Junxiao Shi | 11bd9c2 | 2014-03-13 20:44:13 -0700 | [diff] [blame] | 96 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 97 | InRecordCollection::const_iterator inIt = std::find_if( |
| 98 | m_inRecords.begin(), m_inRecords.end(), |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 99 | bind(&predicate_FaceRecord_ne_Face_and_unexpired, _1, &face, time::steady_clock::now())); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 100 | bool hasUnexpiredOtherInRecord = inIt != m_inRecords.end(); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 101 | if (!hasUnexpiredOtherInRecord) { |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | return !this->violatesScope(face); |
| 106 | } |
| 107 | |
| 108 | bool |
| 109 | Entry::violatesScope(const Face& face) const |
| 110 | { |
| 111 | // /localhost scope |
| 112 | bool isViolatingLocalhost = !face.isLocal() && |
| 113 | LOCALHOST_NAME.isPrefixOf(this->getName()); |
| 114 | if (isViolatingLocalhost) { |
| 115 | return true; |
| 116 | } |
| 117 | |
| 118 | // /localhop scope |
| 119 | bool isViolatingLocalhop = !face.isLocal() && |
| 120 | LOCALHOP_NAME.isPrefixOf(this->getName()) && |
| 121 | !this->hasLocalInRecord(); |
| 122 | if (isViolatingLocalhop) { |
| 123 | return true; |
| 124 | } |
| 125 | |
| 126 | return false; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 129 | bool |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 130 | Entry::addNonce(uint32_t nonce) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 131 | { |
Junxiao Shi | 651b75e | 2014-07-17 20:15:09 -0700 | [diff] [blame] | 132 | return m_nonceList.add(nonce); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 135 | InRecordCollection::iterator |
| 136 | Entry::insertOrUpdateInRecord(shared_ptr<Face> face, const Interest& interest) |
| 137 | { |
| 138 | InRecordCollection::iterator it = std::find_if(m_inRecords.begin(), |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 139 | m_inRecords.end(), bind(&predicate_FaceRecord_Face, _1, face.get())); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 140 | if (it == m_inRecords.end()) { |
| 141 | m_inRecords.push_front(InRecord(face)); |
| 142 | it = m_inRecords.begin(); |
| 143 | } |
Junxiao Shi | 11bd9c2 | 2014-03-13 20:44:13 -0700 | [diff] [blame] | 144 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 145 | it->update(interest); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 146 | return it; |
| 147 | } |
| 148 | |
Junxiao Shi | 66f91f8 | 2014-05-10 17:28:58 -0700 | [diff] [blame] | 149 | InRecordCollection::const_iterator |
| 150 | Entry::getInRecord(shared_ptr<Face> face) const |
| 151 | { |
| 152 | return std::find_if(m_inRecords.begin(), m_inRecords.end(), |
| 153 | bind(&predicate_FaceRecord_Face, _1, face.get())); |
| 154 | } |
| 155 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 156 | void |
| 157 | Entry::deleteInRecords() |
| 158 | { |
| 159 | m_inRecords.clear(); |
| 160 | } |
| 161 | |
| 162 | OutRecordCollection::iterator |
| 163 | Entry::insertOrUpdateOutRecord(shared_ptr<Face> face, const Interest& interest) |
| 164 | { |
| 165 | OutRecordCollection::iterator it = std::find_if(m_outRecords.begin(), |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 166 | m_outRecords.end(), bind(&predicate_FaceRecord_Face, _1, face.get())); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 167 | if (it == m_outRecords.end()) { |
| 168 | m_outRecords.push_front(OutRecord(face)); |
| 169 | it = m_outRecords.begin(); |
| 170 | } |
Junxiao Shi | 11bd9c2 | 2014-03-13 20:44:13 -0700 | [diff] [blame] | 171 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 172 | it->update(interest); |
Junxiao Shi | 651b75e | 2014-07-17 20:15:09 -0700 | [diff] [blame] | 173 | m_nonceList.add(interest.getNonce()); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 174 | return it; |
| 175 | } |
| 176 | |
Junxiao Shi | 66f91f8 | 2014-05-10 17:28:58 -0700 | [diff] [blame] | 177 | OutRecordCollection::const_iterator |
| 178 | Entry::getOutRecord(shared_ptr<Face> face) const |
| 179 | { |
| 180 | return std::find_if(m_outRecords.begin(), m_outRecords.end(), |
| 181 | bind(&predicate_FaceRecord_Face, _1, face.get())); |
| 182 | } |
| 183 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 184 | void |
| 185 | Entry::deleteOutRecord(shared_ptr<Face> face) |
| 186 | { |
| 187 | OutRecordCollection::iterator it = std::find_if(m_outRecords.begin(), |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 188 | m_outRecords.end(), bind(&predicate_FaceRecord_Face, _1, face.get())); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 189 | if (it != m_outRecords.end()) { |
| 190 | m_outRecords.erase(it); |
| 191 | } |
| 192 | } |
| 193 | |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 194 | static inline bool |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 195 | predicate_FaceRecord_unexpired(const FaceRecord& faceRecord, const time::steady_clock::TimePoint& now) |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 196 | { |
| 197 | return faceRecord.getExpiry() >= now; |
| 198 | } |
| 199 | |
| 200 | bool |
| 201 | Entry::hasUnexpiredOutRecords() const |
| 202 | { |
| 203 | OutRecordCollection::const_iterator it = std::find_if(m_outRecords.begin(), |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 204 | m_outRecords.end(), bind(&predicate_FaceRecord_unexpired, _1, time::steady_clock::now())); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 205 | return it != m_outRecords.end(); |
| 206 | } |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 207 | |
| 208 | } // namespace pit |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 209 | } // namespace nfd |