28 #include <ndn-cxx/mgmt/nfd/strategy-choice.hpp> 38 , m_table(strategyChoice)
40 registerCommandHandler<ndn::nfd::StrategyChoiceSetCommand>(
"set",
41 bind(&StrategyChoiceManager::setStrategy,
this, _2, _3, _4, _5));
42 registerCommandHandler<ndn::nfd::StrategyChoiceUnsetCommand>(
"unset",
43 bind(&StrategyChoiceManager::unsetStrategy,
this, _2, _3, _4, _5));
46 bind(&StrategyChoiceManager::listChoices,
this, _1, _2, _3));
50 StrategyChoiceManager::setStrategy(
const Name& topPrefix,
const Interest& interest,
58 NFD_LOG_DEBUG(
"strategy-choice result: FAIL reason: unknown-strategy: " 63 if (m_table.
insert(prefix, selectedStrategy)) {
65 auto currentStrategyChoice = m_table.
get(prefix);
66 BOOST_ASSERT(currentStrategyChoice.first);
67 parameters.
setStrategy(currentStrategyChoice.second);
71 NFD_LOG_DEBUG(
"strategy-choice result: FAIL reason: not-installed");
77 StrategyChoiceManager::unsetStrategy(
const Name& topPrefix,
const Interest& interest,
88 StrategyChoiceManager::listChoices(
const Name& topPrefix,
const Interest& interest,
91 for (
auto&& i : m_table) {
93 entry.
setName(i.getPrefix()).setStrategy(i.getStrategyName());
bool hasStrategy(const Name &strategyName, bool isExact=false) const
determines if a strategy is installed
StrategyChoiceManager(strategy_choice::StrategyChoice &table, Dispatcher &dispatcher, CommandAuthenticator &authenticator)
represents parameters in a ControlCommand request or response
represents a dispatcher on server side of NFD Management protocol
void erase(const Name &prefix)
make prefix to inherit strategy from its parent
size_t wireEncode(EncodingImpl< TAG > &encoder) const
std::pair< bool, Name > get(const Name &prefix) const
get strategy Name of prefix
represents an Interest packet
#define NFD_LOG_DEBUG(expression)
ControlParameters & setStrategy(const Name &strategy)
const Name & getName() const
ndn::mgmt::ControlResponse ControlResponse
Copyright (c) 2011-2015 Regents of the University of California.
void end()
end the response successfully after appending zero or more blocks
size_t wireEncode(EncodingImpl< TAG > &encoder) const
Name abstraction to represent an absolute name.
std::function< void(const ControlResponse &resp)> CommandContinuation
a function to be called after ControlCommandHandler completes
bool insert(const Name &prefix, const Name &strategyName)
set strategy of prefix to be strategyName
provides ControlCommand authorization according to NFD configuration file
represents the Strategy Choice table
void append(const Block &block)
append a Block to the response
represents NFD StrategyChoice dataset
provides a context for generating response to a StatusDataset request
a collection of common functions shared by all NFD managers, such as communicating with the dispatche...
#define NFD_LOG_INIT(name)
const Name & getStrategy() const
void registerStatusDatasetHandler(const std::string &verb, const ndn::mgmt::StatusDatasetHandler &handler)
StrategyChoice & setName(const Name &name)