32 #include <ndn-cxx/util/concepts.hpp> 35 namespace strategy_choice {
50 : m_forwarder(forwarder)
51 , m_nameTree(m_forwarder.getNameTree())
59 auto entry = make_unique<Entry>(
Name());
61 NFD_LOG_INFO(
"setDefaultStrategy " << entry->getStrategyInstanceName());
74 return InsertResult::DEPTH_EXCEEDED;
77 unique_ptr<Strategy> strategy;
81 catch (
const std::invalid_argument& e) {
82 NFD_LOG_ERROR(
"insert(" << prefix <<
"," << strategyName <<
") cannot create strategy: " << e.what());
86 if (strategy ==
nullptr) {
87 NFD_LOG_ERROR(
"insert(" << prefix <<
"," << strategyName <<
") strategy not registered");
88 return InsertResult::NOT_REGISTERED;
94 if (entry !=
nullptr) {
96 NFD_LOG_TRACE(
"insert(" << prefix <<
") not changing " << strategy->getInstanceName());
97 return InsertResult::OK;
101 " to " << strategy->getInstanceName());
105 auto newEntry = make_unique<Entry>(prefix);
106 entry = newEntry.get();
109 NFD_LOG_TRACE(
"insert(" << prefix <<
") new entry " << strategy->getInstanceName());
112 this->changeStrategy(*entry, *oldStrategy, *strategy);
114 return InsertResult::OK;
117 StrategyChoice::InsertResult::InsertResult(Status status,
const std::string& exceptionMessage)
119 , m_exceptionMessage(exceptionMessage)
126 switch (res.m_status) {
127 case StrategyChoice::InsertResult::OK:
129 case StrategyChoice::InsertResult::NOT_REGISTERED:
130 return os <<
"Strategy not registered";
131 case StrategyChoice::InsertResult::EXCEPTION:
132 return os <<
"Error instantiating strategy: " << res.m_exceptionMessage;
133 case StrategyChoice::InsertResult::DEPTH_EXCEEDED:
134 return os <<
"Prefix has too many components (limit is " 143 BOOST_ASSERT(prefix.
size() > 0);
146 if (nte ==
nullptr) {
150 Entry* entry = nte->getStrategyChoiceEntry();
151 if (entry ==
nullptr) {
158 this->changeStrategy(*entry, oldStrategy, parentStrategy);
160 nte->setStrategyChoiceEntry(
nullptr);
165 std::pair<bool, Name>
169 if (nte ==
nullptr) {
170 return {
false,
Name()};
174 if (entry ==
nullptr) {
175 return {
false,
Name()};
183 StrategyChoice::findEffectiveStrategyImpl(
const K& key)
const 186 BOOST_ASSERT(nte !=
nullptr);
193 return this->findEffectiveStrategyImpl(prefix);
199 return this->findEffectiveStrategyImpl(pitEntry);
205 return this->findEffectiveStrategyImpl(measurementsEntry);
213 for (
const shared_ptr<pit::Entry>& pitEntry : nte.
getPitEntries()) {
214 pitEntry->clearStrategyInfo();
215 for (
const pit::InRecord& inRecord : pitEntry->getInRecords()) {
218 for (
const pit::OutRecord& outRecord : pitEntry->getOutRecords()) {
228 StrategyChoice::changeStrategy(Entry& entry,
Strategy& oldStrategy,
Strategy& newStrategy)
230 const Name& oldInstanceName = oldStrategy.getInstanceName();
231 const Name& newInstanceName = newStrategy.getInstanceName();
234 NFD_LOG_INFO(
"changeStrategy(" << entry.getPrefix() <<
") " 235 << oldInstanceName <<
" -> " << newInstanceName
240 NFD_LOG_INFO(
"changeStrategy(" << entry.getPrefix() <<
") " 241 << oldInstanceName <<
" -> " << newInstanceName);
245 const name_tree::Entry* rootNte = m_nameTree.
getEntry(entry);
246 BOOST_ASSERT(rootNte !=
nullptr);
248 [&rootNte] (
const name_tree::Entry& nte) -> std::pair<bool, bool> {
249 if (&nte == rootNte) {
252 if (nte.getStrategyChoiceEntry() !=
nullptr) {
253 return {
false,
false};
257 for (
const name_tree::Entry& nte : ntChanged) {
263 StrategyChoice::getRange()
const 266 boost::adaptors::transformed(name_tree::GetTableEntry<Entry>(
PartialName getPrefix(ssize_t nComponents) const
Extract a prefix of the name.
boost::range_iterator< Range >::type const_iterator
static void clearStrategyInfo(const name_tree::Entry &nte)
const std::vector< shared_ptr< pit::Entry > > & getPitEntries() const
NDN_CXX_ASSERT_FORWARD_ITERATOR(StrategyChoice::const_iterator)
contains information about an Interest from an incoming face
void erase(const Name &prefix)
make prefix to inherit strategy from its parent
std::pair< bool, Name > get(const Name &prefix) const
get strategy Name of prefix
StrategyChoice(Forwarder &forwarder)
#define NFD_LOG_INFO(expression)
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
const Name & getStrategyInstanceName() const
InsertResult insert(const Name &prefix, const Name &strategyName)
set strategy of prefix to be strategyName
represents a Measurements entry
Range partialEnumerate(const Name &prefix, const EntrySubTreeSelector &entrySubTreeSelector=AnyEntrySubTree()) const
enumerate all entries under a prefix
std::ostream & operator<<(std::ostream &os, const StrategyChoice::InsertResult &res)
measurements::Entry * getMeasurementsEntry() const
#define NFD_LOG_TRACE(expression)
#define NFD_LOG_ERROR(expression)
Copyright (c) 2011-2015 Regents of the University of California.
Entry * getEntry(const EntryT &tableEntry) const
fw::Strategy & findEffectiveStrategy(const Name &prefix) const
get effective strategy for prefix
void clearStrategyInfo()
clear all StrategyInfo items
Represents an absolute name.
void setDefaultStrategy(const Name &strategyName)
set the default strategy
represents a Strategy Choice entry
Range fullEnumerate(const EntrySelector &entrySelector=AnyEntry()) const
enumerate all entries
size_t size() const
Get number of components.
represents a forwarding strategy
size_t eraseIfEmpty(Entry *entry, bool canEraseAncestors=true)
delete the entry if it is empty
static unique_ptr< Strategy > create(const Name &instanceName, Forwarder &forwarder)
boost::transformed_range< name_tree::GetTableEntry< Entry >, const name_tree::Range > Range
fw::Strategy & getStrategy() const
void setStrategy(unique_ptr< fw::Strategy > strategy)
const Name & getInstanceName() const
contains information about an Interest toward an outgoing face
std::string to_string(const V &v)
strategy_choice::Entry * getStrategyChoiceEntry() const
Entry * findExactMatch(const Name &name, size_t prefixLen=std::numeric_limits< size_t >::max()) const
exact match lookup
#define NFD_LOG_INIT(name)
static bool nteHasStrategyChoiceEntry(const name_tree::Entry &nte)
const Name & getName() const
void setStrategyChoiceEntry(unique_ptr< strategy_choice::Entry > strategyChoiceEntry)
static bool areSameType(const Name &instanceNameA, const Name &instanceNameB)
an entry in the name tree
static constexpr size_t getMaxDepth()
maximum depth of the name tree