Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
3.5KB

  1. //
  2. // detail/winrt_resolve_op.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 ASIO_DETAIL_WINRT_RESOLVE_OP_HPP
  11. #define ASIO_DETAIL_WINRT_RESOLVE_OP_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #if defined(ASIO_WINDOWS_RUNTIME)
  17. #include "asio/detail/bind_handler.hpp"
  18. #include "asio/detail/fenced_block.hpp"
  19. #include "asio/detail/handler_alloc_helpers.hpp"
  20. #include "asio/detail/handler_invoke_helpers.hpp"
  21. #include "asio/detail/memory.hpp"
  22. #include "asio/detail/winrt_async_op.hpp"
  23. #include "asio/ip/basic_resolver_results.hpp"
  24. #include "asio/error.hpp"
  25. #include "asio/detail/push_options.hpp"
  26. namespace asio {
  27. namespace detail {
  28. template <typename Protocol, typename Handler>
  29. class winrt_resolve_op :
  30. public winrt_async_op<
  31. Windows::Foundation::Collections::IVectorView<
  32. Windows::Networking::EndpointPair^>^>
  33. {
  34. public:
  35. ASIO_DEFINE_HANDLER_PTR(winrt_resolve_op);
  36. typedef typename Protocol::endpoint endpoint_type;
  37. typedef asio::ip::basic_resolver_query<Protocol> query_type;
  38. typedef asio::ip::basic_resolver_results<Protocol> results_type;
  39. winrt_resolve_op(const query_type& query, Handler& handler)
  40. : winrt_async_op<
  41. Windows::Foundation::Collections::IVectorView<
  42. Windows::Networking::EndpointPair^>^>(
  43. &winrt_resolve_op::do_complete),
  44. query_(query),
  45. handler_(ASIO_MOVE_CAST(Handler)(handler))
  46. {
  47. handler_work<Handler>::start(handler_);
  48. }
  49. static void do_complete(void* owner, operation* base,
  50. const asio::error_code&, std::size_t)
  51. {
  52. // Take ownership of the operation object.
  53. winrt_resolve_op* o(static_cast<winrt_resolve_op*>(base));
  54. ptr p = { asio::detail::addressof(o->handler_), o, o };
  55. handler_work<Handler> w(o->handler_);
  56. ASIO_HANDLER_COMPLETION((*o));
  57. results_type results = results_type();
  58. if (!o->ec_)
  59. {
  60. try
  61. {
  62. results = results_type::create(o->result_, o->query_.hints(),
  63. o->query_.host_name(), o->query_.service_name());
  64. }
  65. catch (Platform::Exception^ e)
  66. {
  67. o->ec_ = asio::error_code(e->HResult,
  68. asio::system_category());
  69. }
  70. }
  71. // Make a copy of the handler so that the memory can be deallocated before
  72. // the upcall is made. Even if we're not about to make an upcall, a
  73. // sub-object of the handler may be the true owner of the memory associated
  74. // with the handler. Consequently, a local copy of the handler is required
  75. // to ensure that any owning sub-object remains valid until after we have
  76. // deallocated the memory here.
  77. detail::binder2<Handler, asio::error_code, results_type>
  78. handler(o->handler_, o->ec_, results);
  79. p.h = asio::detail::addressof(handler.handler_);
  80. p.reset();
  81. // Make the upcall if required.
  82. if (owner)
  83. {
  84. fenced_block b(fenced_block::half);
  85. ASIO_HANDLER_INVOCATION_BEGIN((handler.arg1_, "..."));
  86. w.complete(handler, handler.handler_);
  87. ASIO_HANDLER_INVOCATION_END;
  88. }
  89. }
  90. private:
  91. query_type query_;
  92. Handler handler_;
  93. };
  94. } // namespace detail
  95. } // namespace asio
  96. #include "asio/detail/pop_options.hpp"
  97. #endif // defined(ASIO_WINDOWS_RUNTIME)
  98. #endif // ASIO_DETAIL_WINRT_RESOLVE_OP_HPP