Asio Extensions
Additional functionality built on top of (Boost.)Asio
|
RAII wrapper around file_handle. More...
#include <asioext/unique_file_handle.hpp>
Public Types | |
typedef unique_file_handle | lowest_layer_type |
A unique_file_handle is always the lowest layer. More... | |
Public Member Functions | |
unique_file_handle () noexcept | |
Construct an empy unique_file_handle. More... | |
~unique_file_handle () | |
unique_file_handle (file_handle handle) noexcept | |
Construct a unique_file_handle using a file_handle object. More... | |
unique_file_handle (const file_handle::native_handle_type &handle) noexcept | |
Construct a unique_file_handle using a native handle object. More... | |
unique_file_handle (unique_file_handle &&other) noexcept | |
Move-construct a unique_file_handle from another. More... | |
unique_file_handle & | operator= (unique_file_handle &&other) |
Move-assign a unique_file_handle from another. More... | |
lowest_layer_type & | lowest_layer () noexcept |
Get a reference to the lowest layer. More... | |
const lowest_layer_type & | lowest_layer () const noexcept |
Get a const reference to the lowest layer. More... | |
file_handle | get () noexcept |
Get the managed file_handle. More... | |
bool | is_open () const noexcept |
Determine whether the handle is open. More... | |
void | close () |
Close the handle. More... | |
void | close (error_code &ec) noexcept |
Close the handle. More... | |
file_handle | release () noexcept |
Take ownership of the contained file_handle. More... | |
void | reset (file_handle handle) |
Replace the managed file_handle. More... | |
void | reset (file_handle handle, error_code &ec) noexcept |
Replace the managed file_handle. More... | |
Positioning functions | |
uint64_t | position () |
Get the current file position. More... | |
uint64_t | position (error_code &ec) noexcept |
Get the current file position. More... | |
uint64_t | seek (seek_origin origin, int64_t offset) |
Change the read/write position. More... | |
uint64_t | seek (seek_origin origin, int64_t offset, error_code &ec) noexcept |
Change the read/write position. More... | |
Metadata functions | |
uint64_t | size () |
Get the size of a file. More... | |
uint64_t | size (error_code &ec) noexcept |
Get the size of a file. More... | |
void | size (uint64_t new_size) |
Set the size of a file. More... | |
void | size (uint64_t new_size, error_code &ec) noexcept |
Set the size of a file. More... | |
file_perms | permissions () |
Get the file's current access permissions. More... | |
file_perms | permissions (error_code &ec) noexcept |
Get the file's current access permissions. More... | |
void | permissions (file_perms perms, file_perm_options opts=file_perm_options::replace) |
Change file access permissions. More... | |
void | permissions (file_perms perms, error_code &ec) noexcept |
Change file access permissions. More... | |
void | permissions (file_perms perms, file_perm_options opts, error_code &ec) noexcept |
Change file access permissions. More... | |
file_attrs | attributes () |
Get the file's attributes. More... | |
file_attrs | attributes (error_code &ec) noexcept |
Get the file's attributes. More... | |
void | attributes (file_attrs attrs, file_attr_options opts=file_attr_options::replace) |
Change the file's attributes. More... | |
void | attributes (file_attrs attrs, file_attr_options opts, error_code &ec) noexcept |
Change the file's attributes. More... | |
void | attributes (file_attrs attrs, error_code &ec) noexcept |
Change the file's attributes. More... | |
file_times | times () |
Get the file's time data. More... | |
file_times | times (error_code &ec) noexcept |
Get the file's time data. More... | |
void | times (const file_times &new_times) |
Change a file's time data. More... | |
void | times (const file_times &new_times, error_code &ec) noexcept |
Change a file's time data. More... | |
SyncReadStream functions | |
template<typename MutableBufferSequence > | |
std::size_t | read_some (const MutableBufferSequence &buffers) |
Read some data from the file. More... | |
template<typename MutableBufferSequence > | |
std::size_t | read_some (const MutableBufferSequence &buffers, error_code &ec) noexcept |
Read some data from the file. More... | |
SyncWriteStream functions | |
template<typename ConstBufferSequence > | |
std::size_t | write_some (const ConstBufferSequence &buffers) |
Write some data to the file. More... | |
template<typename ConstBufferSequence > | |
std::size_t | write_some (const ConstBufferSequence &buffers, error_code &ec) noexcept |
Write some data to the file. More... | |
SyncRandomAccessReadDevice functions | |
template<typename MutableBufferSequence > | |
std::size_t | read_some_at (uint64_t offset, const MutableBufferSequence &buffers) |
Read some data from the file at the specified offset. More... | |
template<typename MutableBufferSequence > | |
std::size_t | read_some_at (uint64_t offset, const MutableBufferSequence &buffers, error_code &ec) noexcept |
Read some data from the file at the specified offset. More... | |
SyncRandomAccessWriteDevice functions | |
template<typename ConstBufferSequence > | |
std::size_t | write_some_at (uint64_t offset, const ConstBufferSequence &buffers) |
Write some data to the file at the specified offset. More... | |
template<typename ConstBufferSequence > | |
std::size_t | write_some_at (uint64_t offset, const ConstBufferSequence &buffers, error_code &ec) noexcept |
Write some data to the file at the specified offset. More... | |
RAII wrapper around file_handle.
The unique_file_handle class provides a std::unique_ptr<>-like wrapper around a file_handle. The unique_file_handle owns the contained native handle.
unique_file_handle objects cannot be copied, but are move-constructible/ move-assignable if a compiler with C++11 support is used.
unique_file_handle models the following asio concepts:
A unique_file_handle is always the lowest layer.
|
noexcept |
Construct an empy unique_file_handle.
This constructor initializes the unique_file_handle to an empty state.
asioext::unique_file_handle::~unique_file_handle | ( | ) |
Destroy a unique_file_handle.
This destructor attempts to close the currently owned file handle. Failures are silently ignored.
|
explicitnoexcept |
Construct a unique_file_handle using a file_handle object.
This constructor takes ownership of the given file_handle.
handle | The file_handle object which shall be assigned to this unique_file_handle object. |
|
explicitnoexcept |
Construct a unique_file_handle using a native handle object.
This constructor takes ownership of the given native handle.
handle | The native handle object which shall be assigned to this unique_file_handle object. |
|
noexcept |
Move-construct a unique_file_handle from another.
This constructor moves a handle from one object to another.
other | The other unique_file_handle object from which the move will occur. |
unique_file_handle()
constructor.
|
inline |
Get the file's attributes.
This function returns the file's attributes as a file_attrs
bitmask.
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Get the file's attributes.
This function returns the file's attributes as a file_attrs
bitmask.
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Change the file's attributes.
This function changes the file's attributes. Depending on whether file_attr_options::add_attrs
, file_attr_options::remove_attrs
are set, attributes are either added, removed or replaced.
attrs | Attributes to set, add or remove. |
opts | Options controlling this function's behavior. |
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Change the file's attributes.
This function changes the file's attributes. Depending on whether file_attr_options::add_attrs
, file_attr_options::remove_attrs
are set, attributes are either added, removed or replaced.
attrs | Attributes to set, add or remove. |
opts | Options controlling this function's behavior. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inlinenoexcept |
Change the file's attributes.
This function changes the file's attributes. Depending on whether file_attr_options::add_attrs
, file_attr_options::remove_attrs
are set, attributes are either added, removed or replaced.
attrs | Attributes to set, add or remove. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Close the handle.
This function closes the contained handle. Does nothing if the object contains no handle.
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Close the handle.
This function closes the contained handle. Does nothing if the object contains no handle.
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inlinenoexcept |
Get the managed file_handle.
This function returns a copy of the managed file_handle.
|
inlinenoexcept |
Determine whether the handle is open.
|
inlinenoexcept |
Get a reference to the lowest layer.
This function returns a reference to the lowest layer in a stack of layers. Since a unique_file_handle cannot contain any further layers, it simply returns a reference to itself.
|
inlinenoexcept |
Get a const reference to the lowest layer.
This function returns a const reference to the lowest layer in a stack of layers. Since a unique_file_handle cannot contain any further layers, it simply returns a reference to itself.
unique_file_handle& asioext::unique_file_handle::operator= | ( | unique_file_handle && | other | ) |
Move-assign a unique_file_handle from another.
This assignment operator moves a handle from one object to another. If this object already owns a file handle, the current handle will be closed. This operation is potentially throwing.
other | The other unique_file_handle object from which the move will occur. |
unique_file_handle()
constructor.
|
inline |
Get the file's current access permissions.
This function returns the file's current access permissions as a file_perms
bitmask.
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Get the file's current access permissions.
This function returns the file's current access permissions as a file_perms
bitmask.
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Change file access permissions.
This function changes the file's access permissions. Depending on whether file_perm_options::add_perms
, file_perm_options::remove_perms
are set, permissions are either added, removed or replaced.
perms | Permissions to set, add or remove. |
opts | Options controlling this function's behavior. |
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Change file access permissions.
This function changes the file's access permissions. Depending on whether file_perm_options::add_perms
, file_perm_options::remove_perms
are set, permissions are either added, removed or replaced.
perms | Permissions to set, add or remove. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inlinenoexcept |
Change file access permissions.
This function changes the file's access permissions. Depending on whether file_perm_options::add_perms
, file_perm_options::remove_perms
are set, permissions are either added, removed or replaced.
perms | Permissions to set, add or remove. |
opts | Options controlling this function's behavior. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Get the current file position.
This function retrieves the current read/write position of this file handle, relative to the file's beginning.
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Get the current file position.
This function retrieves the current read/write position of this file handle, relative to the file's beginning.
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Read some data from the file.
This function is used to read data from the file, starting at the file_handle's current file position. The function call will block until one or more bytes of data has been read successfully, or until an error occurs.
buffers | One or more buffers into which the data will be read. |
asio::system_error | Thrown on failure. An error code of asio::error::eof indicates that the end of file was reached. |
asio::read
function if you need to ensure that the requested amount of data is read before the blocking operation completes.asio::buffer
function as follows: asio::buffer
documentation for information on reading into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
|
inlinenoexcept |
Read some data from the file.
This function is used to read data from the file, starting at the file_handle's current file position. The function call will block until one or more bytes of data has been read successfully, or until an error occurs.
buffers | One or more buffers into which the data will be read. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
asio::read
function if you need to ensure that the requested amount of data is read before the blocking operation completes.
|
inline |
Read some data from the file at the specified offset.
This function is used to read data from the file. The function call will block until one or more bytes of data has been read successfully, or until an error occurs.
offset | The offset at which the data will be read, relative to the file's beginning. |
buffers | One or more buffers into which the data will be read. |
asio::system_error | Thrown on failure. An error code of asio::error::eof indicates that the end of the file was reached. |
asio::read_at
function if you need to ensure that the requested amount of data is read before the blocking operation completes.asio::buffer
function as follows: asio::buffer
documentation for information on reading into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
|
inlinenoexcept |
Read some data from the file at the specified offset.
This function is used to read data from the file. The function call will block until one or more bytes of data has been read successfully, or until an error occurs.
offset | The offset at which the data will be read, relative to the file's beginning. |
buffers | One or more buffers into which the data will be read. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
asio::read_at
function if you need to ensure that the requested amount of data is read before the blocking operation completes.
|
noexcept |
Take ownership of the contained file_handle.
This function transfers ownership of the contained file_handle to the caller. The unique_file_handle object is reset to an empty state (i.e. no file opened).
void asioext::unique_file_handle::reset | ( | file_handle | handle | ) |
Replace the managed file_handle.
This function closes the currently managed handle (if any), and replaces it with the given one.
handle | The new file_handle to manage. Ownership is transferred to the unique_file_handle. |
asio::system_error | Thrown on failure. |
|
noexcept |
Replace the managed file_handle.
This function closes the currently managed handle (if any), and replaces it with the given one.
handle | The new file_handle to manage. Ownership is transferred to the unique_file_handle. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Change the read/write position.
This function repositions the current read/write position of this file_handle by offset
, relative to the origin specified by origin
.
origin | The origin of offset . |
offset | The offset by which the current position's modified. |
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Change the read/write position.
This function repositions the current read/write position of this file_handle by offset
, relative to the origin specified by origin
.
origin | The origin of offset . |
offset | The offset by which the current position's modified. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Get the size of a file.
This function retrieves the size of a file, in bytes.
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Get the size of a file.
This function retrieves the size of a file, in bytes.
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Set the size of a file.
This function resizes the file so its new size matches new_size
.
new_size | The new total size of the file (in bytes). |
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Set the size of a file.
This function resizes the file so its new size matches new_size
.
new_size | The new total size of the file (in bytes). |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Get the file's time data.
This function retrieves the various times associated with a file and copies them into a file_times
structure.
Times in the file_times struct that are not available for this file are zero-initialized.
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Get the file's time data.
This function retrieves the various times associated with a file and copies them into a file_times
structure.
Times in the file_times struct that are not available for this file are zero-initialized.
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Change a file's time data.
This function replaces a file's time data with the given values. File times that are set to zero inside the file_times
structure remain unchanged.
new_times | The new file times. Zero values are ignored. |
asio::system_error | Thrown on failure. |
|
inlinenoexcept |
Change a file's time data.
This function replaces a file's time data with the given values. File times that are set to zero inside the file_times
structure remain unchanged.
new_times | The new file times. Zero values are ignored. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
|
inline |
Write some data to the file.
This function is used to write data to the file, starting at the file_handle's current file position. The function call will block until one or more bytes of the data has been written successfully, or until an error occurs.
buffers | One or more data buffers to be written to the file. |
asio::system_error | Thrown on failure. |
asio::write
function if you need to ensure that all data is written before the blocking operation completes.asio::buffer
function as follows: asio::buffer
documentation for information on writing multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
|
inlinenoexcept |
Write some data to the file.
This function is used to write data to the file, starting at the file_handle's current file position. The function call will block until one or more bytes of the data has been written successfully, or until an error occurs.
buffers | One or more data buffers to be written to the file. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
asio::write
function if you need to ensure that all data is written before the blocking operation completes.
|
inline |
Write some data to the file at the specified offset.
This function is used to write data to the file. The function call will block until one or more bytes of the data has been written successfully, or until an error occurs.
offset | The offset at which the data will be written, relative to the file's beginning. |
buffers | One or more data buffers to be written. |
asio::system_error | Thrown on failure. |
asio::write_at
function if you need to ensure that all data is written before the blocking operation completes.asio::buffer
function as follows: asio::buffer
documentation for information on writing multiple buffers in one go, and how to use it with arrays, boost::array or std::vector.
|
inlinenoexcept |
Write some data to the file at the specified offset.
This function is used to write data to the file. The function call will block until one or more bytes of the data has been written successfully, or until an error occurs.
offset | The offset at which the data will be written, relative to the file's beginning. |
buffers | One or more data buffers to be written to the handle. |
ec | Set to indicate what error occurred. If no error occurred, the object is reset. |
asio::write_at
function if you need to ensure that all data is written before the blocking operation completes.