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 
35 StrategyChoiceManager::StrategyChoiceManager(StrategyChoice& strategyChoice,
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,
52  const ndn::mgmt::CommandContinuation& done)
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,
74  const ndn::mgmt::CommandContinuation& done)
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) {
89  ndn::nfd::StrategyChoice entry;
90  entry.setName(i.getPrefix())
91  .setStrategy(i.getStrategyInstanceName());
92  context.append(entry.wireEncode());
93  }
94  context.end();
95 }
96 
97 } // namespace nfd
void registerStatusDatasetHandler(const std::string &verb, const ndn::mgmt::StatusDatasetHandler &handler)
std::pair< bool, Name > get(const Name &prefix) const
get strategy Name of prefix
#define NFD_LOG_DEBUG(expression)
Definition: logger.hpp:161
InsertResult insert(const Name &prefix, const Name &strategyName)
set strategy of prefix to be strategyName
provides ControlCommand authorization according to NFD configuration file
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
a collection of common functions shared by all NFD managers, such as communicating with the dispatche...
StrategyChoiceManager(strategy_choice::StrategyChoice &table, Dispatcher &dispatcher, CommandAuthenticator &authenticator)
#define NFD_LOG_INIT(name)
Definition: logger.hpp:122
void erase(const Name &prefix)
make prefix to inherit strategy from its parent