2#include <ossia/detail/pod_vector.hpp>
3#include <ossia/network/sockets/writers.hpp>
5#include <boost/asio/buffer.hpp>
6#include <boost/asio/error.hpp>
7#include <boost/asio/read.hpp>
8#include <boost/asio/read_until.hpp>
9#include <boost/asio/streambuf.hpp>
10#include <boost/asio/write.hpp>
11#include <boost/endian/conversion.hpp>
16template <
typename Socket>
17struct line_framing_decoder
20 char delimiter[8] = {0};
21 int32_t m_next_packet_size{};
22 std::vector<char, ossia::pod_allocator_avx2<char>> m_data;
24 explicit line_framing_decoder(Socket& socket)
27 m_data.reserve(65535);
36 boost::asio::async_read_until(
37 socket, boost::asio::dynamic_buffer(m_data), (
const char*)delimiter,
38 [
this, f = std::move(f)](boost::system::error_code ec, std::size_t sz)
mutable {
43 new_sz -= strlen(delimiter);
45 read_data(std::move(f), ec, new_sz);
47 this->receive(std::move(f));
52 void read_data(F&& f, boost::system::error_code ec, std::size_t sz)
54 if(!f.validate_stream(ec))
61 f((
const unsigned char*)m_data.data(), sz);
68 this->receive(std::move(f));
72template <
typename Socket>
73struct line_framing_encoder
76 char delimiter[8] = {0};
78 void write(
const char* data, std::size_t sz)
80 this->write(socket, boost::asio::buffer(data, sz));
81 this->write(socket, boost::asio::buffer(delimiter, strlen(delimiter)));
85 void write(T& sock,
const boost::asio::const_buffer& buf)
87 boost::asio::write(sock, buf);
91 void write(multi_socket_writer<T>& sock,
const boost::asio::const_buffer& buf)
99 template <
typename Socket>
100 using encoder = line_framing_encoder<Socket>;
101 template <
typename Socket>
102 using decoder = line_framing_decoder<Socket>;