Asio Extensions
Additional functionality built on top of (Boost.)Asio
file_handle.hpp
1 /// @file
2 /// Defines the file_handle class
3 ///
4 /// @copyright Copyright (c) 2015 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 http://www.boost.org/LICENSE_1_0.txt)
7 
8 #ifndef ASIOEXT_FILEHANDLE_HPP
9 #define ASIOEXT_FILEHANDLE_HPP
10 
11 #include "asioext/detail/config.hpp"
12 
13 #if ASIOEXT_HAS_PRAGMA_ONCE
14 # pragma once
15 #endif
16 
17 #include "asioext/seek_origin.hpp"
18 #include "asioext/error_code.hpp"
19 #include "asioext/chrono.hpp"
20 
21 #if defined(ASIOEXT_WINDOWS)
22 # include "asioext/detail/win_file_ops.hpp"
23 #else
24 # include "asioext/detail/posix_file_ops.hpp"
25 #endif
26 
27 ASIOEXT_NS_BEGIN
28 
29 /// @ingroup files_time
30 /// @brief Container for various times associated with a file.
31 ///
32 /// This struct contains all times commonly tied to a file.
33 /// Not all of them might be available on all platforms.
34 struct file_times
35 {
36  /// @brief The file's creation time.
38  /// @brief The file's last access time.
40  /// @brief The file's last modification time.
42 };
43 
44 inline bool operator==(const file_times& a, const file_times& b)
45 { return a.ctime == b.ctime && a.atime == b.atime && a.mtime == b.mtime; }
46 
47 inline bool operator!=(const file_times& a, const file_times& b)
48 { return !(a == b); }
49 
50 /// @ingroup files_handle
51 /// @brief A thin and lightweight wrapper around a native file handle.
52 ///
53 /// The file_handle class provides uniform access to
54 /// native OS file handles, wrapping the relevant OS APIs in portable
55 /// methods.
56 ///
57 /// file_handle doesn't assume ownership of the contained handle.
58 /// If handle management is desired as well, take a look at the
59 /// @c unique_file_handle class.
60 ///
61 /// file_handle models the following asio concepts:
62 /// * SyncRandomAccessReadDevice
63 /// * SyncRandomAccessWriteDevice
64 /// * SyncReadStream
65 /// * SyncWriteStream
66 ///
67 /// @par Thread Safety:
68 /// @e Distinct @e objects: Safe.@n
69 /// @e Shared @e objects: Unsafe.
70 ///
71 /// @note This is a low-level component. Most of the time unique_file_handle
72 /// is a better fit.
74 {
75 public:
76 #if defined(ASIOEXT_IS_DOCUMENTATION)
77  /// The operating system's native file handle type.
78  typedef implementation_defined native_handle_type;
79 #elif defined(ASIOEXT_WINDOWS)
80  typedef detail::win_file_ops::handle_type native_handle_type;
81 #else
82  typedef detail::posix_file_ops::handle_type native_handle_type;
83 #endif
84 
85  /// A file_handle is always the lowest layer.
87 
88  /// @brief Construct an empy file_handle.
89  ///
90  /// This constructor initializes the file_handle to an empty state.
91  ASIOEXT_DECL file_handle() ASIOEXT_NOEXCEPT;
92 
93  /// Destroy a file_handle.
94  ///
95  /// This destructor does nothing. Any contained handle will
96  /// <b>not</b> be closed.
97  ASIOEXT_DECL ~file_handle();
98 
99  /// @brief Construct a file_handle using a native handle.
100  ///
101  /// This constructor <b>doesn't</b> take ownership of the given native
102  /// file handle.
103  ///
104  /// @param handle The native file handle which shall be assigned to this
105  /// file_handle object.
106  ASIOEXT_DECL file_handle(const native_handle_type& handle) ASIOEXT_NOEXCEPT;
107 
108  /// @brief Get a reference to the lowest layer.
109  ///
110  /// This function returns a reference to the lowest layer in a stack of
111  /// layers. Since a file_handle cannot contain any further layers, it simply
112  /// returns a reference to itself.
113  ///
114  /// @return A reference to the lowest layer in the stack of layers. Ownership
115  /// is not transferred to the caller.
116  lowest_layer_type& lowest_layer() ASIOEXT_NOEXCEPT
117  {
118  return *this;
119  }
120 
121  /// @brief Get a const reference to the lowest layer.
122  ///
123  /// This function returns a const reference to the lowest layer in a stack of
124  /// layers. Since a file_handle cannot contain any further layers, it simply
125  /// returns a reference to itself.
126  ///
127  /// @return A const reference to the lowest layer in the stack of layers.
128  /// Ownership is not transferred to the caller.
129  const lowest_layer_type& lowest_layer() const ASIOEXT_NOEXCEPT
130  {
131  return *this;
132  }
133 
134  /// @brief Get the native handle representation.
135  ///
136  /// This function may be used to obtain the underlying representation of the
137  /// handle. This is intended to allow access to native handle functionality
138  /// that is not otherwise provided.
139  native_handle_type native_handle() const ASIOEXT_NOEXCEPT
140  {
141  return handle_;
142  }
143 
144  /// @name Handle-management functions
145  /// @{
146 
147  /// Determine whether the handle is open.
148  ASIOEXT_DECL bool is_open() const ASIOEXT_NOEXCEPT;
149 
150  /// @brief Close the handle.
151  ///
152  /// This function closes the contained handle. Does nothing if the object
153  /// contains no handle.
154  ///
155  /// @throws asio::system_error Thrown on failure.
156  ASIOEXT_DECL void close();
157 
158  /// @brief Close the handle.
159  ///
160  /// This function closes the contained handle. Does nothing if the object
161  /// contains no handle.
162  ///
163  /// @param ec Set to indicate what error occurred. If no error occurred,
164  /// the object is reset.
165  ASIOEXT_DECL void close(error_code& ec) ASIOEXT_NOEXCEPT;
166 
167  /// @brief Clear the handle.
168  ///
169  /// This function resets the contained handle to an empty state.
170  /// The previous handle <b>is not</b> closed.
171  ASIOEXT_DECL void clear() ASIOEXT_NOEXCEPT;
172 
173  /// @}
174 
175  /// @name Positioning functions
176  /// @{
177 
178  /// @brief Get the current file position.
179  ///
180  /// This function retrieves the current read/write position of this
181  /// file handle, relative to the file's beginning.
182  ///
183  /// @return The current absolute file position.
184  ///
185  /// @throws asio::system_error Thrown on failure.
186  ASIOEXT_DECL uint64_t position();
187 
188  /// @brief Get the current file position.
189  ///
190  /// This function retrieves the current read/write position of this
191  /// file handle, relative to the file's beginning.
192  ///
193  /// @return The current absolute file position.
194  ///
195  /// @param ec Set to indicate what error occurred. If no error occurred,
196  /// the object is reset.
197  ASIOEXT_DECL uint64_t position(error_code& ec) ASIOEXT_NOEXCEPT;
198 
199  /// @brief Change the read/write position.
200  ///
201  /// This function repositions the current read/write position of this
202  /// file_handle by @c offset, relative to the origin specified
203  /// by @c origin.
204  ///
205  /// @param origin The origin of @c offset.
206  ///
207  /// @param offset The offset by which the current position's modified.
208  ///
209  /// @return The new absolute file position.
210  ///
211  /// @throws asio::system_error Thrown on failure.
212  ASIOEXT_DECL uint64_t seek(seek_origin origin, int64_t offset);
213 
214  /// @brief Change the read/write position.
215  ///
216  /// This function repositions the current read/write position of this
217  /// file_handle by @c offset, relative to the origin specified
218  /// by @c origin.
219  ///
220  /// @param origin The origin of @c offset.
221  ///
222  /// @param offset The offset by which the current position's modified.
223  ///
224  /// @return The new absolute file position.
225  ///
226  /// @param ec Set to indicate what error occurred. If no error occurred,
227  /// the object is reset.
228  ASIOEXT_DECL uint64_t seek(seek_origin origin,
229  int64_t offset,
230  error_code& ec) ASIOEXT_NOEXCEPT;
231 
232  /// @}
233 
234  /// @name Metadata functions
235  /// @{
236 
237  /// @brief Get the size of a file.
238  ///
239  /// This function retrieves the size of a file, in bytes.
240  ///
241  /// @return The total number of bytes in this file.
242  ///
243  /// @throws asio::system_error Thrown on failure.
244  ASIOEXT_DECL uint64_t size();
245 
246  /// @brief Get the size of a file.
247  ///
248  /// This function retrieves the size of a file, in bytes.
249  ///
250  /// @return The total number of bytes in this file.
251  ///
252  /// @param ec Set to indicate what error occurred. If no error occurred,
253  /// the object is reset.
254  ASIOEXT_DECL uint64_t size(error_code& ec) ASIOEXT_NOEXCEPT;
255 
256  /// @brief Set the size of a file.
257  ///
258  /// This function resizes the file so its new size matches @c new_size.
259  ///
260  /// @param new_size The new total size of the file (in bytes).
261  ///
262  /// @throws asio::system_error Thrown on failure.
263  ASIOEXT_DECL void size(uint64_t new_size);
264 
265  /// @brief Set the size of a file.
266  ///
267  /// This function resizes the file so its new size matches @c new_size.
268  ///
269  /// @param new_size The new total size of the file (in bytes).
270  ///
271  /// @param ec Set to indicate what error occurred. If no error occurred,
272  /// the object is reset.
273  ASIOEXT_DECL void size(uint64_t new_size, error_code& ec) ASIOEXT_NOEXCEPT;
274 
275  /// @brief Get the file's current access permissions.
276  ///
277  /// This function returns the file's current access permissions as
278  /// a @c file_perms bitmask.
279  ///
280  /// @return The file's access permissions.
281  ///
282  /// @throws asio::system_error Thrown on failure.
283  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
284  ASIOEXT_DECL file_perms permissions();
285 
286  /// @brief Get the file's current access permissions.
287  ///
288  /// This function returns the file's current access permissions as
289  /// a @c file_perms bitmask.
290  ///
291  /// @return The file's access permissions.
292  ///
293  /// @param ec Set to indicate what error occurred. If no error occurred,
294  /// the object is reset.
295  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
296  ASIOEXT_DECL file_perms permissions(error_code& ec) ASIOEXT_NOEXCEPT;
297 
298  /// @brief Change file access permissions.
299  ///
300  /// This function changes the file's access permissions.
301  /// Depending on whether @c file_perm_options::add_perms,
302  /// @c file_perm_options::remove_perms are set,
303  /// permissions are either added, removed or replaced.
304  ///
305  /// @param perms Permissions to set, add or remove.
306  ///
307  /// @param opts Options controlling this function's
308  /// behavior.
309  ///
310  /// @throws asio::system_error Thrown on failure.
311  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
312  ASIOEXT_DECL void permissions(file_perms perms,
313  file_perm_options opts =
314  file_perm_options::replace);
315 
316  /// @brief Change file access permissions.
317  ///
318  /// This function changes the file's access permissions.
319  /// Depending on whether @c file_perm_options::add_perms,
320  /// @c file_perm_options::remove_perms are set,
321  /// permissions are either added, removed or replaced.
322  ///
323  /// @param perms Permissions to set, add or remove.
324  ///
325  /// @param ec Set to indicate what error occurred. If no error occurred,
326  /// the object is reset.
327  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
328  ASIOEXT_DECL void permissions(file_perms perms,
329  error_code& ec) ASIOEXT_NOEXCEPT;
330 
331  /// @brief Change file access permissions.
332  ///
333  /// This function changes the file's access permissions.
334  /// Depending on whether @c file_perm_options::add_perms,
335  /// @c file_perm_options::remove_perms are set,
336  /// permissions are either added, removed or replaced.
337  ///
338  /// @param perms Permissions to set, add or remove.
339  ///
340  /// @param opts Options controlling this function's
341  /// behavior.
342  ///
343  /// @param ec Set to indicate what error occurred. If no error occurred,
344  /// the object is reset.
345  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
346  ASIOEXT_DECL void permissions(file_perms perms,
347  file_perm_options opts,
348  error_code& ec) ASIOEXT_NOEXCEPT;
349 
350  /// @brief Get the file's attributes.
351  ///
352  /// This function returns the file's attributes as
353  /// a @c file_attrs bitmask.
354  ///
355  /// @return The file's attributes.
356  ///
357  /// @throws asio::system_error Thrown on failure.
358  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
359  ASIOEXT_DECL file_attrs attributes();
360 
361  /// @brief Get the file's attributes.
362  ///
363  /// This function returns the file's attributes as
364  /// a @c file_attrs bitmask.
365  ///
366  /// @param ec Set to indicate what error occurred. If no error occurred,
367  /// the object is reset.
368  ///
369  /// @return The file's attributes.
370  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
371  ASIOEXT_DECL file_attrs attributes(error_code& ec) ASIOEXT_NOEXCEPT;
372 
373  /// @brief Change the file's attributes.
374  ///
375  /// This function changes the file's attributes.
376  /// Depending on whether @c file_attr_options::add_attrs,
377  /// @c file_attr_options::remove_attrs are set, attributes are either added,
378  /// removed or replaced.
379  ///
380  /// @param attrs Attributes to set, add or remove.
381  ///
382  /// @param opts Options controlling this function's
383  /// behavior.
384  ///
385  /// @throws asio::system_error Thrown on failure.
386  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
387  ASIOEXT_DECL void attributes(file_attrs attrs,
388  file_attr_options opts =
389  file_attr_options::replace);
390 
391  /// @brief Change the file's attributes.
392  ///
393  /// This function changes the file's attributes.
394  /// Depending on whether @c file_attr_options::add_attrs,
395  /// @c file_attr_options::remove_attrs are set, attributes are either added,
396  /// removed or replaced.
397  ///
398  /// @param attrs Attributes to set, add or remove.
399  ///
400  /// @param ec Set to indicate what error occurred. If no error occurred,
401  /// the object is reset.
402  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
403  ASIOEXT_DECL void attributes(file_attrs attrs,
404  error_code& ec) ASIOEXT_NOEXCEPT;
405 
406  /// @brief Change the file's attributes.
407  ///
408  /// This function changes the file's attributes.
409  /// Depending on whether @c file_attr_options::add_attrs,
410  /// @c file_attr_options::remove_attrs are set, attributes are either added,
411  /// removed or replaced.
412  ///
413  /// @param attrs Attributes to set, add or remove.
414  ///
415  /// @param opts Options controlling this function's
416  /// behavior.
417  ///
418  /// @param ec Set to indicate what error occurred. If no error occurred,
419  /// the object is reset.
420  ASIOEXT_WINDOWS_NO_HANDLEINFO_WARNING
421  ASIOEXT_DECL void attributes(file_attrs attrs,
422  file_attr_options opts,
423  error_code& ec) ASIOEXT_NOEXCEPT;
424 
425  /// @brief Get the file's time data.
426  ///
427  /// This function retrieves the various times associated with
428  /// a file and copies them into a @c file_times structure.
429  ///
430  /// Times in the file_times struct that are not available for this
431  /// file are zero-initialized.
432  ///
433  /// @return The file's time data.
434  ///
435  /// @throws asio::system_error Thrown on failure.
436  ASIOEXT_DECL file_times times();
437 
438  /// @brief Get the file's time data.
439  ///
440  /// This function retrieves the various times associated with
441  /// a file and copies them into a @c file_times structure.
442  ///
443  /// Times in the file_times struct that are not available for this
444  /// file are zero-initialized.
445  ///
446  /// @param ec Set to indicate what error occurred. If no error occurred,
447  /// the object is reset.
448  ///
449  /// @return The file's time data.
450  ASIOEXT_DECL file_times times(error_code& ec) ASIOEXT_NOEXCEPT;
451 
452  /// @brief Change a file's time data.
453  ///
454  /// This function replaces a file's time data with the given values.
455  /// File times that are set to zero inside the @c file_times structure
456  /// remain unchanged.
457  ///
458  /// @param new_times The new file times. Zero values are ignored.
459  ///
460  /// @throws asio::system_error Thrown on failure.
461  ASIOEXT_DECL void times(const file_times& new_times);
462 
463  /// @brief Change a file's time data.
464  ///
465  /// This function replaces a file's time data with the given values.
466  /// File times that are set to zero inside the @c file_times structure
467  /// remain unchanged.
468  ///
469  /// @param new_times The new file times. Zero values are ignored.
470  ///
471  /// @param ec Set to indicate what error occurred. If no error occurred,
472  /// the object is reset.
473  ASIOEXT_DECL void times(const file_times& new_times,
474  error_code& ec) ASIOEXT_NOEXCEPT;
475 
476  /// @}
477 
478  /// @name SyncReadStream functions
479  /// @{
480 
481  /// @brief Read some data from the file.
482  ///
483  /// This function is used to read data from the file, starting at the
484  /// file_handle's current file position. The function call will
485  /// block until one or more bytes of data has been read successfully,
486  /// or until an error occurs.
487  ///
488  /// @param buffers One or more buffers into which the data will be read.
489  ///
490  /// @returns The number of bytes read.
491  ///
492  /// @throws asio::system_error Thrown on failure. An error code of
493  /// asio::error::eof indicates that the end of file was reached.
494  ///
495  /// @note The read_some operation may not read all of the requested number of
496  /// bytes. Consider using the @c asio::read function if you need to ensure
497  /// that the requested amount of data is read before the blocking operation
498  /// completes.
499  ///
500  /// @par Example
501  /// To read into a single data buffer use the @c asio::buffer function as
502  /// follows:
503  /// @code
504  /// fh.read_some(asio::buffer(data, size));
505  /// @endcode
506  /// See the @c asio::buffer documentation for information on reading into
507  /// multiple buffers in one go, and how to use it with arrays, boost::array
508  /// or std::vector.
509  template <typename MutableBufferSequence>
510  std::size_t read_some(const MutableBufferSequence& buffers);
511 
512  /// @brief Read some data from the file.
513  ///
514  /// This function is used to read data from the file, starting at the
515  /// file_handle's current file position. The function call will
516  /// block until one or more bytes of data has been read successfully,
517  /// or until an error occurs.
518  ///
519  /// @param buffers One or more buffers into which the data will be read.
520  ///
521  /// @param ec Set to indicate what error occurred. If no error occurred,
522  /// the object is reset.
523  ///
524  /// @returns The number of bytes read. Returns 0 if an error occurred.
525  ///
526  /// @note The read_some operation may not read all of the requested number of
527  /// bytes. Consider using the @c asio::read function if you need to ensure
528  /// that the requested amount of data is read before the blocking operation
529  /// completes.
530  template <typename MutableBufferSequence>
531  std::size_t read_some(const MutableBufferSequence& buffers,
532  error_code& ec) ASIOEXT_NOEXCEPT;
533 
534  /// @}
535 
536  /// @name SyncWriteStream functions
537  /// @{
538 
539  /// @brief Write some data to the file.
540  ///
541  /// This function is used to write data to the file, starting at the
542  /// file_handle's current file position. The function call will
543  /// block until one or more bytes of the data has been written
544  /// successfully, or until an error occurs.
545  ///
546  /// @param buffers One or more data buffers to be written to the file.
547  ///
548  /// @returns The number of bytes written.
549  ///
550  /// @throws asio::system_error Thrown on failure.
551  ///
552  /// @note The write_some operation may not transmit all of the data to the
553  /// peer. Consider using the @c asio::write function if you need to ensure
554  /// that all data is written before the blocking operation completes.
555  ///
556  /// @par Example
557  /// To write a single data buffer use the @c asio::buffer function as follows:
558  /// @code
559  /// fh.write_some(asio::buffer(data, size));
560  /// @endcode
561  /// See the @c asio::buffer documentation for information on writing multiple
562  /// buffers in one go, and how to use it with arrays, boost::array or
563  /// std::vector.
564  template <typename ConstBufferSequence>
565  std::size_t write_some(const ConstBufferSequence& buffers);
566 
567  /// @brief Write some data to the file.
568  ///
569  /// This function is used to write data to the file, starting at the
570  /// file_handle's current file position. The function call will
571  /// block until one or more bytes of the data has been written
572  /// successfully, or until an error occurs.
573  ///
574  /// @param buffers One or more data buffers to be written to the file.
575  ///
576  /// @param ec Set to indicate what error occurred. If no error occurred,
577  /// the object is reset.
578  ///
579  /// @returns The number of bytes written. Returns 0 if an error occurred.
580  ///
581  /// @note The write_some operation may not transmit all of the data to the
582  /// peer. Consider using the @c asio::write function if you need to ensure
583  /// that all data is written before the blocking operation completes.
584  template <typename ConstBufferSequence>
585  std::size_t write_some(const ConstBufferSequence& buffers,
586  error_code& ec) ASIOEXT_NOEXCEPT;
587 
588  /// @}
589 
590  /// @name SyncRandomAccessReadDevice functions
591  /// @{
592 
593  /// @brief Read some data from the file at the specified offset.
594  ///
595  /// This function is used to read data from the file. The
596  /// function call will block until one or more bytes of data has been read
597  /// successfully, or until an error occurs.
598  ///
599  /// @param offset The offset at which the data will be read, relative to
600  /// the file's beginning.
601  ///
602  /// @param buffers One or more buffers into which the data will be read.
603  ///
604  /// @returns The number of bytes read.
605  ///
606  /// @throws asio::system_error Thrown on failure. An error code of
607  /// asio::error::eof indicates that the end of the file was reached.
608  ///
609  /// @note The read_some operation may not read all of the requested number of
610  /// bytes. Consider using the @c asio::read_at function if you need to ensure
611  /// that the requested amount of data is read before the blocking operation
612  /// completes.
613  ///
614  /// @par Example
615  /// To read into a single data buffer use the @c asio::buffer function as
616  /// follows:
617  /// @code
618  /// handle.read_some_at(42, asio::buffer(data, size));
619  /// @endcode
620  /// See the @c asio::buffer documentation for information on reading into
621  /// multiple buffers in one go, and how to use it with arrays, boost::array
622  /// or std::vector.
623  template <typename MutableBufferSequence>
624  std::size_t read_some_at(uint64_t offset,
625  const MutableBufferSequence& buffers);
626 
627  /// @brief Read some data from the file at the specified offset.
628  ///
629  /// This function is used to read data from the file. The
630  /// function call will block until one or more bytes of data has been read
631  /// successfully, or until an error occurs.
632  ///
633  /// @param offset The offset at which the data will be read, relative to
634  /// the file's beginning.
635  ///
636  /// @param buffers One or more buffers into which the data will be read.
637  ///
638  /// @param ec Set to indicate what error occurred. If no error occurred,
639  /// the object is reset.
640  ///
641  /// @returns The number of bytes read. Returns 0 if an error occurred.
642  ///
643  /// @note The read_some operation may not read all of the requested number of
644  /// bytes. Consider using the @c asio::read_at function if you need to ensure
645  /// that the requested amount of data is read before the blocking operation
646  /// completes.
647  template <typename MutableBufferSequence>
648  std::size_t read_some_at(uint64_t offset,
649  const MutableBufferSequence& buffers,
650  error_code& ec) ASIOEXT_NOEXCEPT;
651 
652  /// @}
653 
654  /// @name SyncRandomAccessWriteDevice functions
655  /// @{
656 
657  /// @brief Write some data to the file at the specified offset.
658  ///
659  /// This function is used to write data to the file. The
660  /// function call will block until one or more bytes of the data has been
661  /// written successfully, or until an error occurs.
662  ///
663  /// @param offset The offset at which the data will be written, relative to
664  /// the file's beginning.
665  ///
666  /// @param buffers One or more data buffers to be written.
667  ///
668  /// @returns The number of bytes written.
669  ///
670  /// @throws asio::system_error Thrown on failure.
671  ///
672  /// @note The write_some_at operation may not write all of the data. Consider
673  /// using the @c asio::write_at function if you need to ensure that all data
674  /// is written before the blocking operation completes.
675  ///
676  /// @par Example
677  /// To write a single data buffer use the @c asio::buffer function as follows:
678  /// @code
679  /// fh.write_some_at(42, asio::buffer(data, size));
680  /// @endcode
681  /// See the @c asio::buffer documentation for information on writing multiple
682  /// buffers in one go, and how to use it with arrays, boost::array or
683  /// std::vector.
684  template <typename ConstBufferSequence>
685  std::size_t write_some_at(uint64_t offset,
686  const ConstBufferSequence& buffers);
687 
688  /// @brief Write some data to the file at the specified offset.
689  ///
690  /// This function is used to write data to the file. The
691  /// function call will block until one or more bytes of the data has been
692  /// written successfully, or until an error occurs.
693  ///
694  /// @param offset The offset at which the data will be written, relative to
695  /// the file's beginning.
696  ///
697  /// @param buffers One or more data buffers to be written to the handle.
698  ///
699  /// @param ec Set to indicate what error occurred. If no error occurred,
700  /// the object is reset.
701  ///
702  /// @returns The number of bytes written. Returns 0 if an error occurred.
703  ///
704  /// @note The write_some_at operation may not write all of the data. Consider
705  /// using the @c asio::write_at function if you need to ensure that all data
706  /// is written before the blocking operation completes.
707  template <typename ConstBufferSequence>
708  std::size_t write_some_at(uint64_t offset,
709  const ConstBufferSequence& buffers,
710  error_code& ec) ASIOEXT_NOEXCEPT;
711 
712  /// @}
713 
714 private:
715  native_handle_type handle_;
716 };
717 
718 ASIOEXT_NS_END
719 
720 #include "asioext/impl/file_handle.hpp"
721 
722 #if defined(ASIOEXT_WINDOWS)
723 # include "asioext/impl/file_handle_win.hpp"
724 #else
725 # include "asioext/impl/file_handle_posix.hpp"
726 #endif
727 
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"
732 # else
733 # include "asioext/impl/file_handle_posix.cpp"
734 # endif
735 #endif
736 
737 #endif
Container for various times associated with a file.
Definition: file_handle.hpp:34
file_perms
Names for permissions.
Definition: file_perms.hpp:31
implementation_defined native_handle_type
The operating system&#39;s native file handle type.
Definition: file_handle.hpp:78
file_perm_options
Options to control the behavior of asioext::file_handle::permissions(file_perms,file_perm_options) ...
Definition: file_perms.hpp:119
STL namespace.
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_attrs
Names for file attributes.
Definition: file_attrs.hpp:32
file_time_type ctime
The file&#39;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&#39;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_attr_options
Options to control the behavior of asioext::file_handle::attributes(file_attrs,file_attr_options) ...
Definition: file_attrs.hpp:99
file_time_type mtime
The file&#39;s last modification time.
Definition: file_handle.hpp:41
A thin and lightweight wrapper around a native file handle.
Definition: file_handle.hpp:73