meta-info.hpp
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 #ifndef NDN_META_INFO_HPP
23 #define NDN_META_INFO_HPP
24 
25 #include "encoding/block.hpp"
27 #include "name-component.hpp"
28 #include "util/time.hpp"
29 
30 #include <list>
31 
32 namespace ndn {
33 
34 const time::milliseconds DEFAULT_FRESHNESS_PERIOD = time::milliseconds::zero();
35 
58 class MetaInfo
59 {
60 public:
61  class Error : public tlv::Error
62  {
63  public:
64  using tlv::Error::Error;
65  };
66 
67  MetaInfo();
68 
72  explicit
73  MetaInfo(const Block& block);
74 
75  template<encoding::Tag TAG>
76  size_t
77  wireEncode(EncodingImpl<TAG>& encoder) const;
78 
79  const Block&
80  wireEncode() const;
81 
82  void
83  wireDecode(const Block& wire);
84 
85 public: // getter/setter
90  uint32_t
91  getType() const
92  {
93  return m_type;
94  }
95 
99  MetaInfo&
100  setType(uint32_t type);
101 
106  time::milliseconds
108  {
109  return m_freshnessPeriod;
110  }
111 
115  MetaInfo&
116  setFreshnessPeriod(time::milliseconds freshnessPeriod);
117 
120  const optional<name::Component>&
122  {
123  return m_finalBlockId;
124  }
125 
128  MetaInfo&
129  setFinalBlock(optional<name::Component> finalBlockId);
130 
137  [[deprecated("use getFinalBlock")]]
140  {
141  return getFinalBlock().value_or(name::Component());
142  }
143 
150  [[deprecated("use setFinalBlock")]]
151  MetaInfo&
152  setFinalBlockId(const name::Component& finalBlockId);
153 
154 public: // app-defined MetaInfo items
163  const std::list<Block>&
164  getAppMetaInfo() const;
165 
179  MetaInfo&
180  setAppMetaInfo(const std::list<Block>& info);
181 
193  MetaInfo&
194  addAppMetaInfo(const Block& block);
195 
206  bool
207  removeAppMetaInfo(uint32_t tlvType);
208 
222  const Block*
223  findAppMetaInfo(uint32_t tlvType) const;
224 
225 public: // EqualityComparable concept
226  bool
227  operator==(const MetaInfo& other) const;
228 
229  bool
230  operator!=(const MetaInfo& other) const;
231 
232 private:
233  uint32_t m_type;
234  time::milliseconds m_freshnessPeriod;
235  optional<name::Component> m_finalBlockId;
236  std::list<Block> m_appMetaInfo;
237 
238  mutable Block m_wire;
239 };
240 
242 
243 std::ostream&
244 operator<<(std::ostream& os, const MetaInfo& info);
245 
246 inline bool
247 MetaInfo::operator==(const MetaInfo& other) const
248 {
249  return wireEncode() == other.wireEncode();
250 }
251 
252 inline bool
253 MetaInfo::operator!=(const MetaInfo& other) const
254 {
255  return !(*this == other);
256 }
257 
258 } // namespace ndn
259 
260 #endif // NDN_META_INFO_HPP
Copyright (c) 2013-2017 Regents of the University of California.
Definition: common.hpp:65
size_t wireEncode(EncodingImpl< TAG > &encoder) const
Definition: meta-info.cpp:136
const optional< name::Component > & getFinalBlock() const
return FinalBlockId
Definition: meta-info.hpp:121
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:337
Represents a TLV element of NDN packet format.
Definition: block.hpp:42
MetaInfo & setFreshnessPeriod(time::milliseconds freshnessPeriod)
set FreshnessPeriod
Definition: meta-info.cpp:55
const Block & wireEncode() const
Definition: meta-info.cpp:174
#define NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(ClassName)
MetaInfo & setFinalBlockId(const name::Component &finalBlockId)
set FinalBlockId
Definition: meta-info.cpp:74
const time::milliseconds DEFAULT_FRESHNESS_PERIOD
Definition: meta-info.hpp:34
MetaInfo & setType(uint32_t type)
set ContentType
Definition: meta-info.cpp:47
time::milliseconds getFreshnessPeriod() const
return FreshnessPeriod
Definition: meta-info.hpp:107
bool removeAppMetaInfo(uint32_t tlvType)
Remove a first app-defined MetaInfo item with type tlvType.
Definition: meta-info.cpp:114
const std::list< Block > & getAppMetaInfo() const
Get all app-defined MetaInfo items.
Definition: meta-info.cpp:83
A MetaInfo holds the meta info which is signed inside the data packet.
Definition: meta-info.hpp:58
name::Component getFinalBlockId() const
return FinalBlockId
Definition: meta-info.hpp:139
bool operator!=(const MetaInfo &other) const
Definition: meta-info.hpp:253
uint64_t tlvType
TLV-TYPE of the field; 0 if field does not exist.
Definition: packet.cpp:62
Represents a name component.
const Block * findAppMetaInfo(uint32_t tlvType) const
Find a first app-defined MetaInfo item of type tlvType.
Definition: meta-info.cpp:127
bool operator==(const MetaInfo &other) const
Definition: meta-info.hpp:247
MetaInfo & setAppMetaInfo(const std::list< Block > &info)
Set app-defined MetaInfo items.
Definition: meta-info.cpp:89
uint32_t getType() const
return ContentType
Definition: meta-info.hpp:91
MetaInfo & addAppMetaInfo(const Block &block)
Add an app-defined MetaInfo item.
Definition: meta-info.cpp:102
represents an error in TLV encoding or decoding
void wireDecode(const Block &wire)
Definition: meta-info.cpp:190