blob: 4d8e78152807d76fe50600cfeceb24e804b6333c [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev4671bf72014-05-19 09:01:37 -04002/**
Alexander Afanasyev74633892015-02-08 18:08:46 -08003 * Copyright (c) 2013-2015 Regents of the University of California.
Alexander Afanasyev4671bf72014-05-19 09:01:37 -04004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyev4671bf72014-05-19 09:01:37 -04006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040020 */
21
22#ifndef NDN_MANAGEMENT_NFD_STRATEGY_CHOICE_HPP
23#define NDN_MANAGEMENT_NFD_STRATEGY_CHOICE_HPP
24
Junxiao Shi65f1a712014-11-20 14:59:36 -070025#include "../encoding/block.hpp"
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040026#include "../name.hpp"
27
28namespace ndn {
29namespace nfd {
30
31/**
32 * @ingroup management
33 * @brief represents NFD StrategyChoice dataset
34 * @sa http://redmine.named-data.net/projects/nfd/wiki/StrategyChoice#Strategy-Choice-Dataset
35 */
36class StrategyChoice
37{
38public:
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060039 class Error : public tlv::Error
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040040 {
41 public:
42 explicit
43 Error(const std::string& what)
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060044 : tlv::Error(what)
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040045 {
46 }
47 };
48
Junxiao Shi65f1a712014-11-20 14:59:36 -070049 StrategyChoice();
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040050
51 explicit
Junxiao Shi65f1a712014-11-20 14:59:36 -070052 StrategyChoice(const Block& payload);
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040053
Alexander Afanasyev74633892015-02-08 18:08:46 -080054 template<encoding::Tag TAG>
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040055 size_t
Alexander Afanasyev74633892015-02-08 18:08:46 -080056 wireEncode(EncodingImpl<TAG>& encoder) const;
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040057
58 const Block&
59 wireEncode() const;
60
61 void
62 wireDecode(const Block& wire);
63
64public: // getters & setters
65 const Name&
66 getName() const
67 {
68 return m_name;
69 }
70
71 StrategyChoice&
Junxiao Shi65f1a712014-11-20 14:59:36 -070072 setName(const Name& name);
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040073
74 const Name&
75 getStrategy() const
76 {
77 return m_strategy;
78 }
79
80 StrategyChoice&
Junxiao Shi65f1a712014-11-20 14:59:36 -070081 setStrategy(const Name& strategy);
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040082
83private:
84 Name m_name; // namespace
85 Name m_strategy; // strategy for the namespace
86
87 mutable Block m_wire;
88};
89
Alexander Afanasyev4671bf72014-05-19 09:01:37 -040090} // namespace nfd
91} // namespace ndn
92
93#endif // NDN_MANAGEMENT_NFD_STRATEGY_CHOICE_HPP