async_result.hpp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. //
  2. // async_result.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_ASYNC_RESULT_HPP
  11. #define BOOST_ASIO_ASYNC_RESULT_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 <boost/asio/handler_type.hpp>
  17. #include <boost/asio/detail/push_options.hpp>
  18. namespace boost {
  19. namespace asio {
  20. /// An interface for customising the behaviour of an initiating function.
  21. /**
  22. * This template may be specialised for user-defined handler types.
  23. */
  24. template <typename Handler>
  25. class async_result
  26. {
  27. public:
  28. /// The return type of the initiating function.
  29. typedef void type;
  30. /// Construct an async result from a given handler.
  31. /**
  32. * When using a specalised async_result, the constructor has an opportunity
  33. * to initialise some state associated with the handler, which is then
  34. * returned from the initiating function.
  35. */
  36. explicit async_result(Handler&)
  37. {
  38. }
  39. /// Obtain the value to be returned from the initiating function.
  40. type get()
  41. {
  42. }
  43. };
  44. namespace detail {
  45. // Helper template to deduce the true type of a handler, capture a local copy
  46. // of the handler, and then create an async_result for the handler.
  47. template <typename Handler, typename Signature>
  48. struct async_result_init
  49. {
  50. explicit async_result_init(BOOST_ASIO_MOVE_ARG(Handler) orig_handler)
  51. : handler(BOOST_ASIO_MOVE_CAST(Handler)(orig_handler)),
  52. result(handler)
  53. {
  54. }
  55. typename handler_type<Handler, Signature>::type handler;
  56. async_result<typename handler_type<Handler, Signature>::type> result;
  57. };
  58. template <typename Handler, typename Signature>
  59. struct async_result_type_helper
  60. {
  61. typedef typename async_result<
  62. typename handler_type<Handler, Signature>::type
  63. >::type type;
  64. };
  65. } // namespace detail
  66. } // namespace asio
  67. } // namespace boost
  68. #include <boost/asio/detail/pop_options.hpp>
  69. #if defined(GENERATING_DOCUMENTATION)
  70. # define BOOST_ASIO_INITFN_RESULT_TYPE(h, sig) \
  71. void_or_deduced
  72. #elif defined(_MSC_VER) && (_MSC_VER < 1500)
  73. # define BOOST_ASIO_INITFN_RESULT_TYPE(h, sig) \
  74. typename ::boost::asio::detail::async_result_type_helper<h, sig>::type
  75. #else
  76. # define BOOST_ASIO_INITFN_RESULT_TYPE(h, sig) \
  77. typename ::boost::asio::async_result< \
  78. typename ::boost::asio::handler_type<h, sig>::type>::type
  79. #endif
  80. #endif // BOOST_ASIO_ASYNC_RESULT_HPP