read_at.hpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. //
  2. // read_at.hpp
  3. // ~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_READ_AT_HPP
  11. #define BOOST_ASIO_READ_AT_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <cstddef>
  17. #include <boost/asio/async_result.hpp>
  18. #include <boost/asio/basic_streambuf_fwd.hpp>
  19. #include <boost/asio/detail/cstdint.hpp>
  20. #include <boost/asio/error.hpp>
  21. #include <boost/asio/detail/push_options.hpp>
  22. namespace boost {
  23. namespace asio {
  24. /**
  25. * @defgroup read_at boost::asio::read_at
  26. *
  27. * @brief Attempt to read a certain amount of data at the specified offset
  28. * before returning.
  29. */
  30. /*@{*/
  31. /// Attempt to read a certain amount of data at the specified offset before
  32. /// returning.
  33. /**
  34. * This function is used to read a certain number of bytes of data from a
  35. * random access device at the specified offset. The call will block until one
  36. * of the following conditions is true:
  37. *
  38. * @li The supplied buffers are full. That is, the bytes transferred is equal to
  39. * the sum of the buffer sizes.
  40. *
  41. * @li An error occurred.
  42. *
  43. * This operation is implemented in terms of zero or more calls to the device's
  44. * read_some_at function.
  45. *
  46. * @param d The device from which the data is to be read. The type must support
  47. * the SyncRandomAccessReadDevice concept.
  48. *
  49. * @param offset The offset at which the data will be read.
  50. *
  51. * @param buffers One or more buffers into which the data will be read. The sum
  52. * of the buffer sizes indicates the maximum number of bytes to read from the
  53. * device.
  54. *
  55. * @returns The number of bytes transferred.
  56. *
  57. * @throws boost::system::system_error Thrown on failure.
  58. *
  59. * @par Example
  60. * To read into a single data buffer use the @ref buffer function as follows:
  61. * @code boost::asio::read_at(d, 42, boost::asio::buffer(data, size)); @endcode
  62. * See the @ref buffer documentation for information on reading into multiple
  63. * buffers in one go, and how to use it with arrays, boost::array or
  64. * std::vector.
  65. *
  66. * @note This overload is equivalent to calling:
  67. * @code boost::asio::read_at(
  68. * d, 42, buffers,
  69. * boost::asio::transfer_all()); @endcode
  70. */
  71. template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence>
  72. std::size_t read_at(SyncRandomAccessReadDevice& d,
  73. uint64_t offset, const MutableBufferSequence& buffers);
  74. /// Attempt to read a certain amount of data at the specified offset before
  75. /// returning.
  76. /**
  77. * This function is used to read a certain number of bytes of data from a
  78. * random access device at the specified offset. The call will block until one
  79. * of the following conditions is true:
  80. *
  81. * @li The supplied buffers are full. That is, the bytes transferred is equal to
  82. * the sum of the buffer sizes.
  83. *
  84. * @li An error occurred.
  85. *
  86. * This operation is implemented in terms of zero or more calls to the device's
  87. * read_some_at function.
  88. *
  89. * @param d The device from which the data is to be read. The type must support
  90. * the SyncRandomAccessReadDevice concept.
  91. *
  92. * @param offset The offset at which the data will be read.
  93. *
  94. * @param buffers One or more buffers into which the data will be read. The sum
  95. * of the buffer sizes indicates the maximum number of bytes to read from the
  96. * device.
  97. *
  98. * @param ec Set to indicate what error occurred, if any.
  99. *
  100. * @returns The number of bytes transferred.
  101. *
  102. * @par Example
  103. * To read into a single data buffer use the @ref buffer function as follows:
  104. * @code boost::asio::read_at(d, 42,
  105. * boost::asio::buffer(data, size), ec); @endcode
  106. * See the @ref buffer documentation for information on reading into multiple
  107. * buffers in one go, and how to use it with arrays, boost::array or
  108. * std::vector.
  109. *
  110. * @note This overload is equivalent to calling:
  111. * @code boost::asio::read_at(
  112. * d, 42, buffers,
  113. * boost::asio::transfer_all(), ec); @endcode
  114. */
  115. template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence>
  116. std::size_t read_at(SyncRandomAccessReadDevice& d,
  117. uint64_t offset, const MutableBufferSequence& buffers,
  118. boost::system::error_code& ec);
  119. /// Attempt to read a certain amount of data at the specified offset before
  120. /// returning.
  121. /**
  122. * This function is used to read a certain number of bytes of data from a
  123. * random access device at the specified offset. The call will block until one
  124. * of the following conditions is true:
  125. *
  126. * @li The supplied buffers are full. That is, the bytes transferred is equal to
  127. * the sum of the buffer sizes.
  128. *
  129. * @li The completion_condition function object returns 0.
  130. *
  131. * This operation is implemented in terms of zero or more calls to the device's
  132. * read_some_at function.
  133. *
  134. * @param d The device from which the data is to be read. The type must support
  135. * the SyncRandomAccessReadDevice concept.
  136. *
  137. * @param offset The offset at which the data will be read.
  138. *
  139. * @param buffers One or more buffers into which the data will be read. The sum
  140. * of the buffer sizes indicates the maximum number of bytes to read from the
  141. * device.
  142. *
  143. * @param completion_condition The function object to be called to determine
  144. * whether the read operation is complete. The signature of the function object
  145. * must be:
  146. * @code std::size_t completion_condition(
  147. * // Result of latest read_some_at operation.
  148. * const boost::system::error_code& error,
  149. *
  150. * // Number of bytes transferred so far.
  151. * std::size_t bytes_transferred
  152. * ); @endcode
  153. * A return value of 0 indicates that the read operation is complete. A non-zero
  154. * return value indicates the maximum number of bytes to be read on the next
  155. * call to the device's read_some_at function.
  156. *
  157. * @returns The number of bytes transferred.
  158. *
  159. * @throws boost::system::system_error Thrown on failure.
  160. *
  161. * @par Example
  162. * To read into a single data buffer use the @ref buffer function as follows:
  163. * @code boost::asio::read_at(d, 42, boost::asio::buffer(data, size),
  164. * boost::asio::transfer_at_least(32)); @endcode
  165. * See the @ref buffer documentation for information on reading into multiple
  166. * buffers in one go, and how to use it with arrays, boost::array or
  167. * std::vector.
  168. */
  169. template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence,
  170. typename CompletionCondition>
  171. std::size_t read_at(SyncRandomAccessReadDevice& d,
  172. uint64_t offset, const MutableBufferSequence& buffers,
  173. CompletionCondition completion_condition);
  174. /// Attempt to read a certain amount of data at the specified offset before
  175. /// returning.
  176. /**
  177. * This function is used to read a certain number of bytes of data from a
  178. * random access device at the specified offset. The call will block until one
  179. * of the following conditions is true:
  180. *
  181. * @li The supplied buffers are full. That is, the bytes transferred is equal to
  182. * the sum of the buffer sizes.
  183. *
  184. * @li The completion_condition function object returns 0.
  185. *
  186. * This operation is implemented in terms of zero or more calls to the device's
  187. * read_some_at function.
  188. *
  189. * @param d The device from which the data is to be read. The type must support
  190. * the SyncRandomAccessReadDevice concept.
  191. *
  192. * @param offset The offset at which the data will be read.
  193. *
  194. * @param buffers One or more buffers into which the data will be read. The sum
  195. * of the buffer sizes indicates the maximum number of bytes to read from the
  196. * device.
  197. *
  198. * @param completion_condition The function object to be called to determine
  199. * whether the read operation is complete. The signature of the function object
  200. * must be:
  201. * @code std::size_t completion_condition(
  202. * // Result of latest read_some_at operation.
  203. * const boost::system::error_code& error,
  204. *
  205. * // Number of bytes transferred so far.
  206. * std::size_t bytes_transferred
  207. * ); @endcode
  208. * A return value of 0 indicates that the read operation is complete. A non-zero
  209. * return value indicates the maximum number of bytes to be read on the next
  210. * call to the device's read_some_at function.
  211. *
  212. * @param ec Set to indicate what error occurred, if any.
  213. *
  214. * @returns The number of bytes read. If an error occurs, returns the total
  215. * number of bytes successfully transferred prior to the error.
  216. */
  217. template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence,
  218. typename CompletionCondition>
  219. std::size_t read_at(SyncRandomAccessReadDevice& d,
  220. uint64_t offset, const MutableBufferSequence& buffers,
  221. CompletionCondition completion_condition, boost::system::error_code& ec);
  222. #if !defined(BOOST_ASIO_NO_IOSTREAM)
  223. /// Attempt to read a certain amount of data at the specified offset before
  224. /// returning.
  225. /**
  226. * This function is used to read a certain number of bytes of data from a
  227. * random access device at the specified offset. The call will block until one
  228. * of the following conditions is true:
  229. *
  230. * @li An error occurred.
  231. *
  232. * This operation is implemented in terms of zero or more calls to the device's
  233. * read_some_at function.
  234. *
  235. * @param d The device from which the data is to be read. The type must support
  236. * the SyncRandomAccessReadDevice concept.
  237. *
  238. * @param offset The offset at which the data will be read.
  239. *
  240. * @param b The basic_streambuf object into which the data will be read.
  241. *
  242. * @returns The number of bytes transferred.
  243. *
  244. * @throws boost::system::system_error Thrown on failure.
  245. *
  246. * @note This overload is equivalent to calling:
  247. * @code boost::asio::read_at(
  248. * d, 42, b,
  249. * boost::asio::transfer_all()); @endcode
  250. */
  251. template <typename SyncRandomAccessReadDevice, typename Allocator>
  252. std::size_t read_at(SyncRandomAccessReadDevice& d,
  253. uint64_t offset, basic_streambuf<Allocator>& b);
  254. /// Attempt to read a certain amount of data at the specified offset before
  255. /// returning.
  256. /**
  257. * This function is used to read a certain number of bytes of data from a
  258. * random access device at the specified offset. The call will block until one
  259. * of the following conditions is true:
  260. *
  261. * @li An error occurred.
  262. *
  263. * This operation is implemented in terms of zero or more calls to the device's
  264. * read_some_at function.
  265. *
  266. * @param d The device from which the data is to be read. The type must support
  267. * the SyncRandomAccessReadDevice concept.
  268. *
  269. * @param offset The offset at which the data will be read.
  270. *
  271. * @param b The basic_streambuf object into which the data will be read.
  272. *
  273. * @param ec Set to indicate what error occurred, if any.
  274. *
  275. * @returns The number of bytes transferred.
  276. *
  277. * @note This overload is equivalent to calling:
  278. * @code boost::asio::read_at(
  279. * d, 42, b,
  280. * boost::asio::transfer_all(), ec); @endcode
  281. */
  282. template <typename SyncRandomAccessReadDevice, typename Allocator>
  283. std::size_t read_at(SyncRandomAccessReadDevice& d,
  284. uint64_t offset, basic_streambuf<Allocator>& b,
  285. boost::system::error_code& ec);
  286. /// Attempt to read a certain amount of data at the specified offset before
  287. /// returning.
  288. /**
  289. * This function is used to read a certain number of bytes of data from a
  290. * random access device at the specified offset. The call will block until one
  291. * of the following conditions is true:
  292. *
  293. * @li The completion_condition function object returns 0.
  294. *
  295. * This operation is implemented in terms of zero or more calls to the device's
  296. * read_some_at function.
  297. *
  298. * @param d The device from which the data is to be read. The type must support
  299. * the SyncRandomAccessReadDevice concept.
  300. *
  301. * @param offset The offset at which the data will be read.
  302. *
  303. * @param b The basic_streambuf object into which the data will be read.
  304. *
  305. * @param completion_condition The function object to be called to determine
  306. * whether the read operation is complete. The signature of the function object
  307. * must be:
  308. * @code std::size_t completion_condition(
  309. * // Result of latest read_some_at operation.
  310. * const boost::system::error_code& error,
  311. *
  312. * // Number of bytes transferred so far.
  313. * std::size_t bytes_transferred
  314. * ); @endcode
  315. * A return value of 0 indicates that the read operation is complete. A non-zero
  316. * return value indicates the maximum number of bytes to be read on the next
  317. * call to the device's read_some_at function.
  318. *
  319. * @returns The number of bytes transferred.
  320. *
  321. * @throws boost::system::system_error Thrown on failure.
  322. */
  323. template <typename SyncRandomAccessReadDevice, typename Allocator,
  324. typename CompletionCondition>
  325. std::size_t read_at(SyncRandomAccessReadDevice& d,
  326. uint64_t offset, basic_streambuf<Allocator>& b,
  327. CompletionCondition completion_condition);
  328. /// Attempt to read a certain amount of data at the specified offset before
  329. /// returning.
  330. /**
  331. * This function is used to read a certain number of bytes of data from a
  332. * random access device at the specified offset. The call will block until one
  333. * of the following conditions is true:
  334. *
  335. * @li The completion_condition function object returns 0.
  336. *
  337. * This operation is implemented in terms of zero or more calls to the device's
  338. * read_some_at function.
  339. *
  340. * @param d The device from which the data is to be read. The type must support
  341. * the SyncRandomAccessReadDevice concept.
  342. *
  343. * @param offset The offset at which the data will be read.
  344. *
  345. * @param b The basic_streambuf object into which the data will be read.
  346. *
  347. * @param completion_condition The function object to be called to determine
  348. * whether the read operation is complete. The signature of the function object
  349. * must be:
  350. * @code std::size_t completion_condition(
  351. * // Result of latest read_some_at operation.
  352. * const boost::system::error_code& error,
  353. *
  354. * // Number of bytes transferred so far.
  355. * std::size_t bytes_transferred
  356. * ); @endcode
  357. * A return value of 0 indicates that the read operation is complete. A non-zero
  358. * return value indicates the maximum number of bytes to be read on the next
  359. * call to the device's read_some_at function.
  360. *
  361. * @param ec Set to indicate what error occurred, if any.
  362. *
  363. * @returns The number of bytes read. If an error occurs, returns the total
  364. * number of bytes successfully transferred prior to the error.
  365. */
  366. template <typename SyncRandomAccessReadDevice, typename Allocator,
  367. typename CompletionCondition>
  368. std::size_t read_at(SyncRandomAccessReadDevice& d,
  369. uint64_t offset, basic_streambuf<Allocator>& b,
  370. CompletionCondition completion_condition, boost::system::error_code& ec);
  371. #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
  372. /*@}*/
  373. /**
  374. * @defgroup async_read_at boost::asio::async_read_at
  375. *
  376. * @brief Start an asynchronous operation to read a certain amount of data at
  377. * the specified offset.
  378. */
  379. /*@{*/
  380. /// Start an asynchronous operation to read a certain amount of data at the
  381. /// specified offset.
  382. /**
  383. * This function is used to asynchronously read a certain number of bytes of
  384. * data from a random access device at the specified offset. The function call
  385. * always returns immediately. The asynchronous operation will continue until
  386. * one of the following conditions is true:
  387. *
  388. * @li The supplied buffers are full. That is, the bytes transferred is equal to
  389. * the sum of the buffer sizes.
  390. *
  391. * @li An error occurred.
  392. *
  393. * This operation is implemented in terms of zero or more calls to the device's
  394. * async_read_some_at function.
  395. *
  396. * @param d The device from which the data is to be read. The type must support
  397. * the AsyncRandomAccessReadDevice concept.
  398. *
  399. * @param offset The offset at which the data will be read.
  400. *
  401. * @param buffers One or more buffers into which the data will be read. The sum
  402. * of the buffer sizes indicates the maximum number of bytes to read from the
  403. * device. Although the buffers object may be copied as necessary, ownership of
  404. * the underlying memory blocks is retained by the caller, which must guarantee
  405. * that they remain valid until the handler is called.
  406. *
  407. * @param handler The handler to be called when the read operation completes.
  408. * Copies will be made of the handler as required. The function signature of the
  409. * handler must be:
  410. * @code void handler(
  411. * // Result of operation.
  412. * const boost::system::error_code& error,
  413. *
  414. * // Number of bytes copied into the buffers. If an error
  415. * // occurred, this will be the number of bytes successfully
  416. * // transferred prior to the error.
  417. * std::size_t bytes_transferred
  418. * ); @endcode
  419. * Regardless of whether the asynchronous operation completes immediately or
  420. * not, the handler will not be invoked from within this function. Invocation of
  421. * the handler will be performed in a manner equivalent to using
  422. * boost::asio::io_service::post().
  423. *
  424. * @par Example
  425. * To read into a single data buffer use the @ref buffer function as follows:
  426. * @code
  427. * boost::asio::async_read_at(d, 42, boost::asio::buffer(data, size), handler);
  428. * @endcode
  429. * See the @ref buffer documentation for information on reading into multiple
  430. * buffers in one go, and how to use it with arrays, boost::array or
  431. * std::vector.
  432. *
  433. * @note This overload is equivalent to calling:
  434. * @code boost::asio::async_read_at(
  435. * d, 42, buffers,
  436. * boost::asio::transfer_all(),
  437. * handler); @endcode
  438. */
  439. template <typename AsyncRandomAccessReadDevice, typename MutableBufferSequence,
  440. typename ReadHandler>
  441. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  442. void (boost::system::error_code, std::size_t))
  443. async_read_at(AsyncRandomAccessReadDevice& d, uint64_t offset,
  444. const MutableBufferSequence& buffers,
  445. BOOST_ASIO_MOVE_ARG(ReadHandler) handler);
  446. /// Start an asynchronous operation to read a certain amount of data at the
  447. /// specified offset.
  448. /**
  449. * This function is used to asynchronously read a certain number of bytes of
  450. * data from a random access device at the specified offset. The function call
  451. * always returns immediately. The asynchronous operation will continue until
  452. * one of the following conditions is true:
  453. *
  454. * @li The supplied buffers are full. That is, the bytes transferred is equal to
  455. * the sum of the buffer sizes.
  456. *
  457. * @li The completion_condition function object returns 0.
  458. *
  459. * @param d The device from which the data is to be read. The type must support
  460. * the AsyncRandomAccessReadDevice concept.
  461. *
  462. * @param offset The offset at which the data will be read.
  463. *
  464. * @param buffers One or more buffers into which the data will be read. The sum
  465. * of the buffer sizes indicates the maximum number of bytes to read from the
  466. * device. Although the buffers object may be copied as necessary, ownership of
  467. * the underlying memory blocks is retained by the caller, which must guarantee
  468. * that they remain valid until the handler is called.
  469. *
  470. * @param completion_condition The function object to be called to determine
  471. * whether the read operation is complete. The signature of the function object
  472. * must be:
  473. * @code std::size_t completion_condition(
  474. * // Result of latest async_read_some_at operation.
  475. * const boost::system::error_code& error,
  476. *
  477. * // Number of bytes transferred so far.
  478. * std::size_t bytes_transferred
  479. * ); @endcode
  480. * A return value of 0 indicates that the read operation is complete. A non-zero
  481. * return value indicates the maximum number of bytes to be read on the next
  482. * call to the device's async_read_some_at function.
  483. *
  484. * @param handler The handler to be called when the read operation completes.
  485. * Copies will be made of the handler as required. The function signature of the
  486. * handler must be:
  487. * @code void handler(
  488. * // Result of operation.
  489. * const boost::system::error_code& error,
  490. *
  491. * // Number of bytes copied into the buffers. If an error
  492. * // occurred, this will be the number of bytes successfully
  493. * // transferred prior to the error.
  494. * std::size_t bytes_transferred
  495. * ); @endcode
  496. * Regardless of whether the asynchronous operation completes immediately or
  497. * not, the handler will not be invoked from within this function. Invocation of
  498. * the handler will be performed in a manner equivalent to using
  499. * boost::asio::io_service::post().
  500. *
  501. * @par Example
  502. * To read into a single data buffer use the @ref buffer function as follows:
  503. * @code boost::asio::async_read_at(d, 42,
  504. * boost::asio::buffer(data, size),
  505. * boost::asio::transfer_at_least(32),
  506. * handler); @endcode
  507. * See the @ref buffer documentation for information on reading into multiple
  508. * buffers in one go, and how to use it with arrays, boost::array or
  509. * std::vector.
  510. */
  511. template <typename AsyncRandomAccessReadDevice, typename MutableBufferSequence,
  512. typename CompletionCondition, typename ReadHandler>
  513. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  514. void (boost::system::error_code, std::size_t))
  515. async_read_at(AsyncRandomAccessReadDevice& d,
  516. uint64_t offset, const MutableBufferSequence& buffers,
  517. CompletionCondition completion_condition,
  518. BOOST_ASIO_MOVE_ARG(ReadHandler) handler);
  519. #if !defined(BOOST_ASIO_NO_IOSTREAM)
  520. /// Start an asynchronous operation to read a certain amount of data at the
  521. /// specified offset.
  522. /**
  523. * This function is used to asynchronously read a certain number of bytes of
  524. * data from a random access device at the specified offset. The function call
  525. * always returns immediately. The asynchronous operation will continue until
  526. * one of the following conditions is true:
  527. *
  528. * @li An error occurred.
  529. *
  530. * This operation is implemented in terms of zero or more calls to the device's
  531. * async_read_some_at function.
  532. *
  533. * @param d The device from which the data is to be read. The type must support
  534. * the AsyncRandomAccessReadDevice concept.
  535. *
  536. * @param offset The offset at which the data will be read.
  537. *
  538. * @param b A basic_streambuf object into which the data will be read. Ownership
  539. * of the streambuf is retained by the caller, which must guarantee that it
  540. * remains valid until the handler is called.
  541. *
  542. * @param handler The handler to be called when the read operation completes.
  543. * Copies will be made of the handler as required. The function signature of the
  544. * handler must be:
  545. * @code void handler(
  546. * // Result of operation.
  547. * const boost::system::error_code& error,
  548. *
  549. * // Number of bytes copied into the buffers. If an error
  550. * // occurred, this will be the number of bytes successfully
  551. * // transferred prior to the error.
  552. * std::size_t bytes_transferred
  553. * ); @endcode
  554. * Regardless of whether the asynchronous operation completes immediately or
  555. * not, the handler will not be invoked from within this function. Invocation of
  556. * the handler will be performed in a manner equivalent to using
  557. * boost::asio::io_service::post().
  558. *
  559. * @note This overload is equivalent to calling:
  560. * @code boost::asio::async_read_at(
  561. * d, 42, b,
  562. * boost::asio::transfer_all(),
  563. * handler); @endcode
  564. */
  565. template <typename AsyncRandomAccessReadDevice, typename Allocator,
  566. typename ReadHandler>
  567. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  568. void (boost::system::error_code, std::size_t))
  569. async_read_at(AsyncRandomAccessReadDevice& d, uint64_t offset,
  570. basic_streambuf<Allocator>& b, BOOST_ASIO_MOVE_ARG(ReadHandler) handler);
  571. /// Start an asynchronous operation to read a certain amount of data at the
  572. /// specified offset.
  573. /**
  574. * This function is used to asynchronously read a certain number of bytes of
  575. * data from a random access device at the specified offset. The function call
  576. * always returns immediately. The asynchronous operation will continue until
  577. * one of the following conditions is true:
  578. *
  579. * @li The completion_condition function object returns 0.
  580. *
  581. * This operation is implemented in terms of zero or more calls to the device's
  582. * async_read_some_at function.
  583. *
  584. * @param d The device from which the data is to be read. The type must support
  585. * the AsyncRandomAccessReadDevice concept.
  586. *
  587. * @param offset The offset at which the data will be read.
  588. *
  589. * @param b A basic_streambuf object into which the data will be read. Ownership
  590. * of the streambuf is retained by the caller, which must guarantee that it
  591. * remains valid until the handler is called.
  592. *
  593. * @param completion_condition The function object to be called to determine
  594. * whether the read operation is complete. The signature of the function object
  595. * must be:
  596. * @code std::size_t completion_condition(
  597. * // Result of latest async_read_some_at operation.
  598. * const boost::system::error_code& error,
  599. *
  600. * // Number of bytes transferred so far.
  601. * std::size_t bytes_transferred
  602. * ); @endcode
  603. * A return value of 0 indicates that the read operation is complete. A non-zero
  604. * return value indicates the maximum number of bytes to be read on the next
  605. * call to the device's async_read_some_at function.
  606. *
  607. * @param handler The handler to be called when the read operation completes.
  608. * Copies will be made of the handler as required. The function signature of the
  609. * handler must be:
  610. * @code void handler(
  611. * // Result of operation.
  612. * const boost::system::error_code& error,
  613. *
  614. * // Number of bytes copied into the buffers. If an error
  615. * // occurred, this will be the number of bytes successfully
  616. * // transferred prior to the error.
  617. * std::size_t bytes_transferred
  618. * ); @endcode
  619. * Regardless of whether the asynchronous operation completes immediately or
  620. * not, the handler will not be invoked from within this function. Invocation of
  621. * the handler will be performed in a manner equivalent to using
  622. * boost::asio::io_service::post().
  623. */
  624. template <typename AsyncRandomAccessReadDevice, typename Allocator,
  625. typename CompletionCondition, typename ReadHandler>
  626. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  627. void (boost::system::error_code, std::size_t))
  628. async_read_at(AsyncRandomAccessReadDevice& d,
  629. uint64_t offset, basic_streambuf<Allocator>& b,
  630. CompletionCondition completion_condition,
  631. BOOST_ASIO_MOVE_ARG(ReadHandler) handler);
  632. #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
  633. /*@}*/
  634. } // namespace asio
  635. } // namespace boost
  636. #include <boost/asio/detail/pop_options.hpp>
  637. #include <boost/asio/impl/read_at.hpp>
  638. #endif // BOOST_ASIO_READ_AT_HPP