38 : m_nameTree(nameTree)
43 std::pair<shared_ptr<Entry>,
bool>
44 Pit::findOrInsert(
const Interest& interest,
bool allowInsert)
47 const Name& name = interest.getName();
48 bool isEndWithDigest = name.size() > 0 && name[-1].isImplicitSha256Digest();
49 const Name& nteName = isEndWithDigest ? name.getPrefix(-1) : name;
54 nte = &m_nameTree.lookup(nteName,
true);
57 nte = m_nameTree.findExactMatch(nteName);
59 return {
nullptr,
true};
64 size_t nteNameLen = nte->
getName().size();
65 const std::vector<shared_ptr<Entry>>& pitEntries = nte->
getPitEntries();
66 auto it = std::find_if(pitEntries.begin(), pitEntries.end(),
67 [&interest, nteNameLen] (
const shared_ptr<Entry>& entry) {
70 return entry->canMatch(interest, nteNameLen);
72 if (it != pitEntries.end()) {
78 return {
nullptr,
true};
81 auto entry = make_shared<Entry>(interest);
90 auto&& ntMatches = m_nameTree.findAllMatches(data.getName(), &
nteHasPitEntries);
94 for (
const shared_ptr<Entry>& pitEntry : nte.getPitEntries()) {
95 if (pitEntry->getInterest().matchesData(data))
96 matches.emplace_back(pitEntry);
107 BOOST_ASSERT(nte !=
nullptr);
111 m_nameTree.eraseIfEmpty(nte);
119 BOOST_ASSERT(entry !=
nullptr);
const_iterator begin() const
void deleteInRecord(const Face &face)
delete the in-record for face if it exists
void erasePitEntry(pit::Entry *pitEntry)
void deleteOutRecord(const Face &face)
delete the out-record for face if it exists
const std::vector< shared_ptr< pit::Entry > > & getPitEntries() const
bool hasPitEntries() const
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
void deleteInOutRecords(Entry *entry, const Face &face)
deletes in-record and out-record for face
an entry in the name tree
static bool nteHasPitEntries(const name_tree::Entry &nte)
DataMatchResult findAllDataMatches(const Data &data) const
performs a Data match
void erase(Entry *entry)
deletes an entry
std::vector< shared_ptr< Entry > > DataMatchResult
const Name & getName() const
void insertPitEntry(shared_ptr< pit::Entry > pitEntry)