Asio Extensions
Additional functionality built on top of (Boost.)Asio
async_result.hpp
1 /// @copyright Copyright (c) 2017 Tim Niederhausen (tim@rnc-ag.de)
2 /// Distributed under the Boost Software License, Version 1.0.
3 /// (See accompanying file LICENSE_1_0.txt or copy at
4 /// http://www.boost.org/LICENSE_1_0.txt)
5 
6 #ifndef ASIOEXT_ASYNCRESULT_HPP
7 #define ASIOEXT_ASYNCRESULT_HPP
8 
9 #include "asioext/detail/config.hpp"
10 
11 #if ASIOEXT_HAS_PRAGMA_ONCE
12 # pragma once
13 #endif
14 
15 #include "asioext/detail/asio_version.hpp"
16 
17 #if defined(ASIOEXT_USE_BOOST_ASIO)
18 # include <boost/asio/async_result.hpp>
19 #else
20 # include <asio/async_result.hpp>
21 #endif
22 
23 #include <type_traits>
24 
25 // @brief An initiating function's return type.
26 //
27 // This is a utility macro expanding to @c async_result::return_type
28 // for the given completion token and signature.
29 //
30 // @note If possible @c async_result_t should be preferred.
31 #if defined(ASIOEXT_IS_DOCUMENTATION)
32 # define ASIOEXT_INITFN_RESULT_TYPE void_or_deduced
33 #elif defined(ASIOEXT_USE_BOOST_ASIO)
34 # define ASIOEXT_INITFN_RESULT_TYPE BOOST_ASIO_INITFN_RESULT_TYPE
35 #else
36 # define ASIOEXT_INITFN_RESULT_TYPE ASIO_INITFN_RESULT_TYPE
37 #endif
38 
39 ASIOEXT_NS_BEGIN
40 
41 #if (ASIOEXT_ASIO_VERSION >= 101100) && !defined(ASIOEXT_IS_DOCUMENTATION)
42 using asio::async_result;
43 using asio::async_completion;
44 #else
45 /// @ingroup compat
46 /// @brief An interface for customising the behaviour of an initiating function.
47 ///
48 /// @note This type is the same as @c asio::async_result if Asio 1.11.0+ is
49 /// used.
50 /// For prior versions this is a compatibility type that obtains the
51 /// completion handler type from @c asio::handler_type and the return type from
52 /// @c asio::async_result.
53 template <typename CompletionToken, typename Signature = void>
55 {
56 public:
57  typedef typename asio::handler_type<CompletionToken, Signature>::type
59 
60  typedef typename asio::async_result<completion_handler_type>::type
62 
63  /// @brief Construct an async result from a given handler.
65  : result_(h)
66  { }
67 
68  /// Obtain the value to be returned from the initiating function.
70  {
71  return result_.get();
72  }
73 
74 private:
75  async_result(const async_result&) ASIOEXT_DELETED;
76  async_result& operator=(const async_result&) ASIOEXT_DELETED;
77 
78  asio::async_result<completion_handler_type> result_;
79 };
80 
81 /// @ingroup compat
82 /// Helper template to deduce the handler type from a CompletionToken, capture
83 /// a local copy of the handler, and then create an async_result for the
84 /// handler.
85 ///
86 /// @note This type is the same as @c asio::async_completion if Asio 1.11.0+ is
87 /// used.
88 /// For prior versions this is a compatibility type that uses @c async_result
89 /// to obtain the needed types.
90 template <typename CompletionToken, typename Signature>
92 {
93  /// @internal
94  typedef async_result<
96  Signature
98 
101 
102 #if defined(ASIOEXT_HAS_MOVE)
103  explicit async_completion(CompletionToken& token)
104  : completion_handler(static_cast<typename std::conditional<
105  std::is_same<CompletionToken, completion_handler_type>::value,
106  completion_handler_type&, CompletionToken&&>::type>(token))
107  , result(completion_handler)
108  {
109  }
110 #else
111  explicit async_completion(typename std::decay<CompletionToken>::type& token)
112  : completion_handler(token)
113  , result(completion_handler)
114  {
115  }
116 
117  explicit async_completion(
118  const typename std::decay<CompletionToken>::type& token)
119  : completion_handler(token)
120  , result(completion_handler)
121  {
122  }
123 #endif
124 
125 #if defined(ASIOEXT_HAS_MOVE)
126  typename std::conditional<
128  completion_handler_type&, completion_handler_type
130 #else
131  completion_handler_type completion_handler;
132 #endif
133 
135 };
136 #endif
137 
138 #if defined(ASIOEXT_HAS_ALIAS_TEMPLATES)
139 /// @ingroup core
140 /// @brief An initiating function's return type.
141 ///
142 /// This alias template refers to the @c async_result::return_type
143 /// type for the specified CompletionToken and Signature.
144 template <typename CompletionToken, typename Signature>
145 using async_result_t = typename async_result<
146  typename std::decay<CompletionToken>::type, Signature
147 >::return_type;
148 
149 /// @ingroup core
150 /// @brief The real handler type to be used for the asynchronous operation.
151 ///
152 /// This alias template refers to the @c async_result::completion_handler_type
153 /// type for the specified CompletionToken and Signature.
154 template <typename CompletionToken, typename Signature>
155 using completion_handler_t = typename async_result<
156  typename std::decay<CompletionToken>::type, Signature
157 >::completion_handler_type;
158 #endif
159 
160 ASIOEXT_NS_END
161 
162 #endif
async_result< typename std::decay< CompletionToken >::type, Signature > result_type
Definition: async_result.hpp:97
async_completion(CompletionToken &token)
Definition: async_result.hpp:103
typename async_result< typename std::decay< CompletionToken >::type, Signature >::completion_handler_type completion_handler_t
The real handler type to be used for the asynchronous operation.
Definition: async_result.hpp:157
STL namespace.
typename async_result< typename std::decay< CompletionToken >::type, Signature >::return_type async_result_t
An initiating function&#39;s return type.
Definition: async_result.hpp:147
Definition: async_result.hpp:91
std::conditional< std::is_same< CompletionToken, completion_handler_type >::value, completion_handler_type &, completion_handler_type >::type completion_handler
Definition: async_result.hpp:129
result_type result
Definition: async_result.hpp:134
asio::async_result< completion_handler_type >::type return_type
Definition: async_result.hpp:61
async_result(completion_handler_type &h)
Construct an async result from a given handler.
Definition: async_result.hpp:64
asio::handler_type< CompletionToken, Signature >::type completion_handler_type
Definition: async_result.hpp:58
An interface for customising the behaviour of an initiating function.
Definition: async_result.hpp:54
result_type::completion_handler_type completion_handler_type
Definition: async_result.hpp:100