23 #include "../../util/concepts.hpp" 24 #include "../../encoding/block-helpers.hpp" 30 BOOST_CONCEPT_ASSERT((boost::EqualityComparable<AdditionalDescription>));
34 static_assert(std::is_base_of<tlv::Error, AdditionalDescription::Error>::value,
35 "AdditionalDescription::Error must inherit from tlv::Error");
48 auto it = m_info.find(key);
49 if (it == m_info.end())
50 BOOST_THROW_EXCEPTION(
Error(
"Entry does not exist for key (" + key +
")"));
64 return (m_info.find(key) != m_info.end());
70 return m_info.begin();
82 return m_info.begin();
91 template<encoding::Tag TAG>
95 size_t totalLength = 0;
97 for (
auto it = m_info.rbegin(); it != m_info.rend(); it++) {
98 size_t entryLength = 0;
101 entryLength += encoder.prependVarNumber(entryLength);
104 totalLength += entryLength;
107 totalLength += encoder.prependVarNumber(totalLength);
130 m_wire = buffer.block();
140 BOOST_THROW_EXCEPTION(
Error(
"The supplied block does not contain wire format"));
147 BOOST_THROW_EXCEPTION(
Error(
"Unexpected TLV type when decoding AdditionalDescription"));
151 const Block& entry = *it;
155 BOOST_THROW_EXCEPTION(
Error(
"Unexpected TLV type when decoding DescriptionEntry"));
158 BOOST_THROW_EXCEPTION(
Error(
"DescriptionEntry does not have two sub-TLVs"));
162 BOOST_THROW_EXCEPTION(
Error(
"Invalid DescriptionKey or DescriptionValue field"));
172 return (m_info == other.m_info);
178 return !(*
this == other);
186 for (
const auto& entry : other) {
189 os <<
"(" << entry.first <<
":" << entry.second <<
")";
bool has(const std::string &key) const
element_const_iterator elements_begin() const
bool hasWire() const
Check if the Block has fully encoded wire.
Copyright (c) 2011-2015 Regents of the University of California.
std::map< std::string, std::string >::const_iterator const_iterator
static const size_t VALUE_OFFSET
EncodingImpl< EstimatorTag > EncodingEstimator
Abstraction of AdditionalDescription.
static const size_t KEY_OFFSET
void wireDecode(const Block &wire)
Decode ValidityPeriod from TLV block.
element_const_iterator elements_end() const
void parse() const
Parse wire buffer into subblocks.
Class representing a wire element of NDN-TLV packet format.
size_t prependStringBlock(EncodingImpl< TAG > &encoder, uint32_t type, const std::string &value)
Helper to prepend TLV block type type with value from a string value.
void set(const std::string &key, const std::string &value)
std::string readString(const Block &block)
Helper to read a string value from a block.
std::map< std::string, std::string >::iterator iterator
const Block & wireEncode() const
Encode ValidityPeriod into TLV block.
const std::string & get(const std::string &key) const
bool operator==(const AdditionalDescription &other) const
a concept check for TLV abstraction with .wireEncode method
EncodingImpl< EncoderTag > EncodingBuffer
element_container::const_iterator element_const_iterator
size_t elements_size() const
AdditionalDescription()=default
Create an empty AdditionalDescription.
std::ostream & operator<<(std::ostream &os, const AdditionalDescription &other)
const element_container & elements() const
Get all subelements.
bool operator!=(const AdditionalDescription &other) const
a concept check for TLV abstraction with .wireEncode method
a concept check for TLV abstraction with .wireDecode method and constructible from Block ...