use_future.hpp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. //
  2. // use_future.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_USE_FUTURE_HPP
  11. #define BOOST_ASIO_USE_FUTURE_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 <memory>
  17. #include <boost/asio/detail/push_options.hpp>
  18. namespace boost {
  19. namespace asio {
  20. /// Class used to specify that an asynchronous operation should return a future.
  21. /**
  22. * The use_future_t class is used to indicate that an asynchronous operation
  23. * should return a std::future object. A use_future_t object may be passed as a
  24. * handler to an asynchronous operation, typically using the special value @c
  25. * boost::asio::use_future. For example:
  26. *
  27. * @code std::future<std::size_t> my_future
  28. * = my_socket.async_read_some(my_buffer, boost::asio::use_future); @endcode
  29. *
  30. * The initiating function (async_read_some in the above example) returns a
  31. * future that will receive the result of the operation. If the operation
  32. * completes with an error_code indicating failure, it is converted into a
  33. * system_error and passed back to the caller via the future.
  34. */
  35. template <typename Allocator = std::allocator<void> >
  36. class use_future_t
  37. {
  38. public:
  39. /// The allocator type. The allocator is used when constructing the
  40. /// @c std::promise object for a given asynchronous operation.
  41. typedef Allocator allocator_type;
  42. /// Construct using default-constructed allocator.
  43. BOOST_ASIO_CONSTEXPR use_future_t()
  44. {
  45. }
  46. /// Construct using specified allocator.
  47. explicit use_future_t(const Allocator& allocator)
  48. : allocator_(allocator)
  49. {
  50. }
  51. /// Specify an alternate allocator.
  52. template <typename OtherAllocator>
  53. use_future_t<OtherAllocator> operator[](const OtherAllocator& allocator) const
  54. {
  55. return use_future_t<OtherAllocator>(allocator);
  56. }
  57. /// Obtain allocator.
  58. allocator_type get_allocator() const
  59. {
  60. return allocator_;
  61. }
  62. private:
  63. Allocator allocator_;
  64. };
  65. /// A special value, similar to std::nothrow.
  66. /**
  67. * See the documentation for boost::asio::use_future_t for a usage example.
  68. */
  69. #if defined(BOOST_ASIO_HAS_CONSTEXPR) || defined(GENERATING_DOCUMENTATION)
  70. constexpr use_future_t<> use_future;
  71. #elif defined(BOOST_ASIO_MSVC)
  72. __declspec(selectany) use_future_t<> use_future;
  73. #endif
  74. } // namespace asio
  75. } // namespace boost
  76. #include <boost/asio/detail/pop_options.hpp>
  77. #include <boost/asio/impl/use_future.hpp>
  78. #endif // BOOST_ASIO_USE_FUTURE_HPP