Files
cpp-thirdparty/linx64/include/boost/mysql/impl/internal/channel/read_buffer.hpp
2023-11-24 12:56:13 -06:00

134 lines
5.2 KiB
C++

//
// Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_MYSQL_IMPL_INTERNAL_CHANNEL_READ_BUFFER_HPP
#define BOOST_MYSQL_IMPL_INTERNAL_CHANNEL_READ_BUFFER_HPP
#include <boost/assert.hpp>
#include <boost/core/span.hpp>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <vector>
namespace boost {
namespace mysql {
namespace detail {
// Custom buffer type optimized for read operations performed in the MySQL protocol.
// The buffer is a single, resizable chunk of memory with four areas:
// - Reserved area: messages that have already been read but are kept alive,
// either because we need them or because we haven't cleaned them yet.
// - Current message area: delimits the message we are currently parsing.
// - Pending bytes area: bytes we've read but haven't been parsed into a message yet.
// - Free area: free space for more bytes to be read.
class read_buffer
{
std::vector<std::uint8_t> buffer_;
std::size_t current_message_offset_{0};
std::size_t pending_offset_{0};
std::size_t free_offset_{0};
public:
read_buffer(std::size_t size) : buffer_(size, std::uint8_t(0)) { buffer_.resize(buffer_.capacity()); }
// Whole buffer accessors
const std::uint8_t* first() const noexcept { return buffer_.data(); }
std::size_t size() const noexcept { return buffer_.size(); }
// Area accessors
std::uint8_t* reserved_first() noexcept { return buffer_.data(); }
const std::uint8_t* reserved_first() const noexcept { return buffer_.data(); }
std::uint8_t* current_message_first() noexcept { return buffer_.data() + current_message_offset_; }
const std::uint8_t* current_message_first() const noexcept
{
return buffer_.data() + current_message_offset_;
}
std::uint8_t* pending_first() noexcept { return buffer_.data() + pending_offset_; }
const std::uint8_t* pending_first() const noexcept { return buffer_.data() + pending_offset_; }
std::uint8_t* free_first() noexcept { return buffer_.data() + free_offset_; }
const std::uint8_t* free_first() const noexcept { return buffer_.data() + free_offset_; }
std::size_t reserved_size() const noexcept { return current_message_offset_; }
std::size_t current_message_size() const noexcept { return pending_offset_ - current_message_offset_; }
std::size_t pending_size() const noexcept { return free_offset_ - pending_offset_; }
std::size_t free_size() const noexcept { return buffer_.size() - free_offset_; }
span<const std::uint8_t> reserved_area() const noexcept { return {reserved_first(), reserved_size()}; }
span<const std::uint8_t> current_message() const noexcept
{
return {current_message_first(), current_message_size()};
}
span<const std::uint8_t> pending_area() const noexcept { return {pending_first(), pending_size()}; }
span<std::uint8_t> free_area() noexcept { return {free_first(), free_size()}; }
// Moves n bytes from the free to the processing area (e.g. they've been read)
void move_to_pending(std::size_t length) noexcept
{
BOOST_ASSERT(length <= free_size());
free_offset_ += length;
}
// Moves n bytes from the processing to the current message area
void move_to_current_message(std::size_t length) noexcept
{
BOOST_ASSERT(length <= pending_size());
pending_offset_ += length;
}
// Removes the last length bytes from the current message area,
// effectively memmove'ing all subsequent bytes backwards.
// Used to remove intermediate headers. length must be > 0
void remove_current_message_last(std::size_t length) noexcept
{
BOOST_ASSERT(length <= current_message_size());
BOOST_ASSERT(length > 0);
std::memmove(pending_first() - length, pending_first(), pending_size());
pending_offset_ -= length;
free_offset_ -= length;
}
// Moves length bytes from the current message area to the reserved area
// Used to move entire parsed messages or message headers
void move_to_reserved(std::size_t length) noexcept
{
BOOST_ASSERT(length <= current_message_size());
current_message_offset_ += length;
}
// Removes the reserved area, effectively memmove'ing evth backwards
void remove_reserved() noexcept
{
if (reserved_size() > 0)
{
std::size_t currmsg_size = current_message_size();
std::size_t pend_size = pending_size();
std::memmove(buffer_.data(), current_message_first(), currmsg_size + pend_size);
current_message_offset_ = 0;
pending_offset_ = currmsg_size;
free_offset_ = currmsg_size + pend_size;
}
}
// Makes sure the free size is at least n bytes long; resizes the buffer if required
void grow_to_fit(std::size_t n)
{
if (free_size() < n)
{
buffer_.resize(buffer_.size() + n - free_size());
buffer_.resize(buffer_.capacity());
}
}
};
} // namespace detail
} // namespace mysql
} // namespace boost
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_STATIC_STRING_HPP_ */