613e2a9ba3
Note that as of this commit, there are several changes in location of compiled binaries in `build/` folder: * `nfd` has been moved to `build/bin/nfd` * `unit-tests` has been split into `unit-tests-core` and `unit-tests-daemon` Change-Id: I2c830c117879edbaa5457d6423c13f0273285919 Refs: #1486
210 lines
4.8 KiB
C++
210 lines
4.8 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (c) 2014 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
|
|
*
|
|
* 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"
|
|
|
|
namespace nfd {
|
|
|
|
namespace measurements {
|
|
class Entry;
|
|
}
|
|
namespace pit {
|
|
class Entry;
|
|
}
|
|
|
|
/** \class Fib
|
|
* \brief represents the FIB
|
|
*/
|
|
class Fib : noncopyable
|
|
{
|
|
public:
|
|
class const_iterator;
|
|
|
|
explicit
|
|
Fib(NameTree& nameTree);
|
|
|
|
~Fib();
|
|
|
|
/** \brief inserts a FIB entry for prefix
|
|
* If an entry for exact same prefix exists, that entry is returned.
|
|
* \return{ the entry, and true for new entry, false for existing entry }
|
|
*/
|
|
std::pair<shared_ptr<fib::Entry>, bool>
|
|
insert(const Name& prefix);
|
|
|
|
/// performs a longest prefix match
|
|
shared_ptr<fib::Entry>
|
|
findLongestPrefixMatch(const Name& prefix) const;
|
|
|
|
/// performs a longest prefix match
|
|
shared_ptr<fib::Entry>
|
|
findLongestPrefixMatch(const pit::Entry& pitEntry) const;
|
|
|
|
/// performs a longest prefix match
|
|
shared_ptr<fib::Entry>
|
|
findLongestPrefixMatch(const measurements::Entry& measurementsEntry) const;
|
|
|
|
shared_ptr<fib::Entry>
|
|
findExactMatch(const Name& prefix) const;
|
|
|
|
void
|
|
erase(const Name& prefix);
|
|
|
|
void
|
|
erase(const fib::Entry& entry);
|
|
|
|
/** \brief removes the NextHop record for face in all entrites
|
|
* This is usually invoked when face goes away.
|
|
* Removing all NextHops in a FIB entry will not remove the FIB entry.
|
|
*/
|
|
void
|
|
removeNextHopFromAllEntries(shared_ptr<Face> face);
|
|
|
|
size_t
|
|
size() const;
|
|
|
|
const_iterator
|
|
begin() const;
|
|
|
|
const_iterator
|
|
end() const;
|
|
|
|
class const_iterator : public std::iterator<std::forward_iterator_tag, fib::Entry>
|
|
{
|
|
public:
|
|
explicit
|
|
const_iterator(const NameTree::const_iterator& it);
|
|
|
|
~const_iterator();
|
|
|
|
const fib::Entry&
|
|
operator*() const;
|
|
|
|
shared_ptr<fib::Entry>
|
|
operator->() const;
|
|
|
|
const_iterator&
|
|
operator++();
|
|
|
|
const_iterator
|
|
operator++(int);
|
|
|
|
bool
|
|
operator==(const const_iterator& other) const;
|
|
|
|
bool
|
|
operator!=(const const_iterator& other) const;
|
|
|
|
private:
|
|
NameTree::const_iterator m_nameTreeIterator;
|
|
};
|
|
|
|
private:
|
|
shared_ptr<fib::Entry>
|
|
findLongestPrefixMatch(shared_ptr<name_tree::Entry> nameTreeEntry) 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.
|
|
*/
|
|
// Returning empty entry instead of nullptr makes forwarding and strategy implementation easier.
|
|
static const shared_ptr<fib::Entry> s_emptyEntry;
|
|
};
|
|
|
|
inline size_t
|
|
Fib::size() const
|
|
{
|
|
return m_nItems;
|
|
}
|
|
|
|
inline Fib::const_iterator
|
|
Fib::end() const
|
|
{
|
|
return const_iterator(m_nameTree.end());
|
|
}
|
|
|
|
inline
|
|
Fib::const_iterator::const_iterator(const NameTree::const_iterator& it)
|
|
: m_nameTreeIterator(it)
|
|
{
|
|
}
|
|
|
|
inline
|
|
Fib::const_iterator::~const_iterator()
|
|
{
|
|
}
|
|
|
|
inline
|
|
Fib::const_iterator
|
|
Fib::const_iterator::operator++(int)
|
|
{
|
|
Fib::const_iterator temp(*this);
|
|
++(*this);
|
|
return temp;
|
|
}
|
|
|
|
inline Fib::const_iterator&
|
|
Fib::const_iterator::operator++()
|
|
{
|
|
++m_nameTreeIterator;
|
|
return *this;
|
|
}
|
|
|
|
inline const fib::Entry&
|
|
Fib::const_iterator::operator*() const
|
|
{
|
|
return *(m_nameTreeIterator->getFibEntry());
|
|
}
|
|
|
|
inline shared_ptr<fib::Entry>
|
|
Fib::const_iterator::operator->() const
|
|
{
|
|
return m_nameTreeIterator->getFibEntry();
|
|
}
|
|
|
|
inline bool
|
|
Fib::const_iterator::operator==(const Fib::const_iterator& other) const
|
|
{
|
|
return m_nameTreeIterator == other.m_nameTreeIterator;
|
|
}
|
|
|
|
inline bool
|
|
Fib::const_iterator::operator!=(const Fib::const_iterator& other) const
|
|
{
|
|
return m_nameTreeIterator != other.m_nameTreeIterator;
|
|
}
|
|
|
|
} // namespace nfd
|
|
|
|
#endif // NFD_DAEMON_TABLE_FIB_HPP
|