1 #ifndef NDNPH_APP_RDR_HPP
2 #define NDNPH_APP_RDR_HPP
4 #include "../face/packet-handler.hpp"
5 #include "../keychain/digest.hpp"
6 #include "../keychain/null.hpp"
14 static const uint8_t tlv[]{0x20, 0x08,
'm',
'e',
't',
'a',
'd',
'a',
't',
'a'};
84 , m_signer(opts.signer)
85 , m_version(opts.initialVersion)
86 , m_freshness(std::max<uint32_t>(opts.freshnessPeriod, 1)) {
87 if (m_version + 1 == 0) {
89 m_version = m_version & ~0xFFFFFFFF;
96 .initialVersion = std::numeric_limits<uint64_t>::max(),
106 m_datasetPrefix = datasetPrefix;
111 bool processInterest(
Interest interest)
final {
112 const Name& interestName = interest.getName();
113 if (!m_datasetPrefix || interestName.
getPrefix(-1) != m_rdrPrefix ||
115 !interest.getMustBeFresh()) {
127 Encoder contentEncoder(region);
129 contentEncoder.trim();
142 encoder.
prepend(datasetPrefix);
148 uint64_t m_version = 0;
149 uint32_t m_freshness = 1;
150 Name m_datasetPrefix;
169 , m_verifier(opts.verifier)
170 , m_interestLifetime(opts.interestLifetime) {}
175 .interestLifetime = 1000,
179 invokeCallback(
Data());
189 interest.setCanBePrefix(
true);
190 interest.setMustBeFresh(
true);
191 interest.setLifetime(m_interestLifetime);
192 bool ok = m_pending.
send(interest);
194 invokeCallback(
Data());
199 void invokeCallback(
Data data) {
200 if (m_cb !=
nullptr) {
201 m_cb(m_ctx, std::move(data));
208 invokeCallback(
Data());
212 bool processData(
Data data)
final {
218 if (!data.
verify(m_verifier)) {
219 invokeCallback(
Data());
221 invokeCallback(data);
227 OutgoingPendingInterest m_pending;
228 const PublicKey& m_verifier;
229 uint16_t m_interestLifetime = 0;
232 void* m_ctx =
nullptr;
237 using rdr::RdrMetadataConsumer;
238 using rdr::RdrMetadataProducer;
static bool generate(uint8_t *output, size_t count)
Name component.
Definition: component.hpp:16
static Component constant(const uint8_t *tlv, size_t size)
Construct from const TLV buffer.
Definition: component.hpp:64
Data packet.
Definition: data.hpp:136
void setContent(tlv::Value v)
Definition: data.hpp:176
void setName(const Name &v)
Definition: data.hpp:144
tlv::Value getContent() const
Definition: data.hpp:172
const Name & getName() const
Definition: data.hpp:140
Signed sign(const PrivateKey &key, DSigInfo sigInfo=DSigInfo()) const
Sign the packet with a private key.
Definition: data.hpp:254
void setFreshnessPeriod(uint32_t v)
Definition: data.hpp:160
void setIsFinalBlock(bool v)
Definition: data.hpp:168
bool verify(const PublicKey &key) const
Verify the packet with a public key.
Definition: data.hpp:263
bool decode(T &target) const
Decode first TLV into target object.
Definition: decoder.hpp:158
DigestSha256 signing and verification.
Definition: digest.hpp:14
TLV encoder that accepts items in reverse order.
Definition: encoder.hpp:10
bool prepend(const First &first, const Arg &... arg)
Prepend a sequence of values.
Definition: encoder.hpp:123
Network layer face.
Definition: face.hpp:12
Interest packet.
Definition: interest.hpp:284
Name.
Definition: name.hpp:14
size_t size() const
Get number of components.
Definition: name.hpp:86
Name append(Region ®ion, const C &... comps) const
Append a sequence of components.
Definition: name.hpp:183
Name getPrefix(int n=0) const
Get prefix of n components.
Definition: name.hpp:165
Null signature: packet is not signed.
Definition: null.hpp:20
bool expired() const
Determine if the pending Interest has expired / timed out.
Definition: packet-handler.hpp:208
bool match(const Data &data, const Interest &interest) const
Check Interest-Data match.
Definition: packet-handler.hpp:182
bool send(const Packet &interest, int timeout, Arg &&... arg)
Send an Interest.
Definition: packet-handler.hpp:141
Base class to receive packets from Face.
Definition: packet-handler.hpp:10
bool reply(Arg &&... arg)
Synchronously transmit a packet in reply to current processing packet.
Definition: packet-handler.hpp:119
Private key.
Definition: private-key.hpp:9
Public key.
Definition: public-key.hpp:9
RefType create(Arg &&... arg)
Allocate and create an object, and return its reference.
Definition: region.hpp:90
Region with statically allocated memory.
Definition: region.hpp:143
Definition: convention.hpp:111
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
#define NDNPH_ASSERT(x)
Definition: common.hpp:30
@ Name
Definition: an.hpp:19
@ Data
Definition: an.hpp:41
Name stripMetadataComponent(Name rdrPrefix)
Definition: rdr.hpp:40
Component getMetadataComponent()
Return '32=metadata' component.
Definition: rdr.hpp:13
Name parseMetadata(Data data)
Parse RDR metadata packet.
Definition: rdr.hpp:24