blob: af74ee186ed8d3666c4e6b3e8ca8de4c2ef76935 [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 Pesaventoae430302023-05-11 01:42:46 -04003 * Copyright (c) 2014-2023, 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
Davide Pesaventoa9b09b62022-06-04 14:07:25 -040033#include <boost/lexical_cast.hpp>
34
Yanbiao Li6704a4a2015-08-19 16:30:16 -070035namespace nfd {
36
Davide Pesaventoa3148082018-04-12 18:21:54 -040037NFD_LOG_INIT(StrategyChoiceManager);
Yanbiao Li6704a4a2015-08-19 16:30:16 -070038
39StrategyChoiceManager::StrategyChoiceManager(StrategyChoice& strategyChoice,
40 Dispatcher& dispatcher,
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000041 CommandAuthenticator& authenticator)
Davide Pesavento78ddcab2019-02-28 22:00:03 -050042 : ManagerBase("strategy-choice", dispatcher, authenticator)
Junxiao Shiff10da62016-07-13 17:57:43 +000043 , m_table(strategyChoice)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070044{
45 registerCommandHandler<ndn::nfd::StrategyChoiceSetCommand>("set",
Davide Pesaventoae430302023-05-11 01:42:46 -040046 [this] (auto&&, auto&&, auto&&, auto&&... args) { setStrategy(std::forward<decltype(args)>(args)...); });
Yanbiao Li6704a4a2015-08-19 16:30:16 -070047 registerCommandHandler<ndn::nfd::StrategyChoiceUnsetCommand>("unset",
Davide Pesaventoae430302023-05-11 01:42:46 -040048 [this] (auto&&, auto&&, auto&&, auto&&... args) { unsetStrategy(std::forward<decltype(args)>(args)...); });
Yanbiao Li6704a4a2015-08-19 16:30:16 -070049 registerStatusDatasetHandler("list",
Davide Pesaventoae430302023-05-11 01:42:46 -040050 [this] (auto&&, auto&&, auto&&... args) { listChoices(std::forward<decltype(args)>(args)...); });
Yanbiao Li6704a4a2015-08-19 16:30:16 -070051}
52
53void
Junxiao Shi65800d22016-12-25 21:05:45 +000054StrategyChoiceManager::setStrategy(ControlParameters parameters,
Yanbiao Li6704a4a2015-08-19 16:30:16 -070055 const ndn::mgmt::CommandContinuation& done)
56{
57 const Name& prefix = parameters.getName();
Junxiao Shi65800d22016-12-25 21:05:45 +000058 const Name& strategy = parameters.getStrategy();
Yanbiao Li6704a4a2015-08-19 16:30:16 -070059
Junxiao Shi530cf002017-01-03 14:43:16 +000060 StrategyChoice::InsertResult res = m_table.insert(prefix, strategy);
61 if (!res) {
62 NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): cannot-create " << res);
Junxiao Shi332783b2018-02-04 23:52:46 +000063 return done(ControlResponse(res.getStatusCode(), boost::lexical_cast<std::string>(res)));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070064 }
65
Junxiao Shi65800d22016-12-25 21:05:45 +000066 NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): OK");
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040067 auto [hasEntry, instanceName] = m_table.get(prefix);
Junxiao Shi65800d22016-12-25 21:05:45 +000068 BOOST_ASSERT_MSG(hasEntry, "StrategyChoice entry must exist after StrategyChoice::insert");
69 parameters.setStrategy(instanceName);
70 return done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070071}
72
73void
Junxiao Shi65800d22016-12-25 21:05:45 +000074StrategyChoiceManager::unsetStrategy(ControlParameters parameters,
Yanbiao Li6704a4a2015-08-19 16:30:16 -070075 const ndn::mgmt::CommandContinuation& done)
76{
Junxiao Shi65800d22016-12-25 21:05:45 +000077 const Name& prefix = parameters.getName();
78 // no need to test for ndn:/ , parameter validation takes care of that
79
Junxiao Shiff10da62016-07-13 17:57:43 +000080 m_table.erase(parameters.getName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070081
Junxiao Shi65800d22016-12-25 21:05:45 +000082 NFD_LOG_DEBUG("strategy-choice/unset(" << prefix << "): OK");
Yanbiao Li6704a4a2015-08-19 16:30:16 -070083 done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
84}
85
86void
Junxiao Shi65800d22016-12-25 21:05:45 +000087StrategyChoiceManager::listChoices(ndn::mgmt::StatusDatasetContext& context)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070088{
Junxiao Shi4cb74312016-12-25 20:48:47 +000089 for (const auto& i : m_table) {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070090 ndn::nfd::StrategyChoice entry;
Junxiao Shi4cb74312016-12-25 20:48:47 +000091 entry.setName(i.getPrefix())
92 .setStrategy(i.getStrategyInstanceName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070093 context.append(entry.wireEncode());
94 }
95 context.end();
96}
97
Yanbiao Lidf846e52016-01-30 21:53:47 -080098} // namespace nfd