/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /** * Copyright (c) 2014-2015, 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 "cs.hpp" #include "cs-policy-priority-fifo.hpp" #include "core/logger.hpp" #include "core/algorithm.hpp" NFD_LOG_INIT("ContentStore"); namespace nfd { namespace cs { // 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, "Cs::const_iterator must be default-constructible"); #else BOOST_CONCEPT_ASSERT((boost::DefaultConstructible)); #endif // HAVE_IS_DEFAULT_CONSTRUCTIBLE unique_ptr makeDefaultPolicy() { return unique_ptr(new PriorityFifoPolicy()); } Cs::Cs(size_t nMaxPackets, unique_ptr policy) { this->setPolicyImpl(policy); m_policy->setLimit(nMaxPackets); } void Cs::setLimit(size_t nMaxPackets) { m_policy->setLimit(nMaxPackets); } size_t Cs::getLimit() const { return m_policy->getLimit(); } void Cs::setPolicy(unique_ptr policy) { BOOST_ASSERT(policy != nullptr); BOOST_ASSERT(m_policy != nullptr); size_t limit = m_policy->getLimit(); this->setPolicyImpl(policy); m_policy->setLimit(limit); } bool Cs::insert(const Data& data, bool isUnsolicited) { NFD_LOG_DEBUG("insert " << data.getName()); // recognize CachingPolicy using ndn::nfd::LocalControlHeader; const LocalControlHeader& lch = data.getLocalControlHeader(); if (lch.hasCachingPolicy()) { LocalControlHeader::CachingPolicy policy = lch.getCachingPolicy(); if (policy == LocalControlHeader::CachingPolicy::NO_CACHE) { return false; } } bool isNewEntry = false; iterator it; // use .insert because gcc46 does not support .emplace std::tie(it, isNewEntry) = m_table.insert(EntryImpl(data.shared_from_this(), isUnsolicited)); EntryImpl& entry = const_cast(*it); entry.updateStaleTime(); if (!isNewEntry) { // existing entry // XXX This doesn't forbid unsolicited Data from refreshing a solicited entry. if (entry.isUnsolicited() && !isUnsolicited) { entry.unsetUnsolicited(); } m_policy->afterRefresh(it); } else { m_policy->afterInsert(it); } return true; } void Cs::find(const Interest& interest, const HitCallback& hitCallback, const MissCallback& missCallback) const { BOOST_ASSERT(static_cast(hitCallback)); BOOST_ASSERT(static_cast(missCallback)); const Name& prefix = interest.getName(); bool isRightmost = interest.getChildSelector() == 1; NFD_LOG_DEBUG("find " << prefix << (isRightmost ? " R" : " L")); iterator first = m_table.lower_bound(prefix); iterator last = m_table.end(); if (prefix.size() > 0) { last = m_table.lower_bound(prefix.getSuccessor()); } iterator match = last; if (isRightmost) { match = this->findRightmost(interest, first, last); } else { match = this->findLeftmost(interest, first, last); } if (match == last) { NFD_LOG_DEBUG(" no-match"); missCallback(interest); return; } NFD_LOG_DEBUG(" matching " << match->getName()); m_policy->beforeUse(match); hitCallback(interest, match->getData()); } iterator Cs::findLeftmost(const Interest& interest, iterator first, iterator last) const { return std::find_if(first, last, bind(&cs::EntryImpl::canSatisfy, _1, interest)); } iterator Cs::findRightmost(const Interest& interest, iterator first, iterator last) const { // Each loop visits a sub-namespace under a prefix one component longer than Interest Name. // If there is a match in that sub-namespace, the leftmost match is returned; // otherwise, loop continues. size_t interestNameLength = interest.getName().size(); for (iterator right = last; right != first;) { iterator prev = std::prev(right); // special case: [first,prev] have exact Names if (prev->getName().size() == interestNameLength) { NFD_LOG_TRACE(" find-among-exact " << prev->getName()); iterator matchExact = this->findRightmostAmongExact(interest, first, right); return matchExact == right ? last : matchExact; } Name prefix = prev->getName().getPrefix(interestNameLength + 1); iterator left = m_table.lower_bound(prefix); // normal case: [left,right) are under one-component-longer prefix NFD_LOG_TRACE(" find-under-prefix " << prefix); iterator match = this->findLeftmost(interest, left, right); if (match != right) { return match; } right = left; } return last; } iterator Cs::findRightmostAmongExact(const Interest& interest, iterator first, iterator last) const { return find_last_if(first, last, bind(&EntryImpl::canSatisfy, _1, interest)); } void Cs::setPolicyImpl(unique_ptr& policy) { m_policy = std::move(policy); m_beforeEvictConnection = m_policy->beforeEvict.connect([this] (iterator it) { m_table.erase(it); }); m_policy->setCs(this); BOOST_ASSERT(m_policy->getCs() == this); } void Cs::dump() { NFD_LOG_DEBUG("dump table"); for (const EntryImpl& entry : m_table) { NFD_LOG_TRACE(entry.getFullName()); } } } // namespace cs } // namespace nfd