26 #ifndef NFD_DAEMON_TABLE_NAME_TREE_HPP 27 #define NFD_DAEMON_TABLE_NAME_TREE_HPP 50 static constexpr
size_t 75 template<
typename EntryT>
149 findExactMatch(
const Name& name,
size_t prefixLen = std::numeric_limits<size_t>::max())
const;
174 template<
typename EntryT>
180 BOOST_ASSERT(nte !=
nullptr);
287 #endif // NFD_DAEMON_TABLE_NAME_TREE_HPP size_t getNBuckets() const
const_iterator end() const
an EntrySelector that accepts every Entry
an EntrySubTreeSelector that accepts every Entry and its children
a hashtable for fast exact name lookup
Entry & lookup(const Name &name, size_t prefixLen)
Find or insert an entry by name.
Entry * findLongestPrefixMatch(const Name &name, const EntrySelector &entrySelector=AnyEntry()) const
Longest prefix matching.
Entry & lookup(const Name &name)
Equivalent to lookup(name, name.size())
Represents a Measurements entry.
Range partialEnumerate(const Name &prefix, const EntrySubTreeSelector &entrySubTreeSelector=AnyEntrySubTree()) const
Enumerate all entries under a prefix.
Range findAllMatches(const Name &name, const EntrySelector &entrySelector=AnyEntry()) const
All-prefixes match lookup.
Entry * findLongestPrefixMatch(const EntryT &tableEntry, const EntrySelector &entrySelector=AnyEntry()) const
Equivalent to findLongestPrefixMatch(getEntry(tableEntry)->getName(), entrySelector) ...
Copyright (c) 2011-2015 Regents of the University of California.
Entry * getEntry(const EntryT &tableEntry) const
static Entry * get(const ENTRY &tableEntry)
Represents an absolute name.
Represents a Strategy Choice entry.
Range fullEnumerate(const EntrySelector &entrySelector=AnyEntry()) const
Enumerate all entries.
size_t size() const
Returns the number of components.
NameTree(size_t nBuckets=1024)
size_t eraseIfEmpty(Entry *entry, bool canEraseAncestors=true)
Delete the entry if it is empty.
A common index structure for FIB, PIT, StrategyChoice, and Measurements.
boost::iterator_range< Iterator > Range
a Forward Range of name tree entries
std::function< std::pair< bool, bool >(const Entry &)> EntrySubTreeSelector
a predicate to accept or reject an Entry and its children
size_t getNBuckets() const
Entry * findExactMatch(const Name &name, size_t prefixLen=std::numeric_limits< size_t >::max()) const
Exact match lookup.
std::function< bool(const Entry &)> EntrySelector
a predicate to accept or reject an Entry in find operations
const_iterator begin() const
enumeration operation implementation
An entry in the name tree.
static constexpr size_t getMaxDepth()
Maximum depth of the name tree.