strategy-choice.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2023 Regents of the University of California.
4  *
5  * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6  *
7  * 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.
20  */
21 
22 #ifndef NDN_CXX_MGMT_NFD_STRATEGY_CHOICE_HPP
23 #define NDN_CXX_MGMT_NFD_STRATEGY_CHOICE_HPP
24 
26 #include "ndn-cxx/name.hpp"
27 
28 namespace ndn::nfd {
29 
36 {
37 public:
38  class Error : public tlv::Error
39  {
40  public:
41  using tlv::Error::Error;
42  };
43 
45 
46  explicit
47  StrategyChoice(const Block& payload);
48 
49  template<encoding::Tag TAG>
50  size_t
51  wireEncode(EncodingImpl<TAG>& encoder) const;
52 
53  const Block&
54  wireEncode() const;
55 
56  void
57  wireDecode(const Block& wire);
58 
59 public: // getters & setters
60  const Name&
61  getName() const
62  {
63  return m_name;
64  }
65 
67  setName(const Name& name);
68 
69  const Name&
70  getStrategy() const
71  {
72  return m_strategy;
73  }
74 
76  setStrategy(const Name& strategy);
77 
78 private:
79  Name m_name; // namespace
80  Name m_strategy; // strategy for the namespace
81 
82  mutable Block m_wire;
83 };
84 
86 
87 bool
88 operator==(const StrategyChoice& a, const StrategyChoice& b);
89 
90 inline bool
92 {
93  return !(a == b);
94 }
95 
96 std::ostream&
97 operator<<(std::ostream& os, const StrategyChoice& sc);
98 
99 } // namespace ndn::nfd
100 
101 #endif // NDN_CXX_MGMT_NFD_STRATEGY_CHOICE_HPP
Represents a TLV element of the NDN packet format.
Definition: block.hpp:45
Represents an absolute name.
Definition: name.hpp:45
Represents an item in NFD StrategyChoice dataset.
StrategyChoice & setName(const Name &name)
const Name & getName() const
const Block & wireEncode() const
const Name & getStrategy() const
void wireDecode(const Block &wire)
StrategyChoice & setStrategy(const Name &strategy)
Represents an error in TLV encoding or decoding.
Definition: tlv.hpp:54
Error(const char *expectedType, uint32_t actualType)
Definition: tlv.cpp:28
#define NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(ClassName)
Contains classes and functions related to the NFD Management protocol.
bool operator!=(const ChannelStatus &a, const ChannelStatus &b)
std::ostream & operator<<(std::ostream &os, FaceScope faceScope)
bool operator==(const ChannelStatus &a, const ChannelStatus &b)