8 #ifndef ASIOEXT_UNIQUEFILEHANDLE_HPP 9 #define ASIOEXT_UNIQUEFILEHANDLE_HPP 11 #include "asioext/detail/config.hpp" 13 #if ASIOEXT_HAS_PRAGMA_ONCE 17 #include "asioext/file_handle.hpp" 18 #include "asioext/file_perms.hpp" 19 #include "asioext/file_attrs.hpp" 20 #include "asioext/seek_origin.hpp" 21 #include "asioext/error_code.hpp" 96 const
file_handle::native_handle_type& handle) ASIOEXT_NOEXCEPT;
98 #ifdef ASIOEXT_HAS_MOVE 164 return handle_.is_open();
190 ASIOEXT_DECL
file_handle release() ASIOEXT_NOEXCEPT;
227 return handle_.position(ec);
233 return handle_.seek(origin, offset);
241 return handle_.seek(origin, offset, ec);
252 return handle_.size();
258 return handle_.size(ec);
264 handle_.size(new_size);
270 handle_.size(new_size, ec);
274 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
277 return handle_.permissions();
281 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
284 return handle_.permissions(ec);
288 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
290 file_perm_options::replace)
292 handle_.permissions(perms, opts);
296 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
299 handle_.permissions(perms, ec);
303 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
307 handle_.permissions(perms, opts, ec);
311 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
314 return handle_.attributes();
318 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
321 return handle_.attributes(ec);
325 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
327 file_attr_options::replace)
329 handle_.attributes(attrs, opts);
333 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
337 handle_.attributes(attrs, opts, ec);
341 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
344 handle_.attributes(attrs, ec);
350 return handle_.times();
356 return handle_.times(ec);
362 handle_.times(new_times);
368 handle_.times(new_times, ec);
377 template <
typename MutableBufferSequence>
380 return handle_.read_some(buffers);
384 template <
typename MutableBufferSequence>
388 return handle_.read_some(buffers, ec);
397 template <
typename ConstBufferSequence>
400 return handle_.write_some(buffers);
404 template <
typename ConstBufferSequence>
408 return handle_.write_some(buffers, ec);
417 template <
typename MutableBufferSequence>
421 return handle_.read_some_at(offset, buffers);
425 template <
typename MutableBufferSequence>
430 return handle_.read_some_at(offset, buffers, ec);
439 template <
typename ConstBufferSequence>
442 return handle_.write_some_at(offset, buffers);
446 template <
typename ConstBufferSequence>
451 return handle_.write_some_at(offset, buffers, ec);
466 #if defined(ASIOEXT_HEADER_ONLY) 467 # include "asioext/impl/unique_file_handle.cpp"
void times(const file_times &new_times, error_code &ec) noexcept
Change a file's time data.
Definition: unique_file_handle.hpp:366
void permissions(file_perms perms, file_perm_options opts=file_perm_options::replace)
Change file access permissions.
Definition: unique_file_handle.hpp:289
uint64_t seek(seek_origin origin, int64_t offset, error_code &ec) noexcept
Change the read/write position.
Definition: unique_file_handle.hpp:237
std::size_t write_some(const ConstBufferSequence &buffers)
Write some data to the file.
Definition: unique_file_handle.hpp:398
Container for various times associated with a file.
Definition: file_handle.hpp:34
std::size_t read_some_at(uint64_t offset, const MutableBufferSequence &buffers)
Read some data from the file at the specified offset.
Definition: unique_file_handle.hpp:418
const lowest_layer_type & lowest_layer() const noexcept
Get a const reference to the lowest layer.
Definition: unique_file_handle.hpp:145
void close(error_code &ec) noexcept
Close the handle.
Definition: unique_file_handle.hpp:174
void permissions(file_perms perms, file_perm_options opts, error_code &ec) noexcept
Change file access permissions.
Definition: unique_file_handle.hpp:304
file_times times(error_code &ec) noexcept
Get the file's time data.
Definition: unique_file_handle.hpp:354
void size(uint64_t new_size, error_code &ec) noexcept
Set the size of a file.
Definition: unique_file_handle.hpp:268
std::size_t write_some_at(uint64_t offset, const ConstBufferSequence &buffers)
Write some data to the file at the specified offset.
Definition: unique_file_handle.hpp:440
std::size_t read_some(const MutableBufferSequence &buffers)
Read some data from the file.
Definition: unique_file_handle.hpp:378
uint64_t seek(seek_origin origin, int64_t offset)
Change the read/write position.
Definition: unique_file_handle.hpp:231
RAII wrapper around file_handle.
Definition: unique_file_handle.hpp:64
bool is_open() const noexcept
Determine whether the handle is open.
Definition: unique_file_handle.hpp:162
void close()
Close the handle.
Definition: unique_file_handle.hpp:168
void attributes(file_attrs attrs, error_code &ec) noexcept
Change the file's attributes.
Definition: unique_file_handle.hpp:342
uint64_t size()
Get the size of a file.
Definition: unique_file_handle.hpp:250
file_times times()
Get the file's time data.
Definition: unique_file_handle.hpp:348
automatically_chosen error_code
Typedef for the error_code class used by this library.
Definition: error_code.hpp:37
uint64_t position(error_code &ec) noexcept
Get the current file position.
Definition: unique_file_handle.hpp:225
uint64_t position()
Get the current file position.
void times(const file_times &new_times)
Change a file's time data.
Definition: unique_file_handle.hpp:360
file_attrs attributes()
Get the file's attributes.
Definition: unique_file_handle.hpp:312
std::size_t write_some(const ConstBufferSequence &buffers, error_code &ec) noexcept
Write some data to the file.
Definition: unique_file_handle.hpp:405
seek_origin
Specifies the various position offset origins.
Definition: seek_origin.hpp:25
void size(uint64_t new_size)
Set the size of a file.
Definition: unique_file_handle.hpp:262
file_perms permissions(error_code &ec) noexcept
Get the file's current access permissions.
Definition: unique_file_handle.hpp:282
file_perms permissions()
Get the file's current access permissions.
Definition: unique_file_handle.hpp:275
unique_file_handle lowest_layer_type
A unique_file_handle is always the lowest layer.
Definition: unique_file_handle.hpp:68
std::size_t read_some(const MutableBufferSequence &buffers, error_code &ec) noexcept
Read some data from the file.
Definition: unique_file_handle.hpp:385
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.
Definition: unique_file_handle.hpp:426
void permissions(file_perms perms, error_code &ec) noexcept
Change file access permissions.
Definition: unique_file_handle.hpp:297
void attributes(file_attrs attrs, file_attr_options opts, error_code &ec) noexcept
Change the file's attributes.
Definition: unique_file_handle.hpp:334
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.
Definition: unique_file_handle.hpp:447
uint64_t size(error_code &ec) noexcept
Get the size of a file.
Definition: unique_file_handle.hpp:256
file_attrs attributes(error_code &ec) noexcept
Get the file's attributes.
Definition: unique_file_handle.hpp:319
A thin and lightweight wrapper around a native file handle.
Definition: file_handle.hpp:73
lowest_layer_type & lowest_layer() noexcept
Get a reference to the lowest layer.
Definition: unique_file_handle.hpp:132
void attributes(file_attrs attrs, file_attr_options opts=file_attr_options::replace)
Change the file's attributes.
Definition: unique_file_handle.hpp:326