stream_socket_service.hpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. //
  2. // stream_socket_service.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_STREAM_SOCKET_SERVICE_HPP
  11. #define BOOST_ASIO_STREAM_SOCKET_SERVICE_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/detail/type_traits.hpp>
  19. #include <boost/asio/error.hpp>
  20. #include <boost/asio/io_service.hpp>
  21. #if defined(BOOST_ASIO_WINDOWS_RUNTIME)
  22. # include <boost/asio/detail/winrt_ssocket_service.hpp>
  23. #elif defined(BOOST_ASIO_HAS_IOCP)
  24. # include <boost/asio/detail/win_iocp_socket_service.hpp>
  25. #else
  26. # include <boost/asio/detail/reactive_socket_service.hpp>
  27. #endif
  28. #include <boost/asio/detail/push_options.hpp>
  29. namespace boost {
  30. namespace asio {
  31. /// Default service implementation for a stream socket.
  32. template <typename Protocol>
  33. class stream_socket_service
  34. #if defined(GENERATING_DOCUMENTATION)
  35. : public boost::asio::io_service::service
  36. #else
  37. : public boost::asio::detail::service_base<stream_socket_service<Protocol> >
  38. #endif
  39. {
  40. public:
  41. #if defined(GENERATING_DOCUMENTATION)
  42. /// The unique service identifier.
  43. static boost::asio::io_service::id id;
  44. #endif
  45. /// The protocol type.
  46. typedef Protocol protocol_type;
  47. /// The endpoint type.
  48. typedef typename Protocol::endpoint endpoint_type;
  49. private:
  50. // The type of the platform-specific implementation.
  51. #if defined(BOOST_ASIO_WINDOWS_RUNTIME)
  52. typedef detail::winrt_ssocket_service<Protocol> service_impl_type;
  53. #elif defined(BOOST_ASIO_HAS_IOCP)
  54. typedef detail::win_iocp_socket_service<Protocol> service_impl_type;
  55. #else
  56. typedef detail::reactive_socket_service<Protocol> service_impl_type;
  57. #endif
  58. public:
  59. /// The type of a stream socket implementation.
  60. #if defined(GENERATING_DOCUMENTATION)
  61. typedef implementation_defined implementation_type;
  62. #else
  63. typedef typename service_impl_type::implementation_type implementation_type;
  64. #endif
  65. /// (Deprecated: Use native_handle_type.) The native socket type.
  66. #if defined(GENERATING_DOCUMENTATION)
  67. typedef implementation_defined native_type;
  68. #else
  69. typedef typename service_impl_type::native_handle_type native_type;
  70. #endif
  71. /// The native socket type.
  72. #if defined(GENERATING_DOCUMENTATION)
  73. typedef implementation_defined native_handle_type;
  74. #else
  75. typedef typename service_impl_type::native_handle_type native_handle_type;
  76. #endif
  77. /// Construct a new stream socket service for the specified io_service.
  78. explicit stream_socket_service(boost::asio::io_service& io_service)
  79. : boost::asio::detail::service_base<
  80. stream_socket_service<Protocol> >(io_service),
  81. service_impl_(io_service)
  82. {
  83. }
  84. /// Construct a new stream socket implementation.
  85. void construct(implementation_type& impl)
  86. {
  87. service_impl_.construct(impl);
  88. }
  89. #if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  90. /// Move-construct a new stream socket implementation.
  91. void move_construct(implementation_type& impl,
  92. implementation_type& other_impl)
  93. {
  94. service_impl_.move_construct(impl, other_impl);
  95. }
  96. /// Move-assign from another stream socket implementation.
  97. void move_assign(implementation_type& impl,
  98. stream_socket_service& other_service,
  99. implementation_type& other_impl)
  100. {
  101. service_impl_.move_assign(impl, other_service.service_impl_, other_impl);
  102. }
  103. /// Move-construct a new stream socket implementation from another protocol
  104. /// type.
  105. template <typename Protocol1>
  106. void converting_move_construct(implementation_type& impl,
  107. typename stream_socket_service<
  108. Protocol1>::implementation_type& other_impl,
  109. typename enable_if<is_convertible<
  110. Protocol1, Protocol>::value>::type* = 0)
  111. {
  112. service_impl_.template converting_move_construct<Protocol1>(
  113. impl, other_impl);
  114. }
  115. #endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  116. /// Destroy a stream socket implementation.
  117. void destroy(implementation_type& impl)
  118. {
  119. service_impl_.destroy(impl);
  120. }
  121. /// Open a stream socket.
  122. boost::system::error_code open(implementation_type& impl,
  123. const protocol_type& protocol, boost::system::error_code& ec)
  124. {
  125. if (protocol.type() == BOOST_ASIO_OS_DEF(SOCK_STREAM))
  126. service_impl_.open(impl, protocol, ec);
  127. else
  128. ec = boost::asio::error::invalid_argument;
  129. return ec;
  130. }
  131. /// Assign an existing native socket to a stream socket.
  132. boost::system::error_code assign(implementation_type& impl,
  133. const protocol_type& protocol, const native_handle_type& native_socket,
  134. boost::system::error_code& ec)
  135. {
  136. return service_impl_.assign(impl, protocol, native_socket, ec);
  137. }
  138. /// Determine whether the socket is open.
  139. bool is_open(const implementation_type& impl) const
  140. {
  141. return service_impl_.is_open(impl);
  142. }
  143. /// Close a stream socket implementation.
  144. boost::system::error_code close(implementation_type& impl,
  145. boost::system::error_code& ec)
  146. {
  147. return service_impl_.close(impl, ec);
  148. }
  149. /// (Deprecated: Use native_handle().) Get the native socket implementation.
  150. native_type native(implementation_type& impl)
  151. {
  152. return service_impl_.native_handle(impl);
  153. }
  154. /// Get the native socket implementation.
  155. native_handle_type native_handle(implementation_type& impl)
  156. {
  157. return service_impl_.native_handle(impl);
  158. }
  159. /// Cancel all asynchronous operations associated with the socket.
  160. boost::system::error_code cancel(implementation_type& impl,
  161. boost::system::error_code& ec)
  162. {
  163. return service_impl_.cancel(impl, ec);
  164. }
  165. /// Determine whether the socket is at the out-of-band data mark.
  166. bool at_mark(const implementation_type& impl,
  167. boost::system::error_code& ec) const
  168. {
  169. return service_impl_.at_mark(impl, ec);
  170. }
  171. /// Determine the number of bytes available for reading.
  172. std::size_t available(const implementation_type& impl,
  173. boost::system::error_code& ec) const
  174. {
  175. return service_impl_.available(impl, ec);
  176. }
  177. /// Bind the stream socket to the specified local endpoint.
  178. boost::system::error_code bind(implementation_type& impl,
  179. const endpoint_type& endpoint, boost::system::error_code& ec)
  180. {
  181. return service_impl_.bind(impl, endpoint, ec);
  182. }
  183. /// Connect the stream socket to the specified endpoint.
  184. boost::system::error_code connect(implementation_type& impl,
  185. const endpoint_type& peer_endpoint, boost::system::error_code& ec)
  186. {
  187. return service_impl_.connect(impl, peer_endpoint, ec);
  188. }
  189. /// Start an asynchronous connect.
  190. template <typename ConnectHandler>
  191. BOOST_ASIO_INITFN_RESULT_TYPE(ConnectHandler,
  192. void (boost::system::error_code))
  193. async_connect(implementation_type& impl,
  194. const endpoint_type& peer_endpoint,
  195. BOOST_ASIO_MOVE_ARG(ConnectHandler) handler)
  196. {
  197. detail::async_result_init<
  198. ConnectHandler, void (boost::system::error_code)> init(
  199. BOOST_ASIO_MOVE_CAST(ConnectHandler)(handler));
  200. service_impl_.async_connect(impl, peer_endpoint, init.handler);
  201. return init.result.get();
  202. }
  203. /// Set a socket option.
  204. template <typename SettableSocketOption>
  205. boost::system::error_code set_option(implementation_type& impl,
  206. const SettableSocketOption& option, boost::system::error_code& ec)
  207. {
  208. return service_impl_.set_option(impl, option, ec);
  209. }
  210. /// Get a socket option.
  211. template <typename GettableSocketOption>
  212. boost::system::error_code get_option(const implementation_type& impl,
  213. GettableSocketOption& option, boost::system::error_code& ec) const
  214. {
  215. return service_impl_.get_option(impl, option, ec);
  216. }
  217. /// Perform an IO control command on the socket.
  218. template <typename IoControlCommand>
  219. boost::system::error_code io_control(implementation_type& impl,
  220. IoControlCommand& command, boost::system::error_code& ec)
  221. {
  222. return service_impl_.io_control(impl, command, ec);
  223. }
  224. /// Gets the non-blocking mode of the socket.
  225. bool non_blocking(const implementation_type& impl) const
  226. {
  227. return service_impl_.non_blocking(impl);
  228. }
  229. /// Sets the non-blocking mode of the socket.
  230. boost::system::error_code non_blocking(implementation_type& impl,
  231. bool mode, boost::system::error_code& ec)
  232. {
  233. return service_impl_.non_blocking(impl, mode, ec);
  234. }
  235. /// Gets the non-blocking mode of the native socket implementation.
  236. bool native_non_blocking(const implementation_type& impl) const
  237. {
  238. return service_impl_.native_non_blocking(impl);
  239. }
  240. /// Sets the non-blocking mode of the native socket implementation.
  241. boost::system::error_code native_non_blocking(implementation_type& impl,
  242. bool mode, boost::system::error_code& ec)
  243. {
  244. return service_impl_.native_non_blocking(impl, mode, ec);
  245. }
  246. /// Get the local endpoint.
  247. endpoint_type local_endpoint(const implementation_type& impl,
  248. boost::system::error_code& ec) const
  249. {
  250. return service_impl_.local_endpoint(impl, ec);
  251. }
  252. /// Get the remote endpoint.
  253. endpoint_type remote_endpoint(const implementation_type& impl,
  254. boost::system::error_code& ec) const
  255. {
  256. return service_impl_.remote_endpoint(impl, ec);
  257. }
  258. /// Disable sends or receives on the socket.
  259. boost::system::error_code shutdown(implementation_type& impl,
  260. socket_base::shutdown_type what, boost::system::error_code& ec)
  261. {
  262. return service_impl_.shutdown(impl, what, ec);
  263. }
  264. /// Send the given data to the peer.
  265. template <typename ConstBufferSequence>
  266. std::size_t send(implementation_type& impl,
  267. const ConstBufferSequence& buffers,
  268. socket_base::message_flags flags, boost::system::error_code& ec)
  269. {
  270. return service_impl_.send(impl, buffers, flags, ec);
  271. }
  272. /// Start an asynchronous send.
  273. template <typename ConstBufferSequence, typename WriteHandler>
  274. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  275. void (boost::system::error_code, std::size_t))
  276. async_send(implementation_type& impl,
  277. const ConstBufferSequence& buffers,
  278. socket_base::message_flags flags,
  279. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  280. {
  281. detail::async_result_init<
  282. WriteHandler, void (boost::system::error_code, std::size_t)> init(
  283. BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  284. service_impl_.async_send(impl, buffers, flags, init.handler);
  285. return init.result.get();
  286. }
  287. /// Receive some data from the peer.
  288. template <typename MutableBufferSequence>
  289. std::size_t receive(implementation_type& impl,
  290. const MutableBufferSequence& buffers,
  291. socket_base::message_flags flags, boost::system::error_code& ec)
  292. {
  293. return service_impl_.receive(impl, buffers, flags, ec);
  294. }
  295. /// Start an asynchronous receive.
  296. template <typename MutableBufferSequence, typename ReadHandler>
  297. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  298. void (boost::system::error_code, std::size_t))
  299. async_receive(implementation_type& impl,
  300. const MutableBufferSequence& buffers,
  301. socket_base::message_flags flags,
  302. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  303. {
  304. detail::async_result_init<
  305. ReadHandler, void (boost::system::error_code, std::size_t)> init(
  306. BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  307. service_impl_.async_receive(impl, buffers, flags, init.handler);
  308. return init.result.get();
  309. }
  310. private:
  311. // Destroy all user-defined handler objects owned by the service.
  312. void shutdown_service()
  313. {
  314. service_impl_.shutdown_service();
  315. }
  316. // The platform-specific implementation.
  317. service_impl_type service_impl_;
  318. };
  319. } // namespace asio
  320. } // namespace boost
  321. #include <boost/asio/detail/pop_options.hpp>
  322. #endif // BOOST_ASIO_STREAM_SOCKET_SERVICE_HPP