1 #ifndef NDNPH_TLV_EV_DECODER_HPP
2 #define NDNPH_TLV_EV_DECODER_HPP
9 template<
int type,
bool repeatable,
int order>
11 using TT = std::integral_constant<int, type>;
12 using Repeatable = std::integral_constant<bool, repeatable>;
13 using Order = std::integral_constant<int, order>;
16 template<
int type,
bool repeatable,
int order,
typename Fn>
31 template<
int type,
bool repeatable,
int order,
typename Fn>
45 template<
int type,
bool repeatable,
int order,
typename Fn,
46 typename R =
typename std::conditional<
47 std::is_convertible<decltype(std::declval<Fn>()(
Decoder::Tlv())),
bool>::value,
48 EvdElementDefBool<type, repeatable, order, Fn>,
49 EvdElementDefVoid<type, repeatable, order, Fn>>::type>
55 template<
int type,
bool repeatable,
int order,
typename Decodable>
62 return m_obj->decodeFrom(d);
69 template<
int type,
bool repeatable,
int order>
76 template<
int type,
int order,
typename NniClass,
typename ValueType>
83 return NniClass::decode(d, *m_value);
105 return type <= 0x1F || type % 2 == 1;
114 template<
typename... E>
125 template<
typename... E>
144 template<
typename UnknownCallback,
typename IsCritical,
typename... E>
147 const UnknownCallback& unknownCb,
const IsCritical& isCritical,
149 if (topTypes.size() > 0 &&
150 std::find(topTypes.begin(), topTypes.end(),
input.type) == topTypes.end()) {
157 template<
typename UnknownCallback,
typename IsCritical,
typename... E>
159 const IsCritical& isCritical,
const E&... defs) {
160 int currentOrder = 0;
161 for (
const auto& d :
input) {
162 bool ok = decodeElement<AUTO_ORDER_SKIP>(d, currentOrder, unknownCb, isCritical, defs...);
181 template<
int type,
bool repeatable =
false,
int order = 0,
typename Fn = void,
183 static R
def(
const Fn& f, decltype(&Fn::operator()) =
nullptr) {
191 template<
int type,
bool repeatable =
false,
int order = 0,
typename Decodable = void,
193 static R
def(Decodable* decodable, decltype(&Decodable::decodeFrom) =
nullptr) {
198 template<
int type,
bool repeatable =
false,
int order = 0,
208 template<
int type,
typename NniClass =
tlv::NNI,
int order = 0,
typename ValueType = void,
218 AUTO_ORDER_SKIP = 100,
221 template<
int autoOrder,
typename UnknownCallback,
typename IsCritical,
typename First,
223 static bool decodeElement(
const Decoder::Tlv& d,
int& currentOrder,
224 const UnknownCallback& unknownCb,
const IsCritical& isCritical,
225 const First& first,
const E&... defs) {
226 if (d.type == First::TT::value) {
227 return useDef<autoOrder>(d, currentOrder, isCritical, first);
229 return decodeElement<autoOrder + AUTO_ORDER_SKIP>(d, currentOrder, unknownCb, isCritical,
233 template<
int autoOrder,
typename UnknownCallback,
typename IsCritical>
234 static bool decodeElement(
const Decoder::Tlv& d,
int& currentOrder,
235 const UnknownCallback& unknownCb,
const IsCritical& isCritical) {
236 return unknownCb(d, currentOrder) || handleUnrecognized(d, isCritical);
239 template<
int autoOrder,
typename IsCritical,
typename E>
240 static bool useDef(
const Decoder::Tlv& d,
int& currentOrder,
const IsCritical& isCritical,
242 int defOrder = E::Order::value == 0 ? autoOrder : E::Order::value;
243 if (currentOrder > defOrder) {
244 return handleUnrecognized(d, isCritical);
246 if (currentOrder == defOrder && !E::Repeatable::value) {
249 currentOrder = defOrder;
253 template<
typename IsCritical>
254 static bool handleUnrecognized(
const Decoder::Tlv& d,
const IsCritical& isCritical) {
255 return !isCritical(d.type);
Decoded TLV.
Definition: decoder.hpp:13
TLV decoder.
Definition: decoder.hpp:10
Definition: ev-decoder.hpp:102
bool operator()(uint32_t type) const
Definition: ev-decoder.hpp:104
Definition: ev-decoder.hpp:95
bool operator()(const Decoder::Tlv &, int &) const
Definition: ev-decoder.hpp:97
TLV decoder that understands Packet Format v0.3 evolvability guidelines.
Definition: ev-decoder.hpp:93
static R def(const Fn &f, decltype(&Fn::operator())=nullptr)
Create an element definition.
Definition: ev-decoder.hpp:183
static R defIgnore()
Create an element definition to ignore a field.
Definition: ev-decoder.hpp:200
static bool decodeEx(const Decoder::Tlv &input, std::initializer_list< uint32_t > topTypes, const UnknownCallback &unknownCb, const IsCritical &isCritical, const E &... defs)
Decode input TLV with a sequence of element definitions.
Definition: ev-decoder.hpp:145
static R defNni(ValueType *value)
Create an element definition for Non-Negative Integer field.
Definition: ev-decoder.hpp:210
static R def(Decodable *decodable, decltype(&Decodable::decodeFrom)=nullptr)
Create an element definition.
Definition: ev-decoder.hpp:193
static bool decodeValue(const Decoder &input, const E &... defs)
Decode input TLV-VALUE with a sequence of element definitions.
Definition: ev-decoder.hpp:126
static bool decodeValueEx(const Decoder &input, const UnknownCallback &unknownCb, const IsCritical &isCritical, const E &... defs)
Decode input TLV-VALUE with a sequence of element definitions.
Definition: ev-decoder.hpp:158
static bool decode(const Decoder::Tlv &input, std::initializer_list< uint32_t > topTypes, const E &... defs)
Decode input TLV with a sequence of element definitions.
Definition: ev-decoder.hpp:115
Definition: ev-decoder.hpp:32
EvdElementDefBool(const Fn &f)
Definition: ev-decoder.hpp:34
bool operator()(const Decoder::Tlv &d) const
Definition: ev-decoder.hpp:37
Definition: ev-decoder.hpp:56
bool operator()(const Decoder::Tlv &d) const
Definition: ev-decoder.hpp:61
EvdElementDefDecodable(Decodable *obj)
Definition: ev-decoder.hpp:58
Definition: ev-decoder.hpp:50
Definition: ev-decoder.hpp:77
EvdElementDefNni(ValueType *value)
Definition: ev-decoder.hpp:79
bool operator()(const Decoder::Tlv &d) const
Definition: ev-decoder.hpp:82
Definition: ev-decoder.hpp:17
EvdElementDefVoid(const Fn &f)
Definition: ev-decoder.hpp:19
bool operator()(const Decoder::Tlv &d) const
Definition: ev-decoder.hpp:22
NonNegativeInteger encoding.
Definition: nni.hpp:118
bool input(Region ®ion, T &target, std::istream &is=std::cin)
Read and decode from input stream.
Definition: io.hpp:15
Definition: ev-decoder.hpp:10
std::integral_constant< int, type > TT
Definition: ev-decoder.hpp:11
std::integral_constant< int, order > Order
Definition: ev-decoder.hpp:13
std::integral_constant< bool, repeatable > Repeatable
Definition: ev-decoder.hpp:12
Definition: ev-decoder.hpp:70
bool operator()(const Decoder::Tlv &) const
Definition: ev-decoder.hpp:71