strategy-choice.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_MGMT_NFD_STRATEGY_CHOICE_HPP
23 #define NDN_MGMT_NFD_STRATEGY_CHOICE_HPP
24 
25 #include "../../encoding/block.hpp"
26 #include "../../name.hpp"
27 
28 namespace ndn {
29 namespace nfd {
30 
37 {
38 public:
39  class Error : public tlv::Error
40  {
41  public:
42  explicit
43  Error(const std::string& what)
44  : tlv::Error(what)
45  {
46  }
47  };
48 
50 
51  explicit
52  StrategyChoice(const Block& payload);
53 
54  template<encoding::Tag TAG>
55  size_t
56  wireEncode(EncodingImpl<TAG>& encoder) const;
57 
58  const Block&
59  wireEncode() const;
60 
61  void
62  wireDecode(const Block& wire);
63 
64 public: // getters & setters
65  const Name&
66  getName() const
67  {
68  return m_name;
69  }
70 
72  setName(const Name& name);
73 
74  const Name&
75  getStrategy() const
76  {
77  return m_strategy;
78  }
79 
81  setStrategy(const Name& strategy);
82 
83 private:
84  Name m_name; // namespace
85  Name m_strategy; // strategy for the namespace
86 
87  mutable Block m_wire;
88 };
89 
90 bool
91 operator==(const StrategyChoice& a, const StrategyChoice& b);
92 
93 inline bool
95 {
96  return !(a == b);
97 }
98 
99 std::ostream&
100 operator<<(std::ostream& os, const StrategyChoice& sc);
101 
102 } // namespace nfd
103 } // namespace ndn
104 
105 #endif // NDN_MGMT_NFD_STRATEGY_CHOICE_HPP
Copyright (c) 2013-2016 Regents of the University of California.
Definition: common.hpp:74
Error(const std::string &what)
Class representing a wire element of NDN-TLV packet format.
Definition: block.hpp:43
void wireDecode(const Block &wire)
const Block & wireEncode() const
bool operator==(const StrategyChoice &a, const StrategyChoice &b)
bool operator!=(const StrategyChoice &a, const StrategyChoice &b)
StrategyChoice & setStrategy(const Name &strategy)
std::ostream & operator<<(std::ostream &os, FaceScope faceScope)
Name abstraction to represent an absolute name.
Definition: name.hpp:46
const Name & getStrategy() const
represents NFD StrategyChoice dataset
StrategyChoice & setName(const Name &name)
represents an error in TLV encoding or decoding
const Name & getName() const