]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/asio/detail/reactive_socket_recvfrom_op.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / boost / asio / detail / reactive_socket_recvfrom_op.hpp
CommitLineData
7c673cae
FG
1//
2// detail/reactive_socket_recvfrom_op.hpp
3// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4//
11fdf7f2 5// Copyright (c) 2003-2018 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
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
11#ifndef BOOST_ASIO_DETAIL_REACTIVE_SOCKET_RECVFROM_OP_HPP
12#define BOOST_ASIO_DETAIL_REACTIVE_SOCKET_RECVFROM_OP_HPP
13
14#if defined(_MSC_VER) && (_MSC_VER >= 1200)
15# pragma once
16#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17
18#include <boost/asio/detail/config.hpp>
7c673cae
FG
19#include <boost/asio/detail/bind_handler.hpp>
20#include <boost/asio/detail/buffer_sequence_adapter.hpp>
21#include <boost/asio/detail/fenced_block.hpp>
b32b8144 22#include <boost/asio/detail/memory.hpp>
7c673cae
FG
23#include <boost/asio/detail/reactor_op.hpp>
24#include <boost/asio/detail/socket_ops.hpp>
25
26#include <boost/asio/detail/push_options.hpp>
27
28namespace boost {
29namespace asio {
30namespace detail {
31
32template <typename MutableBufferSequence, typename Endpoint>
33class reactive_socket_recvfrom_op_base : public reactor_op
34{
35public:
36 reactive_socket_recvfrom_op_base(socket_type socket, int protocol_type,
37 const MutableBufferSequence& buffers, Endpoint& endpoint,
38 socket_base::message_flags flags, func_type complete_func)
39 : reactor_op(&reactive_socket_recvfrom_op_base::do_perform, complete_func),
40 socket_(socket),
41 protocol_type_(protocol_type),
42 buffers_(buffers),
43 sender_endpoint_(endpoint),
44 flags_(flags)
45 {
46 }
47
b32b8144 48 static status do_perform(reactor_op* base)
7c673cae
FG
49 {
50 reactive_socket_recvfrom_op_base* o(
51 static_cast<reactive_socket_recvfrom_op_base*>(base));
52
53 buffer_sequence_adapter<boost::asio::mutable_buffer,
54 MutableBufferSequence> bufs(o->buffers_);
55
56 std::size_t addr_len = o->sender_endpoint_.capacity();
b32b8144 57 status result = socket_ops::non_blocking_recvfrom(o->socket_,
7c673cae
FG
58 bufs.buffers(), bufs.count(), o->flags_,
59 o->sender_endpoint_.data(), &addr_len,
b32b8144 60 o->ec_, o->bytes_transferred_) ? done : not_done;
7c673cae
FG
61
62 if (result && !o->ec_)
63 o->sender_endpoint_.resize(addr_len);
64
b32b8144
FG
65 BOOST_ASIO_HANDLER_REACTOR_OPERATION((*o, "non_blocking_recvfrom",
66 o->ec_, o->bytes_transferred_));
67
7c673cae
FG
68 return result;
69 }
70
71private:
72 socket_type socket_;
73 int protocol_type_;
74 MutableBufferSequence buffers_;
75 Endpoint& sender_endpoint_;
76 socket_base::message_flags flags_;
77};
78
79template <typename MutableBufferSequence, typename Endpoint, typename Handler>
80class reactive_socket_recvfrom_op :
81 public reactive_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>
82{
83public:
84 BOOST_ASIO_DEFINE_HANDLER_PTR(reactive_socket_recvfrom_op);
85
86 reactive_socket_recvfrom_op(socket_type socket, int protocol_type,
87 const MutableBufferSequence& buffers, Endpoint& endpoint,
88 socket_base::message_flags flags, Handler& handler)
89 : reactive_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>(
90 socket, protocol_type, buffers, endpoint, flags,
91 &reactive_socket_recvfrom_op::do_complete),
92 handler_(BOOST_ASIO_MOVE_CAST(Handler)(handler))
93 {
b32b8144 94 handler_work<Handler>::start(handler_);
7c673cae
FG
95 }
96
b32b8144 97 static void do_complete(void* owner, operation* base,
7c673cae
FG
98 const boost::system::error_code& /*ec*/,
99 std::size_t /*bytes_transferred*/)
100 {
101 // Take ownership of the handler object.
102 reactive_socket_recvfrom_op* o(
103 static_cast<reactive_socket_recvfrom_op*>(base));
104 ptr p = { boost::asio::detail::addressof(o->handler_), o, o };
b32b8144 105 handler_work<Handler> w(o->handler_);
7c673cae 106
b32b8144 107 BOOST_ASIO_HANDLER_COMPLETION((*o));
7c673cae
FG
108
109 // Make a copy of the handler so that the memory can be deallocated before
110 // the upcall is made. Even if we're not about to make an upcall, a
111 // sub-object of the handler may be the true owner of the memory associated
112 // with the handler. Consequently, a local copy of the handler is required
113 // to ensure that any owning sub-object remains valid until after we have
114 // deallocated the memory here.
115 detail::binder2<Handler, boost::system::error_code, std::size_t>
116 handler(o->handler_, o->ec_, o->bytes_transferred_);
117 p.h = boost::asio::detail::addressof(handler.handler_);
118 p.reset();
119
120 // Make the upcall if required.
121 if (owner)
122 {
123 fenced_block b(fenced_block::half);
124 BOOST_ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, handler.arg2_));
b32b8144 125 w.complete(handler, handler.handler_);
7c673cae
FG
126 BOOST_ASIO_HANDLER_INVOCATION_END;
127 }
128 }
129
130private:
131 Handler handler_;
132};
133
134} // namespace detail
135} // namespace asio
136} // namespace boost
137
138#include <boost/asio/detail/pop_options.hpp>
139
140#endif // BOOST_ASIO_DETAIL_REACTIVE_SOCKET_RECVFROM_OP_HPP