25 #include "interest.hpp"
27 #include "forwarding-flags.hpp"
28 #include "encoding/wire-format.hpp"
29 #include "interest-filter.hpp"
30 #include "transport/transport.hpp"
39 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&,
const ptr_lib::shared_ptr<Data>&)>
OnData;
44 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&)>
OnTimeout;
49 typedef func_lib::function<void
50 (
const ptr_lib::shared_ptr<const Name>&,
const ptr_lib::shared_ptr<const Interest>&,
Transport&, uint64_t)>
OnInterest;
56 typedef func_lib::function<void
57 (
const ptr_lib::shared_ptr<const Name>&,
58 const ptr_lib::shared_ptr<const Interest>&,
Face&, uint64_t,
64 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Name>&)>
OnRegisterFailed;
69 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Name>&, uint64_t)>
85 Face(
const ptr_lib::shared_ptr<Transport>& transport,
const ptr_lib::shared_ptr<const Transport::ConnectionInfo>& connectionInfo);
93 Face(
const char *host,
unsigned short port = 6363);
184 commandKeyChain_ = &keyChain;
185 commandCertificateName_ = certificateName;
197 commandCertificateName_ = certificateName;
201 getCommandKeyChain() {
return commandKeyChain_; }
204 getCommandCertificateName() {
return commandCertificateName_; }
252 (
const Name& prefix,
const OnInterestCallback& onInterest,
255 const ForwardingFlags& flags = ForwardingFlags(),
280 (
const Name& prefix,
const OnInterestCallback& onInterest,
308 (
const Name& prefix,
const OnInterestCallback& onInterest,
354 (
const InterestFilter& filter,
const OnInterestCallback& onInterest);
416 send(
const uint8_t *encoding,
size_t encodingLength);
490 static ptr_lib::shared_ptr<const Interest>
493 if (interestTemplate) {
495 ptr_lib::shared_ptr<Interest> interestCopy(
new Interest(*interestTemplate));
496 interestCopy->setName(name);
500 return ptr_lib::make_shared<Interest>(name, 4000.0);
505 Name commandCertificateName_;
515 (
const ptr_lib::shared_ptr<const Name>& prefix,
516 const ptr_lib::shared_ptr<const Interest>& interest,
Face& face,
517 uint64_t interestFilterId,
518 const ptr_lib::shared_ptr<const InterestFilter>& filter,
521 static ptr_lib::shared_ptr<Transport>
522 getDefaultTransport();
524 static ptr_lib::shared_ptr<Transport::ConnectionInfo>
525 getDefaultConnectionInfo();
func_lib::function< void(const ptr_lib::shared_ptr< const Interest > &)> OnTimeout
An OnTimeout function object is used to pass a callback to expressInterest.
Definition: face.hpp:44
Definition: transport.hpp:32
double Milliseconds
A time interval represented as the number of milliseconds.
Definition: common.hpp:111
void setCommandCertificateName(const Name &certificateName)
Set the certificate name used to sign command interest (e.g.
Definition: face.hpp:195
Copyright (C) 2013-2016 Regents of the University of California.
Definition: common.hpp:35
func_lib::function< void(const ptr_lib::shared_ptr< const Name > &, const ptr_lib::shared_ptr< const Interest > &, Transport &, uint64_t)> OnInterest
Definition: face.hpp:50
The Face class provides the main methods for NDN communication.
Definition: face.hpp:78
virtual void removeRegisteredPrefix(uint64_t registeredPrefixId)
Remove the registered prefix entry with the registeredPrefixId from the registered prefix table...
Definition: face.cpp:182
virtual uint64_t expressInterest(const Interest &interest, const OnData &onData, const OnTimeout &onTimeout=OnTimeout(), WireFormat &wireFormat=*WireFormat::getDefaultWireFormat())
Send the Interest through the transport, read the entire response and call onData(interest, data).
Definition: face.cpp:96
A ForwardingFlags object holds the flags which specify how the forwarding daemon should forward an in...
Definition: forwarding-flags.hpp:35
static ptr_lib::shared_ptr< const Interest > getInterestCopy(const Name &name, const Interest *interestTemplate)
Do the work of expressInterest to make an Interest based on name and interestTemplate.
Definition: face.hpp:491
func_lib::function< void(const ptr_lib::shared_ptr< const Name > &, uint64_t)> OnRegisterSuccess
An OnRegisterSuccess function object is used to report when registerPrefix succeeds.
Definition: face.hpp:70
static std::string getUnixSocketFilePathForLocalhost()
If the forwarder's Unix socket file path exists, then return the file path.
Definition: face.cpp:37
virtual void removePendingInterest(uint64_t pendingInterestId)
Remove the pending interest entry with the pendingInterestId from the pending interest table...
Definition: face.cpp:124
KeyChain is the main class of the security library.
Definition: key-chain.hpp:45
void putData(const Data &data, WireFormat &wireFormat=*WireFormat::getDefaultWireFormat())
The OnInterestCallback calls this to put a Data packet which satisfies an Interest.
Definition: face.cpp:223
virtual void unsetInterestFilter(uint64_t interestFilterId)
Remove the interest filter entry which has the interestFilterId from the interest filter table...
Definition: face.cpp:217
A Name holds an array of Name::Component and represents an NDN name.
Definition: name.hpp:40
A Blob holds a pointer to an immutable byte array implemented as const std::vector.
Definition: blob.hpp:42
An Interest holds a Name and other fields for an interest.
Definition: interest.hpp:38
const uint8_t * buf() const
Return a const pointer to the first byte of the immutable byte array, or 0 if the pointer is null...
Definition: blob.hpp:152
static size_t getMaxNdnPacketSize()
Get the practical limit of the size of a network-layer packet.
Definition: face.hpp:456
Face()
Create a new Face for communication with an NDN hub using a default connection as follows...
Definition: face.cpp:83
func_lib::function< void()> Callback
Face::Callback is used internally in callLater.
Definition: face.hpp:461
virtual void makeCommandInterest(Interest &interest, WireFormat &wireFormat=*WireFormat::getDefaultWireFormat())
Append a timestamp component and a random value component to interest's name.
Definition: face.cpp:130
size_t size() const
Return the length of the immutable byte array.
Definition: blob.hpp:140
virtual uint64_t setInterestFilter(const InterestFilter &filter, const OnInterestCallback &onInterest)
Add an entry to the local interest filter table to call the onInterest callback for a matching incomi...
Definition: face.cpp:189
func_lib::function< void(const ptr_lib::shared_ptr< const Name > &, const ptr_lib::shared_ptr< const Interest > &, Face &, uint64_t, const ptr_lib::shared_ptr< const InterestFilter > &)> OnInterestCallback
An OnInterestCallback function object is used to pass a callback to setInterestFilter and optionally ...
Definition: face.hpp:59
virtual bool isLocal()
Check if the face is local based on the current connection through the Transport; some Transport may ...
Definition: face.cpp:249
void shutdown()
Shut down and disconnect this Face.
Definition: face.cpp:255
void processEvents()
Process any packets to receive and call callbacks such as onData, onInterest or onTimeout.
Definition: face.cpp:242
func_lib::function< void(const ptr_lib::shared_ptr< const Name > &)> OnRegisterFailed
An OnRegisterFailed function object is used to report when registerPrefix fails.
Definition: face.hpp:64
virtual void callLater(Milliseconds delayMilliseconds, const Callback &callback)
Call callback() after the given delay.
Definition: face.cpp:261
An InterestFilter holds a Name prefix and optional regex match expression for use in Face::setInteres...
Definition: interest-filter.hpp:33
void send(const Blob &encoding)
Send the encoded packet out through the face.
Definition: face.hpp:403
virtual uint64_t registerPrefix(const Name &prefix, const OnInterestCallback &onInterest, const OnRegisterFailed &onRegisterFailed, const OnRegisterSuccess &onRegisterSuccess, const ForwardingFlags &flags=ForwardingFlags(), WireFormat &wireFormat=*WireFormat::getDefaultWireFormat())
Register prefix with the connected NDN hub and call onInterest when a matching interest is received...
Definition: face.cpp:138
void setCommandSigningInfo(KeyChain &keyChain, const Name &certificateName)
Set the KeyChain and certificate name used to sign command interests (e.g.
Definition: face.hpp:182
func_lib::function< void(const ptr_lib::shared_ptr< const Interest > &, const ptr_lib::shared_ptr< Data > &)> OnData
An OnData function object is used to pass a callback to expressInterest.
Definition: face.hpp:34