![]() |
Toolbox snapshot
The Reactive C++ Toolbox
|
OStream uses a dynamic storage acquired from the custom allocator. More...
#include <toolbox/util/Stream.hpp>
Public Member Functions | |
OStream (std::nullptr_t) noexcept | |
Constructor for initialising the StreamBuf with a null buffer. | |
OStream (StoragePtr< MaxN > storage) noexcept | |
Constructor for initialising the StreamBuf with pre-allocated storage. | |
OStream () | |
Default constructor allocates required storage. | |
~OStream ()=default | |
OStream (const OStream &)=delete | |
OStream & | operator= (const OStream &)=delete |
OStream (OStream &&)=delete | |
OStream & | operator= (OStream &&)=delete |
const char * | data () const noexcept |
bool | empty () const noexcept |
std::size_t | size () const noexcept |
std::string_view | str () const noexcept |
operator bool () const noexcept | |
StoragePtr< MaxN > | release_storage () noexcept |
Release the managed storage. | |
void | set_storage (StoragePtr< MaxN > storage) noexcept |
Update the internal storage and clear i/o state. | |
void | reset () noexcept |
Reset the current position back to the beginning of the buffer. | |
![]() | |
OStream< MaxN > & | put_data (const char *data, std::size_t data_size) |
OStream< MaxN > & | put_char (T ch) |
OStream< MaxN > & | put_num (bool val) |
OStream< MaxN > & | put_num (T val) |
OStream< MaxN > & | put_num (T val) |
OStream< MaxN > & | put (char ch) |
For compatability with std::ostream API. | |
OStream< MaxN > & | write (const char *data, std::size_t sz) |
OStream< MaxN > & | put_data (const char *data, std::size_t data_size) |
OStream< MaxN > & | put_char (T ch) |
OStream< MaxN > & | put_num (bool val) |
OStream< MaxN > & | put_num (T val) |
OStream< MaxN > & | put_num (T val) |
OStream< MaxN > & | put (char ch) |
For compatability with std::ostream API. | |
OStream< MaxN > & | write (const char *data, std::size_t sz) |
Static Public Member Functions | |
static StoragePtr< MaxN > | make_storage () |
Additional Inherited Members | |
![]() | |
static constexpr std::size_t | PutNumMaxBufRequest |
static constexpr std::size_t | PutNumMaxBufRequest |
OStream uses a dynamic storage acquired from the custom allocator.
Definition at line 38 of file Stream.hpp.
|
inlineexplicitnoexcept |
Constructor for initialising the StreamBuf with a null buffer.
Definition at line 41 of file Stream.hpp.
|
inlineexplicitnoexcept |
Constructor for initialising the StreamBuf with pre-allocated storage.
Definition at line 47 of file Stream.hpp.
|
inline |
Default constructor allocates required storage.
Definition at line 53 of file Stream.hpp.
|
default |
|
delete |
|
delete |
|
delete |
|
delete |
|
inlinestatic |
Definition at line 64 of file Stream.hpp.
|
inlinenoexcept |
Definition at line 65 of file Stream.hpp.
Referenced by toolbox::util::OStream< MaxN >::str().
|
inlinenoexcept |
Definition at line 66 of file Stream.hpp.
|
inlinenoexcept |
Definition at line 67 of file Stream.hpp.
Referenced by toolbox::util::OStream< MaxN >::str().
|
inlinenoexcept |
Definition at line 68 of file Stream.hpp.
|
inlineexplicitnoexcept |
Definition at line 72 of file Stream.hpp.
|
inlinenoexcept |
Release the managed storage.
Definition at line 77 of file Stream.hpp.
|
inlinenoexcept |
Update the internal storage and clear i/o state.
Definition at line 86 of file Stream.hpp.
|
inlinenoexcept |
Reset the current position back to the beginning of the buffer.
Definition at line 93 of file Stream.hpp.
Referenced by toolbox::util::OStream< MaxN >::release_storage(), and toolbox::util::OStream< MaxN >::set_storage().