Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 4 | * 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 Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 27 | |
| 28 | #include "core/logger.hpp" |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 29 | #include "table/strategy-choice.hpp" |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 30 | |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 31 | #include <ndn-cxx/mgmt/nfd/strategy-choice.hpp> |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 35 | NFD_LOG_INIT(StrategyChoiceManager); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 36 | |
| 37 | StrategyChoiceManager::StrategyChoiceManager(StrategyChoice& strategyChoice, |
| 38 | Dispatcher& dispatcher, |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 39 | CommandAuthenticator& authenticator) |
| 40 | : NfdManagerBase(dispatcher, authenticator, "strategy-choice") |
Junxiao Shi | ff10da6 | 2016-07-13 17:57:43 +0000 | [diff] [blame] | 41 | , m_table(strategyChoice) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 42 | { |
| 43 | registerCommandHandler<ndn::nfd::StrategyChoiceSetCommand>("set", |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 44 | bind(&StrategyChoiceManager::setStrategy, this, _4, _5)); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 45 | registerCommandHandler<ndn::nfd::StrategyChoiceUnsetCommand>("unset", |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 46 | bind(&StrategyChoiceManager::unsetStrategy, this, _4, _5)); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 47 | |
| 48 | registerStatusDatasetHandler("list", |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 49 | bind(&StrategyChoiceManager::listChoices, this, _3)); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | void |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 53 | StrategyChoiceManager::setStrategy(ControlParameters parameters, |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 54 | const ndn::mgmt::CommandContinuation& done) |
| 55 | { |
| 56 | const Name& prefix = parameters.getName(); |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 57 | const Name& strategy = parameters.getStrategy(); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 58 | |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 59 | StrategyChoice::InsertResult res = m_table.insert(prefix, strategy); |
| 60 | if (!res) { |
| 61 | NFD_LOG_DEBUG("strategy-choice/set(" << prefix << "," << strategy << "): cannot-create " << res); |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 62 | return done(ControlResponse(res.getStatusCode(), boost::lexical_cast<std::string>(res))); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 65 | 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 Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | void |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 75 | StrategyChoiceManager::unsetStrategy(ControlParameters parameters, |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 76 | const ndn::mgmt::CommandContinuation& done) |
| 77 | { |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 78 | const Name& prefix = parameters.getName(); |
| 79 | // no need to test for ndn:/ , parameter validation takes care of that |
| 80 | |
Junxiao Shi | ff10da6 | 2016-07-13 17:57:43 +0000 | [diff] [blame] | 81 | m_table.erase(parameters.getName()); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 82 | |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 83 | NFD_LOG_DEBUG("strategy-choice/unset(" << prefix << "): OK"); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 84 | done(ControlResponse(200, "OK").setBody(parameters.wireEncode())); |
| 85 | } |
| 86 | |
| 87 | void |
Junxiao Shi | 65800d2 | 2016-12-25 21:05:45 +0000 | [diff] [blame] | 88 | StrategyChoiceManager::listChoices(ndn::mgmt::StatusDatasetContext& context) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 89 | { |
Junxiao Shi | 4cb7431 | 2016-12-25 20:48:47 +0000 | [diff] [blame] | 90 | for (const auto& i : m_table) { |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 91 | ndn::nfd::StrategyChoice entry; |
Junxiao Shi | 4cb7431 | 2016-12-25 20:48:47 +0000 | [diff] [blame] | 92 | entry.setName(i.getPrefix()) |
| 93 | .setStrategy(i.getStrategyInstanceName()); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 94 | context.append(entry.wireEncode()); |
| 95 | } |
| 96 | context.end(); |
| 97 | } |
| 98 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 99 | } // namespace nfd |