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
291 lines
6.6 KiB
C++
291 lines
6.6 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/>.
|
|
**/
|
|
|
|
// Name Tree Entry (i.e., Name Prefix Entry)
|
|
|
|
#ifndef NFD_DAEMON_TABLE_NAME_TREE_ENTRY_HPP
|
|
#define NFD_DAEMON_TABLE_NAME_TREE_ENTRY_HPP
|
|
|
|
#include "common.hpp"
|
|
#include "table/fib-entry.hpp"
|
|
#include "table/pit-entry.hpp"
|
|
#include "table/measurements-entry.hpp"
|
|
#include "table/strategy-choice-entry.hpp"
|
|
|
|
namespace nfd {
|
|
|
|
class NameTree;
|
|
|
|
namespace name_tree {
|
|
|
|
// Forward declarations
|
|
class Node;
|
|
class Entry;
|
|
|
|
/**
|
|
* \brief Name Tree Node Class
|
|
*/
|
|
class Node
|
|
{
|
|
public:
|
|
Node();
|
|
|
|
~Node();
|
|
|
|
public:
|
|
// variables are in public as this is just a data structure
|
|
shared_ptr<Entry> m_entry; // Name Tree Entry (i.e., Name Prefix Entry)
|
|
Node* m_prev; // Previous Name Tree Node (to resolve hash collision)
|
|
Node* m_next; // Next Name Tree Node (to resolve hash collision)
|
|
};
|
|
|
|
/**
|
|
* \brief Name Tree Entry Class
|
|
*/
|
|
class Entry : public enable_shared_from_this<Entry>, noncopyable
|
|
{
|
|
public:
|
|
explicit
|
|
Entry(const Name& prefix);
|
|
|
|
~Entry();
|
|
|
|
const Name&
|
|
getPrefix() const;
|
|
|
|
void
|
|
setHash(size_t hash);
|
|
|
|
size_t
|
|
getHash() const;
|
|
|
|
void
|
|
setParent(shared_ptr<Entry> parent);
|
|
|
|
shared_ptr<Entry>
|
|
getParent() const;
|
|
|
|
std::vector<shared_ptr<Entry> >&
|
|
getChildren();
|
|
|
|
bool
|
|
hasChildren() const;
|
|
|
|
bool
|
|
isEmpty() const;
|
|
|
|
void
|
|
setFibEntry(shared_ptr<fib::Entry> fibEntry);
|
|
|
|
shared_ptr<fib::Entry>
|
|
getFibEntry() const;
|
|
|
|
void
|
|
insertPitEntry(shared_ptr<pit::Entry> pitEntry);
|
|
|
|
void
|
|
erasePitEntry(shared_ptr<pit::Entry> pitEntry);
|
|
|
|
bool
|
|
hasPitEntries() const;
|
|
|
|
const std::vector<shared_ptr<pit::Entry> >&
|
|
getPitEntries() const;
|
|
|
|
void
|
|
setMeasurementsEntry(shared_ptr<measurements::Entry> measurementsEntry);
|
|
|
|
shared_ptr<measurements::Entry>
|
|
getMeasurementsEntry() const;
|
|
|
|
void
|
|
setStrategyChoiceEntry(shared_ptr<strategy_choice::Entry> strategyChoiceEntry);
|
|
|
|
shared_ptr<strategy_choice::Entry>
|
|
getStrategyChoiceEntry() const;
|
|
|
|
private:
|
|
// Benefits of storing m_hash
|
|
// 1. m_hash is compared before m_prefix is compared
|
|
// 2. fast hash table resize support
|
|
size_t m_hash;
|
|
Name m_prefix;
|
|
shared_ptr<Entry> m_parent; // Pointing to the parent entry.
|
|
std::vector<shared_ptr<Entry> > m_children; // Children pointers.
|
|
shared_ptr<fib::Entry> m_fibEntry;
|
|
std::vector<shared_ptr<pit::Entry> > m_pitEntries;
|
|
shared_ptr<measurements::Entry> m_measurementsEntry;
|
|
shared_ptr<strategy_choice::Entry> m_strategyChoiceEntry;
|
|
|
|
// get the Name Tree Node that is associated with this Name Tree Entry
|
|
Node* m_node;
|
|
|
|
// Make private members accessible by Name Tree
|
|
friend class nfd::NameTree;
|
|
};
|
|
|
|
inline const Name&
|
|
Entry::getPrefix() const
|
|
{
|
|
return m_prefix;
|
|
}
|
|
|
|
inline size_t
|
|
Entry::getHash() const
|
|
{
|
|
return m_hash;
|
|
}
|
|
|
|
inline void
|
|
Entry::setHash(size_t hash)
|
|
{
|
|
m_hash = hash;
|
|
}
|
|
|
|
inline shared_ptr<Entry>
|
|
Entry::getParent() const
|
|
{
|
|
return m_parent;
|
|
}
|
|
|
|
inline void
|
|
Entry::setParent(shared_ptr<Entry> parent)
|
|
{
|
|
m_parent = parent;
|
|
}
|
|
|
|
inline std::vector<shared_ptr<name_tree::Entry> >&
|
|
Entry::getChildren()
|
|
{
|
|
return m_children;
|
|
}
|
|
|
|
inline bool
|
|
Entry::hasChildren() const
|
|
{
|
|
return !m_children.empty();
|
|
}
|
|
|
|
inline bool
|
|
Entry::isEmpty() const
|
|
{
|
|
return m_children.empty() &&
|
|
!static_cast<bool>(m_fibEntry) &&
|
|
m_pitEntries.empty() &&
|
|
!static_cast<bool>(m_measurementsEntry);
|
|
}
|
|
|
|
inline shared_ptr<fib::Entry>
|
|
Entry::getFibEntry() const
|
|
{
|
|
return m_fibEntry;
|
|
}
|
|
|
|
inline void
|
|
Entry::setFibEntry(shared_ptr<fib::Entry> fibEntry)
|
|
{
|
|
if (static_cast<bool>(fibEntry)) {
|
|
BOOST_ASSERT(!static_cast<bool>(fibEntry->m_nameTreeEntry));
|
|
}
|
|
|
|
if (static_cast<bool>(m_fibEntry)) {
|
|
m_fibEntry->m_nameTreeEntry.reset();
|
|
}
|
|
m_fibEntry = fibEntry;
|
|
if (static_cast<bool>(m_fibEntry)) {
|
|
m_fibEntry->m_nameTreeEntry = this->shared_from_this();
|
|
}
|
|
}
|
|
|
|
inline bool
|
|
Entry::hasPitEntries() const
|
|
{
|
|
return !m_pitEntries.empty();
|
|
}
|
|
|
|
inline const std::vector<shared_ptr<pit::Entry> >&
|
|
Entry::getPitEntries() const
|
|
{
|
|
return m_pitEntries;
|
|
}
|
|
|
|
inline void
|
|
Entry::insertPitEntry(shared_ptr<pit::Entry> pitEntry)
|
|
{
|
|
BOOST_ASSERT(static_cast<bool>(pitEntry));
|
|
BOOST_ASSERT(!static_cast<bool>(pitEntry->m_nameTreeEntry));
|
|
|
|
m_pitEntries.push_back(pitEntry);
|
|
pitEntry->m_nameTreeEntry = this->shared_from_this();
|
|
}
|
|
|
|
inline shared_ptr<measurements::Entry>
|
|
Entry::getMeasurementsEntry() const
|
|
{
|
|
return m_measurementsEntry;
|
|
}
|
|
|
|
inline void
|
|
Entry::setMeasurementsEntry(shared_ptr<measurements::Entry> measurementsEntry)
|
|
{
|
|
if (static_cast<bool>(measurementsEntry)) {
|
|
BOOST_ASSERT(!static_cast<bool>(measurementsEntry->m_nameTreeEntry));
|
|
}
|
|
|
|
if (static_cast<bool>(m_measurementsEntry)) {
|
|
m_measurementsEntry->m_nameTreeEntry.reset();
|
|
}
|
|
m_measurementsEntry = measurementsEntry;
|
|
if (static_cast<bool>(m_measurementsEntry)) {
|
|
m_measurementsEntry->m_nameTreeEntry = this->shared_from_this();
|
|
}
|
|
}
|
|
|
|
inline shared_ptr<strategy_choice::Entry>
|
|
Entry::getStrategyChoiceEntry() const
|
|
{
|
|
return m_strategyChoiceEntry;
|
|
}
|
|
|
|
inline void
|
|
Entry::setStrategyChoiceEntry(shared_ptr<strategy_choice::Entry> strategyChoiceEntry)
|
|
{
|
|
if (static_cast<bool>(strategyChoiceEntry)) {
|
|
BOOST_ASSERT(!static_cast<bool>(strategyChoiceEntry->m_nameTreeEntry));
|
|
}
|
|
|
|
if (static_cast<bool>(m_strategyChoiceEntry)) {
|
|
m_strategyChoiceEntry->m_nameTreeEntry.reset();
|
|
}
|
|
m_strategyChoiceEntry = strategyChoiceEntry;
|
|
if (static_cast<bool>(m_strategyChoiceEntry)) {
|
|
m_strategyChoiceEntry->m_nameTreeEntry = this->shared_from_this();
|
|
}
|
|
}
|
|
|
|
} // namespace name_tree
|
|
} // namespace nfd
|
|
|
|
#endif // NFD_DAEMON_TABLE_NAME_TREE_ENTRY_HPP
|