blob: 169ce2eecdec38c2203cf534ae7482f062abc178 [file] [log] [blame]
Yanbiao Li6704a4a2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi332783b2018-02-04 23:52:46 +00002/*
Davide Pesavento78ddcab2019-02-28 22:00:03 -05003 * Copyright (c) 2014-2019, 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"
Davide Pesaventoa3148082018-04-12 18:21:54 -040027
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040028#include "common/logger.hpp"
Yanbiao Li6704a4a2015-08-19 16:30:16 -070029#include "table/strategy-choice.hpp"
Davide Pesaventoa3148082018-04-12 18:21:54 -040030
Junxiao Shi25c6ce42016-09-09 13:49:59 +000031#include <ndn-cxx/mgmt/nfd/strategy-choice.hpp>
Yanbiao Li6704a4a2015-08-19 16:30:16 -070032
33namespace nfd {
34
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(StrategyChoiceManager);
Yanbiao Li6704a4a2015-08-19 16:30:16 -070036
37StrategyChoiceManager::StrategyChoiceManager(StrategyChoice& strategyChoice,
38 Dispatcher& dispatcher,
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000039 CommandAuthenticator& authenticator)
Davide Pesavento78ddcab2019-02-28 22:00:03 -050040 : ManagerBase("strategy-choice", dispatcher, authenticator)
Junxiao Shiff10da62016-07-13 17:57:43 +000041 , m_table(strategyChoice)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070042{
43 registerCommandHandler<ndn::nfd::StrategyChoiceSetCommand>("set",
Junxiao Shi65800d22016-12-25 21:05:45 +000044 bind(&StrategyChoiceManager::setStrategy, this, _4, _5));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070045 registerCommandHandler<ndn::nfd::StrategyChoiceUnsetCommand>("unset",
Junxiao Shi65800d22016-12-25 21:05:45 +000046 bind(&StrategyChoiceManager::unsetStrategy, this, _4, _5));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070047
48 registerStatusDatasetHandler("list",
Junxiao Shi65800d22016-12-25 21:05:45 +000049 bind(&StrategyChoiceManager::listChoices, this, _3));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070050}
51
52void
Junxiao Shi65800d22016-12-25 21:05:45 +000053StrategyChoiceManager::setStrategy(ControlParameters parameters,
Yanbiao Li6704a4a2015-08-19 16:30:16 -070054 const ndn::mgmt::CommandContinuation& done)
55{
56 const Name& prefix = parameters.getName();
Junxiao Shi65800d22016-12-25 21:05:45 +000057 const Name& strategy = parameters.getStrategy();
Yanbiao Li6704a4a2015-08-19 16:30:16 -070058
Junxiao Shi530cf002017-01-03 14:43:16 +000059 StrategyChoice::InsertResult res = m_table.insert(prefix, strategy);
60 if (!res) {
61 NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): cannot-create " << res);
Junxiao Shi332783b2018-02-04 23:52:46 +000062 return done(ControlResponse(res.getStatusCode(), boost::lexical_cast<std::string>(res)));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070063 }
64
Junxiao Shi65800d22016-12-25 21:05:45 +000065 NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): OK");
66 bool hasEntry = false;
67 Name instanceName;
68 std::tie(hasEntry, instanceName) = m_table.get(prefix);
69 BOOST_ASSERT_MSG(hasEntry, "StrategyChoice entry must exist after StrategyChoice::insert");
70 parameters.setStrategy(instanceName);
71 return done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070072}
73
74void
Junxiao Shi65800d22016-12-25 21:05:45 +000075StrategyChoiceManager::unsetStrategy(ControlParameters parameters,
Yanbiao Li6704a4a2015-08-19 16:30:16 -070076 const ndn::mgmt::CommandContinuation& done)
77{
Junxiao Shi65800d22016-12-25 21:05:45 +000078 const Name& prefix = parameters.getName();
79 // no need to test for ndn:/ , parameter validation takes care of that
80
Junxiao Shiff10da62016-07-13 17:57:43 +000081 m_table.erase(parameters.getName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070082
Junxiao Shi65800d22016-12-25 21:05:45 +000083 NFD_LOG_DEBUG("strategy-choice/unset(" << prefix << "): OK");
Yanbiao Li6704a4a2015-08-19 16:30:16 -070084 done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
85}
86
87void
Junxiao Shi65800d22016-12-25 21:05:45 +000088StrategyChoiceManager::listChoices(ndn::mgmt::StatusDatasetContext& context)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070089{
Junxiao Shi4cb74312016-12-25 20:48:47 +000090 for (const auto& i : m_table) {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070091 ndn::nfd::StrategyChoice entry;
Junxiao Shi4cb74312016-12-25 20:48:47 +000092 entry.setName(i.getPrefix())
93 .setStrategy(i.getStrategyInstanceName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070094 context.append(entry.wireEncode());
95 }
96 context.end();
97}
98
Yanbiao Lidf846e52016-01-30 21:53:47 -080099} // namespace nfd