blob: 6cb5d57328429adb02c801aec4890e6ec53cc39f [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/*
3 * Copyright (c) 2014-2018, 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>
Junxiao Shi530cf002017-01-03 14:43:16 +000029#include <boost/lexical_cast.hpp>
Yanbiao Li6704a4a2015-08-19 16:30:16 -070030
31namespace nfd {
32
33NFD_LOG_INIT("StrategyChoiceManager");
34
35StrategyChoiceManager::StrategyChoiceManager(StrategyChoice& strategyChoice,
36 Dispatcher& dispatcher,
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000037 CommandAuthenticator& authenticator)
38 : NfdManagerBase(dispatcher, authenticator, "strategy-choice")
Junxiao Shiff10da62016-07-13 17:57:43 +000039 , m_table(strategyChoice)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070040{
41 registerCommandHandler<ndn::nfd::StrategyChoiceSetCommand>("set",
Junxiao Shi65800d22016-12-25 21:05:45 +000042 bind(&StrategyChoiceManager::setStrategy, this, _4, _5));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070043 registerCommandHandler<ndn::nfd::StrategyChoiceUnsetCommand>("unset",
Junxiao Shi65800d22016-12-25 21:05:45 +000044 bind(&StrategyChoiceManager::unsetStrategy, this, _4, _5));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070045
46 registerStatusDatasetHandler("list",
Junxiao Shi65800d22016-12-25 21:05:45 +000047 bind(&StrategyChoiceManager::listChoices, this, _3));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070048}
49
50void
Junxiao Shi65800d22016-12-25 21:05:45 +000051StrategyChoiceManager::setStrategy(ControlParameters parameters,
Yanbiao Li6704a4a2015-08-19 16:30:16 -070052 const ndn::mgmt::CommandContinuation& done)
53{
54 const Name& prefix = parameters.getName();
Junxiao Shi65800d22016-12-25 21:05:45 +000055 const Name& strategy = parameters.getStrategy();
Yanbiao Li6704a4a2015-08-19 16:30:16 -070056
Junxiao Shi530cf002017-01-03 14:43:16 +000057 StrategyChoice::InsertResult res = m_table.insert(prefix, strategy);
58 if (!res) {
59 NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): cannot-create " << res);
Junxiao Shi332783b2018-02-04 23:52:46 +000060 return done(ControlResponse(res.getStatusCode(), boost::lexical_cast<std::string>(res)));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070061 }
62
Junxiao Shi65800d22016-12-25 21:05:45 +000063 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()));
Yanbiao Li6704a4a2015-08-19 16:30:16 -070070}
71
72void
Junxiao Shi65800d22016-12-25 21:05:45 +000073StrategyChoiceManager::unsetStrategy(ControlParameters parameters,
Yanbiao Li6704a4a2015-08-19 16:30:16 -070074 const ndn::mgmt::CommandContinuation& done)
75{
Junxiao Shi65800d22016-12-25 21:05:45 +000076 const Name& prefix = parameters.getName();
77 // no need to test for ndn:/ , parameter validation takes care of that
78
Junxiao Shiff10da62016-07-13 17:57:43 +000079 m_table.erase(parameters.getName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070080
Junxiao Shi65800d22016-12-25 21:05:45 +000081 NFD_LOG_DEBUG("strategy-choice/unset(" << prefix << "): OK");
Yanbiao Li6704a4a2015-08-19 16:30:16 -070082 done(ControlResponse(200, "OK").setBody(parameters.wireEncode()));
83}
84
85void
Junxiao Shi65800d22016-12-25 21:05:45 +000086StrategyChoiceManager::listChoices(ndn::mgmt::StatusDatasetContext& context)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070087{
Junxiao Shi4cb74312016-12-25 20:48:47 +000088 for (const auto& i : m_table) {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070089 ndn::nfd::StrategyChoice entry;
Junxiao Shi4cb74312016-12-25 20:48:47 +000090 entry.setName(i.getPrefix())
91 .setStrategy(i.getStrategyInstanceName());
Yanbiao Li6704a4a2015-08-19 16:30:16 -070092 context.append(entry.wireEncode());
93 }
94 context.end();
95}
96
Yanbiao Lidf846e52016-01-30 21:53:47 -080097} // namespace nfd