unix-transport-lite.hpp
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
22 #ifndef NDN_UNIX_TRANSPORT_LITE_HPP
23 #define NDN_UNIX_TRANSPORT_LITE_HPP
24 
25 #include "../../c/errors.h"
26 #include "../../c/transport/transport-types.h"
27 #include "../util/dynamic-uint8-array-lite.hpp"
28 #include "../encoding/element-listener-lite.hpp"
29 
30 namespace ndn {
31 
33 public:
45 
51  static bool
52  isLocal();
53 
63  ndn_Error
64  connect(char* filePath, ElementListenerLite& elementListener);
65 
72  ndn_Error
73  send(const uint8_t* data, size_t dataLength);
74 
89  ndn_Error
90  processEvents(uint8_t *buffer, size_t bufferLength);
91 
96  ndn_Error
97  close();
98 
104  static UnixTransportLite&
105  downCast(ndn_UnixTransport& transport) { return *(UnixTransportLite*)&transport; }
106 
107  static const UnixTransportLite&
108  downCast(const ndn_UnixTransport& transport) { return *(UnixTransportLite*)&transport; }
109 };
110 
111 }
112 
113 #endif
Copyright (C) 2013-2016 Regents of the University of California.
Definition: common.hpp:35
ndn_Error connect(char *filePath, ElementListenerLite &elementListener)
Connect with a Unix Socket to the socket filePath.
An ElementListenerLite holds an OnReceivedElementLite function pointer.
Definition: element-listener-lite.hpp:37
ndn_Error close()
Close the socket.
ndn_Error send(const uint8_t *data, size_t dataLength)
Send data to the socket.
ndn_Error processEvents(uint8_t *buffer, size_t bufferLength)
Process any data to receive.
A DynamicUInt8ArrayLite holds a pointer to an allocated array, the length of the allocated array...
Definition: dynamic-uint8-array-lite.hpp:35
Definition: unix-transport-lite.hpp:32
static UnixTransportLite & downCast(ndn_UnixTransport &transport)
Downcast the reference to the ndn_UnixTransport struct to a UnixTransportLite.
Definition: unix-transport-lite.hpp:105
static bool isLocal()
Determine whether this transport is to a node on the current machine.
Definition: transport-types.h:43
UnixTransportLite(DynamicUInt8ArrayLite &buffer)
Create a UnixTransport with default values for no connection yet and to use the given DynamicUInt8Arr...