1 #ifndef NDNPH_TLV_ENCODER_HPP
2 #define NDNPH_TLV_ENCODER_HPP
4 #include "../core/region.hpp"
13 explicit Encoder(uint8_t* buf,
size_t capacity) {
25 init(region.
alloc(capacity), capacity);
29 explicit operator bool()
const {
30 return m_pos !=
nullptr;
39 const uint8_t*
end()
const {
40 return m_pos ==
nullptr ? nullptr : m_end;
45 return m_pos ==
nullptr ? 0 : m_end - m_pos;
50 return m_pos ==
nullptr ? 0 : m_pos - m_buf;
59 if (m_region ==
nullptr) {
62 m_region->
free(m_buf, (m_pos ==
nullptr ? m_end : m_pos) - m_buf);
63 const_cast<Encoder*
>(
this)->m_buf = m_pos;
73 if (m_region ==
nullptr || m_buf ==
nullptr) {
76 m_region->
free(m_buf, m_end - m_buf);
77 m_buf = m_pos = m_end =
nullptr;
91 if (m_pos ==
nullptr || m_pos - m_buf <
static_cast<ssize_t
>(
size)) {
107 if (room ==
nullptr) {
122 template<
typename First,
typename... Arg>
123 bool prepend(
const First& first,
const Arg&... arg) {
142 template<
typename... Arg>
144 uint8_t* after = m_pos;
146 size_t length = after - m_pos;
147 if (length == 0 && omitEmpty ==
OmitEmpty) {
154 template<
typename First,
typename... Arg>
155 typename std::enable_if<!std::is_same<First, OmitEmptyTag>::value,
bool>::type
prependTlv(
156 uint32_t type,
const First& first,
const Arg&... arg) {
171 void init(uint8_t* buf,
size_t capacity) {
173 m_pos = m_end = buf + capacity;
181 void prependOne(
const T& encodeFunc, decltype(&T::operator()) =
nullptr) {
186 void prependOne(
const T& encodable, decltype(&T::encodeTo) =
nullptr) {
187 encodable.encodeTo(*
this);
191 Region* m_region =
nullptr;
192 uint8_t* m_buf =
nullptr;
193 uint8_t* m_pos =
nullptr;
194 uint8_t* m_end =
nullptr;
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
bool prependTypeLength(uint32_t type, size_t length)
Prepend TLV-TYPE and TLV-LENGTH.
Definition: encoder.hpp:103
size_t availableHeadroom() const
Get available headroom.
Definition: encoder.hpp:49
std::enable_if<!std::is_same< First, OmitEmptyTag >::value, bool >::type prependTlv(uint32_t type, const First &first, const Arg &... arg)
Prepend TLV, measuring TLV-LENGTH automatically.
Definition: encoder.hpp:155
Encoder(Region ®ion)
Create over remaining space in a Region.
Definition: encoder.hpp:22
OmitEmptyTag
Definition: encoder.hpp:129
@ NoOmitEmpty
Definition: encoder.hpp:130
@ OmitEmpty
Definition: encoder.hpp:131
bool prependTlv(uint32_t type)
Prepend TLV with zero TLV-LENGTH.
Definition: encoder.hpp:161
void discard()
Release all space to the Region.
Definition: encoder.hpp:72
uint8_t * prependRoom(size_t size)
Make room to prepend an object.
Definition: encoder.hpp:90
Encoder(uint8_t *buf, size_t capacity)
Create over given buffer.
Definition: encoder.hpp:13
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
size_t size() const
Get output size.
Definition: encoder.hpp:44
void resetFront(uint8_t *pos)
Reset front to given position.
Definition: encoder.hpp:81
Region-based memory allocator thats owns memory of NDNph objects.
Definition: region.hpp:9
size_t available() const
Compute remaining space for alloc().
Definition: region.hpp:106
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
Encoder that auto-discards upon destruction.
Definition: encoder.hpp:198
~ScopedEncoder()
Definition: encoder.hpp:202
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