/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /** * Copyright (c) 2014-2016, Regents of the University of California, * Arizona Board of Regents, * Colorado State University, * University Pierre & Marie Curie, Sorbonne University, * Washington University in St. Louis, * Beijing Institute of Technology, * The University of Memphis. * * This file is part of NFD (Named Data Networking Forwarding Daemon). * See AUTHORS.md for complete list of NFD authors and contributors. * * NFD is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Foundation, * either version 3 of the License, or (at your option) any later version. * * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * NFD, e.g., in COPYING.md file. If not, see . */ #include "pit.hpp" #include #include #include #include namespace nfd { namespace pit { #if HAVE_IS_MOVE_CONSTRUCTIBLE static_assert(std::is_move_constructible::value, "DataMatchResult must be MoveConstructible"); #endif // HAVE_IS_MOVE_CONSTRUCTIBLE } // namespace pit // http://en.cppreference.com/w/cpp/concept/ForwardIterator BOOST_CONCEPT_ASSERT((boost::ForwardIterator)); // boost::ForwardIterator follows SGI standard http://www.sgi.com/tech/stl/ForwardIterator.html, // which doesn't require DefaultConstructible #ifdef HAVE_IS_DEFAULT_CONSTRUCTIBLE static_assert(std::is_default_constructible::value, "Pit::const_iterator must be default-constructible"); #else BOOST_CONCEPT_ASSERT((boost::DefaultConstructible)); #endif // HAVE_IS_DEFAULT_CONSTRUCTIBLE Pit::Pit(NameTree& nameTree) : m_nameTree(nameTree) , m_nItems(0) { } std::pair, bool> Pit::findOrInsert(const Interest& interest, bool allowInsert) { // determine which NameTree entry should the PIT entry be attached onto const Name& name = interest.getName(); bool isEndWithDigest = name.size() > 0 && name[-1].isImplicitSha256Digest(); const Name& nteName = isEndWithDigest ? name.getPrefix(-1) : name; // ensure NameTree entry exists name_tree::Entry* nte = nullptr; if (allowInsert) { nte = m_nameTree.lookup(nteName).get(); BOOST_ASSERT(nte != nullptr); } else { nte = m_nameTree.findExactMatch(nteName); if (nte == nullptr) { return {nullptr, true}; } } // check if PIT entry already exists size_t nteNameLen = nteName.size(); const std::vector>& pitEntries = nte->getPitEntries(); auto it = std::find_if(pitEntries.begin(), pitEntries.end(), [&interest, nteNameLen] (const shared_ptr& entry) -> bool { // initial part of the name is guaranteed to be the same BOOST_ASSERT(entry->getInterest().getName().compare(0, nteNameLen, interest.getName(), 0, nteNameLen) == 0); // compare implicit digest (or its absence) only return entry->getInterest().getName().compare(nteNameLen, Name::npos, interest.getName(), nteNameLen) == 0 && entry->getInterest().getSelectors() == interest.getSelectors(); }); if (it != pitEntries.end()) { return {*it, false}; } if (!allowInsert) { BOOST_ASSERT(!nte->isEmpty()); // nte shouldn't be created in this call return {nullptr, true}; } auto entry = make_shared(interest); nte->insertPitEntry(entry); ++m_nItems; return {entry, true}; } pit::DataMatchResult Pit::findAllDataMatches(const Data& data) const { auto&& ntMatches = m_nameTree.findAllMatches(data.getName(), [] (const name_tree::Entry& entry) { return entry.hasPitEntries(); }); pit::DataMatchResult matches; for (const name_tree::Entry& nte : ntMatches) { for (const shared_ptr& pitEntry : nte.getPitEntries()) { if (pitEntry->getInterest().matchesData(data)) matches.emplace_back(pitEntry); } } return matches; } void Pit::erase(shared_ptr entry) { this->erase(entry, true); } void Pit::erase(shared_ptr entry, bool canDeleteNte) { shared_ptr nte = m_nameTree.getEntry(*entry); BOOST_ASSERT(nte != nullptr); nte->erasePitEntry(entry); if (canDeleteNte) { m_nameTree.eraseIfEmpty(nte.get()); } --m_nItems; } void Pit::deleteInOutRecords(shared_ptr entry, const Face& face) { BOOST_ASSERT(entry != nullptr); entry->deleteInRecord(face); entry->deleteOutRecord(face); /// \todo decide whether to delete PIT entry if there's no more in/out-record left } Pit::const_iterator Pit::begin() const { return const_iterator(m_nameTree.fullEnumerate( [] (const name_tree::Entry& entry) { return entry.hasPitEntries(); }).begin()); } } // namespace nfd