read.hpp 25 KB

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