blob: 4de7bcd909dc7610de290b39da85d9b0de5c3d08 [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Teng Liang6f09ab62018-03-01 20:04:08 -07002/*
ashiqopud3ae85d2019-02-17 02:29:55 +00003 * Copyright (c) 2014-2019, Regents of the University of California,
Junxiao Shicde37ad2015-12-24 01:02:05 -07004 * 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"
Davide Pesavento50a6af32019-02-21 00:04:40 -050027
Junxiao Shicbba04c2014-01-26 14:21:22 -070028#include <algorithm>
29
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080030namespace nfd {
Junxiao Shicbba04c2014-01-26 14:21:22 -070031namespace pit {
32
33Entry::Entry(const Interest& interest)
Davide Pesavento50a6af32019-02-21 00:04:40 -050034 : m_interest(interest.shared_from_this())
Junxiao Shicbba04c2014-01-26 14:21:22 -070035{
36}
37
Junxiao Shia2742922016-11-17 22:53:23 +000038bool
39Entry::canMatch(const Interest& interest, size_t nEqualNameComps) const
40{
41 BOOST_ASSERT(m_interest->getName().compare(0, nEqualNameComps,
42 interest.getName(), 0, nEqualNameComps) == 0);
43
44 return m_interest->getName().compare(nEqualNameComps, Name::npos,
45 interest.getName(), nEqualNameComps) == 0 &&
Junxiao Shi25d97282019-05-14 13:44:46 -060046 m_interest->getCanBePrefix() == interest.getCanBePrefix() &&
47 m_interest->getMustBeFresh() == interest.getMustBeFresh();
48 /// \todo #3162 match ForwardingHint field
Junxiao Shia2742922016-11-17 22:53:23 +000049}
50
Junxiao Shi4846f372016-04-05 13:39:30 -070051InRecordCollection::iterator
ashiqopu77d0bfd2019-02-20 20:37:31 +000052Entry::getInRecord(const Face& face, EndpointId endpointId)
Junxiao Shicbba04c2014-01-26 14:21:22 -070053{
Junxiao Shi4846f372016-04-05 13:39:30 -070054 return std::find_if(m_inRecords.begin(), m_inRecords.end(),
ashiqopud3ae85d2019-02-17 02:29:55 +000055 [&face, endpointId] (const InRecord& inRecord) {
56 return &inRecord.getFace() == &face && inRecord.getEndpointId() == endpointId;
57 });
Junxiao Shicbba04c2014-01-26 14:21:22 -070058}
59
Junxiao Shicbba04c2014-01-26 14:21:22 -070060InRecordCollection::iterator
ashiqopu77d0bfd2019-02-20 20:37:31 +000061Entry::insertOrUpdateInRecord(Face& face, EndpointId endpointId, const Interest& interest)
Junxiao Shicbba04c2014-01-26 14:21:22 -070062{
Junxiao Shia2742922016-11-17 22:53:23 +000063 BOOST_ASSERT(this->canMatch(interest));
64
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070065 auto it = std::find_if(m_inRecords.begin(), m_inRecords.end(),
ashiqopud3ae85d2019-02-17 02:29:55 +000066 [&face, endpointId] (const InRecord& inRecord) {
67 return &inRecord.getFace() == &face && inRecord.getEndpointId() == endpointId;
68 });
Junxiao Shicbba04c2014-01-26 14:21:22 -070069 if (it == m_inRecords.end()) {
ashiqopud3ae85d2019-02-17 02:29:55 +000070 m_inRecords.emplace_front(face, endpointId);
Junxiao Shicbba04c2014-01-26 14:21:22 -070071 it = m_inRecords.begin();
72 }
Junxiao Shi11bd9c22014-03-13 20:44:13 -070073
Junxiao Shicbba04c2014-01-26 14:21:22 -070074 it->update(interest);
Junxiao Shicbba04c2014-01-26 14:21:22 -070075 return it;
76}
77
78void
ashiqopu77d0bfd2019-02-20 20:37:31 +000079Entry::deleteInRecord(const Face& face, EndpointId endpointId)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070080{
81 auto it = std::find_if(m_inRecords.begin(), m_inRecords.end(),
ashiqopud3ae85d2019-02-17 02:29:55 +000082 [&face, endpointId] (const InRecord& inRecord) {
83 return &inRecord.getFace() == &face && inRecord.getEndpointId() == endpointId;
84 });
Junxiao Shi5e5e4452015-09-24 16:56:52 -070085 if (it != m_inRecords.end()) {
86 m_inRecords.erase(it);
87 }
88}
89
90void
Junxiao Shi4846f372016-04-05 13:39:30 -070091Entry::clearInRecords()
Junxiao Shicbba04c2014-01-26 14:21:22 -070092{
93 m_inRecords.clear();
94}
95
96OutRecordCollection::iterator
ashiqopu77d0bfd2019-02-20 20:37:31 +000097Entry::getOutRecord(const Face& face, EndpointId endpointId)
Junxiao Shi4846f372016-04-05 13:39:30 -070098{
99 return std::find_if(m_outRecords.begin(), m_outRecords.end(),
ashiqopud3ae85d2019-02-17 02:29:55 +0000100 [&face, endpointId] (const OutRecord& outRecord) {
101 return &outRecord.getFace() == &face && outRecord.getEndpointId() == endpointId;
102 });
Junxiao Shi4846f372016-04-05 13:39:30 -0700103}
104
105OutRecordCollection::iterator
ashiqopu77d0bfd2019-02-20 20:37:31 +0000106Entry::insertOrUpdateOutRecord(Face& face, EndpointId endpointId, const Interest& interest)
Junxiao Shicbba04c2014-01-26 14:21:22 -0700107{
Junxiao Shia2742922016-11-17 22:53:23 +0000108 BOOST_ASSERT(this->canMatch(interest));
109
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700110 auto it = std::find_if(m_outRecords.begin(), m_outRecords.end(),
ashiqopud3ae85d2019-02-17 02:29:55 +0000111 [&face, endpointId] (const OutRecord& outRecord) {
112 return &outRecord.getFace() == &face && outRecord.getEndpointId() == endpointId;
113 });
Junxiao Shicbba04c2014-01-26 14:21:22 -0700114 if (it == m_outRecords.end()) {
ashiqopud3ae85d2019-02-17 02:29:55 +0000115 m_outRecords.emplace_front(face, endpointId);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700116 it = m_outRecords.begin();
117 }
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700118
Junxiao Shicbba04c2014-01-26 14:21:22 -0700119 it->update(interest);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700120 return it;
121}
122
123void
ashiqopu77d0bfd2019-02-20 20:37:31 +0000124Entry::deleteOutRecord(const Face& face, EndpointId endpointId)
Junxiao Shicbba04c2014-01-26 14:21:22 -0700125{
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700126 auto it = std::find_if(m_outRecords.begin(), m_outRecords.end(),
ashiqopud3ae85d2019-02-17 02:29:55 +0000127 [&face, endpointId] (const OutRecord& outRecord) {
128 return &outRecord.getFace() == &face && outRecord.getEndpointId() == endpointId;
129 });
Junxiao Shicbba04c2014-01-26 14:21:22 -0700130 if (it != m_outRecords.end()) {
131 m_outRecords.erase(it);
132 }
133}
134
ashiqopud3ae85d2019-02-17 02:29:55 +0000135void
136Entry::deleteInOutRecordsByFace(const Face& face)
137{
138 m_inRecords.remove_if([&face] (const InRecord& inRecord) {
139 return &inRecord.getFace() == &face;
140 });
141 m_outRecords.remove_if([&face] (const OutRecord& outRecord) {
142 return &outRecord.getFace() == &face;
143 });
144}
145
Junxiao Shicbba04c2014-01-26 14:21:22 -0700146} // namespace pit
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800147} // namespace nfd