9 #ifndef ASIOEXT_THREADPOOLFILESERVICE_HPP 10 #define ASIOEXT_THREADPOOLFILESERVICE_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/cancellation_token.hpp" 23 #include "asioext/async_result.hpp" 25 #include "asioext/detail/move_support.hpp" 26 #include "asioext/detail/cstdint.hpp" 27 #include "asioext/detail/service_base.hpp" 28 #include "asioext/detail/mutex.hpp" 29 #include "asioext/detail/work.hpp" 30 #include "asioext/detail/thread_group.hpp" 32 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION) 33 # include <boost/filesystem/path.hpp> 43 #if !defined(ASIOEXT_IS_DOCUMENTATION)
44 :
public asioext::detail::service_base<thread_pool_file_service>
46 :
public asio::io_service::service
50 #if defined(ASIOEXT_IS_DOCUMENTATION) 52 static asio::io_service::id
id;
55 #if defined(ASIOEXT_IS_DOCUMENTATION) 62 #if defined(ASIOEXT_IS_DOCUMENTATION) 99 ASIOEXT_DECL
void shutdown_service();
102 ASIOEXT_DECL
void construct(implementation_type& impl);
104 #ifdef ASIOEXT_HAS_MOVE 106 ASIOEXT_DECL
void move_construct(implementation_type& impl,
107 implementation_type& other_impl)
111 ASIOEXT_DECL
void move_assign(implementation_type& impl,
113 implementation_type& other_impl);
117 ASIOEXT_DECL
void destroy(implementation_type& impl);
120 ASIOEXT_DECL
void open(implementation_type& impl,
121 const char* filename,
126 #if defined(ASIOEXT_WINDOWS) || defined(ASIOEXT_IS_DOCUMENTATION) 128 ASIOEXT_DECL
void open(implementation_type& impl,
129 const wchar_t* filename,
135 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION) 137 ASIOEXT_DECL
void open(implementation_type& impl,
138 const boost::filesystem::path& filename,
145 ASIOEXT_DECL
void assign(implementation_type& impl,
146 const native_handle_type& handle,
152 return impl.handle_.is_open();
156 ASIOEXT_DECL
void close(implementation_type& impl,
error_code& ec)
162 return impl.handle_.native_handle();
166 ASIOEXT_DECL uint64_t position(implementation_type& impl,
170 ASIOEXT_DECL uint64_t seek(implementation_type& impl,
176 ASIOEXT_DECL uint64_t size(implementation_type& impl,
180 ASIOEXT_DECL
void size(implementation_type& impl, uint64_t new_size,
184 ASIOEXT_DECL
file_perms permissions(implementation_type& impl,
188 ASIOEXT_DECL
void permissions(implementation_type& impl,
193 ASIOEXT_DECL
void permissions(implementation_type& impl,
198 ASIOEXT_DECL
file_attrs attributes(implementation_type& impl,
202 ASIOEXT_DECL
void attributes(implementation_type& impl,
207 ASIOEXT_DECL
void attributes(implementation_type& impl,
212 ASIOEXT_DECL
file_times times(implementation_type& impl,
216 ASIOEXT_DECL
void times(implementation_type& impl,
221 ASIOEXT_DECL
void cancel(implementation_type& impl,
225 template <
typename MutableBufferSequence>
226 size_t read_some(implementation_type& impl,
231 template <
typename ConstBufferSequence>
232 size_t write_some(implementation_type& impl,
237 template <
typename MutableBufferSequence>
238 size_t read_some_at(implementation_type& impl, uint64_t offset,
244 template <
typename ConstBufferSequence>
245 size_t write_some_at(implementation_type& impl, uint64_t offset,
251 template <
typename MutableBufferSequence,
typename Handler>
253 async_read_some(implementation_type& impl,
255 ASIOEXT_MOVE_ARG(Handler) handler);
259 template <
typename ConstBufferSequence,
typename Handler>
261 async_write_some(implementation_type& impl,
263 ASIOEXT_MOVE_ARG(Handler) handler);
268 template <
typename MutableBufferSequence,
typename Handler>
270 async_read_some_at(implementation_type& impl, uint64_t offset,
272 ASIOEXT_MOVE_ARG(Handler) handler);
276 template <
typename ConstBufferSequence,
typename Handler>
278 async_write_some_at(implementation_type& impl, uint64_t offset,
280 ASIOEXT_MOVE_ARG(Handler) handler);
284 asio::io_service& get_pool_io_service()
290 struct thread_function
292 asio::io_service* service_;
298 ASIOEXT_DECL
void close_for_destruction(implementation_type& impl);
301 asio::io_service pool_;
307 detail::thread_group pool_threads_;
310 detail::mutex mutex_;
313 implementation_type* impl_list_;
318 #include "asioext/impl/thread_pool_file_service.hpp" 320 #if defined(ASIOEXT_HEADER_ONLY) 321 # include "asioext/impl/thread_pool_file_service.cpp"
open_flags
Specifies semantics for opening files.
Definition: open_flags.hpp:45
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
implementation_defined implementation_type
The type of a file implementation.
Definition: thread_pool_file_service.hpp:64
implementation_defined native_handle_type
The native handle type.
Definition: thread_pool_file_service.hpp:57
Manager for cancellation_tokens.
Definition: cancellation_token.hpp:26
static asio::io_service::id id
The unique service identifier.
Definition: thread_pool_file_service.hpp:52
automatically_chosen error_code
Typedef for the error_code class used by this library.
Definition: error_code.hpp:37
bool is_open(const implementation_type &impl) const noexcept
Determine whether the file handle is open.
Definition: thread_pool_file_service.hpp:150
unique_file_handle open(const char *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none)
Open a file and return its handle.
seek_origin
Specifies the various position offset origins.
Definition: seek_origin.hpp:25
A FileService utilizing a thread-pool for async operations.
Definition: thread_pool_file_service.hpp:42
native_handle_type native_handle(implementation_type &impl) noexcept
Get the native file handle representation.
Definition: thread_pool_file_service.hpp:160
A thin and lightweight wrapper around a native file handle.
Definition: file_handle.hpp:73