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 namespace face {
34 
38 {
39 public:
40  static const std::string&
41  getId();
42 
45  void
47  FaceSystem::ConfigContext& context) override;
48 
49  void
50  createFace(const FaceUri& uri,
51  ndn::nfd::FacePersistency persistency,
52  bool wantLocalFieldsEnabled,
53  const FaceCreatedCallback& onCreated,
54  const FaceCreationFailedCallback& onFailure) override;
55 
66  shared_ptr<UnixStreamChannel>
67  createChannel(const std::string& unixSocketPath);
68 
69  std::vector<shared_ptr<const Channel>>
70  getChannels() const override;
71 
72 private:
79  shared_ptr<UnixStreamChannel>
80  findChannel(const unix_stream::Endpoint& endpoint) const;
81 
82 private:
83  std::map<unix_stream::Endpoint, shared_ptr<UnixStreamChannel>> m_channels;
84 };
85 
86 } // namespace face
87 } // namespace nfd
88 
89 #endif // NFD_DAEMON_FACE_UNIX_STREAM_FACTORY_HPP
void createFace(const FaceUri &uri, ndn::nfd::FacePersistency persistency, bool wantLocalFieldsEnabled, const FaceCreatedCallback &onCreated, const FaceCreationFailedCallback &onFailure) override
Try to create Face using the supplied FaceUri.
context for processing a config section in ProtocolFactory
Definition: face-system.hpp:77
Copyright (c) 2014-2015, Regents of the University of California, Arizona Board of Regents...
boost::optional< const ConfigSection & > OptionalConfigSection
an optional config file section
Definition: config-file.hpp:41
protocol factory for stream-oriented Unix sockets
function< void(uint32_t status, const std::string &reason)> FaceCreationFailedCallback
Prototype for the callback that is invoked when the face fails to be created.
Definition: channel.hpp:44
provide support for an underlying protocol
shared_ptr< UnixStreamChannel > createChannel(const std::string &unixSocketPath)
Create stream-oriented Unix channel using specified socket path.
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
std::vector< shared_ptr< const Channel > > getChannels() const override
void processConfig(OptionalConfigSection configSection, FaceSystem::ConfigContext &context) override
process face_system.unix config section
static const std::string & getId()