forked from microsoft/microsoft-ui-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvokableCallbackHelper.h
43 lines (34 loc) · 1.66 KB
/
InvokableCallbackHelper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#pragma once
namespace details
{
// Used to produce a delegate with the Invoke() method signature that matches that of TDelegateInterface.
template<typename TDelegateInterface> struct CallbackTraits; // to be specialized
template<typename TDelegateInterface, typename ...TArgs>
struct CallbackTraits<HRESULT(STDMETHODCALLTYPE TDelegateInterface::*)(TArgs...)>
{
template<typename TDelegateInterface>
struct InvokeCallback : winrt::implements<InvokeCallback<TDelegateInterface>, TDelegateInterface>
{
private:
std::function<HRESULT STDMETHODCALLTYPE(TArgs...)> m_invokeFunction;
public:
InvokeCallback() = delete;
InvokeCallback(std::function<HRESULT STDMETHODCALLTYPE(TArgs...)>&& func_obj) : m_invokeFunction(func_obj) {}
HRESULT STDMETHODCALLTYPE Invoke(TArgs... args) override
{
return m_invokeFunction(args...);
}
};
};
}
// This callback type provides a winrt-style implementation of the COM delegate interface/ABI that is non-reliant on WRL,
// but can be used as a direct replacement for 'WRL::Callback's.
template<typename TDelegateInterface, typename TLambda>
auto InvokableCallback(TLambda&& callback)
{
using InvokeSignature = decltype(&TDelegateInterface::Invoke);
using CallbackType = typename details::CallbackTraits<InvokeSignature>::template InvokeCallback<TDelegateInterface>;
return winrt::make<CallbackType>(std::forward<TLambda>(callback));
}