basic_stream_socket.hpp 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. //
  2. // basic_stream_socket.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_BASIC_STREAM_SOCKET_HPP
  11. #define BOOST_ASIO_BASIC_STREAM_SOCKET_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_socket.hpp>
  19. #include <boost/asio/detail/handler_type_requirements.hpp>
  20. #include <boost/asio/detail/throw_error.hpp>
  21. #include <boost/asio/error.hpp>
  22. #include <boost/asio/stream_socket_service.hpp>
  23. #include <boost/asio/detail/push_options.hpp>
  24. namespace boost {
  25. namespace asio {
  26. /// Provides stream-oriented socket functionality.
  27. /**
  28. * The basic_stream_socket class template provides asynchronous and blocking
  29. * stream-oriented socket functionality.
  30. *
  31. * @par Thread Safety
  32. * @e Distinct @e objects: Safe.@n
  33. * @e Shared @e objects: Unsafe.
  34. *
  35. * @par Concepts:
  36. * AsyncReadStream, AsyncWriteStream, Stream, SyncReadStream, SyncWriteStream.
  37. */
  38. template <typename Protocol,
  39. typename StreamSocketService = stream_socket_service<Protocol> >
  40. class basic_stream_socket
  41. : public basic_socket<Protocol, StreamSocketService>
  42. {
  43. public:
  44. /// (Deprecated: Use native_handle_type.) The native representation of a
  45. /// socket.
  46. typedef typename StreamSocketService::native_handle_type native_type;
  47. /// The native representation of a socket.
  48. typedef typename StreamSocketService::native_handle_type native_handle_type;
  49. /// The protocol type.
  50. typedef Protocol protocol_type;
  51. /// The endpoint type.
  52. typedef typename Protocol::endpoint endpoint_type;
  53. /// Construct a basic_stream_socket without opening it.
  54. /**
  55. * This constructor creates a stream socket without opening it. The socket
  56. * needs to be opened and then connected or accepted before data can be sent
  57. * or received on it.
  58. *
  59. * @param io_service The io_service object that the stream socket will use to
  60. * dispatch handlers for any asynchronous operations performed on the socket.
  61. */
  62. explicit basic_stream_socket(boost::asio::io_service& io_service)
  63. : basic_socket<Protocol, StreamSocketService>(io_service)
  64. {
  65. }
  66. /// Construct and open a basic_stream_socket.
  67. /**
  68. * This constructor creates and opens a stream socket. The socket needs to be
  69. * connected or accepted before data can be sent or received on it.
  70. *
  71. * @param io_service The io_service object that the stream socket will use to
  72. * dispatch handlers for any asynchronous operations performed on the socket.
  73. *
  74. * @param protocol An object specifying protocol parameters to be used.
  75. *
  76. * @throws boost::system::system_error Thrown on failure.
  77. */
  78. basic_stream_socket(boost::asio::io_service& io_service,
  79. const protocol_type& protocol)
  80. : basic_socket<Protocol, StreamSocketService>(io_service, protocol)
  81. {
  82. }
  83. /// Construct a basic_stream_socket, opening it and binding it to the given
  84. /// local endpoint.
  85. /**
  86. * This constructor creates a stream socket and automatically opens it bound
  87. * to the specified endpoint on the local machine. The protocol used is the
  88. * protocol associated with the given endpoint.
  89. *
  90. * @param io_service The io_service object that the stream socket will use to
  91. * dispatch handlers for any asynchronous operations performed on the socket.
  92. *
  93. * @param endpoint An endpoint on the local machine to which the stream
  94. * socket will be bound.
  95. *
  96. * @throws boost::system::system_error Thrown on failure.
  97. */
  98. basic_stream_socket(boost::asio::io_service& io_service,
  99. const endpoint_type& endpoint)
  100. : basic_socket<Protocol, StreamSocketService>(io_service, endpoint)
  101. {
  102. }
  103. /// Construct a basic_stream_socket on an existing native socket.
  104. /**
  105. * This constructor creates a stream socket object to hold an existing native
  106. * socket.
  107. *
  108. * @param io_service The io_service object that the stream socket will use to
  109. * dispatch handlers for any asynchronous operations performed on the socket.
  110. *
  111. * @param protocol An object specifying protocol parameters to be used.
  112. *
  113. * @param native_socket The new underlying socket implementation.
  114. *
  115. * @throws boost::system::system_error Thrown on failure.
  116. */
  117. basic_stream_socket(boost::asio::io_service& io_service,
  118. const protocol_type& protocol, const native_handle_type& native_socket)
  119. : basic_socket<Protocol, StreamSocketService>(
  120. io_service, protocol, native_socket)
  121. {
  122. }
  123. #if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  124. /// Move-construct a basic_stream_socket from another.
  125. /**
  126. * This constructor moves a stream socket from one object to another.
  127. *
  128. * @param other The other basic_stream_socket object from which the move
  129. * will occur.
  130. *
  131. * @note Following the move, the moved-from object is in the same state as if
  132. * constructed using the @c basic_stream_socket(io_service&) constructor.
  133. */
  134. basic_stream_socket(basic_stream_socket&& other)
  135. : basic_socket<Protocol, StreamSocketService>(
  136. BOOST_ASIO_MOVE_CAST(basic_stream_socket)(other))
  137. {
  138. }
  139. /// Move-assign a basic_stream_socket from another.
  140. /**
  141. * This assignment operator moves a stream socket from one object to another.
  142. *
  143. * @param other The other basic_stream_socket object from which the move
  144. * will occur.
  145. *
  146. * @note Following the move, the moved-from object is in the same state as if
  147. * constructed using the @c basic_stream_socket(io_service&) constructor.
  148. */
  149. basic_stream_socket& operator=(basic_stream_socket&& other)
  150. {
  151. basic_socket<Protocol, StreamSocketService>::operator=(
  152. BOOST_ASIO_MOVE_CAST(basic_stream_socket)(other));
  153. return *this;
  154. }
  155. /// Move-construct a basic_stream_socket from a socket of another protocol
  156. /// type.
  157. /**
  158. * This constructor moves a stream socket from one object to another.
  159. *
  160. * @param other The other basic_stream_socket object from which the move
  161. * will occur.
  162. *
  163. * @note Following the move, the moved-from object is in the same state as if
  164. * constructed using the @c basic_stream_socket(io_service&) constructor.
  165. */
  166. template <typename Protocol1, typename StreamSocketService1>
  167. basic_stream_socket(
  168. basic_stream_socket<Protocol1, StreamSocketService1>&& other,
  169. typename enable_if<is_convertible<Protocol1, Protocol>::value>::type* = 0)
  170. : basic_socket<Protocol, StreamSocketService>(
  171. BOOST_ASIO_MOVE_CAST2(basic_stream_socket<
  172. Protocol1, StreamSocketService1>)(other))
  173. {
  174. }
  175. /// Move-assign a basic_stream_socket from a socket of another protocol type.
  176. /**
  177. * This assignment operator moves a stream socket from one object to another.
  178. *
  179. * @param other The other basic_stream_socket object from which the move
  180. * will occur.
  181. *
  182. * @note Following the move, the moved-from object is in the same state as if
  183. * constructed using the @c basic_stream_socket(io_service&) constructor.
  184. */
  185. template <typename Protocol1, typename StreamSocketService1>
  186. typename enable_if<is_convertible<Protocol1, Protocol>::value,
  187. basic_stream_socket>::type& operator=(
  188. basic_stream_socket<Protocol1, StreamSocketService1>&& other)
  189. {
  190. basic_socket<Protocol, StreamSocketService>::operator=(
  191. BOOST_ASIO_MOVE_CAST2(basic_stream_socket<
  192. Protocol1, StreamSocketService1>)(other));
  193. return *this;
  194. }
  195. #endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  196. /// Send some data on the socket.
  197. /**
  198. * This function is used to send data on the stream socket. The function
  199. * call will block until one or more bytes of the data has been sent
  200. * successfully, or an until error occurs.
  201. *
  202. * @param buffers One or more data buffers to be sent on the socket.
  203. *
  204. * @returns The number of bytes sent.
  205. *
  206. * @throws boost::system::system_error Thrown on failure.
  207. *
  208. * @note The send operation may not transmit all of the data to the peer.
  209. * Consider using the @ref write function if you need to ensure that all data
  210. * is written before the blocking operation completes.
  211. *
  212. * @par Example
  213. * To send a single data buffer use the @ref buffer function as follows:
  214. * @code
  215. * socket.send(boost::asio::buffer(data, size));
  216. * @endcode
  217. * See the @ref buffer documentation for information on sending multiple
  218. * buffers in one go, and how to use it with arrays, boost::array or
  219. * std::vector.
  220. */
  221. template <typename ConstBufferSequence>
  222. std::size_t send(const ConstBufferSequence& buffers)
  223. {
  224. boost::system::error_code ec;
  225. std::size_t s = this->get_service().send(
  226. this->get_implementation(), buffers, 0, ec);
  227. boost::asio::detail::throw_error(ec, "send");
  228. return s;
  229. }
  230. /// Send some data on the socket.
  231. /**
  232. * This function is used to send data on the stream socket. The function
  233. * call will block until one or more bytes of the data has been sent
  234. * successfully, or an until error occurs.
  235. *
  236. * @param buffers One or more data buffers to be sent on the socket.
  237. *
  238. * @param flags Flags specifying how the send call is to be made.
  239. *
  240. * @returns The number of bytes sent.
  241. *
  242. * @throws boost::system::system_error Thrown on failure.
  243. *
  244. * @note The send operation may not transmit all of the data to the peer.
  245. * Consider using the @ref write function if you need to ensure that all data
  246. * is written before the blocking operation completes.
  247. *
  248. * @par Example
  249. * To send a single data buffer use the @ref buffer function as follows:
  250. * @code
  251. * socket.send(boost::asio::buffer(data, size), 0);
  252. * @endcode
  253. * See the @ref buffer documentation for information on sending multiple
  254. * buffers in one go, and how to use it with arrays, boost::array or
  255. * std::vector.
  256. */
  257. template <typename ConstBufferSequence>
  258. std::size_t send(const ConstBufferSequence& buffers,
  259. socket_base::message_flags flags)
  260. {
  261. boost::system::error_code ec;
  262. std::size_t s = this->get_service().send(
  263. this->get_implementation(), buffers, flags, ec);
  264. boost::asio::detail::throw_error(ec, "send");
  265. return s;
  266. }
  267. /// Send some data on the socket.
  268. /**
  269. * This function is used to send data on the stream socket. The function
  270. * call will block until one or more bytes of the data has been sent
  271. * successfully, or an until error occurs.
  272. *
  273. * @param buffers One or more data buffers to be sent on the socket.
  274. *
  275. * @param flags Flags specifying how the send call is to be made.
  276. *
  277. * @param ec Set to indicate what error occurred, if any.
  278. *
  279. * @returns The number of bytes sent. Returns 0 if an error occurred.
  280. *
  281. * @note The send operation may not transmit all of the data to the peer.
  282. * Consider using the @ref write function if you need to ensure that all data
  283. * is written before the blocking operation completes.
  284. */
  285. template <typename ConstBufferSequence>
  286. std::size_t send(const ConstBufferSequence& buffers,
  287. socket_base::message_flags flags, boost::system::error_code& ec)
  288. {
  289. return this->get_service().send(
  290. this->get_implementation(), buffers, flags, ec);
  291. }
  292. /// Start an asynchronous send.
  293. /**
  294. * This function is used to asynchronously send data on the stream socket.
  295. * The function call always returns immediately.
  296. *
  297. * @param buffers One or more data buffers to be sent on the socket. Although
  298. * the buffers object may be copied as necessary, ownership of the underlying
  299. * memory blocks is retained by the caller, which must guarantee that they
  300. * remain valid until the handler is called.
  301. *
  302. * @param handler The handler to be called when the send operation completes.
  303. * Copies will be made of the handler as required. The function signature of
  304. * the handler must be:
  305. * @code void handler(
  306. * const boost::system::error_code& error, // Result of operation.
  307. * std::size_t bytes_transferred // Number of bytes sent.
  308. * ); @endcode
  309. * Regardless of whether the asynchronous operation completes immediately or
  310. * not, the handler will not be invoked from within this function. Invocation
  311. * of the handler will be performed in a manner equivalent to using
  312. * boost::asio::io_service::post().
  313. *
  314. * @note The send operation may not transmit all of the data to the peer.
  315. * Consider using the @ref async_write function if you need to ensure that all
  316. * data is written before the asynchronous operation completes.
  317. *
  318. * @par Example
  319. * To send a single data buffer use the @ref buffer function as follows:
  320. * @code
  321. * socket.async_send(boost::asio::buffer(data, size), handler);
  322. * @endcode
  323. * See the @ref buffer documentation for information on sending multiple
  324. * buffers in one go, and how to use it with arrays, boost::array or
  325. * std::vector.
  326. */
  327. template <typename ConstBufferSequence, typename WriteHandler>
  328. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  329. void (boost::system::error_code, std::size_t))
  330. async_send(const ConstBufferSequence& buffers,
  331. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  332. {
  333. // If you get an error on the following line it means that your handler does
  334. // not meet the documented type requirements for a WriteHandler.
  335. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  336. return this->get_service().async_send(
  337. this->get_implementation(), buffers, 0,
  338. BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  339. }
  340. /// Start an asynchronous send.
  341. /**
  342. * This function is used to asynchronously send data on the stream socket.
  343. * The function call always returns immediately.
  344. *
  345. * @param buffers One or more data buffers to be sent on the socket. Although
  346. * the buffers object may be copied as necessary, ownership of the underlying
  347. * memory blocks is retained by the caller, which must guarantee that they
  348. * remain valid until the handler is called.
  349. *
  350. * @param flags Flags specifying how the send call is to be made.
  351. *
  352. * @param handler The handler to be called when the send operation completes.
  353. * Copies will be made of the handler as required. The function signature of
  354. * the handler must be:
  355. * @code void handler(
  356. * const boost::system::error_code& error, // Result of operation.
  357. * std::size_t bytes_transferred // Number of bytes sent.
  358. * ); @endcode
  359. * Regardless of whether the asynchronous operation completes immediately or
  360. * not, the handler will not be invoked from within this function. Invocation
  361. * of the handler will be performed in a manner equivalent to using
  362. * boost::asio::io_service::post().
  363. *
  364. * @note The send operation may not transmit all of the data to the peer.
  365. * Consider using the @ref async_write function if you need to ensure that all
  366. * data is written before the asynchronous operation completes.
  367. *
  368. * @par Example
  369. * To send a single data buffer use the @ref buffer function as follows:
  370. * @code
  371. * socket.async_send(boost::asio::buffer(data, size), 0, handler);
  372. * @endcode
  373. * See the @ref buffer documentation for information on sending multiple
  374. * buffers in one go, and how to use it with arrays, boost::array or
  375. * std::vector.
  376. */
  377. template <typename ConstBufferSequence, typename WriteHandler>
  378. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  379. void (boost::system::error_code, std::size_t))
  380. async_send(const ConstBufferSequence& buffers,
  381. socket_base::message_flags flags,
  382. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  383. {
  384. // If you get an error on the following line it means that your handler does
  385. // not meet the documented type requirements for a WriteHandler.
  386. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  387. return this->get_service().async_send(
  388. this->get_implementation(), buffers, flags,
  389. BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  390. }
  391. /// Receive some data on the socket.
  392. /**
  393. * This function is used to receive data on the stream socket. The function
  394. * call will block until one or more bytes of data has been received
  395. * successfully, or until an error occurs.
  396. *
  397. * @param buffers One or more buffers into which the data will be received.
  398. *
  399. * @returns The number of bytes received.
  400. *
  401. * @throws boost::system::system_error Thrown on failure. An error code of
  402. * boost::asio::error::eof indicates that the connection was closed by the
  403. * peer.
  404. *
  405. * @note The receive operation may not receive all of the requested number of
  406. * bytes. Consider using the @ref read function if you need to ensure that the
  407. * requested amount of data is read before the blocking operation completes.
  408. *
  409. * @par Example
  410. * To receive into a single data buffer use the @ref buffer function as
  411. * follows:
  412. * @code
  413. * socket.receive(boost::asio::buffer(data, size));
  414. * @endcode
  415. * See the @ref buffer documentation for information on receiving into
  416. * multiple buffers in one go, and how to use it with arrays, boost::array or
  417. * std::vector.
  418. */
  419. template <typename MutableBufferSequence>
  420. std::size_t receive(const MutableBufferSequence& buffers)
  421. {
  422. boost::system::error_code ec;
  423. std::size_t s = this->get_service().receive(
  424. this->get_implementation(), buffers, 0, ec);
  425. boost::asio::detail::throw_error(ec, "receive");
  426. return s;
  427. }
  428. /// Receive some data on the socket.
  429. /**
  430. * This function is used to receive data on the stream socket. The function
  431. * call will block until one or more bytes of data has been received
  432. * successfully, or until an error occurs.
  433. *
  434. * @param buffers One or more buffers into which the data will be received.
  435. *
  436. * @param flags Flags specifying how the receive call is to be made.
  437. *
  438. * @returns The number of bytes received.
  439. *
  440. * @throws boost::system::system_error Thrown on failure. An error code of
  441. * boost::asio::error::eof indicates that the connection was closed by the
  442. * peer.
  443. *
  444. * @note The receive operation may not receive all of the requested number of
  445. * bytes. Consider using the @ref read function if you need to ensure that the
  446. * requested amount of data is read before the blocking operation completes.
  447. *
  448. * @par Example
  449. * To receive into a single data buffer use the @ref buffer function as
  450. * follows:
  451. * @code
  452. * socket.receive(boost::asio::buffer(data, size), 0);
  453. * @endcode
  454. * See the @ref buffer documentation for information on receiving into
  455. * multiple buffers in one go, and how to use it with arrays, boost::array or
  456. * std::vector.
  457. */
  458. template <typename MutableBufferSequence>
  459. std::size_t receive(const MutableBufferSequence& buffers,
  460. socket_base::message_flags flags)
  461. {
  462. boost::system::error_code ec;
  463. std::size_t s = this->get_service().receive(
  464. this->get_implementation(), buffers, flags, ec);
  465. boost::asio::detail::throw_error(ec, "receive");
  466. return s;
  467. }
  468. /// Receive some data on a connected socket.
  469. /**
  470. * This function is used to receive data on the stream socket. The function
  471. * call will block until one or more bytes of data has been received
  472. * successfully, or until an error occurs.
  473. *
  474. * @param buffers One or more buffers into which the data will be received.
  475. *
  476. * @param flags Flags specifying how the receive call is to be made.
  477. *
  478. * @param ec Set to indicate what error occurred, if any.
  479. *
  480. * @returns The number of bytes received. Returns 0 if an error occurred.
  481. *
  482. * @note The receive operation may not receive all of the requested number of
  483. * bytes. Consider using the @ref read function if you need to ensure that the
  484. * requested amount of data is read before the blocking operation completes.
  485. */
  486. template <typename MutableBufferSequence>
  487. std::size_t receive(const MutableBufferSequence& buffers,
  488. socket_base::message_flags flags, boost::system::error_code& ec)
  489. {
  490. return this->get_service().receive(
  491. this->get_implementation(), buffers, flags, ec);
  492. }
  493. /// Start an asynchronous receive.
  494. /**
  495. * This function is used to asynchronously receive data from the stream
  496. * socket. The function call always returns immediately.
  497. *
  498. * @param buffers One or more buffers into which the data will be received.
  499. * Although the buffers object may be copied as necessary, ownership of the
  500. * underlying memory blocks is retained by the caller, which must guarantee
  501. * that they remain valid until the handler is called.
  502. *
  503. * @param handler The handler to be called when the receive operation
  504. * completes. Copies will be made of the handler as required. The function
  505. * signature of the handler must be:
  506. * @code void handler(
  507. * const boost::system::error_code& error, // Result of operation.
  508. * std::size_t bytes_transferred // Number of bytes received.
  509. * ); @endcode
  510. * Regardless of whether the asynchronous operation completes immediately or
  511. * not, the handler will not be invoked from within this function. Invocation
  512. * of the handler will be performed in a manner equivalent to using
  513. * boost::asio::io_service::post().
  514. *
  515. * @note The receive operation may not receive all of the requested number of
  516. * bytes. Consider using the @ref async_read function if you need to ensure
  517. * that the requested amount of data is received before the asynchronous
  518. * operation completes.
  519. *
  520. * @par Example
  521. * To receive into a single data buffer use the @ref buffer function as
  522. * follows:
  523. * @code
  524. * socket.async_receive(boost::asio::buffer(data, size), handler);
  525. * @endcode
  526. * See the @ref buffer documentation for information on receiving into
  527. * multiple buffers in one go, and how to use it with arrays, boost::array or
  528. * std::vector.
  529. */
  530. template <typename MutableBufferSequence, typename ReadHandler>
  531. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  532. void (boost::system::error_code, std::size_t))
  533. async_receive(const MutableBufferSequence& buffers,
  534. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  535. {
  536. // If you get an error on the following line it means that your handler does
  537. // not meet the documented type requirements for a ReadHandler.
  538. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  539. return this->get_service().async_receive(this->get_implementation(),
  540. buffers, 0, BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  541. }
  542. /// Start an asynchronous receive.
  543. /**
  544. * This function is used to asynchronously receive data from the stream
  545. * socket. The function call always returns immediately.
  546. *
  547. * @param buffers One or more buffers into which the data will be received.
  548. * Although the buffers object may be copied as necessary, ownership of the
  549. * underlying memory blocks is retained by the caller, which must guarantee
  550. * that they remain valid until the handler is called.
  551. *
  552. * @param flags Flags specifying how the receive call is to be made.
  553. *
  554. * @param handler The handler to be called when the receive operation
  555. * completes. Copies will be made of the handler as required. The function
  556. * signature of the handler must be:
  557. * @code void handler(
  558. * const boost::system::error_code& error, // Result of operation.
  559. * std::size_t bytes_transferred // Number of bytes received.
  560. * ); @endcode
  561. * Regardless of whether the asynchronous operation completes immediately or
  562. * not, the handler will not be invoked from within this function. Invocation
  563. * of the handler will be performed in a manner equivalent to using
  564. * boost::asio::io_service::post().
  565. *
  566. * @note The receive operation may not receive all of the requested number of
  567. * bytes. Consider using the @ref async_read function if you need to ensure
  568. * that the requested amount of data is received before the asynchronous
  569. * operation completes.
  570. *
  571. * @par Example
  572. * To receive into a single data buffer use the @ref buffer function as
  573. * follows:
  574. * @code
  575. * socket.async_receive(boost::asio::buffer(data, size), 0, handler);
  576. * @endcode
  577. * See the @ref buffer documentation for information on receiving into
  578. * multiple buffers in one go, and how to use it with arrays, boost::array or
  579. * std::vector.
  580. */
  581. template <typename MutableBufferSequence, typename ReadHandler>
  582. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  583. void (boost::system::error_code, std::size_t))
  584. async_receive(const MutableBufferSequence& buffers,
  585. socket_base::message_flags flags,
  586. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  587. {
  588. // If you get an error on the following line it means that your handler does
  589. // not meet the documented type requirements for a ReadHandler.
  590. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  591. return this->get_service().async_receive(this->get_implementation(),
  592. buffers, flags, BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  593. }
  594. /// Write some data to the socket.
  595. /**
  596. * This function is used to write data to the stream socket. The function call
  597. * will block until one or more bytes of the data has been written
  598. * successfully, or until an error occurs.
  599. *
  600. * @param buffers One or more data buffers to be written to the socket.
  601. *
  602. * @returns The number of bytes written.
  603. *
  604. * @throws boost::system::system_error Thrown on failure. An error code of
  605. * boost::asio::error::eof indicates that the connection was closed by the
  606. * peer.
  607. *
  608. * @note The write_some operation may not transmit all of the data to the
  609. * peer. Consider using the @ref write function if you need to ensure that
  610. * all data is written before the blocking operation completes.
  611. *
  612. * @par Example
  613. * To write a single data buffer use the @ref buffer function as follows:
  614. * @code
  615. * socket.write_some(boost::asio::buffer(data, size));
  616. * @endcode
  617. * See the @ref buffer documentation for information on writing multiple
  618. * buffers in one go, and how to use it with arrays, boost::array or
  619. * std::vector.
  620. */
  621. template <typename ConstBufferSequence>
  622. std::size_t write_some(const ConstBufferSequence& buffers)
  623. {
  624. boost::system::error_code ec;
  625. std::size_t s = this->get_service().send(
  626. this->get_implementation(), buffers, 0, ec);
  627. boost::asio::detail::throw_error(ec, "write_some");
  628. return s;
  629. }
  630. /// Write some data to the socket.
  631. /**
  632. * This function is used to write data to the stream socket. The function call
  633. * will block until one or more bytes of the data has been written
  634. * successfully, or until an error occurs.
  635. *
  636. * @param buffers One or more data buffers to be written to the socket.
  637. *
  638. * @param ec Set to indicate what error occurred, if any.
  639. *
  640. * @returns The number of bytes written. Returns 0 if an error occurred.
  641. *
  642. * @note The write_some operation may not transmit all of the data to the
  643. * peer. Consider using the @ref write function if you need to ensure that
  644. * all data is written before the blocking operation completes.
  645. */
  646. template <typename ConstBufferSequence>
  647. std::size_t write_some(const ConstBufferSequence& buffers,
  648. boost::system::error_code& ec)
  649. {
  650. return this->get_service().send(this->get_implementation(), buffers, 0, ec);
  651. }
  652. /// Start an asynchronous write.
  653. /**
  654. * This function is used to asynchronously write data to the stream socket.
  655. * The function call always returns immediately.
  656. *
  657. * @param buffers One or more data buffers to be written to the socket.
  658. * Although the buffers object may be copied as necessary, ownership of the
  659. * underlying memory blocks is retained by the caller, which must guarantee
  660. * that they remain valid until the handler is called.
  661. *
  662. * @param handler The handler to be called when the write operation completes.
  663. * Copies will be made of the handler as required. The function signature of
  664. * the handler must be:
  665. * @code void handler(
  666. * const boost::system::error_code& error, // Result of operation.
  667. * std::size_t bytes_transferred // Number of bytes written.
  668. * ); @endcode
  669. * Regardless of whether the asynchronous operation completes immediately or
  670. * not, the handler will not be invoked from within this function. Invocation
  671. * of the handler will be performed in a manner equivalent to using
  672. * boost::asio::io_service::post().
  673. *
  674. * @note The write operation may not transmit all of the data to the peer.
  675. * Consider using the @ref async_write function if you need to ensure that all
  676. * data is written before the asynchronous operation completes.
  677. *
  678. * @par Example
  679. * To write a single data buffer use the @ref buffer function as follows:
  680. * @code
  681. * socket.async_write_some(boost::asio::buffer(data, size), handler);
  682. * @endcode
  683. * See the @ref buffer documentation for information on writing multiple
  684. * buffers in one go, and how to use it with arrays, boost::array or
  685. * std::vector.
  686. */
  687. template <typename ConstBufferSequence, typename WriteHandler>
  688. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  689. void (boost::system::error_code, std::size_t))
  690. async_write_some(const ConstBufferSequence& buffers,
  691. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  692. {
  693. // If you get an error on the following line it means that your handler does
  694. // not meet the documented type requirements for a WriteHandler.
  695. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  696. return this->get_service().async_send(this->get_implementation(),
  697. buffers, 0, BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  698. }
  699. /// Read some data from the socket.
  700. /**
  701. * This function is used to read data from the stream socket. The function
  702. * call will block until one or more bytes of data has been read successfully,
  703. * or until an error occurs.
  704. *
  705. * @param buffers One or more buffers into which the data will be read.
  706. *
  707. * @returns The number of bytes read.
  708. *
  709. * @throws boost::system::system_error Thrown on failure. An error code of
  710. * boost::asio::error::eof indicates that the connection was closed by the
  711. * peer.
  712. *
  713. * @note The read_some operation may not read all of the requested number of
  714. * bytes. Consider using the @ref read function if you need to ensure that
  715. * the requested amount of data is read before the blocking operation
  716. * completes.
  717. *
  718. * @par Example
  719. * To read into a single data buffer use the @ref buffer function as follows:
  720. * @code
  721. * socket.read_some(boost::asio::buffer(data, size));
  722. * @endcode
  723. * See the @ref buffer documentation for information on reading into multiple
  724. * buffers in one go, and how to use it with arrays, boost::array or
  725. * std::vector.
  726. */
  727. template <typename MutableBufferSequence>
  728. std::size_t read_some(const MutableBufferSequence& buffers)
  729. {
  730. boost::system::error_code ec;
  731. std::size_t s = this->get_service().receive(
  732. this->get_implementation(), buffers, 0, ec);
  733. boost::asio::detail::throw_error(ec, "read_some");
  734. return s;
  735. }
  736. /// Read some data from the socket.
  737. /**
  738. * This function is used to read data from the stream socket. The function
  739. * call will block until one or more bytes of data has been read successfully,
  740. * or until an error occurs.
  741. *
  742. * @param buffers One or more buffers into which the data will be read.
  743. *
  744. * @param ec Set to indicate what error occurred, if any.
  745. *
  746. * @returns The number of bytes read. Returns 0 if an error occurred.
  747. *
  748. * @note The read_some operation may not read all of the requested number of
  749. * bytes. Consider using the @ref read function if you need to ensure that
  750. * the requested amount of data is read before the blocking operation
  751. * completes.
  752. */
  753. template <typename MutableBufferSequence>
  754. std::size_t read_some(const MutableBufferSequence& buffers,
  755. boost::system::error_code& ec)
  756. {
  757. return this->get_service().receive(
  758. this->get_implementation(), buffers, 0, ec);
  759. }
  760. /// Start an asynchronous read.
  761. /**
  762. * This function is used to asynchronously read data from the stream socket.
  763. * The function call always returns immediately.
  764. *
  765. * @param buffers One or more buffers into which the data will be read.
  766. * Although the buffers object may be copied as necessary, ownership of the
  767. * underlying memory blocks is retained by the caller, which must guarantee
  768. * that they remain valid until the handler is called.
  769. *
  770. * @param handler The handler to be called when the read operation completes.
  771. * Copies will be made of the handler as required. The function signature of
  772. * the handler must be:
  773. * @code void handler(
  774. * const boost::system::error_code& error, // Result of operation.
  775. * std::size_t bytes_transferred // Number of bytes read.
  776. * ); @endcode
  777. * Regardless of whether the asynchronous operation completes immediately or
  778. * not, the handler will not be invoked from within this function. Invocation
  779. * of the handler will be performed in a manner equivalent to using
  780. * boost::asio::io_service::post().
  781. *
  782. * @note The read operation may not read all of the requested number of bytes.
  783. * Consider using the @ref async_read function if you need to ensure that the
  784. * requested amount of data is read before the asynchronous operation
  785. * completes.
  786. *
  787. * @par Example
  788. * To read into a single data buffer use the @ref buffer function as follows:
  789. * @code
  790. * socket.async_read_some(boost::asio::buffer(data, size), handler);
  791. * @endcode
  792. * See the @ref buffer documentation for information on reading into multiple
  793. * buffers in one go, and how to use it with arrays, boost::array or
  794. * std::vector.
  795. */
  796. template <typename MutableBufferSequence, typename ReadHandler>
  797. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  798. void (boost::system::error_code, std::size_t))
  799. async_read_some(const MutableBufferSequence& buffers,
  800. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  801. {
  802. // If you get an error on the following line it means that your handler does
  803. // not meet the documented type requirements for a ReadHandler.
  804. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  805. return this->get_service().async_receive(this->get_implementation(),
  806. buffers, 0, BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  807. }
  808. };
  809. } // namespace asio
  810. } // namespace boost
  811. #include <boost/asio/detail/pop_options.hpp>
  812. #endif // BOOST_ASIO_BASIC_STREAM_SOCKET_HPP