34 , dataFreshnessPeriod(0_ms)
35 , m_interest(interest.shared_from_this())
36 , m_nameTreeEntry(nullptr)
43 BOOST_ASSERT(m_interest->getName().compare(0, nEqualNameComps,
44 interest.
getName(), 0, nEqualNameComps) == 0);
46 return m_interest->getName().compare(nEqualNameComps,
Name::npos,
47 interest.
getName(), nEqualNameComps) == 0 &&
55 return std::find_if(m_inRecords.begin(), m_inRecords.end(),
56 [&face] (
const InRecord& inRecord) {
return &inRecord.getFace() == &face; });
62 BOOST_ASSERT(this->
canMatch(interest));
64 auto it = std::find_if(m_inRecords.begin(), m_inRecords.end(),
65 [&face] (
const InRecord& inRecord) {
return &inRecord.getFace() == &face; });
66 if (it == m_inRecords.end()) {
67 m_inRecords.emplace_front(face);
68 it = m_inRecords.begin();
78 auto it = std::find_if(m_inRecords.begin(), m_inRecords.end(),
79 [&face] (
const InRecord& inRecord) {
return &inRecord.getFace() == &face; });
80 if (it != m_inRecords.end()) {
81 m_inRecords.erase(it);
94 return std::find_if(m_outRecords.begin(), m_outRecords.end(),
95 [&face] (
const OutRecord& outRecord) {
return &outRecord.getFace() == &face; });
101 BOOST_ASSERT(this->
canMatch(interest));
103 auto it = std::find_if(m_outRecords.begin(), m_outRecords.end(),
104 [&face] (
const OutRecord& outRecord) {
return &outRecord.getFace() == &face; });
105 if (it == m_outRecords.end()) {
106 m_outRecords.emplace_front(face);
107 it = m_outRecords.begin();
110 it->update(interest);
117 auto it = std::find_if(m_outRecords.begin(), m_outRecords.end(),
118 [&face] (
const OutRecord& outRecord) {
return &outRecord.getFace() == &face; });
119 if (it != m_outRecords.end()) {
120 m_outRecords.erase(it);
OutRecordCollection::iterator getOutRecord(const Face &face)
get the out-record for face
const Selectors & getSelectors() const
void clearInRecords()
delete all in-records
generalization of a network interface
contains information about an Interest from an incoming face
InRecordCollection::iterator getInRecord(const Face &face)
get the in-record for face
static const size_t npos
indicates "until the end" in getSubName and compare
Represents an Interest packet.
Table::const_iterator iterator
Copyright (c) 2011-2015 Regents of the University of California.
void deleteOutRecord(const Face &face)
delete the out-record for face if it exists
Entry(const Interest &interest)
void deleteInRecord(const Face &face)
delete the in-record for face if it exists
bool canMatch(const Interest &interest, size_t nEqualNameComps=0) const
InRecordCollection::iterator insertOrUpdateInRecord(Face &face, const Interest &interest)
insert or update an in-record
OutRecordCollection::iterator insertOrUpdateOutRecord(Face &face, const Interest &interest)
insert or update an out-record
contains information about an Interest toward an outgoing face
const Name & getName() const