...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
using lowest_layer_type = stream;
Name |
Description |
---|---|
The type of the executor associated with the object. |
|
The type of the lowest layer. |
Name |
Description |
---|---|
Appends a string to the pending input data. |
|
Start an asynchronous read. |
|
Start an asynchronous write. |
|
Direct input buffer access. |
|
Clear the pending input area. |
|
Close the stream. |
|
Close the other end of the stream. |
|
Establish a connection. |
|
Return the executor associated with the object. |
|
Get a reference to the lowest layer. |
|
Return the number of reads. |
|
Return the number of writes. |
|
Move Assignment. |
|
Set the maximum number of bytes returned by read_some. |
|
Read some data from the stream. |
|
Returns a string view representing the pending input data. |
|
Move Constructor. Construct a stream. |
|
Set the maximum number of bytes returned by write_some. |
|
Write some data to the stream. |
|
Destructor. |
An instance of this class simulates a traditional socket, while also providing features useful for unit testing. Each endpoint maintains an independent buffer called the input area. Writes from one endpoint append data to the peer's pending input area. When an endpoint performs a read and data is present in the input area, the data is delivered to the blocking or asynchronous operation. Otherwise the operation is blocked or deferred until data is made available, or until the endpoints become disconnected.
These streams may be used anywhere an algorithm accepts a reference to
a synchronous or asynchronous read or write stream. It is possible to use
a test stream in a call to boost::asio::read_until
,
or in a call to http::async_write
for example.
As with Boost.Asio I/O objects, a test::stream
constructs with a reference
to the boost::asio::io_context
to use for handling asynchronous
I/O. For asynchronous operations, the stream follows the same rules as
a traditional asio socket with respect to how completion handlers for asynchronous
operations are performed.
To facilitate testing, these streams support some additional features:
flat_buffer
, may be directly
accessed by the caller to inspect the contents before or after the
remote endpoint writes data. This allows a unit test to verify that
the received data matches.
test::stream::read_some
or test::stream::async_read_some
. This allows
predefined test vectors to be set up for testing read algorithms.
Distinct objects: Safe.
Shared objects: Unsafe. The application must also ensure that all asynchronous operations are performed within the same implicit or explicit strand.