blob: c2ccd5332271bea3fa97b9af223c477d9c3f9c8b [file] [log] [blame]
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Vince Lehman5144f822014-07-23 15:12:56 -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,
8 * 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/>.
Vince Lehman5144f822014-07-23 15:12:56 -070024 */
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,
Vince Lehman5144f822014-07-23 15:12:56 -070044 shared_ptr<InternalFace> face,
45 ndn::KeyChain& keyChain);
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070046
47 virtual
48 ~StrategyChoiceManager();
49
50 void
51 onStrategyChoiceRequest(const Interest& request);
52
53PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Steve DiBenedetto3fff5612014-05-30 15:52:56 -060054
55 void
56 listStrategies(const Interest& request);
57
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070058 void
59 onValidatedStrategyChoiceRequest(const shared_ptr<const Interest>& request);
60
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070061 void
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060062 setStrategy(ControlParameters& parameters,
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070063 ControlResponse& response);
64
65 void
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060066 unsetStrategy(ControlParameters& parameters,
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070067 ControlResponse& response);
Steve DiBenedetto51d242a2014-03-31 13:46:43 -060068
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070069private:
70
71 StrategyChoice& m_strategyChoice;
72
Steve DiBenedetto3fff5612014-05-30 15:52:56 -060073 StrategyChoicePublisher m_listPublisher;
74
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070075 static const Name COMMAND_PREFIX; // /localhost/nfd/strategy-choice
76
77 // number of components in an invalid, but not malformed, unsigned command.
Steve DiBenedetto7564d972014-03-24 14:28:46 -060078 // (/localhost/nfd/strategy-choice + verb + parameters) = 5
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070079 static const size_t COMMAND_UNSIGNED_NCOMPS;
80
81 // number of components in a valid signed Interest.
82 // (see UNSIGNED_NCOMPS), 9 with signed Interest support.
83 static const size_t COMMAND_SIGNED_NCOMPS;
84
Steve DiBenedetto3fff5612014-05-30 15:52:56 -060085 static const Name LIST_DATASET_PREFIX; // /localhost/nfd/strategy-choice/list
86
Steve DiBenedetto5330e0d2014-03-05 21:52:51 -070087};
88
89} // namespace nfd
90
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070091#endif // NFD_DAEMON_MGMT_STRATEGY_CHOICE_MANAGER_HPP