face.hpp
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
22 #ifndef NDN_FACE_HPP
23 #define NDN_FACE_HPP
24 
25 #include "interest.hpp"
26 #include "data.hpp"
27 #include "forwarding-flags.hpp"
28 #include "encoding/wire-format.hpp"
29 #include "interest-filter.hpp"
30 #include "transport/transport.hpp"
31 
32 namespace ndn {
33 
34 class Face;
35 
39 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&, const ptr_lib::shared_ptr<Data>&)> OnData;
40 
44 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&)> OnTimeout;
45 
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;
51 
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,
59  const ptr_lib::shared_ptr<const InterestFilter>&)> OnInterestCallback;
60 
64 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Name>&)> OnRegisterFailed;
65 
69 typedef func_lib::function<void(const ptr_lib::shared_ptr<const Name>&, uint64_t)>
71 
72 class Node;
73 class KeyChain;
74 
78 class Face {
79 public:
85  Face(const ptr_lib::shared_ptr<Transport>& transport, const ptr_lib::shared_ptr<const Transport::ConnectionInfo>& connectionInfo);
86 
93  Face(const char *host, unsigned short port = 6363);
94 
101  Face();
102 
103  virtual ~Face();
104 
117  virtual uint64_t
119  (const Interest& interest, const OnData& onData, const OnTimeout& onTimeout = OnTimeout(),
121 
136  virtual uint64_t
138  (const Name& name, const Interest *interestTemplate, const OnData& onData, const OnTimeout& onTimeout = OnTimeout(),
140 
153  uint64_t
155  (const Name& name, const OnData& onData, const OnTimeout& onTimeout = OnTimeout(),
157  {
158  return expressInterest(name, 0, onData, onTimeout, wireFormat);
159  }
160 
167  virtual void
168  removePendingInterest(uint64_t pendingInterestId);
169 
181  void
182  setCommandSigningInfo(KeyChain& keyChain, const Name& certificateName)
183  {
184  commandKeyChain_ = &keyChain;
185  commandCertificateName_ = certificateName;
186  }
187 
194  void
195  setCommandCertificateName(const Name& certificateName)
196  {
197  commandCertificateName_ = certificateName;
198  }
199 
200  KeyChain*
201  getCommandKeyChain() { return commandKeyChain_; }
202 
203  const Name&
204  getCommandCertificateName() { return commandCertificateName_; }
205 
217  virtual void
219  (Interest& interest,
220  WireFormat& wireFormat = *WireFormat::getDefaultWireFormat());
221 
250  virtual uint64_t
252  (const Name& prefix, const OnInterestCallback& onInterest,
253  const OnRegisterFailed& onRegisterFailed,
254  const OnRegisterSuccess& onRegisterSuccess,
255  const ForwardingFlags& flags = ForwardingFlags(),
256  WireFormat& wireFormat = *WireFormat::getDefaultWireFormat());
257 
278  uint64_t
280  (const Name& prefix, const OnInterestCallback& onInterest,
281  const OnRegisterFailed& onRegisterFailed,
282  const ForwardingFlags& flags,
284  {
285  return registerPrefix
286  (prefix, onInterest, onRegisterFailed, OnRegisterSuccess(), flags,
287  wireFormat);
288  }
289 
306  uint64_t
308  (const Name& prefix, const OnInterestCallback& onInterest,
309  const OnRegisterFailed& onRegisterFailed)
310  {
311  return registerPrefix
312  (prefix, onInterest, onRegisterFailed, OnRegisterSuccess(),
314  }
315 
321  uint64_t
322  DEPRECATED_IN_NDN_CPP registerPrefix
323  (const Name& prefix, const OnInterest& onInterest,
324  const OnRegisterFailed& onRegisterFailed,
325  const ForwardingFlags& flags = ForwardingFlags(),
327 
336  virtual void
337  removeRegisteredPrefix(uint64_t registeredPrefixId);
338 
352  virtual uint64_t
354  (const InterestFilter& filter, const OnInterestCallback& onInterest);
355 
369  virtual uint64_t
370  setInterestFilter(const Name& prefix, const OnInterestCallback& onInterest);
371 
379  virtual void
380  unsetInterestFilter(uint64_t interestFilterId);
381 
391  void
392  putData
393  (const Data& data,
395 
402  void
403  send(const Blob& encoding)
404  {
405  send(encoding.buf(), encoding.size());
406  }
407 
415  virtual void
416  send(const uint8_t *encoding, size_t encodingLength);
417 
430  void
431  processEvents();
432 
439  virtual bool
440  isLocal();
441 
445  void
446  shutdown();
447 
455  static size_t
456  getMaxNdnPacketSize() { return MAX_NDN_PACKET_SIZE; }
457 
461  typedef func_lib::function<void()> Callback;
462 
470  virtual void
471  callLater(Milliseconds delayMilliseconds, const Callback& callback);
472 
473 protected:
479  static std::string
481 
490  static ptr_lib::shared_ptr<const Interest>
491  getInterestCopy(const Name& name, const Interest *interestTemplate)
492  {
493  if (interestTemplate) {
494  // Copy the interestTemplate.
495  ptr_lib::shared_ptr<Interest> interestCopy(new Interest(*interestTemplate));
496  interestCopy->setName(name);
497  return interestCopy;
498  }
499  else
500  return ptr_lib::make_shared<Interest>(name, 4000.0);
501  }
502 
503  Node *node_;
504  KeyChain* commandKeyChain_;
505  Name commandCertificateName_;
506 
507 private:
513  static void
514  onInterestWrapper
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,
519  const OnInterest callerOnInterest);
520 
521  static ptr_lib::shared_ptr<Transport>
522  getDefaultTransport();
523 
524  static ptr_lib::shared_ptr<Transport::ConnectionInfo>
525  getDefaultConnectionInfo();
526 };
527 
528 }
529 
530 #endif
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
Definition: data.hpp:35
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
Definition: node.hpp:43
virtual bool isLocal()
Check if the face is local based on the current connection through the Transport; some Transport may ...
Definition: face.cpp:249
static WireFormat * getDefaultWireFormat()
Return the default WireFormat used by default encoding and decoding methods which was set with setDef...
Definition: wire-format.cpp:34
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
Definition: wire-format.hpp:36
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