Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
Steve DiBenedetto | 3fff561 | 2014-05-30 15:52:56 -0600 | [diff] [blame] | 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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 | **/ |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP |
| 27 | #define NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 28 | |
| 29 | #include "mgmt/manager-base.hpp" |
Steve DiBenedetto | 3fff561 | 2014-05-30 15:52:56 -0600 | [diff] [blame] | 30 | #include "mgmt/strategy-choice-publisher.hpp" |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 31 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 32 | #include <ndn-cxx/management/nfd-control-parameters.hpp> |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 33 | |
| 34 | namespace nfd { |
| 35 | |
| 36 | const std::string STRATEGY_CHOICE_PRIVILEGE = "strategy-choice"; |
| 37 | |
| 38 | class StrategyChoice; |
| 39 | |
| 40 | class StrategyChoiceManager : public ManagerBase |
| 41 | { |
| 42 | public: |
| 43 | StrategyChoiceManager(StrategyChoice& strategyChoice, |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 44 | shared_ptr<InternalFace> face); |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 45 | |
| 46 | virtual |
| 47 | ~StrategyChoiceManager(); |
| 48 | |
| 49 | void |
| 50 | onStrategyChoiceRequest(const Interest& request); |
| 51 | |
| 52 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Steve DiBenedetto | 3fff561 | 2014-05-30 15:52:56 -0600 | [diff] [blame] | 53 | |
| 54 | void |
| 55 | listStrategies(const Interest& request); |
| 56 | |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 57 | void |
| 58 | onValidatedStrategyChoiceRequest(const shared_ptr<const Interest>& request); |
| 59 | |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 60 | void |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 61 | setStrategy(ControlParameters& parameters, |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 62 | ControlResponse& response); |
| 63 | |
| 64 | void |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 65 | unsetStrategy(ControlParameters& parameters, |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 66 | ControlResponse& response); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 67 | |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 68 | private: |
| 69 | |
| 70 | StrategyChoice& m_strategyChoice; |
| 71 | |
Steve DiBenedetto | 3fff561 | 2014-05-30 15:52:56 -0600 | [diff] [blame] | 72 | StrategyChoicePublisher m_listPublisher; |
| 73 | |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 74 | static const Name COMMAND_PREFIX; // /localhost/nfd/strategy-choice |
| 75 | |
| 76 | // number of components in an invalid, but not malformed, unsigned command. |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 77 | // (/localhost/nfd/strategy-choice + verb + parameters) = 5 |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 78 | static const size_t COMMAND_UNSIGNED_NCOMPS; |
| 79 | |
| 80 | // number of components in a valid signed Interest. |
| 81 | // (see UNSIGNED_NCOMPS), 9 with signed Interest support. |
| 82 | static const size_t COMMAND_SIGNED_NCOMPS; |
| 83 | |
Steve DiBenedetto | 3fff561 | 2014-05-30 15:52:56 -0600 | [diff] [blame] | 84 | static const Name LIST_DATASET_PREFIX; // /localhost/nfd/strategy-choice/list |
| 85 | |
Steve DiBenedetto | 5330e0d | 2014-03-05 21:52:51 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | } // namespace nfd |
| 89 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 90 | #endif // NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP |