blob: 583977106387f693b028de7b097ecb3ea60df28a [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev28d586a2014-07-10 20:10:54 -07003 * 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 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-entry.hpp"
27#include <algorithm>
28
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080029namespace nfd {
Junxiao Shicbba04c2014-01-26 14:21:22 -070030namespace pit {
31
Junxiao Shi57f0f312014-03-16 11:52:20 -070032const Name Entry::LOCALHOST_NAME("ndn:/localhost");
33const Name Entry::LOCALHOP_NAME("ndn:/localhop");
34
Junxiao Shicbba04c2014-01-26 14:21:22 -070035Entry::Entry(const Interest& interest)
Alexander Afanasyev28d586a2014-07-10 20:10:54 -070036 : m_interest(interest.shared_from_this())
Junxiao Shicbba04c2014-01-26 14:21:22 -070037{
38}
39
40const Name&
41Entry::getName() const
42{
Alexander Afanasyev28d586a2014-07-10 20:10:54 -070043 return m_interest->getName();
Junxiao Shicbba04c2014-01-26 14:21:22 -070044}
45
46const InRecordCollection&
47Entry::getInRecords() const
48{
49 return m_inRecords;
50}
51
52const OutRecordCollection&
53Entry::getOutRecords() const
54{
55 return m_outRecords;
56}
57
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070058static inline bool
Junxiao Shi11bd9c22014-03-13 20:44:13 -070059predicate_InRecord_isLocal(const InRecord& inRecord)
60{
61 return inRecord.getFace()->isLocal();
62}
63
64bool
65Entry::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
72static inline bool
Junxiao Shi57f0f312014-03-16 11:52:20 -070073predicate_FaceRecord_Face(const FaceRecord& faceRecord, const Face* face)
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070074{
Junxiao Shi57f0f312014-03-16 11:52:20 -070075 return faceRecord.getFace().get() == face;
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070076}
77
78static inline bool
79predicate_FaceRecord_ne_Face_and_unexpired(const FaceRecord& faceRecord,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070080 const Face* face, const time::steady_clock::TimePoint& now)
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070081{
Junxiao Shi57f0f312014-03-16 11:52:20 -070082 return faceRecord.getFace().get() != face && faceRecord.getExpiry() >= now;
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070083}
84
85bool
Junxiao Shi57f0f312014-03-16 11:52:20 -070086Entry::canForwardTo(const Face& face) const
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070087{
88 OutRecordCollection::const_iterator outIt = std::find_if(
89 m_outRecords.begin(), m_outRecords.end(),
Junxiao Shi57f0f312014-03-16 11:52:20 -070090 bind(&predicate_FaceRecord_Face, _1, &face));
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070091 bool hasUnexpiredOutRecord = outIt != m_outRecords.end() &&
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070092 outIt->getExpiry() >= time::steady_clock::now();
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070093 if (hasUnexpiredOutRecord) {
94 return false;
95 }
Junxiao Shi11bd9c22014-03-13 20:44:13 -070096
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070097 InRecordCollection::const_iterator inIt = std::find_if(
98 m_inRecords.begin(), m_inRecords.end(),
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070099 bind(&predicate_FaceRecord_ne_Face_and_unexpired, _1, &face, time::steady_clock::now()));
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -0700100 bool hasUnexpiredOtherInRecord = inIt != m_inRecords.end();
Junxiao Shi57f0f312014-03-16 11:52:20 -0700101 if (!hasUnexpiredOtherInRecord) {
102 return false;
103 }
104
105 return !this->violatesScope(face);
106}
107
108bool
109Entry::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 Shi0b5fbbb2014-02-20 15:54:03 -0700127}
128
Junxiao Shicbba04c2014-01-26 14:21:22 -0700129bool
Junxiao Shid3c792f2014-01-30 00:46:13 -0700130Entry::addNonce(uint32_t nonce)
Junxiao Shicbba04c2014-01-26 14:21:22 -0700131{
Junxiao Shid3c792f2014-01-30 00:46:13 -0700132 std::pair<std::set<uint32_t>::iterator, bool> insertResult =
133 m_nonces.insert(nonce);
134
135 return insertResult.second;
Junxiao Shicbba04c2014-01-26 14:21:22 -0700136}
137
Junxiao Shicbba04c2014-01-26 14:21:22 -0700138InRecordCollection::iterator
139Entry::insertOrUpdateInRecord(shared_ptr<Face> face, const Interest& interest)
140{
141 InRecordCollection::iterator it = std::find_if(m_inRecords.begin(),
Junxiao Shi57f0f312014-03-16 11:52:20 -0700142 m_inRecords.end(), bind(&predicate_FaceRecord_Face, _1, face.get()));
Junxiao Shicbba04c2014-01-26 14:21:22 -0700143 if (it == m_inRecords.end()) {
144 m_inRecords.push_front(InRecord(face));
145 it = m_inRecords.begin();
146 }
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700147
Junxiao Shicbba04c2014-01-26 14:21:22 -0700148 it->update(interest);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700149 return it;
150}
151
Junxiao Shi66f91f82014-05-10 17:28:58 -0700152InRecordCollection::const_iterator
153Entry::getInRecord(shared_ptr<Face> face) const
154{
155 return std::find_if(m_inRecords.begin(), m_inRecords.end(),
156 bind(&predicate_FaceRecord_Face, _1, face.get()));
157}
158
Junxiao Shicbba04c2014-01-26 14:21:22 -0700159void
160Entry::deleteInRecords()
161{
162 m_inRecords.clear();
163}
164
165OutRecordCollection::iterator
166Entry::insertOrUpdateOutRecord(shared_ptr<Face> face, const Interest& interest)
167{
168 OutRecordCollection::iterator it = std::find_if(m_outRecords.begin(),
Junxiao Shi57f0f312014-03-16 11:52:20 -0700169 m_outRecords.end(), bind(&predicate_FaceRecord_Face, _1, face.get()));
Junxiao Shicbba04c2014-01-26 14:21:22 -0700170 if (it == m_outRecords.end()) {
171 m_outRecords.push_front(OutRecord(face));
172 it = m_outRecords.begin();
173 }
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700174
Junxiao Shicbba04c2014-01-26 14:21:22 -0700175 it->update(interest);
176 m_nonces.insert(interest.getNonce());
177 return it;
178}
179
Junxiao Shi66f91f82014-05-10 17:28:58 -0700180OutRecordCollection::const_iterator
181Entry::getOutRecord(shared_ptr<Face> face) const
182{
183 return std::find_if(m_outRecords.begin(), m_outRecords.end(),
184 bind(&predicate_FaceRecord_Face, _1, face.get()));
185}
186
Junxiao Shicbba04c2014-01-26 14:21:22 -0700187void
188Entry::deleteOutRecord(shared_ptr<Face> face)
189{
190 OutRecordCollection::iterator it = std::find_if(m_outRecords.begin(),
Junxiao Shi57f0f312014-03-16 11:52:20 -0700191 m_outRecords.end(), bind(&predicate_FaceRecord_Face, _1, face.get()));
Junxiao Shicbba04c2014-01-26 14:21:22 -0700192 if (it != m_outRecords.end()) {
193 m_outRecords.erase(it);
194 }
195}
196
Junxiao Shi57f0f312014-03-16 11:52:20 -0700197static inline bool
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700198predicate_FaceRecord_unexpired(const FaceRecord& faceRecord, const time::steady_clock::TimePoint& now)
Junxiao Shi57f0f312014-03-16 11:52:20 -0700199{
200 return faceRecord.getExpiry() >= now;
201}
202
203bool
204Entry::hasUnexpiredOutRecords() const
205{
206 OutRecordCollection::const_iterator it = std::find_if(m_outRecords.begin(),
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700207 m_outRecords.end(), bind(&predicate_FaceRecord_unexpired, _1, time::steady_clock::now()));
Junxiao Shi57f0f312014-03-16 11:52:20 -0700208 return it != m_outRecords.end();
209}
Junxiao Shicbba04c2014-01-26 14:21:22 -0700210
211} // namespace pit
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800212} // namespace nfd