Asio Extensions
Additional functionality built on top of (Boost.)Asio
basic_file.hpp
1 /// @file
2 /// Defines the basic_file class
3 ///
4 /// @copyright Copyright (c) 2016 Tim Niederhausen (tim@rnc-ag.de)
5 /// Distributed under the Boost Software License, Version 1.0.
6 /// (See accompanying file LICENSE_1_0.txt or copy at
7 /// http://www.boost.org/LICENSE_1_0.txt)
8 
9 #ifndef ASIOEXT_BASICFILE_HPP
10 #define ASIOEXT_BASICFILE_HPP
11 
12 #include "asioext/detail/config.hpp"
13 
14 #if ASIOEXT_HAS_PRAGMA_ONCE
15 # pragma once
16 #endif
17 
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"
24 
25 #include "asioext/detail/throw_error.hpp"
26 #include "asioext/detail/move_support.hpp"
27 #include "asioext/detail/handler_type.hpp"
28 
29 #if defined(ASIOEXT_USE_BOOST_ASIO)
30 # include <boost/asio/basic_io_object.hpp>
31 # include <boost/asio/io_service.hpp>
32 #else
33 # include <asio/basic_io_object.hpp>
34 # include <asio/io_service.hpp>
35 #endif
36 
37 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION)
38 # include <boost/filesystem/path.hpp>
39 #endif
40 
41 ASIOEXT_NS_BEGIN
42 
43 /// @ingroup files_handle
44 /// @brief Basic interface for (a)synchronous file I/O.
45 ///
46 /// This class template provides a generic interface for (a)synchronous
47 /// file I/O.
48 ///
49 /// basic_file models the following asio concepts:
50 /// * SyncRandomAccessReadDevice
51 /// * SyncRandomAccessWriteDevice
52 /// * SyncReadStream
53 /// * SyncWriteStream
54 /// * AsyncReadStream
55 /// * AsyncWriteStream
56 /// * AsyncRandomAccessReadDevice
57 /// * AsyncRandomAccessWriteDevice
58 ///
59 /// @par Thread Safety:
60 /// @e Distinct @e objects: Safe.@n
61 /// @e Shared @e objects: Unsafe.
62 template <class FileService>
63 class basic_file : public asio::basic_io_object<FileService>
64 {
65 public:
66  /// The operating system's native file handle type.
67  typedef typename FileService::native_handle_type native_handle_type;
68 
69  /// A basic_file is always the lowest layer.
71 
72  /// @brief Construct an unopened file.
73  ///
74  /// @param io_service The io_service object that the file will use to
75  /// dispatch handlers for any asynchronous operations performed on it.
76  explicit basic_file(asio::io_service& io_service) ASIOEXT_NOEXCEPT
77  : asio::basic_io_object<FileService>(io_service)
78  {
79  // ctor
80  }
81 
82  /// @brief Construct a file using a native handle object.
83  ///
84  /// This constructor takes ownership of the given wrapped native handle.
85  ///
86  /// @param io_service The io_service object that the file will use to
87  /// dispatch handlers for any asynchronous operations performed on it.
88  ///
89  /// @param handle The native handle object, wrapped in a file_handle,
90  /// which shall be assigned to this basic_file object.
91  basic_file(asio::io_service& io_service,
92  const file_handle& handle) ASIOEXT_NOEXCEPT
93  : asio::basic_io_object<FileService>(io_service)
94  {
95  error_code ec;
96  this->get_service().assign(this->get_implementation(),
97  handle.native_handle(), ec);
98  detail::throw_error(ec, "construct");
99  }
100 
101  /// @brief Construct a file using a native handle object.
102  ///
103  /// This constructor takes ownership of the given native handle.
104  ///
105  /// @param io_service The io_service object that the file will use to
106  /// dispatch handlers for any asynchronous operations performed on it.
107  ///
108  /// @param handle The native handle object which shall be assigned to
109  /// this basic_file object.
110  basic_file(asio::io_service& io_service,
111  const native_handle_type& handle) ASIOEXT_NOEXCEPT
112  : asio::basic_io_object<FileService>(io_service)
113  {
114  error_code ec;
115  this->get_service().assign(this->get_implementation(), handle, ec);
116  detail::throw_error(ec, "construct");
117  }
118 
119  /// @brief Open a file and construct a basic_file.
120  ///
121  /// This constructor opens a new handle to the given file.
122  ///
123  /// For details, see @ref open(const char*,open_flags,file_perms,file_attrs)
124  ///
125  /// @param io_service The io_service object that the file will use to
126  /// dispatch handlers for any asynchronous operations performed on it.
127  ///
128  /// @param filename The path of the file to open.
129  ///
130  /// @param flags Flags used to open the file.
131  /// For a detailed reference, see @ref open_flags.
132  ///
133  /// @param perms Permissions for newly created files. Unused if an existing
134  /// file is opened. Defaults to @ref file_perms::create_default.
135  ///
136  /// @param attrs Attributes for newly created files. Unused if an existing
137  /// file is opened. Defaults to @ref file_attrs::none.
138  ///
139  /// @throws asio::system_error Thrown on failure.
140  ///
141  /// @see open_flags
142  basic_file(asio::io_service& io_service,
143  const char* filename, open_flags flags,
144  file_perms perms = file_perms::create_default,
145  file_attrs attrs = file_attrs::none)
146  : asio::basic_io_object<FileService>(io_service)
147  {
148  error_code ec;
149  this->get_service().open(this->get_implementation(), filename, flags,
150  perms, attrs, ec);
151  detail::throw_error(ec, "construct");
152  }
153 
154  /// @brief Open a file and construct a basic_file.
155  ///
156  /// This constructor opens a new handle to the given file.
157  ///
158  /// For details, see @ref open(const char*,open_flags,file_perms,file_attrs)
159  ///
160  /// @param io_service The io_service object that the file will use to
161  /// dispatch handlers for any asynchronous operations performed on it.
162  ///
163  /// @param filename The path of the file to open.
164  ///
165  /// @param flags Flags used to open the file.
166  /// For a detailed reference, see @ref open_flags.
167  ///
168  /// @param perms Permissions for newly created files. Unused if an existing
169  /// file is opened. Defaults to @ref file_perms::create_default.
170  ///
171  /// @param attrs Attributes for newly created files. Unused if an existing
172  /// file is opened. Defaults to @ref file_attrs::none.
173  ///
174  /// @param ec Set to indicate what error occurred. If no error occurred,
175  /// the object is reset.
176  ///
177  /// @see open_flags
178  basic_file(asio::io_service& io_service, const char* filename,
179  open_flags flags, file_perms perms, file_attrs attrs,
180  error_code& ec) ASIOEXT_NOEXCEPT
181  : asio::basic_io_object<FileService>(io_service)
182  {
183  this->get_service().open(this->get_implementation(), filename, flags,
184  perms, attrs, ec);
185  }
186 
187 #if defined(ASIOEXT_WINDOWS) || defined(ASIOEXT_IS_DOCUMENTATION)
188  /// @copydoc basic_file(asio::io_service&,const char*,open_flags,file_perms,file_attrs)
189  ///
190  /// @note Only available on Windows.
191  basic_file(asio::io_service& io_service, const wchar_t* filename,
192  open_flags flags,
193  file_perms perms = file_perms::create_default,
194  file_attrs attrs = file_attrs::none)
195  : asio::basic_io_object<FileService>(io_service)
196  {
197  error_code ec;
198  this->get_service().open(this->get_implementation(), filename, flags,
199  perms, attrs, ec);
200  detail::throw_error(ec, "construct");
201  }
202 
203  /// @copydoc basic_file(asio::io_service&,const char*,open_flags,file_perms,file_attrs,error_code&)
204  ///
205  /// @note Only available on Windows.
206  basic_file(asio::io_service& io_service, const wchar_t* filename,
207  open_flags flags, file_perms perms, file_attrs attrs,
208  error_code& ec) ASIOEXT_NOEXCEPT
209  : asio::basic_io_object<FileService>(io_service)
210  {
211  this->get_service().open(this->get_implementation(), filename, flags,
212  perms, attrs, ec);
213  }
214 #endif
215 
216 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION)
217  /// @copydoc basic_file(asio::io_service&,const char*,open_flags,file_perms,file_attrs)
218  basic_file(asio::io_service& io_service,
219  const boost::filesystem::path& filename, open_flags flags,
220  file_perms perms = file_perms::create_default,
221  file_attrs attrs = file_attrs::none)
222  : asio::basic_io_object<FileService>(io_service)
223  {
224  error_code ec;
225  this->get_service().open(this->get_implementation(), filename, flags,
226  perms, attrs, ec);
227  detail::throw_error(ec, "construct");
228  }
229 
230  /// @copydoc basic_file(asio::io_service&,const char*,open_flags,file_perms,file_attrs,error_code&)
231  basic_file(asio::io_service& io_service,
232  const boost::filesystem::path& filename, open_flags flags,
233  file_perms perms, file_attrs attrs,
234  error_code& ec) ASIOEXT_NOEXCEPT
235  : asio::basic_io_object<FileService>(io_service)
236  {
237  this->get_service().open(this->get_implementation(), filename, flags,
238  perms, attrs, ec);
239  }
240 #endif
241 
242  /// @brief Get a reference to the lowest layer.
243  ///
244  /// This function returns a reference to the lowest layer in a stack of
245  /// layers. Since a basic_file cannot contain any further layers, it simply
246  /// returns a reference to itself.
247  ///
248  /// @return A reference to the lowest layer in the stack of layers. Ownership
249  /// is not transferred to the caller.
250  lowest_layer_type& lowest_layer() ASIOEXT_NOEXCEPT
251  {
252  return *this;
253  }
254 
255  /// @brief Get a const reference to the lowest layer.
256  ///
257  /// This function returns a const reference to the lowest layer in a stack of
258  /// layers. Since a basic_file cannot contain any further layers, it simply
259  /// returns a reference to itself.
260  ///
261  /// @return A const reference to the lowest layer in the stack of layers.
262  /// Ownership is not transferred to the caller.
263  const lowest_layer_type& lowest_layer() const ASIOEXT_NOEXCEPT
264  {
265  return *this;
266  }
267 
268  /// @brief Get the native handle representation.
269  ///
270  /// This function may be used to obtain the underlying representation of the
271  /// handle. This is intended to allow access to native handle functionality
272  /// that is not otherwise provided.
274  {
275  return this->get_service().native_handle(this->get_implementation());
276  }
277 
278  /// @brief Cancel all asynchronous operations associated with the file.
279  ///
280  /// This function causes all outstanding asynchronous write and read
281  /// operations to finish immediately, and the handlers for cancelled operations
282  /// will be passed the asio::error::operation_aborted error.
283  ///
284  /// @throws asio::system_error Thrown on failure.
285  void cancel()
286  {
287  error_code ec;
288  this->get_service().cancel(this->get_implementation(), ec);
289  detail::throw_error(ec, "cancel");
290  }
291 
292  /// @brief Cancel all asynchronous operations associated with the file.
293  ///
294  /// This function causes all outstanding asynchronous write and read
295  /// operations to finish immediately, and the handlers for cancelled operations
296  /// will be passed the asio::error::operation_aborted error.
297  ///
298  /// @param ec Set to indicate what error occurred. If no error occurred,
299  /// the object is reset.
300  void cancel(error_code& ec) ASIOEXT_NOEXCEPT
301  {
302  return this->get_service().cancel(this->get_implementation(), ec);
303  }
304 
305  /// @name Handle-management functions
306  /// @{
307 
308  /// @brief Open a file.
309  ///
310  /// This function closes any currently held handle and attempts to open
311  /// a handle to the specified file.
312  ///
313  /// For details, see @ref open(const char*,open_flags,file_perms,file_attrs)
314  ///
315  /// @param filename The path of the file to open.
316  /// See @ref filenames for details.
317  ///
318  /// @param flags Flags used to open the file.
319  /// For a detailed reference, see @ref open_flags.
320  ///
321  /// @param perms Permissions for newly created files. Unused if an existing
322  /// file is opened. Defaults to @ref file_perms::create_default.
323  ///
324  /// @param attrs Attributes for newly created files. Unused if an existing
325  /// file is opened. Defaults to @ref file_attrs::none.
326  ///
327  /// @throws asio::system_error Thrown on failure.
328  ///
329  /// @see open_flags
330  void open(const char* filename, open_flags flags,
331  file_perms perms = file_perms::create_default,
332  file_attrs attrs = file_attrs::none)
333  {
334  error_code ec;
335  this->get_service().open(this->get_implementation(), filename, flags, ec);
336  detail::throw_error(ec, "open");
337  }
338 
339  /// @brief Open a file.
340  ///
341  /// This function closes any currently held handle and attempts to open
342  /// a handle to the specified file.
343  ///
344  /// For details, see @ref open(const char*,open_flags,file_perms,file_attrs)
345  ///
346  /// @param filename The path of the file to open.
347  /// See @ref filenames for details.
348  ///
349  /// @param flags Flags used to open the file.
350  /// For a detailed reference, see @ref open_flags.
351  ///
352  /// @param perms Permissions for newly created files. Unused if an existing
353  /// file is opened. Defaults to @ref file_perms::create_default.
354  ///
355  /// @param attrs Attributes for newly created files. Unused if an existing
356  /// file is opened. Defaults to @ref file_attrs::none.
357  ///
358  /// @param ec Set to indicate what error occurred. If no error occurred,
359  /// the object is reset.
360  ///
361  /// @see open_flags
362  void open(const char* filename, open_flags flags,
363  file_perms perms, file_attrs attrs,
364  error_code& ec) ASIOEXT_NOEXCEPT
365  {
366  this->get_service().open(this->get_implementation(), filename, flags,
367  perms, attrs, ec);
368  }
369 
370 #if defined(ASIOEXT_WINDOWS) || defined(ASIOEXT_IS_DOCUMENTATION)
371  /// @copydoc open(const char*,open_flags,file_perms,file_attrs)
372  ///
373  /// @note Only available on Windows.
374  void open(const wchar_t* filename, open_flags flags,
375  file_perms perms = file_perms::create_default,
376  file_attrs attrs = file_attrs::none)
377  {
378  error_code ec;
379  this->get_service().open(this->get_implementation(), filename, flags,
380  perms, attrs, ec);
381  detail::throw_error(ec, "open");
382  }
383 
384  /// @copydoc open(const char*,open_flags,file_perms,file_attrs,error_code&)
385  ///
386  /// @note Only available on Windows.
387  void open(const wchar_t* filename, open_flags flags,
388  file_perms perms, file_attrs attrs,
389  error_code& ec) ASIOEXT_NOEXCEPT
390  {
391  this->get_service().open(this->get_implementation(), filename, flags,
392  perms, attrs, ec);
393  }
394 #endif
395 
396 #if defined(ASIOEXT_HAS_BOOST_FILESYSTEM) || defined(ASIOEXT_IS_DOCUMENTATION)
397  /// @copydoc open(const char*,open_flags,file_perms,file_attrs)
398  ///
399  /// @note Only available if using Boost.Filesystem
400  /// (i.e. if @c ASIOEXT_HAS_BOOST_FILESYSTEM is defined)
401  void open(const boost::filesystem::path& filename, open_flags flags,
402  file_perms perms = file_perms::create_default,
403  file_attrs attrs = file_attrs::none)
404  {
405  error_code ec;
406  this->get_service().open(this->get_implementation(), filename, flags,
407  perms, attrs, ec);
408  detail::throw_error(ec, "open");
409  }
410 
411  /// @copydoc open(const char*,open_flags,file_perms,file_attrs,error_code&)
412  ///
413  /// @note Only available if using Boost.Filesystem
414  /// (i.e. if @c ASIOEXT_HAS_BOOST_FILESYSTEM is defined)
415  void open(const boost::filesystem::path& filename, open_flags flags,
416  file_perms perms, file_attrs attrs,
417  error_code& ec) ASIOEXT_NOEXCEPT
418  {
419  this->get_service().open(this->get_implementation(), filename, flags,
420  perms, attrs, ec);
421  }
422 #endif
423 
424  /// Determine whether the handle is open.
425  bool is_open() const ASIOEXT_NOEXCEPT
426  {
427  return this->get_service().is_open(this->get_implementation());
428  }
429 
430  /// @brief Close the handle.
431  ///
432  /// This function is used to close the handle.
433  ///
434  /// @throws asio::system_error Thrown on failure.
435  void close()
436  {
437  error_code ec;
438  this->get_service().close(this->get_implementation(), ec);
439  detail::throw_error(ec, "close");
440  }
441 
442  /// @brief Close the handle.
443  ///
444  /// This function is used to close the handle.
445  ///
446  /// @param ec Set to indicate what error occurred. If no error occurred,
447  /// the object is reset.
448  void close(error_code& ec) ASIOEXT_NOEXCEPT
449  {
450  this->get_service().close(this->get_implementation(), ec);
451  }
452 
453  /// @}
454 
455  /// @name Positioning functions
456  /// @{
457 
458  /// @brief Get the current file position.
459  ///
460  /// This function retrieves the current read/write position of this
461  /// file handle, relative to the file's beginning.
462  ///
463  /// @return The current absolute file position.
464  ///
465  /// @throws asio::system_error Thrown on failure.
466  uint64_t position()
467  {
468  error_code ec;
469  uint64_t p = this->get_service().position(this->get_implementation(), ec);
470  detail::throw_error(ec, "position");
471  return p;
472  }
473 
474  /// @brief Get the current file position.
475  ///
476  /// This function retrieves the current read/write position of this
477  /// file handle, relative to the file's beginning.
478  ///
479  /// @return The current absolute file position.
480  ///
481  /// @param ec Set to indicate what error occurred. If no error occurred,
482  /// the object is reset.
483  uint64_t position(error_code& ec) ASIOEXT_NOEXCEPT
484  {
485  return this->get_service().position(this->get_implementation(), ec);
486  }
487 
488  /// @brief Change the read/write position.
489  ///
490  /// This function repositions the current read/write position of this
491  /// basic_file by @c offset, relative to the origin specified
492  /// by @c origin.
493  ///
494  /// @param origin The origin of @c offset.
495  ///
496  /// @param offset The offset by which the current position's modified.
497  ///
498  /// @return The new absolute file position.
499  ///
500  /// @throws asio::system_error Thrown on failure.
501  uint64_t seek(seek_origin origin, int64_t offset)
502  {
503  error_code ec;
504  uint64_t p = this->get_service().seek(this->get_implementation(), origin,
505  offset, ec);
506  detail::throw_error(ec, "seek");
507  return p;
508  }
509 
510  /// @brief Change the read/write position.
511  ///
512  /// This function repositions the current read/write position of this
513  /// basic_file by @c offset, relative to the origin specified
514  /// by @c origin.
515  ///
516  /// @param origin The origin of @c offset.
517  ///
518  /// @param offset The offset by which the current position's modified.
519  ///
520  /// @return The new absolute file position.
521  ///
522  /// @param ec Set to indicate what error occurred. If no error occurred,
523  /// the object is reset.
524  uint64_t seek(seek_origin origin, int64_t offset,
525  error_code& ec) ASIOEXT_NOEXCEPT
526  {
527  return this->get_service().seek(this->get_implementation(), origin, offset,
528  ec);
529  }
530 
531  /// @}
532 
533  /// @name Metadata functions
534  /// @{
535 
536  /// @copydoc file_handle::size()
537  uint64_t size()
538  {
539  error_code ec;
540  uint64_t s = this->get_service().size(this->get_implementation(), ec);
541  detail::throw_error(ec);
542  return s;
543  }
544 
545  /// @copydoc file_handle::size(error_code&)
546  uint64_t size(error_code& ec) ASIOEXT_NOEXCEPT
547  {
548  return this->get_service().size(this->get_implementation(), ec);
549  }
550 
551  /// @copydoc file_handle::size(uint64_t)
552  void size(uint64_t new_size)
553  {
554  error_code ec;
555  this->get_service().size(this->get_implementation(), new_size, ec);
556  detail::throw_error(ec);
557  }
558 
559  /// @copydoc file_handle::size(uint64_t,error_code&)
560  void size(uint64_t new_size, error_code& ec) ASIOEXT_NOEXCEPT
561  {
562  this->get_service().size(this->get_implementation(), new_size, ec);
563  }
564 
565  /// @copydoc file_handle::permissions()
566  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
568  {
569  error_code ec;
570  file_perms p = this->get_service().permissions(this->get_implementation(),
571  ec);
572  detail::throw_error(ec);
573  return p;
574  }
575 
576  /// @copydoc file_handle::permissions(error_code&)
577  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
578  file_perms permissions(error_code& ec) ASIOEXT_NOEXCEPT
579  {
580  return this->get_service().permissions(this->get_implementation(), ec);
581  }
582 
583  /// @copydoc file_handle::permissions(file_perms,file_perm_options)
584  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
586  file_perm_options::replace)
587  {
588  error_code ec;
589  this->get_service().permissions(this->get_implementation(), perms,
590  opts, ec);
591  detail::throw_error(ec);
592  }
593 
594  /// @copydoc file_handle::permissions(file_perms,error_code&)
595  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
596  void permissions(file_perms perms, error_code& ec) ASIOEXT_NOEXCEPT
597  {
598  this->get_service().permissions(this->get_implementation(), perms, ec);
599  }
600 
601  /// @copydoc file_handle::permissions(file_perms,file_perm_options,error_code&)
602  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
604  error_code& ec) ASIOEXT_NOEXCEPT
605  {
606  this->get_service().permissions(this->get_implementation(), perms,
607  opts, ec);
608  }
609 
610  /// @copydoc file_handle::attributes()
611  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
613  {
614  error_code ec;
615  file_attrs a = this->get_service().attributes(this->get_implementation(), ec);
616  detail::throw_error(ec);
617  return a;
618  }
619 
620  /// @copydoc file_handle::attributes(error_code&)
621  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
622  file_attrs attributes(error_code& ec) ASIOEXT_NOEXCEPT
623  {
624  return this->get_service().attributes(this->get_implementation(), ec);
625  }
626 
627  /// @copydoc file_handle::attributes(file_attrs,file_attr_options)
628  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
630  file_attr_options::replace)
631  {
632  error_code ec;
633  this->get_service().attributes(this->get_implementation(),
634  attrs, opts, ec);
635  detail::throw_error(ec);
636  }
637 
638  /// @copydoc file_handle::attributes(file_attrs,error_code&)
639  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
640  void attributes(file_attrs attrs, error_code& ec) ASIOEXT_NOEXCEPT
641  {
642  this->get_service().attributes(this->get_implementation(),
643  attrs, ec);
644  }
645 
646  /// @copydoc file_handle::attributes(file_attrs,file_attr_options,error_code&)
647  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
649  error_code& ec) ASIOEXT_NOEXCEPT
650  {
651  this->get_service().attributes(this->get_implementation(),
652  attrs, opts, ec);
653  }
654 
655  /// @copydoc file_handle::times()
657  {
658  error_code ec;
659  file_times t = this->get_service().times(this->get_implementation(), ec);
660  detail::throw_error(ec);
661  return t;
662  }
663 
664  /// @copydoc file_handle::times(error_code&)
665  file_times times(error_code& ec) ASIOEXT_NOEXCEPT
666  {
667  return this->get_service().times(this->get_implementation(), ec);
668  }
669 
670  /// @copydoc file_handle::times(const file_times&)
671  void times(const file_times& new_times)
672  {
673  error_code ec;
674  this->get_service().times(this->get_implementation(), new_times, ec);
675  detail::throw_error(ec);
676  }
677 
678  /// @copydoc file_handle::times(const file_times&,error_code&)
679  void times(const file_times& new_times, error_code& ec) ASIOEXT_NOEXCEPT
680  {
681  this->get_service().times(this->get_implementation(), new_times, ec);
682  }
683 
684  /// @}
685 
686  /// @name SyncReadStream functions
687  /// @{
688 
689  /// @brief Read some data from the file.
690  ///
691  /// This function is used to read data from the file, starting at the
692  /// basic_file's current file position. The function call will
693  /// block until one or more bytes of data has been read successfully,
694  /// or until an error occurs.
695  ///
696  /// @param buffers One or more buffers into which the data will be read.
697  ///
698  /// @returns The number of bytes read.
699  ///
700  /// @throws asio::system_error Thrown on failure. An error code of
701  /// asio::error::eof indicates that the end of file was reached.
702  ///
703  /// @note The read_some operation may not read all of the requested number of
704  /// bytes. Consider using the @c asio::read function if you need to ensure
705  /// that the requested amount of data is read before the blocking operation
706  /// completes.
707  ///
708  /// @par Example
709  /// To read into a single data buffer use the @c asio::buffer function as
710  /// follows:
711  /// @code
712  /// fh.read_some(asio::buffer(data, size));
713  /// @endcode
714  /// See the @c asio::buffer documentation for information on reading into
715  /// multiple buffers in one go, and how to use it with arrays, boost::array
716  /// or std::vector.
717  template <typename MutableBufferSequence>
719  {
720  error_code ec;
721  const std::size_t s =
722  this->get_service().read_some(this->get_implementation(), buffers, ec);
723  detail::throw_error(ec, "read_some");
724  return s;
725  }
726 
727  /// @brief Read some data from the file.
728  ///
729  /// This function is used to read data from the file, starting at the
730  /// basic_file's current file position. The function call will
731  /// block until one or more bytes of data has been read successfully,
732  /// or until an error occurs.
733  ///
734  /// @param buffers One or more buffers into which the data will be read.
735  ///
736  /// @param ec Set to indicate what error occurred. If no error occurred,
737  /// the object is reset.
738  ///
739  /// @returns The number of bytes read. Returns 0 if an error occurred.
740  ///
741  /// @note The read_some operation may not read all of the requested number of
742  /// bytes. Consider using the @c asio::read function if you need to ensure
743  /// that the requested amount of data is read before the blocking operation
744  /// completes.
745  template <typename MutableBufferSequence>
747  error_code& ec) ASIOEXT_NOEXCEPT
748  {
749  return this->get_service().read_some(this->get_implementation(), buffers,
750  ec);
751  }
752 
753  /// @}
754 
755  /// @name SyncWriteStream functions
756  /// @{
757 
758  /// @brief Write some data to the file.
759  ///
760  /// This function is used to write data to the file, starting at the
761  /// basic_file's current file position. The function call will
762  /// block until one or more bytes of the data has been written
763  /// successfully, or until an error occurs.
764  ///
765  /// @param buffers One or more data buffers to be written to the file.
766  ///
767  /// @returns The number of bytes written.
768  ///
769  /// @throws asio::system_error Thrown on failure.
770  ///
771  /// @note The write_some operation may not write all of the data.
772  /// Consider using the @c asio::write function if you need to ensure
773  /// that all data is written before the blocking operation completes.
774  ///
775  /// @par Example
776  /// To write a single data buffer use the @c asio::buffer function as follows:
777  /// @code
778  /// fh.write_some(asio::buffer(data, size));
779  /// @endcode
780  /// See the @c asio::buffer documentation for information on writing multiple
781  /// buffers in one go, and how to use it with arrays, boost::array or
782  /// std::vector.
783  template <typename ConstBufferSequence>
785  {
786  error_code ec;
787  const std::size_t s =
788  this->get_service().write_some(this->get_implementation(), buffers, ec);
789  detail::throw_error(ec, "write_some");
790  return s;
791  }
792 
793  /// @brief Write some data to the file.
794  ///
795  /// This function is used to write data to the file, starting at the
796  /// basic_file's current file position. The function call will
797  /// block until one or more bytes of the data has been written
798  /// successfully, or until an error occurs.
799  ///
800  /// @param buffers One or more data buffers to be written to the file.
801  ///
802  /// @param ec Set to indicate what error occurred. If no error occurred,
803  /// the object is reset.
804  ///
805  /// @returns The number of bytes written. Returns 0 if an error occurred.
806  ///
807  /// @note The write_some operation may not write all of the data.
808  /// Consider using the @c asio::write function if you need to ensure
809  /// that all data is written before the blocking operation completes.
810  template <typename ConstBufferSequence>
812  error_code& ec) ASIOEXT_NOEXCEPT
813  {
814  return this->get_service().write_some(this->get_implementation(), buffers,
815  ec);
816  }
817 
818  /// @}
819 
820  /// @name SyncRandomAccessReadDevice functions
821  /// @{
822 
823  /// @brief Read some data from the file at the specified offset.
824  ///
825  /// This function is used to read data from the file. The
826  /// function call will block until one or more bytes of data has been read
827  /// successfully, or until an error occurs.
828  ///
829  /// @param offset The offset at which the data will be read, relative to
830  /// the file's beginning.
831  ///
832  /// @param buffers One or more buffers into which the data will be read.
833  ///
834  /// @returns The number of bytes read.
835  ///
836  /// @throws asio::system_error Thrown on failure. An error code of
837  /// asio::error::eof indicates that the end of the file was reached.
838  ///
839  /// @note The read_some operation may not read all of the requested number of
840  /// bytes. Consider using the @c asio::read_at function if you need to ensure
841  /// that the requested amount of data is read before the blocking operation
842  /// completes.
843  ///
844  /// @par Example
845  /// To read into a single data buffer use the @c asio::buffer function as
846  /// follows:
847  /// @code
848  /// handle.read_some_at(42, asio::buffer(data, size));
849  /// @endcode
850  /// See the @c asio::buffer documentation for information on reading into
851  /// multiple buffers in one go, and how to use it with arrays, boost::array
852  /// or std::vector.
853  template <typename MutableBufferSequence>
854  std::size_t read_some_at(uint64_t offset,
855  const MutableBufferSequence& buffers)
856  {
857  error_code ec;
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");
861  return s;
862  }
863 
864  /// @brief Read some data from the file at the specified offset.
865  ///
866  /// This function is used to read data from the file. The
867  /// function call will block until one or more bytes of data has been read
868  /// successfully, or until an error occurs.
869  ///
870  /// @param offset The offset at which the data will be read, relative to
871  /// the file's beginning.
872  ///
873  /// @param buffers One or more buffers into which the data will be read.
874  ///
875  /// @param ec Set to indicate what error occurred. If no error occurred,
876  /// the object is reset.
877  ///
878  /// @returns The number of bytes read. Returns 0 if an error occurred.
879  ///
880  /// @note The read_some operation may not read all of the requested number of
881  /// bytes. Consider using the @c asio::read_at function if you need to ensure
882  /// that the requested amount of data is read before the blocking operation
883  /// completes.
884  template <typename MutableBufferSequence>
885  std::size_t read_some_at(uint64_t offset,
886  const MutableBufferSequence& buffers,
887  error_code& ec) ASIOEXT_NOEXCEPT
888  {
889  return this->get_service().read_some_at(this->get_implementation(), offset,
890  buffers, ec);
891  }
892 
893  /// @}
894 
895  /// @name SyncRandomAccessWriteDevice functions
896  /// @{
897 
898  /// @brief Write some data to the file at the specified offset.
899  ///
900  /// This function is used to write data to the file. The
901  /// function call will block until one or more bytes of the data has been
902  /// written successfully, or until an error occurs.
903  ///
904  /// @param offset The offset at which the data will be written, relative to
905  /// the file's beginning.
906  ///
907  /// @param buffers One or more data buffers to be written.
908  ///
909  /// @returns The number of bytes written.
910  ///
911  /// @throws asio::system_error Thrown on failure.
912  ///
913  /// @note The write_some_at operation may not write all of the data. Consider
914  /// using the @c asio::write_at function if you need to ensure that all data
915  /// is written before the blocking operation completes.
916  ///
917  /// @par Example
918  /// To write a single data buffer use the @c asio::buffer function as follows:
919  /// @code
920  /// fh.write_some_at(42, asio::buffer(data, size));
921  /// @endcode
922  /// See the @c asio::buffer documentation for information on writing multiple
923  /// buffers in one go, and how to use it with arrays, boost::array or
924  /// std::vector.
925  template <typename ConstBufferSequence>
926  std::size_t write_some_at(uint64_t offset, const ConstBufferSequence& buffers)
927  {
928  error_code ec;
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");
932  return s;
933  }
934 
935  /// @brief Write some data to the file at the specified offset.
936  ///
937  /// This function is used to write data to the file. The
938  /// function call will block until one or more bytes of the data has been
939  /// written successfully, or until an error occurs.
940  ///
941  /// @param offset The offset at which the data will be written, relative to
942  /// the file's beginning.
943  ///
944  /// @param buffers One or more data buffers to be written to the handle.
945  ///
946  /// @param ec Set to indicate what error occurred. If no error occurred,
947  /// the object is reset.
948  ///
949  /// @returns The number of bytes written. Returns 0 if an error occurred.
950  ///
951  /// @note The write_some_at operation may not write all of the data. Consider
952  /// using the @c asio::write_at function if you need to ensure that all data
953  /// is written before the blocking operation completes.
954  template <typename ConstBufferSequence>
955  std::size_t write_some_at(uint64_t offset,
956  const ConstBufferSequence& buffers,
957  error_code& ec) ASIOEXT_NOEXCEPT
958  {
959  return this->get_service().write_some_at(this->get_implementation(), offset,
960  buffers, ec);
961  }
962 
963  /// @}
964 
965  /// @name AsyncReadStream functions
966  /// @{
967 
968  /// Start an asynchronous read.
969  ///
970  /// This function is used to asynchronously read data from the file.
971  /// The function call always returns immediately.
972  ///
973  /// @param buffers One or more buffers into which the data will be read.
974  /// Although the buffers object may be copied as necessary, ownership of the
975  /// underlying memory blocks is retained by the caller, which must guarantee
976  /// that they remain valid until the handler is called.
977  ///
978  /// @param handler The handler to be called when the read operation completes.
979  /// Copies will be made of the handler as required. The function signature of
980  /// the handler must be:
981  /// @code void handler(
982  /// const error_code& error, // Result of operation.
983  /// std::size_t bytes_transferred // Number of bytes read.
984  /// ); @endcode
985  /// Regardless of whether the asynchronous operation completes immediately or
986  /// not, the handler will not be invoked from within this function. Invocation
987  /// of the handler will be performed in a manner equivalent to using
988  /// asio::io_service::post().
989  ///
990  /// @note The read operation may not read all of the requested number of bytes.
991  /// Consider using the @c asio::async_read function if you need to ensure
992  /// that the requested amount of data is read before the asynchronous
993  /// operation completes.
994  ///
995  /// @par Example
996  /// To read into a single data buffer use the @c asio::buffer function as
997  /// follows: @code
998  /// file.async_read_some(asio::buffer(data, size), handler);
999  /// @endcode
1000  /// See the asio::buffer documentation for information on reading into
1001  /// multiple buffers in one go, and how to use it with arrays, boost::array
1002  /// or std::vector.
1003  ///
1004  /// @warning Interleaving asynchronous reads with other operations that cause
1005  /// the file position/pointer to change is undefined!
1006  ///
1007  /// @note Starting multiple asynchronous reads is implementation-defined and
1008  /// not recommended. (A FileService might make additional gurantees, but is
1009  /// not required to.)
1010  template <typename MutableBufferSequence, typename ReadHandler>
1011  ASIOEXT_INITFN_RESULT_TYPE(ReadHandler, void (error_code, std::size_t))
1012  async_read_some(const MutableBufferSequence& buffers,
1013  ASIOEXT_MOVE_ARG(ReadHandler) handler)
1014  {
1015  // If you get an error on the following line it means that your handler does
1016  // not meet the documented type requirements for a ReadHandler.
1017  ASIOEXT_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
1018 
1019  return this->get_service().async_read_some(this->get_implementation(),
1020  buffers, ASIOEXT_MOVE_CAST(ReadHandler)(handler));
1021  }
1022 
1023  /// @}
1024 
1025  /// @name AsyncWriteStream functions
1026  /// @{
1027 
1028  /// @brief Start an asynchronous write.
1029  ///
1030  /// This function is used to asynchronously write data to the file.
1031  /// The function call always returns immediately.
1032  ///
1033  /// @param buffers One or more data buffers to be written to the file.
1034  /// Although the buffers object may be copied as necessary, ownership of the
1035  /// underlying memory blocks is retained by the caller, which must guarantee
1036  /// that they remain valid until the handler is called.
1037  ///
1038  /// @param handler The handler to be called when the write operation completes.
1039  /// Copies will be made of the handler as required. The function signature of
1040  /// the handler must be:
1041  /// @code void handler(
1042  /// const error_code& error, // Result of operation.
1043  /// std::size_t bytes_transferred // Number of bytes written.
1044  /// ); @endcode
1045  /// Regardless of whether the asynchronous operation completes immediately or
1046  /// not, the handler will not be invoked from within this function. Invocation
1047  /// of the handler will be performed in a manner equivalent to using
1048  /// asio::io_service::post().
1049  ///
1050  /// @note The write operation may not write all of the data.
1051  /// Consider using the @c asio::async_write function if you need to ensure
1052  /// that all data is written before the asynchronous operation completes.
1053  ///
1054  /// @par Example
1055  /// To write a single data buffer use the @c asio::buffer function as
1056  /// follows: @code
1057  /// file.async_write_some(asio::buffer(data, size), handler);
1058  /// @endcode
1059  /// See the asio::buffer documentation for information on writing multiple
1060  /// buffers in one go, and how to use it with arrays, boost::array or
1061  /// std::vector.
1062  ///
1063  /// @warning Interleaving asynchronous writes with other operations that
1064  /// cause the file position/pointer to change is undefined!
1065  ///
1066  /// @note Starting multiple asynchronous writes is implementation-defined and
1067  /// not recommended. (A FileService might make additional gurantees, but is
1068  /// not required to.)
1069  template <typename ConstBufferSequence, typename WriteHandler>
1070  ASIOEXT_INITFN_RESULT_TYPE(WriteHandler, void (error_code, std::size_t))
1071  async_write_some(const ConstBufferSequence& buffers,
1072  ASIOEXT_MOVE_ARG(WriteHandler) handler)
1073  {
1074  // If you get an error on the following line it means that your handler does
1075  // not meet the documented type requirements for a WriteHandler.
1076  ASIOEXT_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
1077 
1078  return this->get_service().async_write_some(this->get_implementation(),
1079  buffers, ASIOEXT_MOVE_CAST(WriteHandler)(handler));
1080  }
1081 
1082  /// @}
1083 
1084  /// @name AsyncRandomAccessReadDevice functions
1085  /// @{
1086 
1087  /// @brief Start an asynchronous read at the specified offset.
1088  ///
1089  /// This function is used to asynchronously read data from the file.
1090  /// The function call always returns immediately.
1091  ///
1092  /// @param offset The offset at which the data will be read.
1093  ///
1094  /// @param buffers One or more buffers into which the data will be read.
1095  /// Although the buffers object may be copied as necessary, ownership of the
1096  /// underlying memory blocks is retained by the caller, which must guarantee
1097  /// that they remain valid until the handler is called.
1098  ///
1099  /// @param handler The handler to be called when the read operation completes.
1100  /// Copies will be made of the handler as required. The function signature of
1101  /// the handler must be:
1102  /// @code void handler(
1103  /// const error_code& error, // Result of operation.
1104  /// std::size_t bytes_transferred // Number of bytes read.
1105  /// ); @endcode
1106  /// Regardless of whether the asynchronous operation completes immediately or
1107  /// not, the handler will not be invoked from within this function. Invocation
1108  /// of the handler will be performed in a manner equivalent to using
1109  /// asio::io_service::post().
1110  ///
1111  /// @note The read operation may not read all of the requested number of
1112  /// bytes.
1113  /// Consider using the asio::async_read_at function if you need to ensure that
1114  /// the requested amount of data is read before the asynchronous operation
1115  /// completes.
1116  ///
1117  /// @par Example
1118  /// To read into a single data buffer use the asio::buffer function as
1119  /// follows:
1120  /// @code
1121  /// file.async_read_some_at(42, asio::buffer(data, size), handler);
1122  /// @endcode
1123  /// See the asio::buffer documentation for information on reading into
1124  /// multiple
1125  /// buffers in one go, and how to use it with arrays, boost::array or
1126  /// std::vector.
1127  template <typename MutableBufferSequence, typename ReadHandler>
1128  ASIOEXT_INITFN_RESULT_TYPE(ReadHandler, void(error_code, std::size_t))
1129  async_read_some_at(uint64_t offset,
1130  const MutableBufferSequence& buffers,
1131  ASIOEXT_MOVE_ARG(ReadHandler) handler)
1132  {
1133  // If you get an error on the following line it means that your handler does
1134  // not meet the documented type requirements for a ReadHandler.
1135  ASIOEXT_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
1136 
1137  return this->get_service().async_read_some_at(this->get_implementation(),
1138  offset, buffers, ASIOEXT_MOVE_CAST(ReadHandler)(handler));
1139  }
1140 
1141  /// @}
1142 
1143  /// @name AsyncRandomAccessWriteDevice functions
1144  /// @{
1145 
1146  /// @brief Start an asynchronous write at the specified offset.
1147  ///
1148  /// This function is used to asynchronously write data to the file.
1149  /// The function call always returns immediately.
1150  ///
1151  /// @param offset The offset at which the data will be written.
1152  ///
1153  /// @param buffers One or more data buffers to be written to the file.
1154  /// Although the buffers object may be copied as necessary, ownership of the
1155  /// underlying memory blocks is retained by the caller, which must guarantee
1156  /// that they remain valid until the handler is called.
1157  ///
1158  /// @param handler The handler to be called when the write operation
1159  /// completes.
1160  /// Copies will be made of the handler as required. The function signature of
1161  /// the handler must be:
1162  /// @code void handler(
1163  /// const error_code& error, // Result of operation.
1164  /// std::size_t bytes_transferred // Number of bytes written.
1165  /// ); @endcode
1166  /// Regardless of whether the asynchronous operation completes immediately or
1167  /// not, the handler will not be invoked from within this function. Invocation
1168  /// of the handler will be performed in a manner equivalent to using
1169  /// asio::io_service::post().
1170  ///
1171  /// @note The write operation may not write all of the data.
1172  /// Consider using the asio::async_write_at function if you need to ensure
1173  /// that
1174  /// all data is written before the asynchronous operation completes.
1175  ///
1176  /// @par Example
1177  /// To write a single data buffer use the asio::buffer function as follows:
1178  /// @code
1179  /// file.async_write_some_at(42, asio::buffer(data, size), handler);
1180  /// @endcode
1181  /// See the asio::buffer documentation for information on writing multiple
1182  /// buffers in one go, and how to use it with arrays, boost::array or
1183  /// std::vector.
1184  template <typename ConstBufferSequence, typename WriteHandler>
1185  ASIOEXT_INITFN_RESULT_TYPE(WriteHandler, void(error_code, std::size_t))
1186  async_write_some_at(uint64_t offset,
1187  const ConstBufferSequence& buffers,
1188  ASIOEXT_MOVE_ARG(WriteHandler) handler)
1189  {
1190  // If you get an error on the following line it means that your handler does
1191  // not meet the documented type requirements for a WriteHandler.
1192  ASIOEXT_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
1193 
1194  return this->get_service().async_write_some_at(this->get_implementation(),
1195  offset, buffers, ASIOEXT_MOVE_CAST(WriteHandler)(handler));
1196  }
1197 
1198  /// @}
1199 };
1200 
1201 ASIOEXT_NS_END
1202 
1203 #endif
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
file_perms
Names for permissions.
Definition: file_perms.hpp:31
void times(const file_times &new_times)
Change a file&#39;s time data.
Definition: basic_file.hpp:671
file_attrs attributes()
Get the file&#39;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
file_perm_options
Options to control the behavior of asioext::file_handle::permissions(file_perms,file_perm_options) ...
Definition: file_perms.hpp:119
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_attrs
Names for file attributes.
Definition: file_attrs.hpp:32
file_times times()
Get the file&#39;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&#39;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&#39;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&#39;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&#39;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&#39;s time data.
Definition: basic_file.hpp:679
void attributes(file_attrs attrs, error_code &ec) noexcept
Change the file&#39;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&#39;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&#39;s attributes.
Definition: basic_file.hpp:629
void close()
Close the handle.
Definition: basic_file.hpp:435
file_attr_options
Options to control the behavior of asioext::file_handle::attributes(file_attrs,file_attr_options) ...
Definition: file_attrs.hpp:99
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&#39;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