annotate DEPENDENCIES/generic/include/boost/asio/detail/reactive_socket_accept_op.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 //
Chris@16 2 // detail/reactive_socket_accept_op.hpp
Chris@16 3 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Chris@16 4 //
Chris@101 5 // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
Chris@16 6 //
Chris@16 7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
Chris@16 8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 9 //
Chris@16 10
Chris@16 11 #ifndef BOOST_ASIO_DETAIL_REACTIVE_SOCKET_ACCEPT_OP_HPP
Chris@16 12 #define BOOST_ASIO_DETAIL_REACTIVE_SOCKET_ACCEPT_OP_HPP
Chris@16 13
Chris@16 14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
Chris@16 15 # pragma once
Chris@16 16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
Chris@16 17
Chris@16 18 #include <boost/asio/detail/config.hpp>
Chris@16 19 #include <boost/asio/detail/addressof.hpp>
Chris@16 20 #include <boost/asio/detail/bind_handler.hpp>
Chris@16 21 #include <boost/asio/detail/buffer_sequence_adapter.hpp>
Chris@16 22 #include <boost/asio/detail/fenced_block.hpp>
Chris@16 23 #include <boost/asio/detail/reactor_op.hpp>
Chris@16 24 #include <boost/asio/detail/socket_holder.hpp>
Chris@16 25 #include <boost/asio/detail/socket_ops.hpp>
Chris@16 26
Chris@16 27 #include <boost/asio/detail/push_options.hpp>
Chris@16 28
Chris@16 29 namespace boost {
Chris@16 30 namespace asio {
Chris@16 31 namespace detail {
Chris@16 32
Chris@16 33 template <typename Socket, typename Protocol>
Chris@16 34 class reactive_socket_accept_op_base : public reactor_op
Chris@16 35 {
Chris@16 36 public:
Chris@16 37 reactive_socket_accept_op_base(socket_type socket,
Chris@16 38 socket_ops::state_type state, Socket& peer, const Protocol& protocol,
Chris@16 39 typename Protocol::endpoint* peer_endpoint, func_type complete_func)
Chris@16 40 : reactor_op(&reactive_socket_accept_op_base::do_perform, complete_func),
Chris@16 41 socket_(socket),
Chris@16 42 state_(state),
Chris@16 43 peer_(peer),
Chris@16 44 protocol_(protocol),
Chris@16 45 peer_endpoint_(peer_endpoint)
Chris@16 46 {
Chris@16 47 }
Chris@16 48
Chris@16 49 static bool do_perform(reactor_op* base)
Chris@16 50 {
Chris@16 51 reactive_socket_accept_op_base* o(
Chris@16 52 static_cast<reactive_socket_accept_op_base*>(base));
Chris@16 53
Chris@16 54 std::size_t addrlen = o->peer_endpoint_ ? o->peer_endpoint_->capacity() : 0;
Chris@16 55 socket_type new_socket = invalid_socket;
Chris@16 56 bool result = socket_ops::non_blocking_accept(o->socket_,
Chris@16 57 o->state_, o->peer_endpoint_ ? o->peer_endpoint_->data() : 0,
Chris@16 58 o->peer_endpoint_ ? &addrlen : 0, o->ec_, new_socket);
Chris@16 59
Chris@16 60 // On success, assign new connection to peer socket object.
Chris@16 61 if (new_socket != invalid_socket)
Chris@16 62 {
Chris@16 63 socket_holder new_socket_holder(new_socket);
Chris@16 64 if (o->peer_endpoint_)
Chris@16 65 o->peer_endpoint_->resize(addrlen);
Chris@16 66 if (!o->peer_.assign(o->protocol_, new_socket, o->ec_))
Chris@16 67 new_socket_holder.release();
Chris@16 68 }
Chris@16 69
Chris@16 70 return result;
Chris@16 71 }
Chris@16 72
Chris@16 73 private:
Chris@16 74 socket_type socket_;
Chris@16 75 socket_ops::state_type state_;
Chris@16 76 Socket& peer_;
Chris@16 77 Protocol protocol_;
Chris@16 78 typename Protocol::endpoint* peer_endpoint_;
Chris@16 79 };
Chris@16 80
Chris@16 81 template <typename Socket, typename Protocol, typename Handler>
Chris@16 82 class reactive_socket_accept_op :
Chris@16 83 public reactive_socket_accept_op_base<Socket, Protocol>
Chris@16 84 {
Chris@16 85 public:
Chris@16 86 BOOST_ASIO_DEFINE_HANDLER_PTR(reactive_socket_accept_op);
Chris@16 87
Chris@16 88 reactive_socket_accept_op(socket_type socket,
Chris@16 89 socket_ops::state_type state, Socket& peer, const Protocol& protocol,
Chris@16 90 typename Protocol::endpoint* peer_endpoint, Handler& handler)
Chris@16 91 : reactive_socket_accept_op_base<Socket, Protocol>(socket, state, peer,
Chris@16 92 protocol, peer_endpoint, &reactive_socket_accept_op::do_complete),
Chris@16 93 handler_(BOOST_ASIO_MOVE_CAST(Handler)(handler))
Chris@16 94 {
Chris@16 95 }
Chris@16 96
Chris@16 97 static void do_complete(io_service_impl* owner, operation* base,
Chris@16 98 const boost::system::error_code& /*ec*/,
Chris@16 99 std::size_t /*bytes_transferred*/)
Chris@16 100 {
Chris@16 101 // Take ownership of the handler object.
Chris@16 102 reactive_socket_accept_op* o(static_cast<reactive_socket_accept_op*>(base));
Chris@16 103 ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
Chris@16 104
Chris@16 105 BOOST_ASIO_HANDLER_COMPLETION((o));
Chris@16 106
Chris@16 107 // Make a copy of the handler so that the memory can be deallocated before
Chris@16 108 // the upcall is made. Even if we're not about to make an upcall, a
Chris@16 109 // sub-object of the handler may be the true owner of the memory associated
Chris@16 110 // with the handler. Consequently, a local copy of the handler is required
Chris@16 111 // to ensure that any owning sub-object remains valid until after we have
Chris@16 112 // deallocated the memory here.
Chris@16 113 detail::binder1<Handler, boost::system::error_code>
Chris@16 114 handler(o->handler_, o->ec_);
Chris@16 115 p.h = boost::asio::detail::addressof(handler.handler_);
Chris@16 116 p.reset();
Chris@16 117
Chris@16 118 // Make the upcall if required.
Chris@16 119 if (owner)
Chris@16 120 {
Chris@16 121 fenced_block b(fenced_block::half);
Chris@16 122 BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_));
Chris@16 123 boost_asio_handler_invoke_helpers::invoke(handler, handler.handler_);
Chris@16 124 BOOST_ASIO_HANDLER_INVOCATION_END;
Chris@16 125 }
Chris@16 126 }
Chris@16 127
Chris@16 128 private:
Chris@16 129 Handler handler_;
Chris@16 130 };
Chris@16 131
Chris@16 132 } // namespace detail
Chris@16 133 } // namespace asio
Chris@16 134 } // namespace boost
Chris@16 135
Chris@16 136 #include <boost/asio/detail/pop_options.hpp>
Chris@16 137
Chris@16 138 #endif // BOOST_ASIO_DETAIL_REACTIVE_SOCKET_ACCEPT_OP_HPP