include/boost/corosio/native/native_tcp_socket.hpp
93.0% Lines (53/57)
100.0% List of functions (19/19)
66.7% Branches (8/12)
Functions (19)
Function
Calls
Lines
Branches
Blocks
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::get_impl()
:77
14x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_read_awaitable<boost::capy::mutable_buffer>::native_read_awaitable(boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>&, boost::capy::mutable_buffer)
:91
4x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_read_awaitable<boost::capy::mutable_buffer>::await_ready() const
:98
4x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_read_awaitable<boost::capy::mutable_buffer>::await_resume() const
:103
4x
75.0%
50.0%
66.7%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_read_awaitable<boost::capy::mutable_buffer>::await_suspend(std::__n4861::coroutine_handle<void>, boost::capy::io_env const*)
:110
4x
100.0%
100.0%
76.9%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_write_awaitable<boost::capy::const_buffer>::native_write_awaitable(boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>&, boost::capy::const_buffer)
:128
5x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_write_awaitable<boost::capy::const_buffer>::await_ready() const
:135
5x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_write_awaitable<boost::capy::const_buffer>::await_resume() const
:140
5x
75.0%
50.0%
66.7%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_write_awaitable<boost::capy::const_buffer>::await_suspend(std::__n4861::coroutine_handle<void>, boost::capy::io_env const*)
:147
5x
100.0%
100.0%
76.9%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_connect_awaitable::native_connect_awaitable(boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>&, boost::corosio::endpoint)
:163
5x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_connect_awaitable::await_ready() const
:169
5x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_connect_awaitable::await_resume() const
:174
5x
75.0%
50.0%
80.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_connect_awaitable::await_suspend(std::__n4861::coroutine_handle<void>, boost::capy::io_env const*)
:181
5x
100.0%
100.0%
81.8%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_tcp_socket(boost::capy::execution_context&)
:195
14x
100.0%
100.0%
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::native_tcp_socket(boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>&&)
:221
9x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::operator=(boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>&&)
:234
2x
100.0%
–
100.0%
auto boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::read_some<boost::capy::mutable_buffer>(boost::capy::mutable_buffer const&)
:253
4x
100.0%
–
100.0%
auto boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::write_some<boost::capy::const_buffer>(boost::capy::const_buffer const&)
:272
5x
100.0%
–
100.0%
boost::corosio::native_tcp_socket<boost::corosio::iocp_t{}>::connect(boost::corosio::endpoint)
:290
5x
75.0%
50.0%
80.0%
| Line | Branch | TLA | Hits | Source Code |
|---|---|---|---|---|
| 1 | // | |||
| 2 | // Copyright (c) 2026 Steve Gerbino | |||
| 3 | // | |||
| 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying | |||
| 5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |||
| 6 | // | |||
| 7 | // Official repository: https://github.com/cppalliance/corosio | |||
| 8 | // | |||
| 9 | ||||
| 10 | #ifndef BOOST_COROSIO_NATIVE_NATIVE_TCP_SOCKET_HPP | |||
| 11 | #define BOOST_COROSIO_NATIVE_NATIVE_TCP_SOCKET_HPP | |||
| 12 | ||||
| 13 | #include <boost/corosio/tcp_socket.hpp> | |||
| 14 | #include <boost/corosio/backend.hpp> | |||
| 15 | ||||
| 16 | #ifndef BOOST_COROSIO_MRDOCS | |||
| 17 | #if BOOST_COROSIO_HAS_EPOLL | |||
| 18 | #include <boost/corosio/native/detail/epoll/epoll_tcp_service.hpp> | |||
| 19 | #endif | |||
| 20 | ||||
| 21 | #if BOOST_COROSIO_HAS_SELECT | |||
| 22 | #include <boost/corosio/native/detail/select/select_tcp_service.hpp> | |||
| 23 | #endif | |||
| 24 | ||||
| 25 | #if BOOST_COROSIO_HAS_KQUEUE | |||
| 26 | #include <boost/corosio/native/detail/kqueue/kqueue_tcp_service.hpp> | |||
| 27 | #endif | |||
| 28 | ||||
| 29 | #if BOOST_COROSIO_HAS_IOCP | |||
| 30 | #include <boost/corosio/native/detail/iocp/win_tcp_acceptor_service.hpp> | |||
| 31 | #endif | |||
| 32 | #endif // !BOOST_COROSIO_MRDOCS | |||
| 33 | ||||
| 34 | namespace boost::corosio { | |||
| 35 | ||||
| 36 | /** An asynchronous TCP socket with devirtualized I/O operations. | |||
| 37 | ||||
| 38 | This class template inherits from @ref tcp_socket and shadows | |||
| 39 | the async operations (`read_some`, `write_some`, `connect`) with | |||
| 40 | versions that call the backend implementation directly, allowing | |||
| 41 | the compiler to inline through the entire call chain. | |||
| 42 | ||||
| 43 | Non-async operations (`open`, `close`, `cancel`, socket options) | |||
| 44 | remain unchanged and dispatch through the compiled library. | |||
| 45 | ||||
| 46 | A `native_tcp_socket` IS-A `tcp_socket` and can be passed to | |||
| 47 | any function expecting `tcp_socket&` or `io_stream&`, in which | |||
| 48 | case virtual dispatch is used transparently. | |||
| 49 | ||||
| 50 | @tparam Backend A backend tag value (e.g., `epoll`, | |||
| 51 | `iocp`) whose type provides the concrete implementation | |||
| 52 | types. | |||
| 53 | ||||
| 54 | @par Thread Safety | |||
| 55 | Same as @ref tcp_socket. | |||
| 56 | ||||
| 57 | @par Example | |||
| 58 | @code | |||
| 59 | #include <boost/corosio/native/native_tcp_socket.hpp> | |||
| 60 | ||||
| 61 | native_io_context<epoll> ctx; | |||
| 62 | native_tcp_socket<epoll> s(ctx); | |||
| 63 | s.open(); | |||
| 64 | auto [ec] = co_await s.connect(ep); | |||
| 65 | auto [ec2, n] = co_await s.read_some(buf); | |||
| 66 | @endcode | |||
| 67 | ||||
| 68 | @see tcp_socket, epoll_t, iocp_t | |||
| 69 | */ | |||
| 70 | template<auto Backend> | |||
| 71 | class native_tcp_socket : public tcp_socket | |||
| 72 | { | |||
| 73 | using backend_type = decltype(Backend); | |||
| 74 | using impl_type = typename backend_type::tcp_socket_type; | |||
| 75 | using service_type = typename backend_type::tcp_service_type; | |||
| 76 | ||||
| 77 | 14x | impl_type& get_impl() noexcept | ||
| 78 | { | |||
| 79 | 14x | return *static_cast<impl_type*>(h_.get()); | ||
| 80 | } | |||
| 81 | ||||
| 82 | template<class MutableBufferSequence> | |||
| 83 | struct native_read_awaitable | |||
| 84 | { | |||
| 85 | native_tcp_socket& self_; | |||
| 86 | MutableBufferSequence buffers_; | |||
| 87 | std::stop_token token_; | |||
| 88 | mutable std::error_code ec_; | |||
| 89 | mutable std::size_t bytes_transferred_ = 0; | |||
| 90 | ||||
| 91 | 4x | native_read_awaitable( | ||
| 92 | native_tcp_socket& self, MutableBufferSequence buffers) noexcept | |||
| 93 | 4x | : self_(self) | ||
| 94 | 4x | , buffers_(std::move(buffers)) | ||
| 95 | { | |||
| 96 | 4x | } | ||
| 97 | ||||
| 98 | 4x | bool await_ready() const noexcept | ||
| 99 | { | |||
| 100 | 4x | return token_.stop_requested(); | ||
| 101 | } | |||
| 102 | ||||
| 103 | 4x | capy::io_result<std::size_t> await_resume() const noexcept | ||
| 104 | { | |||
| 105 |
1/2✗ Branch 3 → 4 not taken.
✓ Branch 3 → 6 taken 4 times.
|
4x | if (token_.stop_requested()) | |
| 106 | ✗ | return {make_error_code(std::errc::operation_canceled), 0}; | ||
| 107 | 4x | return {ec_, bytes_transferred_}; | ||
| 108 | } | |||
| 109 | ||||
| 110 | 4x | auto await_suspend(std::coroutine_handle<> h, capy::io_env const* env) | ||
| 111 | -> std::coroutine_handle<> | |||
| 112 | { | |||
| 113 | 4x | token_ = env->stop_token; | ||
| 114 |
1/1✓ Branch 6 → 7 taken 4 times.
|
12x | return self_.get_impl().read_some( | |
| 115 | 12x | h, env->executor, buffers_, token_, &ec_, &bytes_transferred_); | ||
| 116 | } | |||
| 117 | }; | |||
| 118 | ||||
| 119 | template<class ConstBufferSequence> | |||
| 120 | struct native_write_awaitable | |||
| 121 | { | |||
| 122 | native_tcp_socket& self_; | |||
| 123 | ConstBufferSequence buffers_; | |||
| 124 | std::stop_token token_; | |||
| 125 | mutable std::error_code ec_; | |||
| 126 | mutable std::size_t bytes_transferred_ = 0; | |||
| 127 | ||||
| 128 | 5x | native_write_awaitable( | ||
| 129 | native_tcp_socket& self, ConstBufferSequence buffers) noexcept | |||
| 130 | 5x | : self_(self) | ||
| 131 | 5x | , buffers_(std::move(buffers)) | ||
| 132 | { | |||
| 133 | 5x | } | ||
| 134 | ||||
| 135 | 5x | bool await_ready() const noexcept | ||
| 136 | { | |||
| 137 | 5x | return token_.stop_requested(); | ||
| 138 | } | |||
| 139 | ||||
| 140 | 5x | capy::io_result<std::size_t> await_resume() const noexcept | ||
| 141 | { | |||
| 142 |
1/2✗ Branch 3 → 4 not taken.
✓ Branch 3 → 6 taken 5 times.
|
5x | if (token_.stop_requested()) | |
| 143 | ✗ | return {make_error_code(std::errc::operation_canceled), 0}; | ||
| 144 | 5x | return {ec_, bytes_transferred_}; | ||
| 145 | } | |||
| 146 | ||||
| 147 | 5x | auto await_suspend(std::coroutine_handle<> h, capy::io_env const* env) | ||
| 148 | -> std::coroutine_handle<> | |||
| 149 | { | |||
| 150 | 5x | token_ = env->stop_token; | ||
| 151 |
1/1✓ Branch 6 → 7 taken 5 times.
|
15x | return self_.get_impl().write_some( | |
| 152 | 15x | h, env->executor, buffers_, token_, &ec_, &bytes_transferred_); | ||
| 153 | } | |||
| 154 | }; | |||
| 155 | ||||
| 156 | struct native_connect_awaitable | |||
| 157 | { | |||
| 158 | native_tcp_socket& self_; | |||
| 159 | endpoint endpoint_; | |||
| 160 | std::stop_token token_; | |||
| 161 | mutable std::error_code ec_; | |||
| 162 | ||||
| 163 | 5x | native_connect_awaitable(native_tcp_socket& self, endpoint ep) noexcept | ||
| 164 | 5x | : self_(self) | ||
| 165 | 5x | , endpoint_(ep) | ||
| 166 | { | |||
| 167 | 5x | } | ||
| 168 | ||||
| 169 | 5x | bool await_ready() const noexcept | ||
| 170 | { | |||
| 171 | 5x | return token_.stop_requested(); | ||
| 172 | } | |||
| 173 | ||||
| 174 | 5x | capy::io_result<> await_resume() const noexcept | ||
| 175 | { | |||
| 176 |
1/2✗ Branch 3 → 4 not taken.
✓ Branch 3 → 5 taken 5 times.
|
5x | if (token_.stop_requested()) | |
| 177 | ✗ | return {make_error_code(std::errc::operation_canceled)}; | ||
| 178 | 5x | return {ec_}; | ||
| 179 | } | |||
| 180 | ||||
| 181 | 5x | auto await_suspend(std::coroutine_handle<> h, capy::io_env const* env) | ||
| 182 | -> std::coroutine_handle<> | |||
| 183 | { | |||
| 184 | 5x | token_ = env->stop_token; | ||
| 185 |
1/1✓ Branch 5 → 6 taken 5 times.
|
15x | return self_.get_impl().connect( | |
| 186 | 15x | h, env->executor, endpoint_, token_, &ec_); | ||
| 187 | } | |||
| 188 | }; | |||
| 189 | ||||
| 190 | public: | |||
| 191 | /** Construct a native socket from an execution context. | |||
| 192 | ||||
| 193 | @param ctx The execution context that will own this socket. | |||
| 194 | */ | |||
| 195 | 14x | explicit native_tcp_socket(capy::execution_context& ctx) | ||
| 196 |
1/1✓ Branch 2 → 3 taken 14 times.
|
14x | : io_object(create_handle<service_type>(ctx)) | |
| 197 | { | |||
| 198 | 14x | } | ||
| 199 | ||||
| 200 | /** Construct a native socket from an executor. | |||
| 201 | ||||
| 202 | @param ex The executor whose context will own the socket. | |||
| 203 | */ | |||
| 204 | template<class Ex> | |||
| 205 | requires(!std::same_as<std::remove_cvref_t<Ex>, native_tcp_socket>) && | |||
| 206 | capy::Executor<Ex> | |||
| 207 | explicit native_tcp_socket(Ex const& ex) : native_tcp_socket(ex.context()) | |||
| 208 | { | |||
| 209 | } | |||
| 210 | ||||
| 211 | /** Move construct. | |||
| 212 | ||||
| 213 | @param other The socket to move from. | |||
| 214 | ||||
| 215 | @pre No awaitables returned by @p other's methods exist. | |||
| 216 | @pre @p other is not referenced as a peer in any outstanding | |||
| 217 | accept awaitable. | |||
| 218 | @pre The execution context associated with @p other must | |||
| 219 | outlive this socket. | |||
| 220 | */ | |||
| 221 | 9x | native_tcp_socket(native_tcp_socket&&) noexcept = default; | ||
| 222 | ||||
| 223 | /** Move assign. | |||
| 224 | ||||
| 225 | @param other The socket to move from. | |||
| 226 | ||||
| 227 | @pre No awaitables returned by either `*this` or @p other's | |||
| 228 | methods exist. | |||
| 229 | @pre Neither `*this` nor @p other is referenced as a peer in | |||
| 230 | any outstanding accept awaitable. | |||
| 231 | @pre The execution context associated with @p other must | |||
| 232 | outlive this socket. | |||
| 233 | */ | |||
| 234 | 2x | native_tcp_socket& operator=(native_tcp_socket&&) noexcept = default; | ||
| 235 | ||||
| 236 | native_tcp_socket(native_tcp_socket const&) = delete; | |||
| 237 | native_tcp_socket& operator=(native_tcp_socket const&) = delete; | |||
| 238 | ||||
| 239 | /** Asynchronously read data from the socket. | |||
| 240 | ||||
| 241 | Calls the backend implementation directly, bypassing virtual | |||
| 242 | dispatch. Otherwise identical to @ref io_stream::read_some. | |||
| 243 | ||||
| 244 | @param buffers The buffer sequence to read into. | |||
| 245 | ||||
| 246 | @return An awaitable yielding `(error_code, std::size_t)`. | |||
| 247 | ||||
| 248 | This socket must outlive the returned awaitable. The memory | |||
| 249 | referenced by @p buffers must remain valid until the operation | |||
| 250 | completes. | |||
| 251 | */ | |||
| 252 | template<capy::MutableBufferSequence MB> | |||
| 253 | 4x | auto read_some(MB const& buffers) | ||
| 254 | { | |||
| 255 | 4x | return native_read_awaitable<MB>(*this, buffers); | ||
| 256 | } | |||
| 257 | ||||
| 258 | /** Asynchronously write data to the socket. | |||
| 259 | ||||
| 260 | Calls the backend implementation directly, bypassing virtual | |||
| 261 | dispatch. Otherwise identical to @ref io_stream::write_some. | |||
| 262 | ||||
| 263 | @param buffers The buffer sequence to write from. | |||
| 264 | ||||
| 265 | @return An awaitable yielding `(error_code, std::size_t)`. | |||
| 266 | ||||
| 267 | This socket must outlive the returned awaitable. The memory | |||
| 268 | referenced by @p buffers must remain valid until the operation | |||
| 269 | completes. | |||
| 270 | */ | |||
| 271 | template<capy::ConstBufferSequence CB> | |||
| 272 | 5x | auto write_some(CB const& buffers) | ||
| 273 | { | |||
| 274 | 5x | return native_write_awaitable<CB>(*this, buffers); | ||
| 275 | } | |||
| 276 | ||||
| 277 | /** Asynchronously connect to a remote endpoint. | |||
| 278 | ||||
| 279 | Calls the backend implementation directly, bypassing virtual | |||
| 280 | dispatch. Otherwise identical to @ref tcp_socket::connect. | |||
| 281 | ||||
| 282 | @param ep The remote endpoint to connect to. | |||
| 283 | ||||
| 284 | @return An awaitable yielding `io_result<>`. | |||
| 285 | ||||
| 286 | @throws std::logic_error if the socket is not open. | |||
| 287 | ||||
| 288 | This socket must outlive the returned awaitable. | |||
| 289 | */ | |||
| 290 | 5x | auto connect(endpoint ep) | ||
| 291 | { | |||
| 292 |
1/2✗ Branch 3 → 4 not taken.
✓ Branch 3 → 5 taken 5 times.
|
5x | if (!is_open()) | |
| 293 | ✗ | detail::throw_logic_error("connect: socket not open"); | ||
| 294 | 5x | return native_connect_awaitable(*this, ep); | ||
| 295 | } | |||
| 296 | }; | |||
| 297 | ||||
| 298 | } // namespace boost::corosio | |||
| 299 | ||||
| 300 | #endif | |||
| 301 |