cache-policy.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2019 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  * @author Eric Newberry <enewberry@email.arizona.edu>
22  */
23 
26 
27 namespace ndn {
28 namespace lp {
29 
30 std::ostream&
31 operator<<(std::ostream& os, CachePolicyType policy)
32 {
33  switch (policy) {
35  os << "NoCache";
36  break;
37  default:
38  os << "None";
39  break;
40  }
41 
42  return os;
43 }
44 
46  : m_policy(CachePolicyType::NONE)
47 {
48 }
49 
51 {
52  wireDecode(block);
53 }
54 
55 template<encoding::Tag TAG>
56 size_t
57 CachePolicy::wireEncode(EncodingImpl<TAG>& encoder) const
58 {
59  if (m_policy == CachePolicyType::NONE) {
60  NDN_THROW(Error("CachePolicyType must be set"));
61  }
62 
63  size_t length = 0;
64  length += prependNonNegativeIntegerBlock(encoder, tlv::CachePolicyType, static_cast<uint32_t>(m_policy));
65  length += encoder.prependVarNumber(length);
66  length += encoder.prependVarNumber(tlv::CachePolicy);
67  return length;
68 }
69 
71 
72 const Block&
74 {
75  if (m_policy == CachePolicyType::NONE) {
76  NDN_THROW(Error("CachePolicyType must be set"));
77  }
78 
79  if (m_wire.hasWire()) {
80  return m_wire;
81  }
82 
83  EncodingEstimator estimator;
84  size_t estimatedSize = wireEncode(estimator);
85 
86  EncodingBuffer buffer(estimatedSize, 0);
87  wireEncode(buffer);
88 
89  m_wire = buffer.block();
90 
91  return m_wire;
92 }
93 
94 void
96 {
97  if (wire.type() != tlv::CachePolicy) {
98  NDN_THROW(Error("CachePolicy", wire.type()));
99  }
100 
101  m_wire = wire;
102  m_wire.parse();
103 
104  auto it = m_wire.elements_begin();
105  if (it == m_wire.elements_end()) {
106  NDN_THROW(Error("Empty CachePolicy"));
107  }
108 
109  if (it->type() == tlv::CachePolicyType) {
110  m_policy = static_cast<CachePolicyType>(readNonNegativeInteger(*it));
111  if (this->getPolicy() == CachePolicyType::NONE) {
112  NDN_THROW(Error("Unknown CachePolicyType"));
113  }
114  }
115  else {
116  NDN_THROW(Error("CachePolicyType", it->type()));
117  }
118 }
119 
122 {
123  switch (m_policy) {
125  return m_policy;
126  default:
127  return CachePolicyType::NONE;
128  }
129 }
130 
133 {
134  m_policy = policy;
135  m_wire.reset();
136  return *this;
137 }
138 
139 } // namespace lp
140 } // namespace ndn
void wireDecode(const Block &wire)
get CachePolicyType from wire format
represents a CachePolicy header field
Definition: data.cpp:26
size_t prependNonNegativeIntegerBlock(EncodingImpl< TAG > &encoder, uint32_t type, uint64_t value)
Prepend a TLV element containing a non-negative integer.
CachePolicyType getPolicy() const
CachePolicy & setPolicy(CachePolicyType policy)
set policy type code
Represents a TLV element of NDN packet format.
Definition: block.hpp:42
bool hasWire() const noexcept
Check if the Block contains a fully encoded wire representation.
Definition: block.hpp:230
uint64_t readNonNegativeInteger(const Block &block)
Read a non-negative integer from a TLV element.
#define NDN_THROW(e)
Definition: exception.hpp:61
void reset() noexcept
Reset the Block to a default-constructed state.
Definition: block.cpp:249
#define NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(ClassName)
CachePolicyType
indicates the cache policy applied to a Data packet
void parse() const
Parse TLV-VALUE into sub-elements.
Definition: block.cpp:324
uint32_t type() const
Return the TLV-TYPE of the Block.
Definition: block.hpp:274
std::ostream & operator<<(std::ostream &os, CachePolicyType policy)
const Block & wireEncode() const
encode CachePolicy into wire format
element_const_iterator elements_end() const
Equivalent to elements().end()
Definition: block.hpp:407
element_const_iterator elements_begin() const
Equivalent to elements().begin()
Definition: block.hpp:399
EncodingImpl< EncoderTag > EncodingBuffer
EncodingImpl< EstimatorTag > EncodingEstimator