Asio Extensions
Additional functionality built on top of (Boost.)Asio
linear_buffer.hpp
1 /// @file
2 /// Defines the basic_linear_buffer class template.
3 ///
4 /// @copyright Copyright (c) 2018 Tim Niederhausen (tim@rnc-ag.de)
5 /// Distributed under the Boost Software License, Version 1.0.
6 /// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 
8 #ifndef ASIOEXT_LINEARBUFFER_HPP
9 #define ASIOEXT_LINEARBUFFER_HPP
10 
11 #include "asioext/detail/config.hpp"
12 
13 #if ASIOEXT_HAS_PRAGMA_ONCE
14 # pragma once
15 #endif
16 
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"
21 
22 #include <memory>
23 #include <limits>
24 #include <type_traits>
25 
26 ASIOEXT_NS_BEGIN
27 
28 /// @ingroup core
29 /// @brief A dynamically sized contiguously stored buffer
30 ///
31 /// This class owns and manages a contiguous buffer that is divided
32 /// into an input and output sequence.
33 ///
34 /// @note Unlike Asio's @c DynamicBuffer this class owns the buffer
35 /// it manages. Unless you are not interested in the data read/written and
36 /// the buffer object can be destroyed once the operation finishes,
37 /// it's not recommended to use this class with the
38 /// @ref DynamicBuffer functions provided by Asio.
39 template <typename Allocator = std::allocator<uint8_t>>
41 {
42 public:
43  typedef Allocator allocator_type;
45 
46  /// The type used to represent an iterator for the buffer's data.
47  typedef uint8_t* iterator;
48 
49  /// The type used to represent an iterator for a constant
50  /// view of the buffer's data.
51  typedef const uint8_t* const_iterator;
52 
53  /// The type used to represent a reference to a single byte inside the buffer.
54  typedef uint8_t& reference;
55 
56  /// The type used to represent a const. reference to a single byte inside
57  /// the buffer.
58  typedef const uint8_t& const_reference;
59 
61  "Allocator::value_type must be uint8_t");
62 
63  /// @brief Default-construct a basic_linear_buffer.
64  ///
65  /// The constructed basic_linear_buffer is empty and doesn't have
66  /// any allocated memory.
67  basic_linear_buffer() ASIOEXT_NOEXCEPT
68  : rep_()
69  , capacity_(0)
70  , size_(0)
71  , max_size_(allocator_traits_type::max_size(rep_))
72  {
73  }
74 
75  /// @brief Construct a dynamic buffer from an allocator.
76  ///
77  /// The constructed basic_linear_buffer is empty and doesn't have
78  /// any allocated memory.
79  ///
80  /// @param a The allocator that shall be used to allocate the buffer's storage.
81  explicit basic_linear_buffer(const Allocator& a) ASIOEXT_NOEXCEPT
82  : rep_(a)
83  , capacity_(0)
84  , size_(0)
85  , max_size_(allocator_traits_type::max_size(rep_))
86  {
87  }
88 
89  /// @brief Construct a dynamic buffer.
90  ///
91  /// @param initial_size The initial size that the buffer starts with.
92  /// @param maximum_size Specifies a maximum size for the buffer, in bytes.
94  std::size_t maximum_size =
96  : rep_()
97  , capacity_(initial_size)
98  , size_(0)
99  , max_size_((std::min)(allocator_traits_type::max_size(rep_),
100  maximum_size))
101  {
102  rep_.data_ = allocator_traits_type::allocate(rep_, initial_size);
103  }
104 
105  /// @brief Construct a dynamic buffer from an allocator.
106  ///
107  /// @param a The allocator that shall be used to allocate the buffer's storage.
108  /// @param initial_size The initial size that the buffer starts with.
109  /// @param maximum_size Specifies a maximum size for the buffer, in bytes.
110  basic_linear_buffer(const Allocator& a, std::size_t initial_size,
111  std::size_t maximum_size =
113  : rep_(a)
114  , capacity_(initial_size)
115  , size_(0)
116  , max_size_((std::min)(allocator_traits_type::max_size(rep_),
117  maximum_size))
118  {
119  rep_.data_ = allocator_traits_type::allocate(rep_, initial_size);
120  }
121 
122 #ifdef ASIOEXT_HAS_MOVE
123  /// @brief Move-construct a dynamic buffer.
124  ///
125  /// After the move, @c other is an empty buffer with no allocated memory
126  /// (as-if just default-constructed).
127  basic_linear_buffer(basic_linear_buffer&& other) ASIOEXT_NOEXCEPT
128  : rep_(ASIOEXT_MOVE_CAST(representation_type)(other.rep_))
129  , capacity_(other.capacity_)
130  , size_(other.size_)
131  , max_size_(other.max_size_)
132  {
133  other.capacity_ = other.size_ = 0;
134  }
135 #endif
136 
137  /// @brief Destroy the basic_linear_buffer.
138  ///
139  /// Deallocates all owned data.
141  {
142  if (rep_.data_)
143  allocator_traits_type::deallocate(rep_, rep_.data_, capacity_);
144  }
145 
146 #ifdef ASIOEXT_HAS_MOVE
147  /// @brief Move-assign a dynamic buffer.
148  ///
149  /// After the move, @c other is an empty buffer with no allocated memory
150  /// (as-if just default-constructed).
151  basic_linear_buffer& operator=(basic_linear_buffer&& other) ASIOEXT_NOEXCEPT;
152 #endif
153 
154  /// @brief Get the size of the input sequence.
155  std::size_t size() const ASIOEXT_NOEXCEPT
156  {
157  return size_;
158  }
159 
160  /// @brief Get the maximum size of the dynamic buffer.
161  ///
162  /// @returns The allowed maximum of the sum of the sizes of the input sequence
163  /// and output sequence.
164  std::size_t max_size() const ASIOEXT_NOEXCEPT
165  {
166  return max_size_;
167  }
168 
169  /// @brief Get the current capacity of the dynamic buffer.
170  ///
171  /// @returns The current total capacity of the buffer, i.e. for both the input
172  /// sequence and output sequence.
173  std::size_t capacity() const ASIOEXT_NOEXCEPT
174  {
175  return capacity_;
176  }
177 
178  /// @brief Get an iterator pointing at the buffer data beginning.
179  iterator begin() ASIOEXT_NOEXCEPT { return rep_.data_; }
180 
181  /// @brief Get an iterator pointing at the buffer data end.
182  iterator end() ASIOEXT_NOEXCEPT { return rep_.data_ + size_; }
183 
184  /// @brief Get an iterator pointing at the buffer data beginning.
185  const_iterator begin() const ASIOEXT_NOEXCEPT
186  {
187  return rep_.data_;
188  }
189 
190  /// @brief Get an iterator pointing at the buffer data end.
191  const_iterator end() const ASIOEXT_NOEXCEPT
192  {
193  return rep_.data_ + size_;
194  }
195 
196  /// @brief Get a pointer to the buffer data beginning.
197  uint8_t* data() ASIOEXT_NOEXCEPT { return rep_.data_; }
198 
199  /// @brief Get a pointer to the buffer data beginning.
200  const uint8_t* data() const ASIOEXT_NOEXCEPT { return rep_.data_; }
201 
202  /// @brief Get a reference to a specific byte inside the buffer.
203  ///
204  /// @param i Offset of the wanted byte.
205  reference operator[](std::size_t i) ASIOEXT_NOEXCEPT
206  {
207  return rep_.data_[i];
208  }
209 
210  /// @brief Get a reference to a specific byte inside the buffer.
211  ///
212  /// @param i Offset of the wanted byte.
213  const_reference operator[](std::size_t i) const ASIOEXT_NOEXCEPT
214  {
215  return rep_.data_[i];
216  }
217 
218  /// @brief Append the given data to the buffer.
219  ///
220  /// This function appends the given raw data to the buffer,
221  /// resizing it as necessary.
222  ///
223  /// If the buffer is resized, all iterators and references
224  /// (including the `end()` iterator) are invalidated.
225  /// Otherwise only the `end()` iterator is invalidated.
226  ///
227  /// @param data The raw bytes to append.
228  /// @param n Number of raw bytes to append.
229  ///
230  /// @throws std::length_error If <tt>size() + n > max_size()</tt>.
231  void append(const void* data, std::size_t n);
232 
233  /// @brief Insert the given data before the specified position.
234  ///
235  /// This function inserts the given raw data before the buffer position
236  /// pointed at by @c before_this. If the new buffer size would exceed the
237  /// buffer's capacity, it is resized.
238  ///
239  /// If the buffer is resized, all iterators and references
240  /// (including the `end()` iterator) are invalidated.
241  /// Otherwise only the iterators `[before_this, end()]` as well
242  /// as their corresponding references are invalidated.
243  ///
244  /// @param before_this Iterator before which the content will be inserted.
245  /// before_this may be the `begin()` or the `end()` iterator.
246  /// @param data The raw bytes to insert.
247  /// @param n Number of raw bytes to insert.
248  void insert(const_iterator before_this, const void* data, std::size_t n)
249  { insert(before_this - rep_.data_, data, n); }
250 
251  /// @brief Insert the given data before the specified position.
252  ///
253  /// This function inserts the given raw data before the buffer position
254  /// pointed at by @c before_this. If the new buffer size would exceed the
255  /// buffer's capacity, it is resized.
256  ///
257  /// If the buffer is resized, all iterators and references
258  /// (including the `end()` iterator) are invalidated.
259  /// Otherwise only the iterators `[before_this, end()]` as well
260  /// as their corresponding references are invalidated.
261  ///
262  /// @param before_this Position before which the content will be inserted.
263  /// before_this may be `0` or the `size()`.
264  /// @param data The raw bytes to insert.
265  /// @param n Number of raw bytes to insert.
266  void insert(std::size_t before_this, const void* data, std::size_t n);
267 
268  /// @brief Erase the single byte at the specified position.
269  ///
270  /// This function erases the single byte at the given position.
271  ///
272  /// All iterators and references after the erased byte are invalidated.
273  ///
274  /// @param pos Iterator to the byte to remove. Passing a pseudo-iterator
275  /// such as `end()` is not allowed.
277  { erase(pos - rep_.data_); }
278 
279  /// @brief Erase the bytes in the range `[first, last)`.
280  ///
281  /// This function erases the bytes in the range `[first, last)`.
282  ///
283  /// All iterators and references after the first erased byte are invalidated.
284  ///
285  /// @param first Iterator to the first byte to remove.
286  /// @param last Iterator to one past the last byte to remove.
288  { erase(first - rep_.data_, last - rep_.data_); }
289 
290  /// @brief Erase the single byte at the specified position.
291  ///
292  /// This function erases the single byte at the given position.
293  ///
294  /// All iterators and references after the erased byte are invalidated.
295  ///
296  /// @param pos Position of the byte to remove. Must be in `[0, size())`.
297  void erase(std::size_t pos);
298 
299  /// @brief Erase the bytes in the range `[first, last)`.
300  ///
301  /// This function erases the bytes in the range `[first, last)`.
302  ///
303  /// All iterators and references after the first erased byte are invalidated.
304  ///
305  /// @param first Position of the first byte to remove.
306  /// @param last Position of one past the last byte to remove.
307  void erase(std::size_t first, std::size_t last);
308 
309  /// @brief Resize the buffer.
310  ///
311  /// This function changes the buffer's size to @c new_size.
312  ///
313  /// If the buffer is resized, all iterators and references
314  /// (including the `end()` iterator) are invalidated.
315  void resize(std::size_t new_size);
316 
317  /// @brief Clear the buffer.
318  ///
319  /// Clears the buffer and resets it to zero size, without deallocating
320  /// the memory.
321  void clear() ASIOEXT_NOEXCEPT
322  {
323  size_ = 0;
324  }
325 
326 private:
327  struct representation_type : Allocator
328  {
329  representation_type() ASIOEXT_NOEXCEPT
330  : Allocator()
331  , data_(nullptr)
332  {
333  // ctor
334  }
335 
336  explicit representation_type(const Allocator& a) ASIOEXT_NOEXCEPT
337  : Allocator(a)
338  , data_(nullptr)
339  {
340  // ctor
341  }
342 
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)))
347  , data_(other.data_)
348  {
349  other.data_ = nullptr;
350  }
351 #endif
352 
353  uint8_t* data_;
354  };
355 
356 #ifdef ASIOEXT_HAS_MOVE
357  void move_assign(basic_linear_buffer& other, std::false_type)
358 # if defined(ASIOEXT_HAS_ALLOCATOR_ALWAYS_EQUAL)
359  ASIOEXT_NOEXCEPT_IF(allocator_traits_type::is_always_equal::value)
360 # endif
361  ;
362 
363  void move_assign(basic_linear_buffer& other, std::true_type)
365 #endif
366 
367  template <typename Function>
368  void reallocate(std::size_t cap, Function&& cb);
369 
370  ASIOEXT_CONSTEXPR std::size_t calculate_capacity(std::size_t n)
371  const ASIOEXT_NOEXCEPT
372  {
373  return capacity_ < max_size_ / 2 ?
374  (std::max)(size_ + n, 2 * capacity_) :
375  max_size_ - 1;
376  }
377 
378  representation_type rep_;
379  std::size_t capacity_;
380  std::size_t size_;
381  std::size_t max_size_;
382 };
383 
384 template <typename Allocator>
385 inline asio::const_buffers_1 buffer(const basic_linear_buffer<Allocator>& b)
386  ASIOEXT_NOEXCEPT
387 {
388  return asio::buffer(b.data(), b.size());
389 }
390 
391 template <typename Allocator>
392 inline asio::mutable_buffers_1 buffer(basic_linear_buffer<Allocator>& b)
393  ASIOEXT_NOEXCEPT
394 {
395  return asio::buffer(b.data(), b.size());
396 }
397 
398 /// @brief A linear buffer using the default allocator.
400 
401 /// @ingroup core
402 /// @brief Adapt a @c basic_linear_buffer to the DynamicBuffer requirements.
403 template <typename Allocator>
405 {
406 public:
407  /// The type used to represent the input sequence as a list of buffers.
408  typedef asio::const_buffers_1 const_buffers_type;
409 
410  /// The type used to represent the output sequence as a list of buffers.
411  typedef asio::mutable_buffers_1 mutable_buffers_type;
412 
413  /// @brief Construct a dynamic buffer from a @c basic_linear_buffer.
414  ///
415  /// @param b The basic_linear_buffer to be used as backing storage for
416  /// the dynamic buffer.
417  /// Any existing data in the buffer is treated as the dynamic buffer's input
418  /// sequence. The object stores a reference to the buffer and the user is
419  /// responsible for ensuring that the buffer object remains valid until the
420  /// dynamic_linear_buffer object is destroyed.
421  ///
422  /// @param maximum_size Specifies a maximum size for the buffer, in bytes.
423  ///
425  std::size_t maximum_size =
426  (std::numeric_limits<std::size_t>::max)()) ASIOEXT_NOEXCEPT
427  : data_(b)
428  , size_(data_.size())
429  , max_size_(maximum_size)
430  {
431  }
432 
433 #if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
434  /// @brief Move-construct a dynamic buffer.
435  dynamic_linear_buffer(dynamic_linear_buffer&& other) ASIOEXT_NOEXCEPT
436  : data_(other.data_)
437  , size_(other.size_)
438  , max_size_(other.max_size_)
439  {
440  }
441 #endif
442 
443  /// @brief Get the size of the input sequence.
444  std::size_t size() const ASIOEXT_NOEXCEPT
445  {
446  return size_;
447  }
448 
449  /// @brief Get the maximum size of the dynamic buffer.
450  ///
451  /// @returns The allowed maximum of the sum of the sizes of the input sequence
452  /// and output sequence.
453  std::size_t max_size() const ASIOEXT_NOEXCEPT
454  {
455  return max_size_;
456  }
457 
458  /// @brief Get the current capacity of the dynamic buffer.
459  ///
460  /// @returns The current total capacity of the buffer, i.e. for both the input
461  /// sequence and output sequence.
462  std::size_t capacity() const ASIOEXT_NOEXCEPT
463  {
464  return data_.capacity();
465  }
466 
467  /// Get a list of buffers that represents the input sequence.
468  ///
469  /// @returns An object of type @c mutable_buffers_type that satisfies
470  /// ConstBufferSequence requirements, representing the memory in the
471  /// input sequence.
472  ///
473  /// @note The returned object is invalidated by any @c dynamic_linear_buffer
474  /// member function that modifies the input sequence or output sequence.
475  mutable_buffers_type data() ASIOEXT_NOEXCEPT
476  {
477  return mutable_buffers_type(data_.data(), size_);
478  }
479 
480  /// Get a list of buffers that represents the input sequence.
481  ///
482  /// @returns An object of type @c const_buffers_type that satisfies
483  /// ConstBufferSequence requirements, representing the memory in the
484  /// input sequence.
485  ///
486  /// @note The returned object is invalidated by any @c dynamic_linear_buffer
487  /// member function that modifies the input sequence or output sequence.
488  const_buffers_type data() const ASIOEXT_NOEXCEPT
489  {
490  return const_buffers_type(data_.data(), size_);
491  }
492 
493  /// @brief Get a list of buffers that represents the output sequence, with
494  /// the given size.
495  ///
496  /// Ensures that the output sequence can accommodate @c n bytes, resizing the
497  /// storage object as necessary.
498  ///
499  /// @param n Total number of bytes the output sequence has to accomodate.
500  ///
501  /// @returns An object of type @c mutable_buffers_type that satisfies
502  /// MutableBufferSequence requirements, representing memory
503  /// at the start of the output sequence of size @c n.
504  ///
505  /// @throws std::length_error If <tt>size() + n > max_size()</tt>.
506  ///
507  /// @note The returned object is invalidated by any @c basic_linear_buffer
508  /// member function that modifies the input sequence or output sequence.
509  mutable_buffers_type prepare(std::size_t n);
510 
511  /// @brief Get a list of buffers that represents the output sequence, with
512  /// the given size.
513  ///
514  /// Ensures that the output sequence can accommodate @c n bytes, resizing the
515  /// storage object as necessary.
516  ///
517  /// @param n Total number of bytes the output sequence has to accomodate.
518  ///
519  /// @param ec Set to indicate what error occurred. If no error occurred,
520  /// the object is reset.
521  ///
522  /// @returns An object of type @c mutable_buffers_type that satisfies
523  /// MutableBufferSequence requirements, representing memory
524  /// at the start of the output sequence of size @c n.
525  ///
526  /// @note The returned object is invalidated by any @c basic_linear_buffer
527  /// member function that modifies the input sequence or output sequence.
528  ///
529  /// @note This function is not part of the DynamicBuffer requirements.
530  mutable_buffers_type prepare(std::size_t n, error_code& ec);
531 
532  /// Move bytes from the output sequence to the input sequence.
533  ///
534  /// @param n The number of bytes to append from the start of the output
535  /// sequence to the end of the input sequence. The remainder of the output
536  /// sequence is discarded.
537  ///
538  /// Requires a preceding call <tt>prepare(x)</tt> where <tt>x >= n</tt>, and
539  /// no intervening operations that modify the input or output sequence.
540  ///
541  /// @note If @c n is greater than the size of the output sequence, the entire
542  /// output sequence is moved to the input sequence and no error is issued.
544  {
545  size_ += (std::min)(n, data_.size() - size_);
546  data_.resize(size_);
547  }
548 
549  /// @brief Remove characters from the input sequence.
550  ///
551  /// Removes @c n characters from the beginning of the input sequence.
552  ///
553  /// @note If @c n is greater than the size of the input sequence, the entire
554  /// input sequence is consumed and no error is issued.
556  {
557  const std::size_t consume_length = (std::min)(n, size_);
558  data_.erase(0, consume_length);
559  size_ -= consume_length;
560  }
561 
562 private:
564  std::size_t size_;
565  std::size_t max_size_;
566 };
567 
568 /// @ingroup core
569 /// @brief Create a new dynamic buffer that represents the
570 /// given @c basic_linear_buffer.
571 ///
572 /// @returns <tt>dynamic_linear_buffer<Allocator>(data)</tt>.
573 template <typename Allocator>
575  basic_linear_buffer<Allocator>& data) ASIOEXT_NOEXCEPT
576 {
578 }
579 
580 ASIOEXT_NS_END
581 
582 #if !defined(ASIOEXT_IS_DOCUMENTATION)
583 # if defined(ASIOEXT_USE_BOOST_ASIO)
584 namespace boost {
585 # endif
586 namespace asio {
587 
588 using asioext::buffer;
590 
591 }
592 # if defined(ASIOEXT_USE_BOOST_ASIO)
593 }
594 # endif
595 #endif
596 
597 #include "asioext/impl/linear_buffer.hpp"
598 
599 #endif
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
STL namespace.
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
T min(T... args)
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&#39;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
T max(T... args)
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