8 #ifndef ASIOEXT_LINEARBUFFER_HPP 9 #define ASIOEXT_LINEARBUFFER_HPP 11 #include "asioext/detail/config.hpp" 13 #if ASIOEXT_HAS_PRAGMA_ONCE 17 #include "asioext/error_code.hpp" 18 #include "asioext/detail/buffer.hpp" 19 #include "asioext/detail/move_support.hpp" 20 #include "asioext/detail/cstdint.hpp" 24 #include <type_traits> 39 template <
typename Allocator = std::allocator<u
int8_t>>
61 "Allocator::value_type must be uint8_t");
85 , max_size_(allocator_traits_type::max_size(rep_))
97 , capacity_(initial_size)
102 rep_.data_ = allocator_traits_type::allocate(rep_, initial_size);
114 , capacity_(initial_size)
119 rep_.data_ = allocator_traits_type::allocate(rep_, initial_size);
122 #ifdef ASIOEXT_HAS_MOVE 128 : rep_(ASIOEXT_MOVE_CAST(representation_type)(other.rep_))
129 , capacity_(other.capacity_)
131 , max_size_(other.max_size_)
133 other.capacity_ = other.size_ = 0;
143 allocator_traits_type::deallocate(rep_, rep_.data_, capacity_);
146 #ifdef ASIOEXT_HAS_MOVE 193 return rep_.data_ + size_;
197 uint8_t*
data() ASIOEXT_NOEXCEPT {
return rep_.data_; }
200 const uint8_t*
data() const ASIOEXT_NOEXCEPT {
return rep_.data_; }
207 return rep_.data_[i];
215 return rep_.data_[i];
249 { insert(before_this - rep_.data_, data, n); }
277 { erase(pos - rep_.data_); }
288 { erase(first - rep_.data_, last - rep_.data_); }
327 struct representation_type : Allocator
329 representation_type() ASIOEXT_NOEXCEPT
336 explicit representation_type(
const Allocator& a) ASIOEXT_NOEXCEPT
343 #ifdef ASIOEXT_HAS_MOVE 344 representation_type(representation_type&& other) ASIOEXT_NOEXCEPT
345 : Allocator(ASIOEXT_MOVE_CAST(allocator_type)(
346 static_cast<allocator_type&>(other)))
349 other.data_ =
nullptr;
356 #ifdef ASIOEXT_HAS_MOVE 358 # if defined(ASIOEXT_HAS_ALLOCATOR_ALWAYS_EQUAL) 359 ASIOEXT_NOEXCEPT_IF(allocator_traits_type::is_always_equal::value)
367 template <
typename Function>
371 const ASIOEXT_NOEXCEPT
373 return capacity_ < max_size_ / 2 ?
374 (
std::max)(size_ + n, 2 * capacity_) :
378 representation_type rep_;
384 template <
typename Allocator>
388 return asio::buffer(b.data(), b.size());
391 template <
typename Allocator>
395 return asio::buffer(b.data(), b.size());
403 template <
typename Allocator>
428 , size_(data_.size())
429 , max_size_(maximum_size)
433 #if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION) 438 , max_size_(other.max_size_)
464 return data_.capacity();
545 size_ += (
std::min)(n, data_.size() - size_);
558 data_.erase(0, consume_length);
559 size_ -= consume_length;
573 template <
typename Allocator>
582 #if !defined(ASIOEXT_IS_DOCUMENTATION) 583 # if defined(ASIOEXT_USE_BOOST_ASIO) 592 # if defined(ASIOEXT_USE_BOOST_ASIO) 597 #include "asioext/impl/linear_buffer.hpp"
basic_linear_buffer(const Allocator &a) noexcept
Construct a dynamic buffer from an allocator.
Definition: linear_buffer.hpp:81
basic_linear_buffer() noexcept
Default-construct a basic_linear_buffer.
Definition: linear_buffer.hpp:67
basic_linear_buffer(std::size_t initial_size, std::size_t maximum_size=(std::numeric_limits< std::size_t >::max)())
Construct a dynamic buffer.
Definition: linear_buffer.hpp:93
const_buffers_type data() const noexcept
Definition: linear_buffer.hpp:488
basic_linear_buffer(basic_linear_buffer &&other) noexcept
Move-construct a dynamic buffer.
Definition: linear_buffer.hpp:127
void commit(std::size_t n)
Definition: linear_buffer.hpp:543
asio::const_buffers_1 buffer(const basic_linear_buffer< Allocator > &b) noexcept
Definition: linear_buffer.hpp:385
std::allocator_traits< allocator_type > allocator_traits_type
Definition: linear_buffer.hpp:44
basic_linear_buffer(const Allocator &a, std::size_t initial_size, std::size_t maximum_size=(std::numeric_limits< std::size_t >::max)())
Construct a dynamic buffer from an allocator.
Definition: linear_buffer.hpp:110
reference operator[](std::size_t i) noexcept
Get a reference to a specific byte inside the buffer.
Definition: linear_buffer.hpp:205
const_iterator begin() const noexcept
Get an iterator pointing at the buffer data beginning.
Definition: linear_buffer.hpp:185
const uint8_t & const_reference
Definition: linear_buffer.hpp:58
dynamic_linear_buffer< Allocator > dynamic_buffer(basic_linear_buffer< Allocator > &data) noexcept
Create a new dynamic buffer that represents the given basic_linear_buffer.
Definition: linear_buffer.hpp:574
Allocator allocator_type
Definition: linear_buffer.hpp:43
std::size_t capacity() const noexcept
Get the current capacity of the dynamic buffer.
Definition: linear_buffer.hpp:462
std::size_t max_size() const noexcept
Get the maximum size of the dynamic buffer.
Definition: linear_buffer.hpp:164
const uint8_t * data() const noexcept
Get a pointer to the buffer data beginning.
Definition: linear_buffer.hpp:200
std::size_t capacity() const noexcept
Get the current capacity of the dynamic buffer.
Definition: linear_buffer.hpp:173
std::size_t size() const noexcept
Get the size of the input sequence.
Definition: linear_buffer.hpp:155
const_reference operator[](std::size_t i) const noexcept
Get a reference to a specific byte inside the buffer.
Definition: linear_buffer.hpp:213
dynamic_linear_buffer(basic_linear_buffer< Allocator > &b, std::size_t maximum_size=(std::numeric_limits< std::size_t >::max)()) noexcept
Construct a dynamic buffer from a basic_linear_buffer.
Definition: linear_buffer.hpp:424
std::size_t size() const noexcept
Get the size of the input sequence.
Definition: linear_buffer.hpp:444
asio::mutable_buffers_1 mutable_buffers_type
The type used to represent the output sequence as a list of buffers.
Definition: linear_buffer.hpp:411
uint8_t * data() noexcept
Get a pointer to the buffer data beginning.
Definition: linear_buffer.hpp:197
uint8_t * iterator
The type used to represent an iterator for the buffer's data.
Definition: linear_buffer.hpp:47
A dynamically sized contiguously stored buffer.
Definition: linear_buffer.hpp:40
iterator end() noexcept
Get an iterator pointing at the buffer data end.
Definition: linear_buffer.hpp:182
std::size_t max_size() const noexcept
Get the maximum size of the dynamic buffer.
Definition: linear_buffer.hpp:453
void insert(const_iterator before_this, const void *data, std::size_t n)
Insert the given data before the specified position.
Definition: linear_buffer.hpp:248
void clear() noexcept
Clear the buffer.
Definition: linear_buffer.hpp:321
automatically_chosen error_code
Typedef for the error_code class used by this library.
Definition: error_code.hpp:37
iterator begin() noexcept
Get an iterator pointing at the buffer data beginning.
Definition: linear_buffer.hpp:179
void erase(const_iterator pos)
Erase the single byte at the specified position.
Definition: linear_buffer.hpp:276
const_iterator end() const noexcept
Get an iterator pointing at the buffer data end.
Definition: linear_buffer.hpp:191
const uint8_t * const_iterator
Definition: linear_buffer.hpp:51
uint8_t & reference
The type used to represent a reference to a single byte inside the buffer.
Definition: linear_buffer.hpp:54
Adapt a basic_linear_buffer to the DynamicBuffer requirements.
Definition: linear_buffer.hpp:404
~basic_linear_buffer()
Destroy the basic_linear_buffer.
Definition: linear_buffer.hpp:140
mutable_buffers_type data() noexcept
Definition: linear_buffer.hpp:475
void erase(const_iterator first, const_iterator last)
Erase the bytes in the range [first, last).
Definition: linear_buffer.hpp:287
void consume(std::size_t n)
Remove characters from the input sequence.
Definition: linear_buffer.hpp:555
asio::const_buffers_1 const_buffers_type
The type used to represent the input sequence as a list of buffers.
Definition: linear_buffer.hpp:408