9 #ifndef ASIOEXT_BASICFILE_HPP 10 #define ASIOEXT_BASICFILE_HPP 12 #include "asioext/detail/config.hpp" 14 #if ASIOEXT_HAS_PRAGMA_ONCE 18 #include "asioext/file_handle.hpp" 19 #include "asioext/file_perms.hpp" 20 #include "asioext/file_attrs.hpp" 21 #include "asioext/seek_origin.hpp" 22 #include "asioext/error_code.hpp" 23 #include "asioext/async_result.hpp" 25 #include "asioext/detail/throw_error.hpp" 26 #include "asioext/detail/move_support.hpp" 27 #include "asioext/detail/handler_type.hpp" 29 #if defined(ASIOEXT_USE_BOOST_ASIO) 30 # include <boost/asio/basic_io_object.hpp> 31 # include <boost/asio/io_service.hpp> 33 # include <asio/basic_io_object.hpp> 34 # include <asio/io_service.hpp> 37 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION) 38 # include <boost/filesystem/path.hpp> 62 template <
class FileService>
63 class basic_file :
public asio::basic_io_object<FileService>
76 explicit basic_file(asio::io_service& io_service) ASIOEXT_NOEXCEPT
77 : asio::basic_io_object<FileService>(io_service)
93 : asio::basic_io_object<FileService>(io_service)
96 this->get_service().assign(this->get_implementation(),
97 handle.native_handle(), ec);
98 detail::throw_error(ec,
"construct");
112 : asio::basic_io_object<FileService>(io_service)
115 this->get_service().assign(this->get_implementation(), handle, ec);
116 detail::throw_error(ec,
"construct");
144 file_perms perms = file_perms::create_default,
146 :
asio::basic_io_object<FileService>(io_service)
149 this->get_service().open(this->get_implementation(), filename, flags,
151 detail::throw_error(ec,
"construct");
178 basic_file(asio::io_service& io_service,
const char* filename,
181 : asio::basic_io_object<FileService>(io_service)
183 this->get_service().open(this->get_implementation(), filename, flags,
187 #if defined(ASIOEXT_WINDOWS) || defined(ASIOEXT_IS_DOCUMENTATION) 191 basic_file(asio::io_service& io_service,
const wchar_t* filename,
193 file_perms perms = file_perms::create_default,
195 :
asio::basic_io_object<FileService>(io_service)
198 this->get_service().open(this->get_implementation(), filename, flags,
200 detail::throw_error(ec,
"construct");
206 basic_file(asio::io_service& io_service,
const wchar_t* filename,
209 : asio::basic_io_object<FileService>(io_service)
211 this->get_service().open(this->get_implementation(), filename, flags,
216 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION) 219 const boost::filesystem::path& filename,
open_flags flags,
220 file_perms perms = file_perms::create_default,
222 :
asio::basic_io_object<FileService>(io_service)
225 this->get_service().open(this->get_implementation(), filename, flags,
227 detail::throw_error(ec,
"construct");
232 const boost::filesystem::path& filename,
open_flags flags,
235 : asio::basic_io_object<FileService>(io_service)
237 this->get_service().open(this->get_implementation(), filename, flags,
275 return this->get_service().native_handle(this->get_implementation());
288 this->get_service().cancel(this->get_implementation(), ec);
289 detail::throw_error(ec,
"cancel");
302 return this->get_service().cancel(this->get_implementation(), ec);
331 file_perms perms = file_perms::create_default,
335 this->get_service().open(this->get_implementation(), filename, flags, ec);
336 detail::throw_error(ec,
"open");
366 this->get_service().open(this->get_implementation(), filename, flags,
370 #if defined(ASIOEXT_WINDOWS) || defined(ASIOEXT_IS_DOCUMENTATION) 375 file_perms perms = file_perms::create_default,
379 this->get_service().open(this->get_implementation(), filename, flags,
381 detail::throw_error(ec,
"open");
391 this->get_service().open(this->get_implementation(), filename, flags,
396 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION) 402 file_perms perms = file_perms::create_default,
406 this->get_service().open(this->get_implementation(), filename, flags,
408 detail::throw_error(ec,
"open");
419 this->get_service().open(this->get_implementation(), filename, flags,
427 return this->get_service().is_open(this->get_implementation());
438 this->get_service().close(this->get_implementation(), ec);
439 detail::throw_error(ec,
"close");
450 this->get_service().close(this->get_implementation(), ec);
469 uint64_t p = this->get_service().position(this->get_implementation(), ec);
470 detail::throw_error(ec,
"position");
485 return this->get_service().position(this->get_implementation(), ec);
504 uint64_t p = this->get_service().seek(this->get_implementation(), origin,
506 detail::throw_error(ec,
"seek");
527 return this->get_service().seek(this->get_implementation(), origin, offset,
540 uint64_t s = this->get_service().size(this->get_implementation(), ec);
541 detail::throw_error(ec);
548 return this->get_service().size(this->get_implementation(), ec);
555 this->get_service().size(this->get_implementation(), new_size, ec);
556 detail::throw_error(ec);
562 this->get_service().size(this->get_implementation(), new_size, ec);
566 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
570 file_perms p = this->get_service().permissions(this->get_implementation(),
572 detail::throw_error(ec);
577 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
580 return this->get_service().permissions(this->get_implementation(), ec);
584 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
586 file_perm_options::replace)
589 this->get_service().permissions(this->get_implementation(), perms,
591 detail::throw_error(ec);
595 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
598 this->get_service().permissions(this->get_implementation(), perms, ec);
602 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
606 this->get_service().permissions(this->get_implementation(), perms,
611 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
615 file_attrs a = this->get_service().attributes(this->get_implementation(), ec);
616 detail::throw_error(ec);
621 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
624 return this->get_service().attributes(this->get_implementation(), ec);
628 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
630 file_attr_options::replace)
633 this->get_service().attributes(this->get_implementation(),
635 detail::throw_error(ec);
639 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
642 this->get_service().attributes(this->get_implementation(),
647 ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
651 this->get_service().attributes(this->get_implementation(),
659 file_times t = this->get_service().times(this->get_implementation(), ec);
660 detail::throw_error(ec);
667 return this->get_service().times(this->get_implementation(), ec);
674 this->get_service().times(this->get_implementation(), new_times, ec);
675 detail::throw_error(ec);
681 this->get_service().times(this->get_implementation(), new_times, ec);
717 template <
typename MutableBufferSequence>
722 this->get_service().read_some(this->get_implementation(), buffers, ec);
723 detail::throw_error(ec,
"read_some");
745 template <
typename MutableBufferSequence>
749 return this->get_service().read_some(this->get_implementation(), buffers,
783 template <
typename ConstBufferSequence>
788 this->get_service().write_some(this->get_implementation(), buffers, ec);
789 detail::throw_error(ec,
"write_some");
810 template <
typename ConstBufferSequence>
814 return this->get_service().write_some(this->get_implementation(), buffers,
853 template <
typename MutableBufferSequence>
858 const std::size_t s = this->get_service().read_some_at(
859 this->get_implementation(), offset, buffers, ec);
860 detail::throw_error(ec,
"read_some_at");
884 template <
typename MutableBufferSequence>
889 return this->get_service().read_some_at(this->get_implementation(), offset,
925 template <
typename ConstBufferSequence>
929 const std::size_t s = this->get_service().write_some_at(
930 this->get_implementation(), offset, buffers, ec);
931 detail::throw_error(ec,
"write_some_at");
954 template <
typename ConstBufferSequence>
959 return this->get_service().write_some_at(this->get_implementation(), offset,
1010 template <
typename MutableBufferSequence,
typename ReadHandler>
1013 ASIOEXT_MOVE_ARG(ReadHandler) handler)
1017 ASIOEXT_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
1019 return this->get_service().async_read_some(this->get_implementation(),
1020 buffers, ASIOEXT_MOVE_CAST(ReadHandler)(handler));
1069 template <
typename ConstBufferSequence,
typename WriteHandler>
1072 ASIOEXT_MOVE_ARG(WriteHandler) handler)
1076 ASIOEXT_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
1078 return this->get_service().async_write_some(this->get_implementation(),
1079 buffers, ASIOEXT_MOVE_CAST(WriteHandler)(handler));
1127 template <
typename MutableBufferSequence,
typename ReadHandler>
1129 async_read_some_at(uint64_t offset,
1131 ASIOEXT_MOVE_ARG(ReadHandler) handler)
1135 ASIOEXT_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
1137 return this->get_service().async_read_some_at(this->get_implementation(),
1138 offset, buffers, ASIOEXT_MOVE_CAST(ReadHandler)(handler));
1184 template <
typename ConstBufferSequence,
typename WriteHandler>
1186 async_write_some_at(uint64_t offset,
1188 ASIOEXT_MOVE_ARG(WriteHandler) handler)
1192 ASIOEXT_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
1194 return this->get_service().async_write_some_at(this->get_implementation(),
1195 offset, buffers, ASIOEXT_MOVE_CAST(WriteHandler)(handler));
std::size_t read_some(const MutableBufferSequence &buffers, error_code &ec) noexcept
Read some data from the file.
Definition: basic_file.hpp:746
Basic interface for (a)synchronous file I/O.
Definition: basic_file.hpp:63
std::size_t write_some_at(uint64_t offset, const ConstBufferSequence &buffers)
Write some data to the file at the specified offset.
Definition: basic_file.hpp:926
open_flags
Specifies semantics for opening files.
Definition: open_flags.hpp:45
uint64_t position(error_code &ec) noexcept
Get the current file position.
Definition: basic_file.hpp:483
Container for various times associated with a file.
Definition: file_handle.hpp:34
void times(const file_times &new_times)
Change a file's time data.
Definition: basic_file.hpp:671
file_attrs attributes()
Get the file's attributes.
Definition: basic_file.hpp:612
basic_file(asio::io_service &io_service, const boost::filesystem::path &filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept
Open a file and construct a basic_file.
Definition: basic_file.hpp:231
void open(const wchar_t *filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept
Open a file.
Definition: basic_file.hpp:387
native_handle_type native_handle() noexcept
Get the native handle representation.
Definition: basic_file.hpp:273
basic_file lowest_layer_type
A basic_file is always the lowest layer.
Definition: basic_file.hpp:70
void cancel()
Cancel all asynchronous operations associated with the file.
Definition: basic_file.hpp:285
void size(uint64_t new_size)
Set the size of a file.
Definition: basic_file.hpp:552
void permissions(file_perms perms, file_perm_options opts=file_perm_options::replace)
Change file access permissions.
Definition: basic_file.hpp:585
basic_file(asio::io_service &io_service, const char *filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept
Open a file and construct a basic_file.
Definition: basic_file.hpp:178
void cancel(error_code &ec) noexcept
Cancel all asynchronous operations associated with the file.
Definition: basic_file.hpp:300
lowest_layer_type & lowest_layer() noexcept
Get a reference to the lowest layer.
Definition: basic_file.hpp:250
file_times times()
Get the file's time data.
Definition: basic_file.hpp:656
uint64_t seek(seek_origin origin, int64_t offset)
Change the read/write position.
Definition: basic_file.hpp:501
void open(const boost::filesystem::path &filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept
Open a file.
Definition: basic_file.hpp:415
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: basic_file.hpp:885
void close(error_code &ec) noexcept
Close the handle.
Definition: basic_file.hpp:448
file_perms permissions(error_code &ec) noexcept
Get the file's current access permissions.
Definition: basic_file.hpp:578
void size(uint64_t new_size, error_code &ec) noexcept
Set the size of a file.
Definition: basic_file.hpp:560
void open(const boost::filesystem::path &filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file.
Definition: basic_file.hpp:401
void attributes(file_attrs attrs, file_attr_options opts, error_code &ec) noexcept
Change the file's attributes.
Definition: basic_file.hpp:648
basic_file(asio::io_service &io_service, const wchar_t *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file and construct a basic_file.
Definition: basic_file.hpp:191
file_perms permissions()
Get the file's current access permissions.
Definition: basic_file.hpp:567
automatically_chosen error_code
Typedef for the error_code class used by this library.
Definition: error_code.hpp:37
uint64_t position()
Get the current file position.
Definition: basic_file.hpp:466
std::size_t write_some(const ConstBufferSequence &buffers, error_code &ec) noexcept
Write some data to the file.
Definition: basic_file.hpp:811
FileService::native_handle_type native_handle_type
The operating system's native file handle type.
Definition: basic_file.hpp:67
void permissions(file_perms perms, error_code &ec) noexcept
Change file access permissions.
Definition: basic_file.hpp:596
bool is_open() const noexcept
Determine whether the handle is open.
Definition: basic_file.hpp:425
void permissions(file_perms perms, file_perm_options opts, error_code &ec) noexcept
Change file access permissions.
Definition: basic_file.hpp:603
void open(const wchar_t *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file.
Definition: basic_file.hpp:374
basic_file(asio::io_service &io_service, const native_handle_type &handle) noexcept
Construct a file using a native handle object.
Definition: basic_file.hpp:110
void times(const file_times &new_times, error_code &ec) noexcept
Change a file's time data.
Definition: basic_file.hpp:679
void attributes(file_attrs attrs, error_code &ec) noexcept
Change the file's attributes.
Definition: basic_file.hpp:640
uint64_t size(error_code &ec) noexcept
Get the size of a file.
Definition: basic_file.hpp:546
const lowest_layer_type & lowest_layer() const noexcept
Get a const reference to the lowest layer.
Definition: basic_file.hpp:263
file_times times(error_code &ec) noexcept
Get the file's time data.
Definition: basic_file.hpp:665
basic_file(asio::io_service &io_service, const char *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file and construct a basic_file.
Definition: basic_file.hpp:142
std::size_t read_some_at(uint64_t offset, const MutableBufferSequence &buffers)
Read some data from the file at the specified offset.
Definition: basic_file.hpp:854
std::size_t write_some(const ConstBufferSequence &buffers)
Write some data to the file.
Definition: basic_file.hpp:784
seek_origin
Specifies the various position offset origins.
Definition: seek_origin.hpp:25
uint64_t size()
Get the size of a file.
Definition: basic_file.hpp:537
void attributes(file_attrs attrs, file_attr_options opts=file_attr_options::replace)
Change the file's attributes.
Definition: basic_file.hpp:629
void close()
Close the handle.
Definition: basic_file.hpp:435
basic_file(asio::io_service &io_service, const boost::filesystem::path &filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file and construct a basic_file.
Definition: basic_file.hpp:218
void open(const char *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file.
Definition: basic_file.hpp:330
std::size_t read_some(const MutableBufferSequence &buffers)
Read some data from the file.
Definition: basic_file.hpp:718
uint64_t seek(seek_origin origin, int64_t offset, error_code &ec) noexcept
Change the read/write position.
Definition: basic_file.hpp:524
basic_file(asio::io_service &io_service, const file_handle &handle) noexcept
Construct a file using a native handle object.
Definition: basic_file.hpp:91
basic_file(asio::io_service &io_service, const wchar_t *filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept
Open a file and construct a basic_file.
Definition: basic_file.hpp:206
void open(const char *filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept
Open a file.
Definition: basic_file.hpp:362
basic_file(asio::io_service &io_service) noexcept
Construct an unopened file.
Definition: basic_file.hpp:76
A thin and lightweight wrapper around a native file handle.
Definition: file_handle.hpp:73
file_attrs attributes(error_code &ec) noexcept
Get the file's attributes.
Definition: basic_file.hpp:622
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: basic_file.hpp:955