8 #ifndef ASIOEXT_FILEHANDLE_HPP 9 #define ASIOEXT_FILEHANDLE_HPP 11 #include "asioext/detail/config.hpp" 13 #if ASIOEXT_HAS_PRAGMA_ONCE 17 #include "asioext/seek_origin.hpp" 18 #include "asioext/error_code.hpp" 19 #include "asioext/chrono.hpp" 21 #if defined(ASIOEXT_WINDOWS) 22 # include "asioext/detail/win_file_ops.hpp" 24 # include "asioext/detail/posix_file_ops.hpp" 76 #if defined(ASIOEXT_IS_DOCUMENTATION) 79 #elif defined(ASIOEXT_WINDOWS) 148 ASIOEXT_DECL
bool is_open() const ASIOEXT_NOEXCEPT;
156 ASIOEXT_DECL
void close();
165 ASIOEXT_DECL
void close(
error_code& ec) ASIOEXT_NOEXCEPT;
171 ASIOEXT_DECL
void clear() ASIOEXT_NOEXCEPT;
186 ASIOEXT_DECL uint64_t position();
197 ASIOEXT_DECL uint64_t position(
error_code& ec) ASIOEXT_NOEXCEPT;
212 ASIOEXT_DECL uint64_t seek(
seek_origin origin, int64_t offset);
244 ASIOEXT_DECL uint64_t size();
254 ASIOEXT_DECL uint64_t size(
error_code& ec) ASIOEXT_NOEXCEPT;
263 ASIOEXT_DECL
void size(uint64_t new_size);
273 ASIOEXT_DECL
void size(uint64_t new_size,
error_code& ec) ASIOEXT_NOEXCEPT;
283 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
295 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
311 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
312 ASIOEXT_DECL
void permissions(
file_perms perms,
327 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
328 ASIOEXT_DECL
void permissions(
file_perms perms,
345 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
346 ASIOEXT_DECL
void permissions(
file_perms perms,
358 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
370 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
386 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
387 ASIOEXT_DECL
void attributes(
file_attrs attrs,
402 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
403 ASIOEXT_DECL
void attributes(
file_attrs attrs,
420 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
421 ASIOEXT_DECL
void attributes(
file_attrs attrs,
461 ASIOEXT_DECL
void times(const
file_times& new_times);
473 ASIOEXT_DECL
void times(const
file_times& new_times,
624 std::
size_t read_some_at(uint64_t offset,
648 std::
size_t read_some_at(uint64_t offset,
685 std::
size_t write_some_at(uint64_t offset,
708 std::
size_t write_some_at(uint64_t offset,
715 native_handle_type handle_;
720 #include "asioext/impl/file_handle.hpp" 722 #if defined(ASIOEXT_WINDOWS) 723 # include "asioext/impl/file_handle_win.hpp" 725 # include "asioext/impl/file_handle_posix.hpp" 728 #if defined(ASIOEXT_HEADER_ONLY) 729 # include "asioext/impl/file_handle.cpp" 730 # if defined(ASIOEXT_WINDOWS) 731 # include "asioext/impl/file_handle_win.cpp" 733 # include "asioext/impl/file_handle_posix.cpp"
Container for various times associated with a file.
Definition: file_handle.hpp:34
implementation_defined native_handle_type
The operating system's native file handle type.
Definition: file_handle.hpp:78
native_handle_type native_handle() const noexcept
Get the native handle representation.
Definition: file_handle.hpp:139
bool operator==(const hook_allocator< T, Handler > &a, const hook_allocator< U, Handler > &b) noexcept
Definition: associated_allocator.hpp:170
chrono::time_point< file_clock > file_time_type
Representation of a file time (e.g. mtime)
Definition: chrono.hpp:108
file_time_type ctime
The file's creation time.
Definition: file_handle.hpp:37
automatically_chosen error_code
Typedef for the error_code class used by this library.
Definition: error_code.hpp:37
file_time_type atime
The file's last access time.
Definition: file_handle.hpp:39
file_handle lowest_layer_type
A file_handle is always the lowest layer.
Definition: file_handle.hpp:86
seek_origin
Specifies the various position offset origins.
Definition: seek_origin.hpp:25
const lowest_layer_type & lowest_layer() const noexcept
Get a const reference to the lowest layer.
Definition: file_handle.hpp:129
file_time_type mtime
The file's last modification time.
Definition: file_handle.hpp:41
A thin and lightweight wrapper around a native file handle.
Definition: file_handle.hpp:73