Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 2 | /* |
Teng Liang | 5b323d1 | 2018-01-31 18:50:45 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 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 | |
Alexander Afanasyev | e387423 | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 22 | #ifndef NDN_CXX_LP_FIELD_DECL_HPP |
| 23 | #define NDN_CXX_LP_FIELD_DECL_HPP |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 24 | |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 25 | #include "empty-value.hpp" |
Alexander Afanasyev | e387423 | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 26 | #include "field.hpp" |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 27 | #include "sequence.hpp" |
Alexander Afanasyev | e387423 | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 28 | #include "tlv.hpp" |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 29 | |
Alexander Afanasyev | e387423 | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 30 | #include "../encoding/block-helpers.hpp" |
| 31 | #include "../util/concepts.hpp" |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 32 | #include <boost/concept/requires.hpp> |
| 33 | |
| 34 | namespace ndn { |
| 35 | namespace lp { |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 36 | |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 37 | /** \brief Indicate a uint64_t field shall be decoded and encoded as a non-negative integer. |
| 38 | */ |
| 39 | struct NonNegativeIntegerTag; |
| 40 | |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 41 | template<typename TlvType, typename T> |
| 42 | struct DecodeHelper |
| 43 | { |
| 44 | static |
| 45 | BOOST_CONCEPT_REQUIRES(((WireDecodable<T>)), (T)) |
| 46 | decode(const Block& wire) |
| 47 | { |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 48 | T type; |
| 49 | type.wireDecode(wire); |
| 50 | return type; |
| 51 | } |
| 52 | }; |
| 53 | |
| 54 | template<typename TlvType> |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 55 | struct DecodeHelper<TlvType, EmptyValue> |
| 56 | { |
| 57 | static EmptyValue |
| 58 | decode(const Block& wire) |
| 59 | { |
| 60 | if (wire.value_size() != 0) { |
| 61 | BOOST_THROW_EXCEPTION(ndn::tlv::Error("NDNLP field of TLV-TYPE " + to_string(wire.type()) + |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 62 | " must be empty")); |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | return EmptyValue{}; |
| 66 | } |
| 67 | }; |
| 68 | |
| 69 | template<typename TlvType> |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 70 | struct DecodeHelper<TlvType, NonNegativeIntegerTag> |
| 71 | { |
| 72 | static uint64_t |
| 73 | decode(const Block& wire) |
| 74 | { |
| 75 | return readNonNegativeInteger(wire); |
| 76 | } |
| 77 | }; |
| 78 | |
| 79 | template<typename TlvType> |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 80 | struct DecodeHelper<TlvType, uint64_t> |
| 81 | { |
| 82 | static uint64_t |
| 83 | decode(const Block& wire) |
| 84 | { |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 85 | // NDNLPv2 spec defines sequence number fields to be encoded as a fixed-width unsigned integer, |
| 86 | // but previous versions of ndn-cxx encode it as a NonNegativeInteger, so we decode it as such |
| 87 | // for backwards compatibility. In a future version, the decoder will be changed to accept |
| 88 | // 8-byte big endian only, to allow faster decoding. |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 89 | return readNonNegativeInteger(wire); |
| 90 | } |
| 91 | }; |
| 92 | |
| 93 | template<typename TlvType> |
| 94 | struct DecodeHelper<TlvType, std::pair<Buffer::const_iterator, Buffer::const_iterator>> |
| 95 | { |
| 96 | static std::pair<Buffer::const_iterator, Buffer::const_iterator> |
| 97 | decode(const Block& wire) |
| 98 | { |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 99 | if (wire.value_size() == 0) { |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 100 | BOOST_THROW_EXCEPTION(ndn::tlv::Error("NDNLP field of TLV-TYPE " + to_string(wire.type()) + |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 101 | " cannot be empty")); |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | return std::make_pair(wire.value_begin(), wire.value_end()); |
| 105 | } |
| 106 | }; |
| 107 | |
| 108 | template<typename encoding::Tag TAG, typename TlvType, typename T> |
| 109 | struct EncodeHelper |
| 110 | { |
| 111 | static |
Teng Liang | 5b323d1 | 2018-01-31 18:50:45 -0700 | [diff] [blame] | 112 | BOOST_CONCEPT_REQUIRES(((WireEncodableWithEncodingBuffer<T>)), (size_t)) |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 113 | encode(EncodingImpl<TAG>& encoder, const T& value) |
| 114 | { |
| 115 | return value.wireEncode(encoder); |
| 116 | } |
| 117 | }; |
| 118 | |
| 119 | template<typename encoding::Tag TAG, typename TlvType> |
Teng Liang | 0296074 | 2017-10-24 00:36:45 -0700 | [diff] [blame] | 120 | struct EncodeHelper<TAG, TlvType, EmptyValue> |
| 121 | { |
| 122 | static size_t |
| 123 | encode(EncodingImpl<TAG>& encoder, const EmptyValue value) |
| 124 | { |
| 125 | size_t length = 0; |
| 126 | length += encoder.prependVarNumber(0); |
| 127 | length += encoder.prependVarNumber(TlvType::value); |
| 128 | return length; |
| 129 | } |
| 130 | }; |
| 131 | |
| 132 | template<typename encoding::Tag TAG, typename TlvType> |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 133 | struct EncodeHelper<TAG, TlvType, NonNegativeIntegerTag> |
| 134 | { |
| 135 | static size_t |
| 136 | encode(EncodingImpl<TAG>& encoder, uint64_t value) |
| 137 | { |
| 138 | return prependNonNegativeIntegerBlock(encoder, TlvType::value, value); |
| 139 | } |
| 140 | }; |
| 141 | |
| 142 | template<typename encoding::Tag TAG, typename TlvType> |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 143 | struct EncodeHelper<TAG, TlvType, uint64_t> |
| 144 | { |
| 145 | static size_t |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 146 | encode(EncodingImpl<TAG>& encoder, uint64_t value) |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 147 | { |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 148 | uint64_t be = htobe64(value); |
| 149 | const uint8_t* buf = reinterpret_cast<const uint8_t*>(&be); |
| 150 | return encoder.prependByteArrayBlock(TlvType::value, buf, sizeof(be)); |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 151 | } |
| 152 | }; |
| 153 | |
| 154 | template<typename encoding::Tag TAG, typename TlvType> |
| 155 | struct EncodeHelper<TAG, TlvType, std::pair<Buffer::const_iterator, Buffer::const_iterator>> |
| 156 | { |
| 157 | static size_t |
| 158 | encode(EncodingImpl<TAG>& encoder, const std::pair<Buffer::const_iterator, Buffer::const_iterator>& value) |
| 159 | { |
| 160 | size_t length = 0; |
| 161 | length += encoder.prependRange(value.first, value.second); |
| 162 | length += encoder.prependVarNumber(length); |
| 163 | length += encoder.prependVarNumber(TlvType::value); |
| 164 | return length; |
| 165 | } |
| 166 | }; |
| 167 | |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 168 | /** \brief Declare a field. |
| 169 | * \tparam LOCATION a tag that indicates where the field is in an LpPacket. |
| 170 | * \tparam VALUE type of field value. |
| 171 | * \tparam TYPE TLV-TYPE number of the field. |
| 172 | * \tparam REPEATABLE whether the field is repeatable. |
| 173 | * \tparam DECODER_TAG selects a specialization of DecodeHelper. |
| 174 | * \tparam ENCODER_TAG selects a specialization of EncodeHelper. |
| 175 | */ |
| 176 | template<typename LOCATION, typename VALUE, uint64_t TYPE, bool REPEATABLE = false, |
| 177 | typename DECODER_TAG = VALUE, typename ENCODER_TAG = VALUE> |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 178 | class FieldDecl |
| 179 | { |
| 180 | public: |
| 181 | typedef LOCATION FieldLocation; |
| 182 | typedef VALUE ValueType; |
| 183 | typedef std::integral_constant<uint64_t, TYPE> TlvType; |
| 184 | typedef std::integral_constant<bool, REPEATABLE> IsRepeatable; |
| 185 | |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 186 | /** \brief Decode a field. |
| 187 | * \param wire an element with top-level TLV-TYPE \c TlvType::value. |
| 188 | * \return value of the field. |
| 189 | * \throw ndn::tlv::Error decode failure. |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 190 | */ |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 191 | static ValueType |
| 192 | decode(const Block& wire) |
| 193 | { |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 194 | if (wire.type() != TlvType::value) { |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 195 | BOOST_THROW_EXCEPTION(ndn::tlv::Error("Unexpected TLV-TYPE " + to_string(wire.type()))); |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 198 | return DecodeHelper<TlvType, DECODER_TAG>::decode(wire); |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 199 | } |
| 200 | |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 201 | /** \brief Encode a field and prepend to \p encoder. |
| 202 | * \param encoder a buffer encoder or estimator. |
| 203 | * \param value value of the field. |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 204 | */ |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 205 | template<typename encoding::Tag TAG> |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 206 | static size_t |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 207 | encode(EncodingImpl<TAG>& encoder, const ValueType& value) |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 208 | { |
Junxiao Shi | 974b81a | 2018-04-21 01:37:03 +0000 | [diff] [blame] | 209 | return EncodeHelper<TAG, TlvType, ENCODER_TAG>::encode(encoder, value); |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 210 | } |
| 211 | }; |
| 212 | |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 213 | } // namespace lp |
Junxiao Shi | 09bcab5 | 2016-07-18 02:43:34 +0000 | [diff] [blame] | 214 | } // namespace ndn |
Eric Newberry | 261dbc2 | 2015-07-22 23:18:18 -0700 | [diff] [blame] | 215 | |
Alexander Afanasyev | e387423 | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 216 | #endif // NDN_CXX_LP_FIELD_DECL_HPP |