22 #ifndef NDN_CXX_ENCODING_BLOCK_HELPERS_HPP
23 #define NDN_CXX_ENCODING_BLOCK_HELPERS_HPP
42 extern template size_t
45 extern template size_t
66 extern template size_t
69 extern template size_t
95 std::enable_if_t<std::is_integral_v<R>, R>
99 if (value > std::numeric_limits<R>::max()) {
102 return static_cast<R
>(value);
114 std::enable_if_t<std::is_enum_v<R>, R>
117 return static_cast<R
>(readNonNegativeIntegerAs<std::underlying_type_t<R>>(block));
130 extern template size_t
133 extern template size_t
163 extern template size_t
166 extern template size_t
183 template<
class Iterator>
187 BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<Iterator>));
190 size_t valueLength = last - first;
191 size_t totalLength = valueLength;
200 return encoder.
block();
206 template<
class Iterator>
210 BOOST_CONCEPT_ASSERT((boost::InputIterator<Iterator>));
215 size_t valueLength = encoder.
appendRange(first, last);
219 return encoder.
block();
233 template<
class Iterator>
237 if constexpr (std::is_base_of_v<std::random_access_iterator_tag,
238 typename std::iterator_traits<Iterator>::iterator_category>)
255 extern template size_t
258 extern template size_t
270 return makeBinaryBlock(type, {
reinterpret_cast<const uint8_t*
>(value.data()), value.size()});
291 extern template size_t
294 extern template size_t
304 template<Tag TAG,
class U>
310 size_t length = value.wireEncode(encoder);
311 length += encoder.prependVarNumber(length);
312 length += encoder.prependVarNumber(type);
331 return encoder.
block();
342 template<Tag TAG,
class I>
348 auto rfirst = std::make_reverse_iterator(last);
349 auto rlast = std::make_reverse_iterator(first);
352 for (
auto i = rfirst; i != rlast; ++i) {
353 length += i->wireEncode(encoder);
356 length += encoder.prependVarNumber(length);
357 length += encoder.prependVarNumber(type);
377 return encoder.
block();
Represents a TLV element of the NDN packet format.
uint32_t type() const noexcept
Return the TLV-TYPE of the Block.
A concept check for TLV abstraction with a wireEncode(EncodingBuffer) method.
Block block(bool verifyLength=true) const
Create Block from the underlying buffer.
size_t prependRange(Iterator first, Iterator last)
Prepend range of bytes from the range [first, last)
size_t prependVarNumber(uint64_t number)
Prepend number encoded as a VAR-NUMBER in NDN-TLV format.
size_t appendRange(Iterator first, Iterator last)
Append range of bytes from the range [first, last)
EncodingImpl specialization for actual TLV encoding.
EncodingImpl specialization for TLV size estimation.
constexpr size_t prependVarNumber(uint64_t n) const noexcept
Prepend n in VarNumber encoding.
Represents an error in TLV encoding or decoding.
Block makeBinaryBlockSlow(uint32_t type, Iterator first, Iterator last)
Create a binary block copying from generic InputIterator.
Block makeBinaryBlockFast(uint32_t type, Iterator first, Iterator last)
Create a binary block copying from RandomAccessIterator.
std::enable_if_t< std::is_integral_v< R >, R > readNonNegativeIntegerAs(const Block &block)
Read a non-negative integer from a TLV element and cast to the specified type.
template size_t prependEmptyBlock< EstimatorTag >(EncodingImpl< EstimatorTag > &, uint32_t)
template size_t prependDoubleBlock< EstimatorTag >(EncodingImpl< EstimatorTag > &, uint32_t, double)
template size_t prependBinaryBlock< EncoderTag >(EncodingImpl< EncoderTag > &, uint32_t, span< const uint8_t >)
size_t prependNestedBlock(EncodingImpl< TAG > &encoder, uint32_t type, const U &value)
Prepend a TLV element containing a nested TLV element.
Block makeStringBlock(uint32_t type, std::string_view value)
Create a TLV block containing a string.
uint64_t readNonNegativeInteger(const Block &block)
Read a non-negative integer from a TLV element.
size_t prependNonNegativeIntegerBlock(EncodingImpl< TAG > &encoder, uint32_t type, uint64_t value)
Prepend a TLV element containing a non-negative integer.
template size_t prependBlock< EncoderTag >(EncodingImpl< EncoderTag > &, const Block &)
template size_t prependBinaryBlock< EstimatorTag >(EncodingImpl< EstimatorTag > &, uint32_t, span< const uint8_t >)
template size_t prependDoubleBlock< EncoderTag >(EncodingImpl< EncoderTag > &, uint32_t, double)
Block makeNonNegativeIntegerBlock(uint32_t type, uint64_t value)
Create a TLV block containing a non-negative integer.
template size_t prependStringBlock< EstimatorTag >(EncodingImpl< EstimatorTag > &, uint32_t, std::string_view)
Block makeEmptyBlock(uint32_t type)
Create an empty TLV block.
template size_t prependBlock< EstimatorTag >(EncodingImpl< EstimatorTag > &, const Block &)
size_t prependStringBlock(EncodingImpl< TAG > &encoder, uint32_t type, std::string_view value)
Prepend a TLV element containing a string.
template size_t prependNonNegativeIntegerBlock< EstimatorTag >(EncodingImpl< EstimatorTag > &, uint32_t, uint64_t)
size_t prependEmptyBlock(EncodingImpl< TAG > &encoder, uint32_t type)
Prepend an empty TLV element.
template size_t prependNonNegativeIntegerBlock< EncoderTag >(EncodingImpl< EncoderTag > &, uint32_t, uint64_t)
double readDouble(const Block &block)
Read TLV-VALUE of a TLV element as an IEEE 754 double-precision floating-point number.
template size_t prependEmptyBlock< EncoderTag >(EncodingImpl< EncoderTag > &, uint32_t)
Block makeBinaryBlock(uint32_t type, span< const uint8_t > value)
Create a TLV block copying the TLV-VALUE from a byte range.
size_t prependBinaryBlock(EncodingImpl< TAG > &encoder, uint32_t type, span< const uint8_t > value)
Prepend a TLV element containing a sequence of raw bytes.
std::string readString(const Block &block)
Read the TLV-VALUE of a TLV element as a string.
size_t prependBlock(EncodingImpl< TAG > &encoder, const Block &block)
Prepend a TLV element.
Block makeNestedBlock(uint32_t type, const U &value)
Create a TLV block containing a nested TLV element.
template size_t prependStringBlock< EncoderTag >(EncodingImpl< EncoderTag > &, uint32_t, std::string_view)
Block makeDoubleBlock(uint32_t type, double value)
Create a TLV element containing an IEEE 754 double-precision floating-point number.
size_t prependDoubleBlock(EncodingImpl< TAG > &encoder, uint32_t type, double value)
Prepend a TLV element containing an IEEE 754 double-precision floating-point number.
std::string to_string(const errinfo_stacktrace &x)