26 #ifndef NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP 27 #define NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP 42 template<
class Protocol>
72 handleSend(
const boost::system::error_code& error,
80 size_t nBytesReceived);
86 handleError(
const boost::system::error_code& error);
104 size_t m_receiveBufferSize;
105 std::queue<Block> m_sendQueue;
106 size_t m_sendQueueBytes;
113 , m_receiveBufferSize(0)
114 , m_sendQueueBytes(0)
129 NFD_LOG_FACE_WARN(
"Failed to obtain send queue length from socket: " << std::strerror(errno));
131 return getSendQueueBytes() + std::max<ssize_t>(0, queueLength);
140 if (m_socket.is_open()) {
144 boost::system::error_code error;
145 m_socket.cancel(error);
146 m_socket.shutdown(protocol::socket::shutdown_both, error);
175 boost::system::error_code error;
176 m_socket.close(error);
178 this->setState(TransportState::CLOSED);
187 if (getState() != TransportState::UP)
190 bool wasQueueEmpty = m_sendQueue.empty();
191 m_sendQueue.push(packet);
192 m_sendQueueBytes += packet.
size();
202 boost::asio::async_write(m_socket, boost::asio::buffer(m_sendQueue.front()),
203 [
this] (
auto&&... args) { this->handleSend(std::forward<decltype(args)>(args)...); });
212 return processErrorCode(error);
216 BOOST_ASSERT(!m_sendQueue.empty());
217 BOOST_ASSERT(m_sendQueue.front().size() == nBytesSent);
218 m_sendQueueBytes -= nBytesSent;
221 if (!m_sendQueue.empty())
229 BOOST_ASSERT(getState() == TransportState::UP);
231 m_socket.async_receive(boost::asio::buffer(m_receiveBuffer + m_receiveBufferSize,
233 [
this] (
auto&&... args) { this->handleReceive(std::forward<decltype(args)>(args)...); });
239 size_t nBytesReceived)
242 return processErrorCode(error);
246 m_receiveBufferSize += nBytesReceived;
247 auto bufferView = ndn::make_span(m_receiveBuffer, m_receiveBufferSize);
250 while (offset < bufferView.size()) {
256 offset += element.
size();
257 BOOST_ASSERT(offset <= bufferView.size());
259 this->receive(element);
264 this->setState(TransportState::FAILED);
270 if (offset != m_receiveBufferSize) {
271 std::copy(m_receiveBuffer + offset, m_receiveBuffer + m_receiveBufferSize, m_receiveBuffer);
272 m_receiveBufferSize -= offset;
275 m_receiveBufferSize = 0;
288 if (getState() == TransportState::CLOSING ||
289 getState() == TransportState::FAILED ||
290 getState() == TransportState::CLOSED ||
292 error == boost::asio::error::shut_down)
304 this->setState(TransportState::CLOSING);
308 this->setState(TransportState::FAILED);
317 m_receiveBufferSize = 0;
324 std::queue<Block> emptyQueue;
326 m_sendQueueBytes = 0;
333 return m_sendQueueBytes;
339 #endif // NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP void swap(any &x, any &y) any_noexcept
void doClose() override
performs Transport specific operations to close the transport
void doSend(const Block &packet) override
performs Transport specific operations to send a packet
void processErrorCode(const boost::system::error_code &error)
boost::asio::local::stream_protocol protocol
#define NFD_LOG_FACE_TRACE(msg)
Log a message at TRACE level.
virtual void handleError(const boost::system::error_code &error)
#define NFD_LOG_FACE_ERROR(msg)
Log a message at ERROR level.
const ssize_t QUEUE_ERROR
indicates that the transport was unable to retrieve the queue capacity/length
detail::SimulatorIo & getGlobalIoService()
Returns the global io_service instance for the calling thread.
Represents a TLV element of the NDN packet format.
size_t getSendQueueBytes() const
Implements Transport for stream-based protocols.
protocol::socket m_socket
size_t size() const
Return the size of the encoded wire, i.e., of the whole TLV.
Copyright (c) 2011-2015 Regents of the University of California.
void post(const std::function< void()> &callback)
StreamTransport(typename protocol::socket &&socket)
Construct stream transport.
ssize_t getTxQueueLength(int fd)
obtain send queue length from a specified system socket
void handleReceive(const boost::system::error_code &error, size_t nBytesReceived)
void resetReceiveBuffer()
CFReleaser< CFStringRef > fromBuffer(const uint8_t *buf, size_t buflen)
Create a CFString by copying bytes from a raw buffer.
void handleSend(const boost::system::error_code &error, size_t nBytesSent)
Catch-all error for socket component errors that don't fit in other categories.
ssize_t getSendQueueLength() override
The lower half of a Face.
#define NFD_LOG_FACE_WARN(msg)
Log a message at WARN level.
const size_t MAX_NDN_PACKET_SIZE
Practical size limit of a network-layer packet.