2cae8cacf0
Refs: #4922 Change-Id: I2243dbb87c63f9cbaf7d7051d7a0d4bca2f9fdb5
177 lines
4.6 KiB
C++
177 lines
4.6 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/*
|
|
* Copyright (c) 2014-2019, 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef NFD_DAEMON_TABLE_FIB_HPP
|
|
#define NFD_DAEMON_TABLE_FIB_HPP
|
|
|
|
#include "fib-entry.hpp"
|
|
#include "name-tree.hpp"
|
|
|
|
#include <boost/range/adaptor/transformed.hpp>
|
|
|
|
namespace nfd {
|
|
|
|
namespace measurements {
|
|
class Entry;
|
|
} // namespace measurements
|
|
namespace pit {
|
|
class Entry;
|
|
} // namespace pit
|
|
|
|
namespace fib {
|
|
|
|
/** \brief Represents the Forwarding Information Base (FIB)
|
|
*/
|
|
class Fib : noncopyable
|
|
{
|
|
public:
|
|
explicit
|
|
Fib(NameTree& nameTree);
|
|
|
|
size_t
|
|
size() const
|
|
{
|
|
return m_nItems;
|
|
}
|
|
|
|
public: // lookup
|
|
/** \brief Performs a longest prefix match
|
|
*/
|
|
const Entry&
|
|
findLongestPrefixMatch(const Name& prefix) const;
|
|
|
|
/** \brief Performs a longest prefix match
|
|
*
|
|
* This is equivalent to `findLongestPrefixMatch(pitEntry.getName())`
|
|
*/
|
|
const Entry&
|
|
findLongestPrefixMatch(const pit::Entry& pitEntry) const;
|
|
|
|
/** \brief Performs a longest prefix match
|
|
*
|
|
* This is equivalent to `findLongestPrefixMatch(measurementsEntry.getName())`
|
|
*/
|
|
const Entry&
|
|
findLongestPrefixMatch(const measurements::Entry& measurementsEntry) const;
|
|
|
|
/** \brief Performs an exact match lookup
|
|
*/
|
|
Entry*
|
|
findExactMatch(const Name& prefix);
|
|
|
|
public: // mutation
|
|
/** \brief Maximum number of components in a FIB entry prefix.
|
|
*/
|
|
static constexpr size_t
|
|
getMaxDepth()
|
|
{
|
|
return NameTree::getMaxDepth();
|
|
}
|
|
|
|
/** \brief Find or insert a FIB entry
|
|
* \param prefix FIB entry name; it must not have more than \c getMaxDepth() components.
|
|
* \return the entry, and true for new entry or false for existing entry
|
|
*/
|
|
std::pair<Entry*, bool>
|
|
insert(const Name& prefix);
|
|
|
|
void
|
|
erase(const Name& prefix);
|
|
|
|
void
|
|
erase(const Entry& entry);
|
|
|
|
/** \brief Remove the NextHop record for the given \p face and \p endpointId
|
|
*/
|
|
void
|
|
removeNextHop(Entry& entry, const Face& face, EndpointId endpointId);
|
|
|
|
/** \brief Remove all NextHop records for \p face
|
|
*/
|
|
void
|
|
removeNextHopByFace(Entry& entry, const Face& face);
|
|
|
|
public: // enumeration
|
|
typedef boost::transformed_range<name_tree::GetTableEntry<Entry>, const name_tree::Range> Range;
|
|
typedef boost::range_iterator<Range>::type const_iterator;
|
|
|
|
/** \return an iterator to the beginning
|
|
* \note The iteration order is implementation-defined.
|
|
* \warning Undefined behavior may occur if a FIB/PIT/Measurements/StrategyChoice entry
|
|
* is inserted or erased during iteration.
|
|
*/
|
|
const_iterator
|
|
begin() const
|
|
{
|
|
return this->getRange().begin();
|
|
}
|
|
|
|
/** \return an iterator to the end
|
|
* \sa begin()
|
|
*/
|
|
const_iterator
|
|
end() const
|
|
{
|
|
return this->getRange().end();
|
|
}
|
|
|
|
private:
|
|
/** \tparam K a parameter acceptable to NameTree::findLongestPrefixMatch
|
|
*/
|
|
template<typename K>
|
|
const Entry&
|
|
findLongestPrefixMatchImpl(const K& key) const;
|
|
|
|
void
|
|
erase(name_tree::Entry* nte, bool canDeleteNte = true);
|
|
|
|
/** \brief Erase \p entry if it contains no nexthop records
|
|
*/
|
|
void
|
|
eraseIfEmpty(Entry& entry);
|
|
|
|
Range
|
|
getRange() const;
|
|
|
|
private:
|
|
NameTree& m_nameTree;
|
|
size_t m_nItems = 0;
|
|
|
|
/** \brief The empty FIB entry.
|
|
*
|
|
* This entry has no nexthops.
|
|
* It is returned by findLongestPrefixMatch if nothing is matched.
|
|
*/
|
|
static const unique_ptr<Entry> s_emptyEntry;
|
|
};
|
|
|
|
} // namespace fib
|
|
|
|
using fib::Fib;
|
|
|
|
} // namespace nfd
|
|
|
|
#endif // NFD_DAEMON_TABLE_FIB_HPP
|