transmission/libtransmission/tr-buffer.h

271 lines
6.5 KiB
C
Raw Normal View History

// This file Copyright © 2022-2023 Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#pragma once
#include <cstddef> // for std::byte
#include <iterator>
#include <limits>
#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <event2/buffer.h>
#include <fmt/core.h>
#include "error.h"
#include "net.h" // tr_socket_t
2023-04-14 22:08:01 +00:00
#include "tr-assert.h"
#include "utils-ev.h"
#include "utils.h" // for tr_htonll(), tr_ntohll()
namespace libtransmission
{
template<typename value_type>
class BufferReader
2023-04-14 22:08:01 +00:00
{
public:
virtual ~BufferReader() = default;
virtual void drain(size_t n_bytes) = 0;
[[nodiscard]] virtual size_t size() const noexcept = 0;
[[nodiscard]] virtual value_type const* data() const = 0;
[[nodiscard]] auto empty() const noexcept
2023-04-14 22:08:01 +00:00
{
return size() == 0U;
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] auto* begin() noexcept
2023-04-14 22:08:01 +00:00
{
return data();
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] auto const* begin() const
2023-04-14 22:08:01 +00:00
{
return data();
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] auto const* end() const
2023-04-14 22:08:01 +00:00
{
return begin() + size();
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] auto to_string() const
2023-04-14 22:08:01 +00:00
{
return std::string{ reinterpret_cast<char const*>(data()), size() };
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] auto to_string_view() const
2023-04-14 22:08:01 +00:00
{
return std::string_view{ reinterpret_cast<char const*>(data()), size() };
2023-04-14 22:08:01 +00:00
}
template<typename T>
[[nodiscard]] bool starts_with(T const& needle) const
2023-04-14 22:08:01 +00:00
{
auto const n_bytes = std::size(needle);
auto const needle_begin = reinterpret_cast<value_type const*>(std::data(needle));
auto const needle_end = needle_begin + n_bytes;
return n_bytes <= size() && std::equal(needle_begin, needle_end, data());
2023-04-14 22:08:01 +00:00
}
auto to_buf(void* tgt, size_t n_bytes)
2023-04-14 22:08:01 +00:00
{
n_bytes = std::min(n_bytes, size());
std::copy_n(data(), n_bytes, reinterpret_cast<value_type*>(tgt));
drain(n_bytes);
return n_bytes;
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] auto to_uint8()
2023-04-14 22:08:01 +00:00
{
auto tmp = uint8_t{};
to_buf(&tmp, sizeof(tmp));
return tmp;
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] uint16_t to_uint16()
2023-04-14 22:08:01 +00:00
{
auto tmp = uint16_t{};
to_buf(&tmp, sizeof(tmp));
return ntohs(tmp);
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] uint32_t to_uint32()
2023-04-14 22:08:01 +00:00
{
auto tmp = uint32_t{};
to_buf(&tmp, sizeof(tmp));
return ntohl(tmp);
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] uint64_t to_uint64()
2023-04-14 22:08:01 +00:00
{
auto tmp = uint64_t{};
to_buf(&tmp, sizeof(tmp));
return tr_ntohll(tmp);
2023-04-14 22:08:01 +00:00
}
size_t to_socket(tr_socket_t sockfd, size_t n_bytes, tr_error** error = nullptr)
{
if (auto const n_sent = send(sockfd, reinterpret_cast<char const*>(data()), std::min(n_bytes, size()), 0); n_sent >= 0)
{
drain(n_sent);
return n_sent;
}
auto const err = sockerrno;
tr_error_set(error, err, tr_net_strerror(err));
return {};
}
};
template<typename value_type>
class BufferWriter
{
public:
virtual ~BufferWriter() = default;
virtual std::pair<value_type*, size_t> reserve_space(size_t n_bytes) = 0;
virtual void commit_space(size_t n_bytes) = 0;
void add(void const* span_begin, size_t span_len)
{
auto [buf, buflen] = reserve_space(span_len);
std::copy_n(reinterpret_cast<value_type const*>(span_begin), span_len, buf);
commit_space(span_len);
}
template<typename ContiguousContainer>
void add(ContiguousContainer const& container)
{
add(std::data(container), std::size(container));
}
template<typename OneByteType>
void push_back(OneByteType ch)
{
add(&ch, 1);
}
void add_uint8(uint8_t uch)
2023-01-28 02:12:09 +00:00
{
add(&uch, 1);
2023-01-28 02:12:09 +00:00
}
void add_uint16(uint16_t hs)
{
uint16_t const ns = htons(hs);
add(&ns, sizeof(ns));
}
void add_hton16(uint16_t hs)
{
add_uint16(hs);
}
void add_uint32(uint32_t hl)
{
uint32_t const nl = htonl(hl);
add(&nl, sizeof(nl));
}
void eadd_hton32(uint32_t hl)
{
add_uint32(hl);
}
void add_uint64(uint64_t hll)
{
uint64_t const nll = tr_htonll(hll);
add(&nll, sizeof(nll));
}
void add_hton64(uint64_t hll)
{
add_uint64(hll);
}
void add_port(tr_port const& port)
{
auto nport = port.network();
add(&nport, sizeof(nport));
}
size_t add_socket(tr_socket_t sockfd, size_t n_bytes, tr_error** error = nullptr)
{
auto const [buf, buflen] = reserve_space(n_bytes);
if (auto const n_read = recv(sockfd, reinterpret_cast<char*>(buf), n_bytes, 0); n_read >= 0)
{
commit_space(n_read);
return n_read;
}
auto const err = sockerrno;
tr_error_set(error, err, tr_net_strerror(err));
return {};
}
};
class Buffer final
: public BufferReader<std::byte>
, public BufferWriter<std::byte>
{
public:
using value_type = std::byte;
Buffer() = default;
Buffer(Buffer&&) = default;
Buffer(Buffer const&) = delete;
Buffer& operator=(Buffer&&) = default;
Buffer& operator=(Buffer const&) = delete;
template<typename T>
explicit Buffer(T const& data)
{
add(data);
}
[[nodiscard]] size_t size() const noexcept override
2023-04-14 22:08:01 +00:00
{
return evbuffer_get_length(buf_.get());
2023-04-14 22:08:01 +00:00
}
[[nodiscard]] value_type const* data() const override
{
return reinterpret_cast<value_type*>(evbuffer_pullup(buf_.get(), -1));
}
void drain(size_t n_bytes) override
{
evbuffer_drain(buf_.get(), n_bytes);
}
virtual std::pair<value_type*, size_t> reserve_space(size_t n_bytes) override
{
auto iov = evbuffer_iovec{};
evbuffer_reserve_space(buf_.get(), n_bytes, &iov, 1);
TR_ASSERT(iov.iov_len >= n_bytes);
reserved_space_ = iov;
return { static_cast<value_type*>(iov.iov_base), static_cast<size_t>(iov.iov_len) };
}
virtual void commit_space(size_t n_bytes) override
{
TR_ASSERT(reserved_space_);
TR_ASSERT(reserved_space_->iov_len >= n_bytes);
reserved_space_->iov_len = n_bytes;
evbuffer_commit_space(buf_.get(), &*reserved_space_, 1);
reserved_space_.reset();
}
2023-01-28 02:12:09 +00:00
private:
evhelpers::evbuffer_unique_ptr buf_{ evbuffer_new() };
std::optional<evbuffer_iovec> reserved_space_;
};
} // namespace libtransmission