|
1 | 1 | // GOOGLETEST_CM0002 DO NOT DELETE
|
| 2 | + |
2 | 3 | #ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_CUSTOM_GMOCK_GENERATED_ACTIONS_H_
|
3 | 4 | #define GMOCK_INCLUDE_GMOCK_INTERNAL_CUSTOM_GMOCK_GENERATED_ACTIONS_H_
|
4 | 5 |
|
5 |
| -#include "gmock/internal/gmock-port.h" |
6 |
| -#if GTEST_GOOGLE3_MODE_ |
7 |
| - |
8 |
| -#include <memory> |
9 |
| -#include <type_traits> |
10 |
| - |
11 |
| -#include "base/callback.h" |
12 |
| -#include "gmock/gmock-actions.h" |
13 |
| - |
14 |
| -namespace testing { |
15 |
| -namespace internal { |
16 |
| - |
17 |
| -// Implements the Invoke(callback) action. |
18 |
| -template <typename CallbackType, typename Signature> |
19 |
| -class InvokeCallbackAction; |
20 |
| - |
21 |
| -template <typename CallbackType, typename R, typename... Args> |
22 |
| -class InvokeCallbackAction<CallbackType, R(Args...)> { |
23 |
| - public: |
24 |
| - // The c'tor takes ownership of the callback. |
25 |
| - explicit InvokeCallbackAction(CallbackType* callback) : callback_(callback) { |
26 |
| - callback->CheckIsRepeatable(); // Makes sure the callback is permanent. |
27 |
| - } |
28 |
| - |
29 |
| - R operator()(Args... args) const { |
30 |
| - return callback_->Run(std::forward<Args>(args)...); |
31 |
| - } |
32 |
| - |
33 |
| - private: |
34 |
| - const std::shared_ptr<CallbackType> callback_; |
35 |
| -}; |
36 |
| - |
37 |
| -// Implements the InvokeWithoutArgs(callback) action. |
38 |
| -template <typename CallbackType> |
39 |
| -class InvokeCallbackWithoutArgsAction { |
40 |
| - const std::shared_ptr<CallbackType> callback_; |
41 |
| - |
42 |
| - public: |
43 |
| - // The c'tor takes ownership of the callback. |
44 |
| - explicit InvokeCallbackWithoutArgsAction(CallbackType* callback) |
45 |
| - : callback_(callback) { |
46 |
| - callback->CheckIsRepeatable(); // Makes sure the callback is permanent. |
47 |
| - } |
48 |
| - |
49 |
| - template <typename... Args> |
50 |
| - auto operator()(const Args&...) -> decltype(this->callback_->Run()) { |
51 |
| - return callback_->Run(); |
52 |
| - } |
53 |
| -}; |
54 |
| - |
55 |
| -template <typename T> |
56 |
| -struct TypeIdentity { |
57 |
| - using type = T; |
58 |
| -}; |
59 |
| - |
60 |
| -inline TypeIdentity<void()> CallbackSignatureImpl(Closure*); |
61 |
| -template <typename R> |
62 |
| -TypeIdentity<R()> CallbackSignatureImpl(ResultCallback<R>*); |
63 |
| - |
64 |
| -template <typename... Args> |
65 |
| -TypeIdentity<void(Args...)> CallbackSignatureImpl(Callback1<Args...>*); |
66 |
| -template <typename R, typename... Args> |
67 |
| -TypeIdentity<R(Args...)> CallbackSignatureImpl(ResultCallback1<R, Args...>*); |
68 |
| - |
69 |
| -template <typename... Args> |
70 |
| -TypeIdentity<void(Args...)> CallbackSignatureImpl(Callback2<Args...>*); |
71 |
| -template <typename R, typename... Args> |
72 |
| -TypeIdentity<R(Args...)> CallbackSignatureImpl(ResultCallback2<R, Args...>*); |
73 |
| - |
74 |
| -template <typename... Args> |
75 |
| -TypeIdentity<void(Args...)> CallbackSignatureImpl(Callback3<Args...>*); |
76 |
| -template <typename R, typename... Args> |
77 |
| -TypeIdentity<R(Args...)> CallbackSignatureImpl(ResultCallback3<R, Args...>*); |
78 |
| - |
79 |
| -template <typename... Args> |
80 |
| -TypeIdentity<void(Args...)> CallbackSignatureImpl(Callback4<Args...>*); |
81 |
| -template <typename R, typename... Args> |
82 |
| -TypeIdentity<R(Args...)> CallbackSignatureImpl(ResultCallback4<R, Args...>*); |
83 |
| - |
84 |
| -template <typename... Args> |
85 |
| -TypeIdentity<void(Args...)> CallbackSignatureImpl(Callback5<Args...>*); |
86 |
| -template <typename R, typename... Args> |
87 |
| -TypeIdentity<R(Args...)> CallbackSignatureImpl(ResultCallback5<R, Args...>*); |
88 |
| - |
89 |
| -template <typename T> |
90 |
| -using CallbackSignature = typename decltype( |
91 |
| - internal::CallbackSignatureImpl(std::declval<T*>()))::type; |
92 |
| - |
93 |
| -// Specialization for protocol buffers. |
94 |
| -// We support setting a proto2::Message, which doesn't have an assignment |
95 |
| -// operator. |
96 |
| -template <size_t N, typename A> |
97 |
| -struct SetArgumentPointeeAction< |
98 |
| - N, A, |
99 |
| - typename std::enable_if<std::is_base_of<proto2::Message, A>::value>::type> { |
100 |
| - A value; |
101 |
| - |
102 |
| - template <typename... Args> |
103 |
| - void operator()(const Args&... args) const { |
104 |
| - ::std::get<N>(std::tie(args...))->CopyFrom(value); |
105 |
| - } |
106 |
| -}; |
107 |
| - |
108 |
| -// Add Invoke overloads for google3 Callback types. |
109 |
| - |
110 |
| -template <typename C, typename... Args, |
111 |
| - typename = internal::CallbackSignature<C>> |
112 |
| -auto InvokeArgument(C* cb, Args... args) -> decltype(cb->Run(args...)) { |
113 |
| - return cb->Run(args...); |
114 |
| -} |
115 |
| - |
116 |
| -} // namespace internal |
117 |
| - |
118 |
| -// Add Invoke overloads for google3 Callback types. |
119 |
| - |
120 |
| -// Creates an action that invokes the given callback with the mock |
121 |
| -// function's arguments. The action takes ownership of the callback |
122 |
| -// and verifies that it's permanent. |
123 |
| -// |
124 |
| -// google3 doesn't support callbacks with more than 5 |
125 |
| -// arguments yet, so we only support invoking callbacks with up to |
126 |
| -// 5 arguments. |
127 |
| - |
128 |
| -template <typename Callback> |
129 |
| -internal::InvokeCallbackAction<Callback, internal::CallbackSignature<Callback>> |
130 |
| -Invoke(Callback* callback) { |
131 |
| - return internal::InvokeCallbackAction<Callback, |
132 |
| - internal::CallbackSignature<Callback>>( |
133 |
| - callback); |
134 |
| -} |
135 |
| - |
136 |
| -// Creates an action that invokes the given callback with no argument. |
137 |
| -// The action takes ownership of the callback and verifies that it's |
138 |
| -// permanent. |
139 |
| -template <typename Callback, typename = internal::CallbackSignature<Callback>> |
140 |
| -internal::InvokeCallbackWithoutArgsAction<Callback> InvokeWithoutArgs( |
141 |
| - Callback* callback) { |
142 |
| - return internal::InvokeCallbackWithoutArgsAction<Callback>(callback); |
143 |
| -} |
144 |
| - |
145 |
| -} // namespace testing |
146 |
| - |
147 |
| -#endif // GTEST_GOOGLE3_MODE_ |
148 |
| - |
149 | 6 | #endif // GMOCK_INCLUDE_GMOCK_INTERNAL_CUSTOM_GMOCK_GENERATED_ACTIONS_H_
|
0 commit comments