26 #ifndef NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP
27 #define NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP
42 template<
class Protocol>
80 size_t nBytesReceived);
104 size_t m_receiveBufferSize;
105 std::queue<Block> m_sendQueue;
106 size_t m_sendQueueBytes;
112 : m_socket(std::
move(socket))
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);
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())
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;
249 while (m_receiveBufferSize - offset > 0) {
251 std::tie(isOk, element) =
Block::fromBuffer(m_receiveBuffer + offset, m_receiveBufferSize - offset);
255 offset += element.
size();
256 BOOST_ASSERT(offset <= m_receiveBufferSize);
258 this->receive(element);
269 if (offset != m_receiveBufferSize) {
270 std::copy(m_receiveBuffer + offset, m_receiveBuffer + m_receiveBufferSize, m_receiveBuffer);
271 m_receiveBufferSize -= offset;
274 m_receiveBufferSize = 0;
290 error == boost::asio::error::operation_aborted ||
291 error == boost::asio::error::shut_down)
302 if (error == boost::asio::error::eof) {
316 m_receiveBufferSize = 0;
323 std::queue<Block> emptyQueue;
325 m_sendQueueBytes = 0;
332 return m_sendQueueBytes;
338 #endif // NFD_DAEMON_FACE_STREAM_TRANSPORT_HPP