blob: cff7cefa8e612876a096eeeed3d4cd7d890ed661 [file] [log] [blame]
Yanbiao Li6704a4a2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yanbiao Lidf846e52016-01-30 21:53:47 -08003 * Copyright (c) 2014-2016, Regents of the University of California,
Yanbiao Li6704a4a2015-08-19 16:30:16 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "strategy-choice-manager.hpp"
27#include "table/strategy-choice.hpp"
Junxiao Shi25c6ce42016-09-09 13:49:59 +000028#include <ndn-cxx/mgmt/nfd/strategy-choice.hpp>
Yanbiao Li6704a4a2015-08-19 16:30:16 -070029
30namespace nfd {
31
32NFD_LOG_INIT("StrategyChoiceManager");
33
34StrategyChoiceManager::StrategyChoiceManager(StrategyChoice& strategyChoice,
35 Dispatcher& dispatcher,
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000036 CommandAuthenticator& authenticator)
37 : NfdManagerBase(dispatcher, authenticator, "strategy-choice")
Junxiao Shiff10da62016-07-13 17:57:43 +000038 , m_table(strategyChoice)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070039{
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));
44
45 registerStatusDatasetHandler("list",
46 bind(&StrategyChoiceManager::listChoices, this, _1, _2, _3));
47}
48
49void
50StrategyChoiceManager::setStrategy(const Name& topPrefix, const Interest& interest,
51 ControlParameters parameters,
52 const ndn::mgmt::CommandContinuation& done)
53{
54 const Name& prefix = parameters.getName();
55 const Name& selectedStrategy = parameters.getStrategy();
56
Junxiao Shiff10da62016-07-13 17:57:43 +000057 if (!m_table.hasStrategy(selectedStrategy)) {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070058 NFD_LOG_DEBUG("strategy-choice result: FAIL reason: unknown-strategy: "
59 << parameters.getStrategy());
60 return done(ControlResponse(504, "Unsupported strategy"));
61 }
62
Junxiao Shiff10da62016-07-13 17:57:43 +000063 if (m_table.insert(prefix, selectedStrategy)) {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070064 NFD_LOG_DEBUG("strategy-choice result: SUCCESS");
Junxiao Shiff10da62016-07-13 17:57:43 +000065 auto currentStrategyChoice = m_table.get(prefix);
Yanbiao Li6704a4a2015-08-19 16:30:16 -070066 BOOST_ASSERT(currentStrategyChoice.first);
67 parameters.setStrategy(currentStrategyChoice.second);
68 return done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
69 }
70 else {
71 NFD_LOG_DEBUG("strategy-choice result: FAIL reason: not-installed");
72 return done(ControlResponse(405, "Strategy not installed"));
73 }
74}
75
76void
77StrategyChoiceManager::unsetStrategy(const Name& topPrefix, const Interest& interest,
78 ControlParameters parameters,
79 const ndn::mgmt::CommandContinuation& done)
80{
Junxiao Shiff10da62016-07-13 17:57:43 +000081 m_table.erase(parameters.getName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070082
83 NFD_LOG_DEBUG("strategy-choice result: SUCCESS");
84 done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
85}
86
87void
88StrategyChoiceManager::listChoices(const Name& topPrefix, const Interest& interest,
89 ndn::mgmt::StatusDatasetContext& context)
90{
Junxiao Shiff10da62016-07-13 17:57:43 +000091 for (auto&& i : m_table) {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070092 ndn::nfd::StrategyChoice entry;
93 entry.setName(i.getPrefix()).setStrategy(i.getStrategyName());
94 context.append(entry.wireEncode());
95 }
96 context.end();
97}
98
Yanbiao Lidf846e52016-01-30 21:53:47 -080099} // namespace nfd