Clementine
Macros | Functions
asio::buffer

The asio::buffer function is used to create a buffer object to represent raw memory, an array of POD elements, a vector of POD elements, or a std::string. More...

Macros

#define ASIO_MUTABLE_BUFFER   mutable_buffers_1
 
#define ASIO_CONST_BUFFER   const_buffers_1
 

Functions

ASIO_MUTABLE_BUFFER asio::buffer (const mutable_buffer &b) ASIO_NOEXCEPT
 Create a new modifiable buffer from an existing buffer. More...
 
ASIO_MUTABLE_BUFFER asio::buffer (const mutable_buffer &b, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new modifiable buffer from an existing buffer. More...
 
ASIO_CONST_BUFFER asio::buffer (const const_buffer &b) ASIO_NOEXCEPT
 Create a new non-modifiable buffer from an existing buffer. More...
 
ASIO_CONST_BUFFER asio::buffer (const const_buffer &b, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new non-modifiable buffer from an existing buffer. More...
 
ASIO_MUTABLE_BUFFER asio::buffer (void *data, std::size_t size_in_bytes) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given memory range. More...
 
ASIO_CONST_BUFFER asio::buffer (const void *data, std::size_t size_in_bytes) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given memory range. More...
 
template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer (PodType(&data)[N]) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer (PodType(&data)[N], std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer (const PodType(&data)[N]) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer (const PodType(&data)[N], std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer (boost::array< PodType, N > &data) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer (boost::array< PodType, N > &data, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer (boost::array< const PodType, N > &data) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given POD array. More...
 
template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer (boost::array< const PodType, N > &data, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given POD array. More...
 
template<typename PodType , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer (std::vector< PodType, Allocator > &data) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given POD vector. More...
 
template<typename PodType , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer (std::vector< PodType, Allocator > &data, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given POD vector. More...
 
template<typename PodType , typename Allocator >
ASIO_CONST_BUFFER asio::buffer (const std::vector< PodType, Allocator > &data) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given POD vector. More...
 
template<typename PodType , typename Allocator >
ASIO_CONST_BUFFER asio::buffer (const std::vector< PodType, Allocator > &data, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given POD vector. More...
 
template<typename Elem , typename Traits , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer (std::basic_string< Elem, Traits, Allocator > &data) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given string. More...
 
template<typename Elem , typename Traits , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer (std::basic_string< Elem, Traits, Allocator > &data, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new modifiable buffer that represents the given string. More...
 
template<typename Elem , typename Traits , typename Allocator >
ASIO_CONST_BUFFER asio::buffer (const std::basic_string< Elem, Traits, Allocator > &data) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given string. More...
 
template<typename Elem , typename Traits , typename Allocator >
ASIO_CONST_BUFFER asio::buffer (const std::basic_string< Elem, Traits, Allocator > &data, std::size_t max_size_in_bytes) ASIO_NOEXCEPT
 Create a new non-modifiable buffer that represents the given string. More...
 

Detailed Description

The asio::buffer function is used to create a buffer object to represent raw memory, an array of POD elements, a vector of POD elements, or a std::string.

A buffer object represents a contiguous region of memory as a 2-tuple consisting of a pointer and size in bytes. A tuple of the form {void*, size_t} specifies a mutable (modifiable) region of memory. Similarly, a tuple of the form {const void*, size_t} specifies a const (non-modifiable) region of memory. These two forms correspond to the classes mutable_buffer and const_buffer, respectively. To mirror C++'s conversion rules, a mutable_buffer is implicitly convertible to a const_buffer, and the opposite conversion is not permitted.

The simplest use case involves reading or writing a single buffer of a specified size:

sock.send(asio::buffer(data, size));

In the above example, the return value of asio::buffer meets the requirements of the ConstBufferSequence concept so that it may be directly passed to the socket's write function. A buffer created for modifiable memory also meets the requirements of the MutableBufferSequence concept.

An individual buffer may be created from a builtin array, std::vector, std::array or boost::array of POD elements. This helps prevent buffer overruns by automatically determining the size of the buffer:

char d1[128];
size_t bytes_transferred = sock.receive(asio::buffer(d1));
std::vector<char> d2(128);
bytes_transferred = sock.receive(asio::buffer(d2));
std::array<char, 128> d3;
bytes_transferred = sock.receive(asio::buffer(d3));
bytes_transferred = sock.receive(asio::buffer(d4));

In all three cases above, the buffers created are exactly 128 bytes long. Note that a vector is never automatically resized when creating or using a buffer. The buffer size is determined using the vector's size() member function, and not its capacity.

Accessing Buffer Contents

The contents of a buffer may be accessed using the data() and size() member functions:

std::size_t s1 = b1.size();
unsigned char* p1 = static_cast<unsigned char*>(b1.data());
std::size_t s2 = b2.size();
const void* p2 = b2.data();

The data() member function permits violations of type safety, so uses of it in application code should be carefully considered.

For convenience, a buffer_size function is provided that works with both buffers and buffer sequences (that is, types meeting the ConstBufferSequence or MutableBufferSequence type requirements). In this case, the function returns the total size of all buffers in the sequence.

Buffer Copying

The asio::buffer_copy function may be used to copy raw bytes between individual buffers and buffer sequences.

In particular, when used with the buffer_size function, the asio::buffer_copy function can be used to linearise a sequence of buffers. For example:

vector<const_buffer> buffers = ...;
vector<unsigned char> data(asio::buffer_size(buffers));

Note that asio::buffer_copy is implemented in terms of memcpy, and consequently it cannot be used to copy between overlapping memory regions.

Buffer Invalidation

A buffer object does not have any ownership of the memory it refers to. It is the responsibility of the application to ensure the memory region remains valid until it is no longer required for an I/O operation. When the memory is no longer available, the buffer is said to have been invalidated.

For the asio::buffer overloads that accept an argument of type std::vector, the buffer objects returned are invalidated by any vector operation that also invalidates all references, pointers and iterators referring to the elements in the sequence (C++ Std, 23.2.4)

For the asio::buffer overloads that accept an argument of type std::basic_string, the buffer objects returned are invalidated according to the rules defined for invalidation of references, pointers and iterators referring to elements of the sequence (C++ Std, 21.3).

Buffer Arithmetic

Buffer objects may be manipulated using simple arithmetic in a safe way which helps prevent buffer overruns. Consider an array initialised as follows:

boost::array<char, 6> a = { 'a', 'b', 'c', 'd', 'e' };

A buffer object b1 created using:

b1 = asio::buffer(a);

represents the entire array, { 'a', 'b', 'c', 'd', 'e' }. An optional second argument to the asio::buffer function may be used to limit the size, in bytes, of the buffer:

b2 = asio::buffer(a, 3);

such that b2 represents the data { 'a', 'b', 'c' }. Even if the size argument exceeds the actual size of the array, the size of the buffer object created will be limited to the array size.

An offset may be applied to an existing buffer to create a new one:

b3 = b1 + 2;

where b3 will set to represent { 'c', 'd', 'e' }. If the offset exceeds the size of the existing buffer, the newly created buffer will be empty.

Both an offset and size may be specified to create a buffer that corresponds to a specific range of bytes within an existing buffer:

b4 = asio::buffer(b1 + 1, 3);

so that b4 will refer to the bytes { 'b', 'c', 'd' }.

Buffers and Scatter-Gather I/O

To read or write using multiple buffers (i.e. scatter-gather I/O), multiple buffer objects may be assigned into a container that supports the MutableBufferSequence (for read) or ConstBufferSequence (for write) concepts:

char d1[128];
std::vector<char> d2(128);
asio::buffer(d3) };
bytes_transferred = sock.receive(bufs1);
std::vector<const_buffer> bufs2;
bufs2.push_back(asio::buffer(d1));
bufs2.push_back(asio::buffer(d2));
bufs2.push_back(asio::buffer(d3));
bytes_transferred = sock.send(bufs2);

Function Documentation

◆ buffer() [1/22]

ASIO_MUTABLE_BUFFER asio::buffer ( const mutable_buffer b)
inline

Create a new modifiable buffer from an existing buffer.

Returns
mutable_buffer(b).

◆ buffer() [2/22]

ASIO_MUTABLE_BUFFER asio::buffer ( const mutable_buffer b,
std::size_t  max_size_in_bytes 
)
inline

Create a new modifiable buffer from an existing buffer.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
b.data(),
min(b.size(), max_size_in_bytes));

◆ buffer() [3/22]

ASIO_CONST_BUFFER asio::buffer ( const const_buffer b)
inline

Create a new non-modifiable buffer from an existing buffer.

Returns
const_buffer(b).

◆ buffer() [4/22]

ASIO_CONST_BUFFER asio::buffer ( const const_buffer b,
std::size_t  max_size_in_bytes 
)
inline

Create a new non-modifiable buffer from an existing buffer.

Returns
A const_buffer value equivalent to:
const_buffer(
b.data(),
min(b.size(), max_size_in_bytes));

◆ buffer() [5/22]

ASIO_MUTABLE_BUFFER asio::buffer ( void *  data,
std::size_t  size_in_bytes 
)
inline

Create a new modifiable buffer that represents the given memory range.

Returns
mutable_buffer(data, size_in_bytes).

◆ buffer() [6/22]

ASIO_CONST_BUFFER asio::buffer ( const void *  data,
std::size_t  size_in_bytes 
)
inline

Create a new non-modifiable buffer that represents the given memory range.

Returns
const_buffer(data, size_in_bytes).

◆ buffer() [7/22]

template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer ( PodType(&)  data[N])
inline

Create a new modifiable buffer that represents the given POD array.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
static_cast<void*>(data),
N * sizeof(PodType));

◆ buffer() [8/22]

template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer ( PodType(&)  data[N],
std::size_t  max_size_in_bytes 
)
inline

Create a new modifiable buffer that represents the given POD array.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
static_cast<void*>(data),
min(N * sizeof(PodType), max_size_in_bytes));

◆ buffer() [9/22]

template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer ( const PodType(&)  data[N])
inline

Create a new non-modifiable buffer that represents the given POD array.

Returns
A const_buffer value equivalent to:
const_buffer(
static_cast<const void*>(data),
N * sizeof(PodType));

◆ buffer() [10/22]

template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer ( const PodType(&)  data[N],
std::size_t  max_size_in_bytes 
)
inline

Create a new non-modifiable buffer that represents the given POD array.

Returns
A const_buffer value equivalent to:
const_buffer(
static_cast<const void*>(data),
min(N * sizeof(PodType), max_size_in_bytes));

◆ buffer() [11/22]

template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer ( boost::array< PodType, N > &  data)
inline

Create a new modifiable buffer that represents the given POD array.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
data.data(),
data.size() * sizeof(PodType));

◆ buffer() [12/22]

template<typename PodType , std::size_t N>
ASIO_MUTABLE_BUFFER asio::buffer ( boost::array< PodType, N > &  data,
std::size_t  max_size_in_bytes 
)
inline

Create a new modifiable buffer that represents the given POD array.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
data.data(),
min(data.size() * sizeof(PodType), max_size_in_bytes));

◆ buffer() [13/22]

template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer ( boost::array< const PodType, N > &  data)
inline

Create a new non-modifiable buffer that represents the given POD array.

Returns
A const_buffer value equivalent to:
const_buffer(
data.data(),
data.size() * sizeof(PodType));

◆ buffer() [14/22]

template<typename PodType , std::size_t N>
ASIO_CONST_BUFFER asio::buffer ( boost::array< const PodType, N > &  data,
std::size_t  max_size_in_bytes 
)
inline

Create a new non-modifiable buffer that represents the given POD array.

Returns
A const_buffer value equivalent to:
const_buffer(
data.data(),
min(data.size() * sizeof(PodType), max_size_in_bytes));

◆ buffer() [15/22]

template<typename PodType , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer ( std::vector< PodType, Allocator > &  data)
inline

Create a new modifiable buffer that represents the given POD vector.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
data.size() ? &data[0] : 0,
data.size() * sizeof(PodType));
Note
The buffer is invalidated by any vector operation that would also invalidate iterators.

◆ buffer() [16/22]

template<typename PodType , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer ( std::vector< PodType, Allocator > &  data,
std::size_t  max_size_in_bytes 
)
inline

Create a new modifiable buffer that represents the given POD vector.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
data.size() ? &data[0] : 0,
min(data.size() * sizeof(PodType), max_size_in_bytes));
Note
The buffer is invalidated by any vector operation that would also invalidate iterators.

◆ buffer() [17/22]

template<typename PodType , typename Allocator >
ASIO_CONST_BUFFER asio::buffer ( const std::vector< PodType, Allocator > &  data)
inline

Create a new non-modifiable buffer that represents the given POD vector.

Returns
A const_buffer value equivalent to:
const_buffer(
data.size() ? &data[0] : 0,
data.size() * sizeof(PodType));
Note
The buffer is invalidated by any vector operation that would also invalidate iterators.

◆ buffer() [18/22]

template<typename PodType , typename Allocator >
ASIO_CONST_BUFFER asio::buffer ( const std::vector< PodType, Allocator > &  data,
std::size_t  max_size_in_bytes 
)
inline

Create a new non-modifiable buffer that represents the given POD vector.

Returns
A const_buffer value equivalent to:
const_buffer(
data.size() ? &data[0] : 0,
min(data.size() * sizeof(PodType), max_size_in_bytes));
Note
The buffer is invalidated by any vector operation that would also invalidate iterators.

◆ buffer() [19/22]

template<typename Elem , typename Traits , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer ( std::basic_string< Elem, Traits, Allocator > &  data)
inline

Create a new modifiable buffer that represents the given string.

Returns
mutable_buffer(data.size() ? &data[0] : 0, data.size() * sizeof(Elem)).
Note
The buffer is invalidated by any non-const operation called on the given string object.

◆ buffer() [20/22]

template<typename Elem , typename Traits , typename Allocator >
ASIO_MUTABLE_BUFFER asio::buffer ( std::basic_string< Elem, Traits, Allocator > &  data,
std::size_t  max_size_in_bytes 
)
inline

Create a new modifiable buffer that represents the given string.

Returns
A mutable_buffer value equivalent to:
mutable_buffer(
data.size() ? &data[0] : 0,
min(data.size() * sizeof(Elem), max_size_in_bytes));
Note
The buffer is invalidated by any non-const operation called on the given string object.

◆ buffer() [21/22]

template<typename Elem , typename Traits , typename Allocator >
ASIO_CONST_BUFFER asio::buffer ( const std::basic_string< Elem, Traits, Allocator > &  data)
inline

Create a new non-modifiable buffer that represents the given string.

Returns
const_buffer(data.data(), data.size() * sizeof(Elem)).
Note
The buffer is invalidated by any non-const operation called on the given string object.

◆ buffer() [22/22]

template<typename Elem , typename Traits , typename Allocator >
ASIO_CONST_BUFFER asio::buffer ( const std::basic_string< Elem, Traits, Allocator > &  data,
std::size_t  max_size_in_bytes 
)
inline

Create a new non-modifiable buffer that represents the given string.

Returns
A const_buffer value equivalent to:
const_buffer(
data.data(),
min(data.size() * sizeof(Elem), max_size_in_bytes));
Note
The buffer is invalidated by any non-const operation called on the given string object.