blob: cfdc4f167603b6b8599043cbb642c157906f0891 [file] [log] [blame]
/* -*- 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 "core/fib-max-depth.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 FIB_MAX_DEPTH;
}
/** \brief find or insert a FIB entry
* \param prefix FIB entry name; it must have no 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 removes the NextHop record for \p face with a given \p endpointId
*/
void
removeNextHop(Entry& entry, const Face& face, uint64_t endpointId);
/** \brief removes the NextHop record for \p face for any \p endpointId
*/
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 Iteration order is implementation-defined.
* \warning Undefined behavior may occur if a FIB/PIT/Measurements/StrategyChoice entry
* is inserted or erased during enumeration.
*/
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 record
*/
void
eraseIfEmpty(Entry& entry);
Range
getRange() const;
private:
NameTree& m_nameTree;
size_t m_nItems;
/** \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