blob: 23acdd01fcd07cdd016762982a87a0ab2622076f [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (c) 2014-2016, 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_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 {
namespace name_tree {
class Node;
class Entry;
class NameTree;
/**
* \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);
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;
public: // attached table entries
void
setFibEntry(unique_ptr<fib::Entry> fibEntry);
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(unique_ptr<measurements::Entry> measurementsEntry);
measurements::Entry*
getMeasurementsEntry() const;
void
setStrategyChoiceEntry(unique_ptr<strategy_choice::Entry> strategyChoiceEntry);
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.
unique_ptr<fib::Entry> m_fibEntry;
std::vector<shared_ptr<pit::Entry> > m_pitEntries;
unique_ptr<measurements::Entry> m_measurementsEntry;
unique_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 fib::Entry*
Entry::getFibEntry() const
{
return m_fibEntry.get();
}
inline bool
Entry::hasPitEntries() const
{
return !m_pitEntries.empty();
}
inline const std::vector<shared_ptr<pit::Entry>>&
Entry::getPitEntries() const
{
return m_pitEntries;
}
inline measurements::Entry*
Entry::getMeasurementsEntry() const
{
return m_measurementsEntry.get();
}
inline strategy_choice::Entry*
Entry::getStrategyChoiceEntry() const
{
return m_strategyChoiceEntry.get();
}
} // namespace name_tree
} // namespace nfd
#endif // NFD_DAEMON_TABLE_NAME_TREE_ENTRY_HPP