blob: f3a0ed5146bbe6655ea60461ca09dd68569645f5 [file] [log] [blame]
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * 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 DiBenedetto3fff5612014-05-30 15:52:56 -06008 * Beijing Institute of Technology,
9 * The University of Memphis
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 DiBenedetto5330e0d2014-03-05 21:52:51 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP
27#define NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070028
29#include "mgmt/manager-base.hpp"
Steve DiBenedetto3fff5612014-05-30 15:52:56 -060030#include "mgmt/strategy-choice-publisher.hpp"
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070031
Alexander Afanasyev4a771362014-04-24 21:29:33 -070032#include <ndn-cxx/management/nfd-control-parameters.hpp>
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070033
34namespace nfd {
35
36const std::string STRATEGY_CHOICE_PRIVILEGE = "strategy-choice";
37
38class StrategyChoice;
39
40class StrategyChoiceManager : public ManagerBase
41{
42public:
43 StrategyChoiceManager(StrategyChoice& strategyChoice,
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -070044 shared_ptr<InternalFace> face);
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070045
46 virtual
47 ~StrategyChoiceManager();
48
49 void
50 onStrategyChoiceRequest(const Interest& request);
51
52PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Steve DiBenedetto3fff5612014-05-30 15:52:56 -060053
54 void
55 listStrategies(const Interest& request);
56
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070057 void
58 onValidatedStrategyChoiceRequest(const shared_ptr<const Interest>& request);
59
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070060 void
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060061 setStrategy(ControlParameters& parameters,
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070062 ControlResponse& response);
63
64 void
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060065 unsetStrategy(ControlParameters& parameters,
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070066 ControlResponse& response);
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060067
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070068private:
69
70 StrategyChoice& m_strategyChoice;
71
Steve DiBenedetto3fff5612014-05-30 15:52:56 -060072 StrategyChoicePublisher m_listPublisher;
73
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070074 static const Name COMMAND_PREFIX; // /localhost/nfd/strategy-choice
75
76 // number of components in an invalid, but not malformed, unsigned command.
Steve DiBenedetto7564d972014-03-24 14:28:46 -060077 // (/localhost/nfd/strategy-choice + verb + parameters) = 5
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070078 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 DiBenedetto3fff5612014-05-30 15:52:56 -060084 static const Name LIST_DATASET_PREFIX; // /localhost/nfd/strategy-choice/list
85
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070086};
87
88} // namespace nfd
89
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070090#endif // NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP