NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
unix-stream-factory.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_DAEMON_FACE_UNIX_STREAM_FACTORY_HPP
27 #define NFD_DAEMON_FACE_UNIX_STREAM_FACTORY_HPP
28 
29 #include "protocol-factory.hpp"
30 #include "unix-stream-channel.hpp"
31 
32 namespace nfd {
33 
35 {
36 public:
41  {
42  public:
43  explicit
44  Error(const std::string& what)
45  : ProtocolFactory::Error(what)
46  {
47  }
48  };
49 
62  shared_ptr<UnixStreamChannel>
63  createChannel(const std::string& unixSocketPath);
64 
65 public: // from ProtocolFactory
66  virtual void
67  createFace(const FaceUri& uri,
68  ndn::nfd::FacePersistency persistency,
69  const FaceCreatedCallback& onCreated,
70  const FaceCreationFailedCallback& onConnectFailed) DECL_OVERRIDE;
71 
72  virtual std::vector<shared_ptr<const Channel>>
73  getChannels() const DECL_OVERRIDE;
74 
75 private:
82  shared_ptr<UnixStreamChannel>
83  findChannel(const unix_stream::Endpoint& endpoint) const;
84 
85 private:
86  std::map<unix_stream::Endpoint, shared_ptr<UnixStreamChannel>> m_channels;
87 };
88 
89 } // namespace nfd
90 
91 #endif // NFD_DAEMON_FACE_UNIX_STREAM_FACTORY_HPP
function< void(const std::string &reason)> FaceCreationFailedCallback
Prototype for the callback that is invoked when the face fails to be created.
Definition: channel.hpp:44
Base class for all exceptions thrown by protocol factories.
represents the underlying protocol and address used by a Face
Definition: face-uri.hpp:44
Error(const std::string &what)
Exception of UnixStreamFactory.
#define DECL_OVERRIDE
expands to &#39;override&#39; if compiler supports &#39;override&#39; specifier, otherwise expands to nothing ...
Definition: common.hpp:50
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
shared_ptr< UnixStreamChannel > createChannel(const std::string &unixSocketPath)
Create stream-oriented Unix channel using specified socket path.
Abstract base class for all protocol factories.
virtual std::vector< shared_ptr< const Channel > > getChannels() const 1
function< void(const shared_ptr< Face > &newFace)> FaceCreatedCallback
Prototype for the callback that is invoked when the face is created (as a response to incoming connec...
Definition: channel.hpp:38
boost::asio::local::stream_protocol::endpoint Endpoint
virtual void createFace(const FaceUri &uri, ndn::nfd::FacePersistency persistency, const FaceCreatedCallback &onCreated, const FaceCreationFailedCallback &onConnectFailed) 1
Try to create Face using the supplied FaceUri.