32 namespace measurements {
35 : m_nameTree(nameTree)
46 if (entry !=
nullptr) {
56 bind(&Measurements::cleanup,
this, ref(*entry)));
65 return this->
get(nte);
72 return this->
get(nte);
79 return this->
get(nte);
91 BOOST_ASSERT(nte !=
nullptr);
92 return &this->
get(*nte);
97 Measurements::findLongestPrefixMatchImpl(
const K& key,
const EntryPredicate& pred)
const 102 return entry !=
nullptr && pred(*entry);
104 if (match !=
nullptr) {
132 BOOST_ASSERT(m_nameTree.
getEntry(entry) !=
nullptr);
135 if (entry.m_expiry >= expiry) {
141 entry.m_expiry = expiry;
142 entry.m_cleanup =
scheduler::schedule(lifetime, bind(&Measurements::cleanup,
this, ref(entry)));
146 Measurements::cleanup(
Entry& entry)
149 BOOST_ASSERT(nte !=
nullptr);
const Name & getName() const
Entry * findExactMatch(const Name &name) const
perform an exact match
const Name & getPrefix() const
void cancel(const EventId &eventId)
cancel a scheduled event
static time_point now() noexcept
std::function< bool(const Entry &)> EntryPredicate
a predicate that accepts or rejects an entry
Entry * findLongestPrefixMatch(const Name &name, const EntryPredicate &pred=AnyEntry()) const
perform a longest prefix match for name
Entry * findLongestPrefixMatch(const Name &name, const EntrySelector &entrySelector=AnyEntry()) const
longest prefix matching
void setMeasurementsEntry(unique_ptr< measurements::Entry > measurementsEntry)
represents a Measurements entry
measurements::Entry * getMeasurementsEntry() const
Entry * getParent(const Entry &child)
find or insert a Measurements entry for child's parent
Copyright (c) 2011-2015 Regents of the University of California.
void extendLifetime(Entry &entry, const time::nanoseconds &lifetime)
extend lifetime of an entry
Entry & lookup(const Name &name, bool enforceMaxDepth=false)
find or insert an entry with specified name
Entry * getEntry(const EntryT &tableEntry) const
Measurements(NameTree &nametree)
Represents an absolute name.
size_t size() const
Get number of components.
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
const Name & getName() const
EventId schedule(time::nanoseconds after, const EventCallback &event)
schedule an event
bool empty() const
Check if name is empty.
Entry * findExactMatch(const Name &name, size_t prefixLen=std::numeric_limits< size_t >::max()) const
exact match lookup
Entry * getParent() const
Entry & get(const Name &name)
find or insert a Measurements entry for name
const Name & getName() const
static time::nanoseconds getInitialLifetime()
an entry in the name tree
static constexpr size_t getMaxDepth()
Maximum depth of the name tree.