NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
meta-info.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2018 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 #include "ndn-cxx/meta-info.hpp"
25 
26 namespace ndn {
27 
28 BOOST_CONCEPT_ASSERT((boost::EqualityComparable<MetaInfo>));
29 BOOST_CONCEPT_ASSERT((WireEncodable<MetaInfo>));
31 BOOST_CONCEPT_ASSERT((WireDecodable<MetaInfo>));
32 static_assert(std::is_base_of<tlv::Error, MetaInfo::Error>::value,
33  "MetaInfo::Error must inherit from tlv::Error");
34 
36  : m_type(tlv::ContentType_Blob)
37  , m_freshnessPeriod(DEFAULT_FRESHNESS_PERIOD)
38 {
39 }
40 
42 {
43  wireDecode(block);
44 }
45 
46 MetaInfo&
47 MetaInfo::setType(uint32_t type)
48 {
49  m_wire.reset();
50  m_type = type;
51  return *this;
52 }
53 
54 MetaInfo&
55 MetaInfo::setFreshnessPeriod(time::milliseconds freshnessPeriod)
56 {
57  if (freshnessPeriod < time::milliseconds::zero()) {
58  BOOST_THROW_EXCEPTION(std::invalid_argument("FreshnessPeriod must be >= 0"));
59  }
60  m_wire.reset();
61  m_freshnessPeriod = freshnessPeriod;
62  return *this;
63 }
64 
65 MetaInfo&
66 MetaInfo::setFinalBlock(optional<name::Component> finalBlockId)
67 {
68  m_wire.reset();
69  m_finalBlockId = std::move(finalBlockId);
70  return *this;
71 }
72 
73 const std::list<Block>&
75 {
76  return m_appMetaInfo;
77 }
78 
79 MetaInfo&
80 MetaInfo::setAppMetaInfo(const std::list<Block>& info)
81 {
82  for (const auto& block : info) {
83  if (block.type() < 128 || block.type() > 252)
84  BOOST_THROW_EXCEPTION(Error("AppMetaInfo block has type outside the application range [128, 252]"));
85  }
86 
87  m_wire.reset();
88  m_appMetaInfo = info;
89  return *this;
90 }
91 
92 MetaInfo&
94 {
95  if (!(128 <= block.type() && block.type() <= 252))
96  BOOST_THROW_EXCEPTION(Error("AppMetaInfo block has type outside the application range "
97  "[128, 252]"));
98 
99  m_wire.reset();
100  m_appMetaInfo.push_back(block);
101  return *this;
102 }
103 
104 bool
106 {
107  for (auto it = m_appMetaInfo.begin(); it != m_appMetaInfo.end(); ++it) {
108  if (it->type() == tlvType) {
109  m_wire.reset();
110  m_appMetaInfo.erase(it);
111  return true;
112  }
113  }
114  return false;
115 }
116 
117 const Block*
119 {
120  auto it = std::find_if(m_appMetaInfo.begin(), m_appMetaInfo.end(),
121  [=] (const Block& b) { return b.type() == tlvType; });
122  return it != m_appMetaInfo.end() ? &*it : nullptr;
123 }
124 
125 template<encoding::Tag TAG>
126 size_t
128 {
129  // MetaInfo ::= META-INFO-TYPE TLV-LENGTH
130  // ContentType?
131  // FreshnessPeriod?
132  // FinalBlockId?
133  // AppMetaInfo*
134 
135  size_t totalLength = 0;
136 
137  for (auto it = m_appMetaInfo.rbegin(); it != m_appMetaInfo.rend(); ++it) {
138  totalLength += encoder.prependBlock(*it);
139  }
140 
141  // FinalBlockId
142  if (m_finalBlockId) {
143  totalLength += prependNestedBlock(encoder, tlv::FinalBlockId, *m_finalBlockId);
144  }
145 
146  // FreshnessPeriod
147  if (m_freshnessPeriod != DEFAULT_FRESHNESS_PERIOD) {
149  static_cast<uint64_t>(m_freshnessPeriod.count()));
150  }
151 
152  // ContentType
153  if (m_type != tlv::ContentType_Blob) {
154  totalLength += prependNonNegativeIntegerBlock(encoder, tlv::ContentType, m_type);
155  }
156 
157  totalLength += encoder.prependVarNumber(totalLength);
158  totalLength += encoder.prependVarNumber(tlv::MetaInfo);
159  return totalLength;
160 }
161 
163 
164 const Block&
166 {
167  if (m_wire.hasWire())
168  return m_wire;
169 
170  EncodingEstimator estimator;
171  size_t estimatedSize = wireEncode(estimator);
172 
173  EncodingBuffer buffer(estimatedSize, 0);
174  wireEncode(buffer);
175 
176  m_wire = buffer.block();
177  return m_wire;
178 }
179 
180 void
182 {
183  m_wire = wire;
184  m_wire.parse();
185 
186  // MetaInfo ::= META-INFO-TYPE TLV-LENGTH
187  // ContentType?
188  // FreshnessPeriod?
189  // FinalBlockId?
190  // AppMetaInfo*
191 
192  auto val = m_wire.elements_begin();
193 
194  // ContentType
195  if (val != m_wire.elements_end() && val->type() == tlv::ContentType) {
196  m_type = readNonNegativeIntegerAs<uint32_t>(*val);
197  ++val;
198  }
199  else {
200  m_type = tlv::ContentType_Blob;
201  }
202 
203  // FreshnessPeriod
204  if (val != m_wire.elements_end() && val->type() == tlv::FreshnessPeriod) {
205  m_freshnessPeriod = time::milliseconds(readNonNegativeInteger(*val));
206  ++val;
207  }
208  else {
209  m_freshnessPeriod = DEFAULT_FRESHNESS_PERIOD;
210  }
211 
212  // FinalBlockId
213  if (val != m_wire.elements_end() && val->type() == tlv::FinalBlockId) {
214  m_finalBlockId.emplace(val->blockFromValue());
215  ++val;
216  }
217  else {
218  m_finalBlockId = nullopt;
219  }
220 
221  // AppMetaInfo (if any)
222  for (; val != m_wire.elements().end(); ++val) {
223  m_appMetaInfo.push_back(*val);
224  }
225 }
226 
227 std::ostream&
228 operator<<(std::ostream& os, const MetaInfo& info)
229 {
230  // ContentType
231  os << "ContentType: " << info.getType();
232 
233  // FreshnessPeriod
234  if (info.getFreshnessPeriod() > 0_ms) {
235  os << ", FreshnessPeriod: " << info.getFreshnessPeriod();
236  }
237 
238  // FinalBlockId
239  if (info.getFinalBlock()) {
240  os << ", FinalBlockId: ";
241  info.getFinalBlock()->toUri(os);
242  }
243 
244  // App-defined MetaInfo items
245  for (const auto& block : info.getAppMetaInfo()) {
246  os << ", AppMetaInfoTlvType: " << block.type();
247  }
248 
249  return os;
250 }
251 
252 } // namespace ndn
bool hasWire() const
Check if the Block has fully encoded wire.
Definition: block.cpp:249
Copyright (c) 2011-2015 Regents of the University of California.
size_t prependNonNegativeIntegerBlock(EncodingImpl< TAG > &encoder, uint32_t type, uint64_t value)
Prepend a TLV element containing a non-negative integer.
const Block * findAppMetaInfo(uint32_t tlvType) const
Find a first app-defined MetaInfo item of type tlvType.
Definition: meta-info.cpp:118
MetaInfo & setFinalBlock(optional< name::Component > finalBlockId)
set FinalBlockId
Definition: meta-info.cpp:66
std::ostream & operator<<(std::ostream &os, const Data &data)
Definition: data.cpp:322
size_t prependNestedBlock(EncodingImpl< TAG > &encoder, uint32_t type, const U &value)
Prepend a TLV element containing a nested TLV element.
void parse() const
Parse TLV-VALUE into sub elements.
Definition: block.cpp:333
Represents a TLV element of NDN packet format.
Definition: block.hpp:42
element_const_iterator elements_begin() const
Equivalent to elements().begin()
Definition: block.hpp:369
MetaInfo & setFreshnessPeriod(time::milliseconds freshnessPeriod)
set FreshnessPeriod
Definition: meta-info.cpp:55
uint64_t readNonNegativeInteger(const Block &block)
Read a non-negative integer from a TLV element.
const element_container & elements() const
Get container of sub elements.
Definition: block.hpp:361
uint32_t getType() const
return ContentType
Definition: meta-info.hpp:91
a concept check for TLV abstraction with .wireEncode method
Definition: concepts.hpp:60
const time::milliseconds DEFAULT_FRESHNESS_PERIOD
Definition: meta-info.hpp:34
element_const_iterator elements_end() const
Equivalent to elements().end()
Definition: block.hpp:377
MetaInfo & setType(uint32_t type)
set ContentType
Definition: meta-info.cpp:47
bool removeAppMetaInfo(uint32_t tlvType)
Remove a first app-defined MetaInfo item with type tlvType.
Definition: meta-info.cpp:105
const Block & wireEncode() const
Definition: meta-info.cpp:165
A MetaInfo holds the meta info which is signed inside the data packet.
Definition: meta-info.hpp:58
time::milliseconds getFreshnessPeriod() const
return FreshnessPeriod
Definition: meta-info.hpp:107
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(Exclude)
void reset()
Reset wire buffer of the element.
Definition: block.cpp:255
const optional< name::Component > & getFinalBlock() const
return FinalBlockId
Definition: meta-info.hpp:121
const std::list< Block > & getAppMetaInfo() const
Get all app-defined MetaInfo items.
Definition: meta-info.cpp:74
uint64_t tlvType
TLV-TYPE of the field; 0 if field does not exist.
Definition: packet.cpp:62
a concept check for TLV abstraction with .wireEncode method
Definition: concepts.hpp:44
MetaInfo & setAppMetaInfo(const std::list< Block > &info)
Set app-defined MetaInfo items.
Definition: meta-info.cpp:80
a concept check for TLV abstraction with .wireDecode method and constructible from Block
Definition: concepts.hpp:80
MetaInfo & addAppMetaInfo(const Block &block)
Add an app-defined MetaInfo item.
Definition: meta-info.cpp:93
EncodingImpl< EncoderTag > EncodingBuffer
const nullopt_t nullopt((nullopt_t::init()))
uint32_t type() const
Get TLV-TYPE.
Definition: block.hpp:249
EncodingImpl< EstimatorTag > EncodingEstimator
void wireDecode(const Block &wire)
Definition: meta-info.cpp:181