NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
strategy-choice-manager.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
28 #include <ndn-cxx/mgmt/nfd/strategy-choice.hpp>
29 #include <boost/lexical_cast.hpp>
30 
31 namespace nfd {
32 
33 NFD_LOG_INIT("StrategyChoiceManager");
34 
36  Dispatcher& dispatcher,
37  CommandAuthenticator& authenticator)
38  : NfdManagerBase(dispatcher, authenticator, "strategy-choice")
39  , m_table(strategyChoice)
40 {
41  registerCommandHandler<ndn::nfd::StrategyChoiceSetCommand>("set",
42  bind(&StrategyChoiceManager::setStrategy, this, _4, _5));
43  registerCommandHandler<ndn::nfd::StrategyChoiceUnsetCommand>("unset",
44  bind(&StrategyChoiceManager::unsetStrategy, this, _4, _5));
45 
47  bind(&StrategyChoiceManager::listChoices, this, _3));
48 }
49 
50 void
51 StrategyChoiceManager::setStrategy(ControlParameters parameters,
53 {
54  const Name& prefix = parameters.getName();
55  const Name& strategy = parameters.getStrategy();
56 
57  StrategyChoice::InsertResult res = m_table.insert(prefix, strategy);
58  if (!res) {
59  NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): cannot-create " << res);
60  return done(ControlResponse(404, boost::lexical_cast<std::string>(res)));
61  }
62 
63  NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): OK");
64  bool hasEntry = false;
65  Name instanceName;
66  std::tie(hasEntry, instanceName) = m_table.get(prefix);
67  BOOST_ASSERT_MSG(hasEntry, "StrategyChoice entry must exist after StrategyChoice::insert");
68  parameters.setStrategy(instanceName);
69  return done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
70 }
71 
72 void
73 StrategyChoiceManager::unsetStrategy(ControlParameters parameters,
75 {
76  const Name& prefix = parameters.getName();
77  // no need to test for ndn:/ , parameter validation takes care of that
78 
79  m_table.erase(parameters.getName());
80 
81  NFD_LOG_DEBUG("strategy-choice/unset(" << prefix << "): OK");
82  done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
83 }
84 
85 void
86 StrategyChoiceManager::listChoices(ndn::mgmt::StatusDatasetContext& context)
87 {
88  for (const auto& i : m_table) {
90  entry.setName(i.getPrefix())
91  .setStrategy(i.getStrategyInstanceName());
92  context.append(entry.wireEncode());
93  }
94  context.end();
95 }
96 
97 } // namespace nfd
const Name & getStrategy() const
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
Definition: dispatcher.hpp:129
void erase(const Name &prefix)
make prefix to inherit strategy from its parent
#define NFD_LOG_DEBUG(expression)
Definition: logger.hpp:55
ControlParameters & setStrategy(const Name &strategy)
InsertResult insert(const Name &prefix, const Name &strategyName)
set strategy of prefix to be strategyName
size_t wireEncode(EncodingImpl< TAG > &encoder) const
mgmt::ControlResponse ControlResponse
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
void end()
end the response successfully after appending zero or more blocks
Represents an absolute name.
Definition: name.hpp:42
std::function< void(const ControlResponse &resp)> CommandContinuation
a function to be called after ControlCommandHandler completes
Definition: dispatcher.hpp:95
std::pair< bool, Name > get(const Name &prefix) const
get strategy Name of prefix
provides ControlCommand authorization according to NFD configuration file
size_t wireEncode(EncodingImpl< TAG > &encoder) const
void append(const Block &block)
append a Block to the response
represents an item in 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)
Definition: logger.hpp:34
void registerStatusDatasetHandler(const std::string &verb, const ndn::mgmt::StatusDatasetHandler &handler)
StrategyChoice & setName(const Name &name)