1 #ifndef NDNPH_PACKET_COMPONENT_HPP
2 #define NDNPH_PACKET_COMPONENT_HPP
4 #include "../core/printing.hpp"
5 #include "../core/region.hpp"
6 #include "../tlv/value.hpp"
39 const uint8_t*
value,
bool writeFromBack =
false)
43 if (buf ==
nullptr || bufLen < sizeofTlv) {
48 buf = buf + bufLen - sizeofTlv;
53 uint8_t* valueBuf = &buf[sizeofT + sizeofL];
54 if (
value != valueBuf) {
74 template<
typename... Arg>
98 return parse(region, uri, std::strlen(uri));
102 size_t bufLen = 8 + uriLen;
103 uint8_t* buf = region.
alloc(bufLen);
104 if (buf ==
nullptr) {
108 region.
free(buf, !comp ? bufLen : comp.m_tlv - buf);
114 return parse(buf, bufLen, uri, std::strlen(uri));
117 static Component parse(uint8_t* buf,
size_t bufLen,
const char* uri,
size_t uriLen,
118 bool writeFromBack =
false) {
119 const char* uriEnd = uri + uriLen;
120 const char* posEqual = std::find(uri, uriEnd,
'=');
122 if (posEqual != uriEnd) {
123 type = std::strtoul(uri,
nullptr, 10);
128 uint8_t* valueBuf = buf + valueOffset;
129 ssize_t
length = parseUriValue(valueBuf, bufLen - valueOffset, uri, uriEnd);
137 explicit operator bool()
const {
153 const uint8_t*
tlv()
const {
158 return m_value - m_tlv + m_length;
170 if (d.
type == 0 || d.
type > 0xFFFF) {
180 #ifdef NDNPH_PRINT_ARDUINO
183 printImpl([&](
const char* str) { count += p.print(str); });
188 template<
typename Convention>
190 return Convention::match(*
this);
193 template<
typename Convention,
typename... Arg>
194 auto as(Arg&&... arg)
const -> decltype(Convention::parse(*
this, std::forward<Arg>(arg)...)) {
195 return Convention::parse(*
this, std::forward<Arg>(arg)...);
199 static constexpr
size_t computeSize(uint16_t
type,
size_t length) {
203 static ssize_t parseUriValue(uint8_t* buf,
size_t bufLen,
const char* uri,
const char* uriEnd) {
204 if (std::count(uri, uriEnd,
'.') == uriEnd - uri && uriEnd - uri >= 3) {
208 for (
size_t j = 0; j < bufLen; ++j) {
213 if (*uri ==
'%' && uri + 3 <= uriEnd) {
214 char hex[] = {uri[1], uri[2], 0};
215 buf[j] = std::strtoul(hex,
nullptr, 16);
225 void printImpl(
const F&
output)
const {
227 snprintf(buf,
sizeof(buf),
"%d=",
static_cast<int>(m_type));
229 size_t nNonPeriods = 0;
230 std::for_each(m_value, m_value + m_length, [&](uint8_t ch) {
231 if (ch != 0x00 && strchr(
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~",
236 snprintf(buf,
sizeof(buf),
"%%%02X",
static_cast<int>(ch));
239 nNonPeriods += ch !=
'.';
241 if (nNonPeriods == 0) {
246 #ifdef NDNPH_PRINT_OSTREAM
247 friend std::ostream& operator<<(std::ostream& os,
const Component& comp) {
248 comp.printImpl([&os](
const char* str) { os << str; });
256 const uint8_t* m_tlv =
nullptr;
257 const uint8_t* m_value =
nullptr;
Name component.
Definition: component.hpp:16
size_t printTo(::Print &p) const final
Definition: component.hpp:181
void encodeTo(Encoder &encoder) const
Definition: component.hpp:161
size_t length() const
Definition: component.hpp:145
Component(Region ®ion, size_t length, const uint8_t *value)
Construct GenericNameComponent from L-V.
Definition: component.hpp:26
static Component constant(const uint8_t *tlv, size_t size)
Construct from const TLV buffer.
Definition: component.hpp:64
static Component parse(Region ®ion, const char *uri, size_t uriLen)
Definition: component.hpp:101
uint16_t type() const
Definition: component.hpp:141
const uint8_t * value() const
Definition: component.hpp:149
auto as(Arg &&... arg) const -> decltype(Convention::parse(*this, std::forward< Arg >(arg)...))
Definition: component.hpp:194
size_t size() const
Definition: component.hpp:157
static Component from(Region ®ion, uint16_t type, const Arg &... arg)
Construct from TLV-TYPE, and several arguments to be encoded to TLV-VALUE.
Definition: component.hpp:75
static Component parse(Region ®ion, const char *uri)
Parse from URI.
Definition: component.hpp:97
bool is() const
Definition: component.hpp:189
static Component parse(uint8_t *buf, size_t bufLen, const char *uri, size_t uriLen, bool writeFromBack=false)
Definition: component.hpp:117
const uint8_t * tlv() const
Definition: component.hpp:153
Component(uint8_t *buf, size_t bufLen, uint16_t type, size_t length, const uint8_t *value, bool writeFromBack=false)
Construct from T-L-V into provided buffer.
Definition: component.hpp:38
bool decodeFrom(const Decoder::Tlv &d)
Definition: component.hpp:169
Component(Region ®ion, uint16_t type, size_t length, const uint8_t *value)
Construct from T-L-V.
Definition: component.hpp:21
static Component parse(uint8_t *buf, size_t bufLen, const char *uri)
Parse from URI into provided buffer.
Definition: component.hpp:113
Decoded TLV.
Definition: decoder.hpp:13
const uint8_t * tlv
Definition: decoder.hpp:42
uint32_t type
Definition: decoder.hpp:38
size_t length
Definition: decoder.hpp:39
const uint8_t * value
Definition: decoder.hpp:40
TLV decoder.
Definition: decoder.hpp:10
static bool readTlv(Tlv &d, const uint8_t *input, const uint8_t *end)
Definition: decoder.hpp:46
bool decode(T &target) const
Decode first TLV into target object.
Definition: decoder.hpp:158
TLV encoder that accepts items in reverse order.
Definition: encoder.hpp:10
const uint8_t * begin() const
Get output begin.
Definition: encoder.hpp:34
bool prepend(const First &first, const Arg &... arg)
Prepend a sequence of values.
Definition: encoder.hpp:123
void trim() const
Release unused space to the Region.
Definition: encoder.hpp:58
void discard()
Release all space to the Region.
Definition: encoder.hpp:72
bool prependTlv(uint32_t type, OmitEmptyTag omitEmpty, const Arg &... arg)
Prepend TLV, measuring TLV-LENGTH automatically.
Definition: encoder.hpp:143
const uint8_t * end() const
Get output end.
Definition: encoder.hpp:39
void setError()
Indicate an error has occurred.
Definition: encoder.hpp:166
Definition: printing.hpp:22
Region-based memory allocator thats owns memory of NDNph objects.
Definition: region.hpp:9
uint8_t * alloc(size_t size)
Allocate a buffer with no alignment requirement.
Definition: region.hpp:27
bool free(const uint8_t *first, const uint8_t *last)
Deallocate (part of) last allocated buffer.
Definition: region.hpp:51
A sequence of bytes, usually TLV-VALUE.
Definition: value.hpp:11
@ GenericNameComponent
Definition: an.hpp:20
void output(const Encodable &packet, std::ostream &os=std::cout)
Write an Encodable to output stream.
Definition: io.hpp:33
void writeVarNum(uint8_t *room, uint32_t n)
Write VAR-NUMBER.
Definition: varnum.hpp:17
constexpr size_t sizeofVarNum(uint32_t n)
Compute size of VAR-NUMBER.
Definition: varnum.hpp:11
bool operator==(const ValidityPeriod &lhs, const ValidityPeriod &rhs)
Definition: validity-period.hpp:156
#define NDNPH_DECLARE_NE(T, specifier)
Declare operator!= in terms of operator==.
Definition: operators.hpp:7