field-decl.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_CXX_LP_FIELD_DECL_HPP
23 #define NDN_CXX_LP_FIELD_DECL_HPP
24 
25 #include "empty-value.hpp"
26 #include "field.hpp"
27 #include "sequence.hpp"
28 #include "tlv.hpp"
29 #include "../encoding/block-helpers.hpp"
30 #include "../util/concepts.hpp"
31 
32 #include <boost/concept/requires.hpp>
33 #include <boost/endian/conversion.hpp>
34 
35 namespace ndn {
36 namespace lp {
37 
40 struct NonNegativeIntegerTag;
41 
42 template<typename TlvType, typename T>
44 {
45  static
46  BOOST_CONCEPT_REQUIRES(((WireDecodable<T>)), (T))
47  decode(const Block& wire)
48  {
49  T type;
50  type.wireDecode(wire);
51  return type;
52  }
53 };
54 
55 template<typename TlvType>
56 struct DecodeHelper<TlvType, EmptyValue>
57 {
58  static EmptyValue
59  decode(const Block& wire)
60  {
61  if (wire.value_size() != 0) {
62  BOOST_THROW_EXCEPTION(ndn::tlv::Error("NDNLP field of TLV-TYPE " + to_string(wire.type()) +
63  " must be empty"));
64  }
65 
66  return EmptyValue{};
67  }
68 };
69 
70 template<typename TlvType>
71 struct DecodeHelper<TlvType, NonNegativeIntegerTag>
72 {
73  static uint64_t
74  decode(const Block& wire)
75  {
76  return readNonNegativeInteger(wire);
77  }
78 };
79 
80 template<typename TlvType>
81 struct DecodeHelper<TlvType, uint64_t>
82 {
83  static uint64_t
84  decode(const Block& wire)
85  {
86  // NDNLPv2 spec defines sequence number fields to be encoded as a fixed-width unsigned integer,
87  // but previous versions of ndn-cxx encode it as a NonNegativeInteger, so we decode it as such
88  // for backwards compatibility. In a future version, the decoder will be changed to accept
89  // 8-byte big endian only, to allow faster decoding.
90  return readNonNegativeInteger(wire);
91  }
92 };
93 
94 template<typename TlvType>
95 struct DecodeHelper<TlvType, std::pair<Buffer::const_iterator, Buffer::const_iterator>>
96 {
97  static std::pair<Buffer::const_iterator, Buffer::const_iterator>
98  decode(const Block& wire)
99  {
100  if (wire.value_size() == 0) {
101  BOOST_THROW_EXCEPTION(ndn::tlv::Error("NDNLP field of TLV-TYPE " + to_string(wire.type()) +
102  " cannot be empty"));
103  }
104 
105  return std::make_pair(wire.value_begin(), wire.value_end());
106  }
107 };
108 
109 template<typename encoding::Tag TAG, typename TlvType, typename T>
111 {
112  static
113  BOOST_CONCEPT_REQUIRES(((WireEncodableWithEncodingBuffer<T>)), (size_t))
114  encode(EncodingImpl<TAG>& encoder, const T& value)
115  {
116  return value.wireEncode(encoder);
117  }
118 };
119 
120 template<typename encoding::Tag TAG, typename TlvType>
121 struct EncodeHelper<TAG, TlvType, EmptyValue>
122 {
123  static size_t
124  encode(EncodingImpl<TAG>& encoder, const EmptyValue value)
125  {
126  size_t length = 0;
127  length += encoder.prependVarNumber(0);
128  length += encoder.prependVarNumber(TlvType::value);
129  return length;
130  }
131 };
132 
133 template<typename encoding::Tag TAG, typename TlvType>
134 struct EncodeHelper<TAG, TlvType, NonNegativeIntegerTag>
135 {
136  static size_t
137  encode(EncodingImpl<TAG>& encoder, uint64_t value)
138  {
139  return prependNonNegativeIntegerBlock(encoder, TlvType::value, value);
140  }
141 };
142 
143 template<typename encoding::Tag TAG, typename TlvType>
144 struct EncodeHelper<TAG, TlvType, uint64_t>
145 {
146  static size_t
147  encode(EncodingImpl<TAG>& encoder, uint64_t value)
148  {
149  boost::endian::native_to_big_inplace(value);
150  return encoder.prependByteArrayBlock(TlvType::value,
151  reinterpret_cast<const uint8_t*>(&value), sizeof(value));
152  }
153 };
154 
155 template<typename encoding::Tag TAG, typename TlvType>
156 struct EncodeHelper<TAG, TlvType, std::pair<Buffer::const_iterator, Buffer::const_iterator>>
157 {
158  static size_t
159  encode(EncodingImpl<TAG>& encoder, const std::pair<Buffer::const_iterator, Buffer::const_iterator>& value)
160  {
161  size_t length = 0;
162  length += encoder.prependRange(value.first, value.second);
163  length += encoder.prependVarNumber(length);
164  length += encoder.prependVarNumber(TlvType::value);
165  return length;
166  }
167 };
168 
177 template<typename LOCATION, typename VALUE, uint64_t TYPE, bool REPEATABLE = false,
178  typename DECODER_TAG = VALUE, typename ENCODER_TAG = VALUE>
180 {
181 public:
182  typedef LOCATION FieldLocation;
183  typedef VALUE ValueType;
184  typedef std::integral_constant<uint64_t, TYPE> TlvType;
185  typedef std::integral_constant<bool, REPEATABLE> IsRepeatable;
186 
192  static ValueType
193  decode(const Block& wire)
194  {
195  if (wire.type() != TlvType::value) {
196  BOOST_THROW_EXCEPTION(ndn::tlv::Error("Unexpected TLV-TYPE " + to_string(wire.type())));
197  }
198 
200  }
201 
206  template<typename encoding::Tag TAG>
207  static size_t
208  encode(EncodingImpl<TAG>& encoder, const ValueType& value)
209  {
211  }
212 };
213 
214 } // namespace lp
215 } // namespace ndn
216 
217 #endif // NDN_CXX_LP_FIELD_DECL_HPP
static ValueType decode(const Block &wire)
Decode a field.
Definition: field-decl.hpp:193
Copyright (c) 2013-2017 Regents of the University of California.
Definition: common.hpp:65
static T decode(const Block &wire)
Definition: field-decl.hpp:47
LOCATION FieldLocation
Definition: field-decl.hpp:182
size_t prependNonNegativeIntegerBlock(EncodingImpl< TAG > &encoder, uint32_t type, uint64_t value)
Prepend a TLV element containing a non-negative integer.
std::integral_constant< bool, REPEATABLE > IsRepeatable
Definition: field-decl.hpp:185
static size_t encode(EncodingImpl< TAG > &encoder, uint64_t value)
Definition: field-decl.hpp:137
STL namespace.
Represents a TLV element of NDN packet format.
Definition: block.hpp:42
static size_t encode(EncodingImpl< TAG > &encoder, const EmptyValue value)
Definition: field-decl.hpp:124
Buffer::const_iterator value_begin() const
Get begin iterator of TLV-VALUE.
Definition: block.hpp:269
Buffer::const_iterator value_end() const
Get end iterator of TLV-VALUE.
Definition: block.hpp:278
uint64_t readNonNegativeInteger(const Block &block)
Read a non-negative integer from a TLV element.
static size_t encode(EncodingImpl< TAG > &encoder, const T &value)
Definition: field-decl.hpp:114
Declare a field.
Definition: field-decl.hpp:179
a concept check for TLV abstraction with .wireEncode method
Definition: concepts.hpp:60
static size_t encode(EncodingImpl< TAG > &encoder, uint64_t value)
Definition: field-decl.hpp:147
size_t value_size() const
Get size of TLV-VALUE aka TLV-LENGTH.
Definition: block.cpp:316
uint32_t type() const
Get TLV-TYPE.
Definition: block.hpp:249
represents a zero-length TLV-VALUE
Definition: empty-value.hpp:33
static size_t encode(EncodingImpl< TAG > &encoder, const ValueType &value)
Encode a field and prepend to encoder.
Definition: field-decl.hpp:208
static size_t encode(EncodingImpl< TAG > &encoder, const std::pair< Buffer::const_iterator, Buffer::const_iterator > &value)
Definition: field-decl.hpp:159
static std::pair< Buffer::const_iterator, Buffer::const_iterator > decode(const Block &wire)
Definition: field-decl.hpp:98
static uint64_t decode(const Block &wire)
Definition: field-decl.hpp:84
std::string to_string(const V &v)
Definition: backports.hpp:65
a concept check for TLV abstraction with .wireDecode method and constructible from Block ...
Definition: concepts.hpp:80
std::integral_constant< uint64_t, TYPE > TlvType
Definition: field-decl.hpp:184
represents an error in TLV encoding or decoding
static EmptyValue decode(const Block &wire)
Definition: field-decl.hpp:59