1 #ifndef NDNPH_STORE_PACKET_HPP
2 #define NDNPH_STORE_PACKET_HPP
25 if (wire.
size() == 0) {
29 T packet = region.
create<T>();
43 template<
typename Encodable>
44 bool set(
const char* key, Encodable value,
Region& region) {
bool decode(T &target) const
Decode first TLV into target object.
Definition: decoder.hpp:158
bool prepend(const First &first, const Arg &... arg)
Prepend a sequence of values.
Definition: encoder.hpp:123
File based key-value store.
Definition: kv.hpp:10
tlv::Value get(const char *key, Region ®ion)
Retrieve a value.
Definition: kv.hpp:38
bool set(const char *key, tlv::Value value)
Store a value.
Definition: kv.hpp:69
KvStore()=default
Constructor to use internal FileStore instance.
File based packet store.
Definition: packet.hpp:13
T get(const char *key, Region ®ion)
Retrieve a packet.
Definition: packet.hpp:23
bool set(const char *key, Encodable value, Region ®ion)
Store a packet.
Definition: packet.hpp:44
Region-based memory allocator thats owns memory of NDNph objects.
Definition: region.hpp:9
RefType create(Arg &&... arg)
Allocate and create an object, and return its reference.
Definition: region.hpp:90
Encoder that auto-discards upon destruction.
Definition: encoder.hpp:198
A sequence of bytes, usually TLV-VALUE.
Definition: value.hpp:11
Decoder makeDecoder() const
Create a Decoder over this value buffer.
Definition: value.hpp:64
size_t size() const
Definition: value.hpp:46