Skip to content

Commit 710f9c1

Browse files
ofatssuertreus
authored andcommitted
Googletest export
Rewrite InvokeArgument action without using pump. PiperOrigin-RevId: 340861582
1 parent fb98f74 commit 710f9c1

File tree

3 files changed

+76
-103
lines changed

3 files changed

+76
-103
lines changed

googlemock/include/gmock/gmock-actions.h

-9
Original file line numberDiff line numberDiff line change
@@ -1539,15 +1539,6 @@ class ActionImpl<Derived<Ts...>> {
15391539
std::tuple<Ts...> params_;
15401540
};
15411541

1542-
// internal::InvokeArgument - a helper for InvokeArgument action.
1543-
// The basic overloads are provided here for generic functors.
1544-
// Overloads for other custom-callables are provided in the
1545-
// internal/custom/gmock-generated-actions.h header.
1546-
template <typename F, typename... Args>
1547-
auto InvokeArgument(F f, Args... args) -> decltype(f(args...)) {
1548-
return f(args...);
1549-
}
1550-
15511542
#define GMOCK_INTERNAL_ARG_UNUSED(i, data, el) \
15521543
, const arg##i##_type& arg##i GTEST_ATTRIBUTE_UNUSED_
15531544
#define GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_ \

googlemock/include/gmock/gmock-generated-actions.h

+38-76
Original file line numberDiff line numberDiff line change
@@ -491,10 +491,8 @@
491491
gmock_PerformImpl(\
492492
GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
493493

494-
495494
namespace testing {
496495

497-
498496
// The ACTION*() macros trigger warning C4100 (unreferenced formal
499497
// parameter) in MSVC with -W4. Unfortunately they cannot be fixed in
500498
// the macro definition, as the warnings are generated when the macro
@@ -505,24 +503,52 @@ namespace testing {
505503
# pragma warning(disable:4100)
506504
#endif
507505

508-
// Various overloads for InvokeArgument<N>().
509-
//
506+
namespace internal {
507+
508+
// internal::InvokeArgument - a helper for InvokeArgument action.
509+
// The basic overloads are provided here for generic functors.
510+
// Overloads for other custom-callables are provided in the
511+
// internal/custom/gmock-generated-actions.h header.
512+
template <typename F, typename... Args>
513+
auto InvokeArgument(F f, Args... args) -> decltype(f(args...)) {
514+
return f(args...);
515+
}
516+
517+
template <std::size_t index, typename... Params>
518+
struct InvokeArgumentAction {
519+
template <typename... Args>
520+
auto operator()(Args&&... args) const -> decltype(internal::InvokeArgument(
521+
std::get<index>(std::forward_as_tuple(std::forward<Args>(args)...)),
522+
std::declval<const Params&>()...)) {
523+
internal::FlatTuple<Args&&...> args_tuple(std::forward<Args>(args)...);
524+
return params.Apply([&](const Params&... unpacked_params) {
525+
auto&& callable = args_tuple.template Get<index>();
526+
return internal::InvokeArgument(
527+
std::forward<decltype(callable)>(callable), unpacked_params...);
528+
});
529+
}
530+
531+
internal::FlatTuple<Params...> params;
532+
};
533+
534+
} // namespace internal
535+
510536
// The InvokeArgument<N>(a1, a2, ..., a_k) action invokes the N-th
511537
// (0-based) argument, which must be a k-ary callable, of the mock
512538
// function, with arguments a1, a2, ..., a_k.
513539
//
514540
// Notes:
515541
//
516542
// 1. The arguments are passed by value by default. If you need to
517-
// pass an argument by reference, wrap it inside ByRef(). For
543+
// pass an argument by reference, wrap it inside std::ref(). For
518544
// example,
519545
//
520-
// InvokeArgument<1>(5, string("Hello"), ByRef(foo))
546+
// InvokeArgument<1>(5, string("Hello"), std::ref(foo))
521547
//
522548
// passes 5 and string("Hello") by value, and passes foo by
523549
// reference.
524550
//
525-
// 2. If the callable takes an argument by reference but ByRef() is
551+
// 2. If the callable takes an argument by reference but std::ref() is
526552
// not used, it will receive the reference to a copy of the value,
527553
// instead of the original value. For example, when the 0-th
528554
// argument of the mock function takes a const string&, the action
@@ -534,75 +560,11 @@ namespace testing {
534560
// to the callable. This makes it easy for a user to define an
535561
// InvokeArgument action from temporary values and have it performed
536562
// later.
537-
538-
ACTION_TEMPLATE(InvokeArgument,
539-
HAS_1_TEMPLATE_PARAMS(int, k),
540-
AND_0_VALUE_PARAMS()) {
541-
return internal::InvokeArgument(::std::get<k>(args));
542-
}
543-
544-
ACTION_TEMPLATE(InvokeArgument,
545-
HAS_1_TEMPLATE_PARAMS(int, k),
546-
AND_1_VALUE_PARAMS(p0)) {
547-
return internal::InvokeArgument(::std::get<k>(args), p0);
548-
}
549-
550-
ACTION_TEMPLATE(InvokeArgument,
551-
HAS_1_TEMPLATE_PARAMS(int, k),
552-
AND_2_VALUE_PARAMS(p0, p1)) {
553-
return internal::InvokeArgument(::std::get<k>(args), p0, p1);
554-
}
555-
556-
ACTION_TEMPLATE(InvokeArgument,
557-
HAS_1_TEMPLATE_PARAMS(int, k),
558-
AND_3_VALUE_PARAMS(p0, p1, p2)) {
559-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2);
560-
}
561-
562-
ACTION_TEMPLATE(InvokeArgument,
563-
HAS_1_TEMPLATE_PARAMS(int, k),
564-
AND_4_VALUE_PARAMS(p0, p1, p2, p3)) {
565-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3);
566-
}
567-
568-
ACTION_TEMPLATE(InvokeArgument,
569-
HAS_1_TEMPLATE_PARAMS(int, k),
570-
AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) {
571-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3, p4);
572-
}
573-
574-
ACTION_TEMPLATE(InvokeArgument,
575-
HAS_1_TEMPLATE_PARAMS(int, k),
576-
AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) {
577-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3, p4, p5);
578-
}
579-
580-
ACTION_TEMPLATE(InvokeArgument,
581-
HAS_1_TEMPLATE_PARAMS(int, k),
582-
AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) {
583-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3, p4, p5,
584-
p6);
585-
}
586-
587-
ACTION_TEMPLATE(InvokeArgument,
588-
HAS_1_TEMPLATE_PARAMS(int, k),
589-
AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) {
590-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3, p4, p5,
591-
p6, p7);
592-
}
593-
594-
ACTION_TEMPLATE(InvokeArgument,
595-
HAS_1_TEMPLATE_PARAMS(int, k),
596-
AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) {
597-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3, p4, p5,
598-
p6, p7, p8);
599-
}
600-
601-
ACTION_TEMPLATE(InvokeArgument,
602-
HAS_1_TEMPLATE_PARAMS(int, k),
603-
AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) {
604-
return internal::InvokeArgument(::std::get<k>(args), p0, p1, p2, p3, p4, p5,
605-
p6, p7, p8, p9);
563+
template <std::size_t index, typename... Params>
564+
internal::InvokeArgumentAction<index, typename std::decay<Params>::type...>
565+
InvokeArgument(Params&&... params) {
566+
return {internal::FlatTuple<typename std::decay<Params>::type...>(
567+
std::forward<Params>(params)...)};
606568
}
607569

608570
#ifdef _MSC_VER

googlemock/include/gmock/gmock-generated-actions.h.pump

+38-18
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,8 @@ $range k 0..n-1
305305
gmock_PerformImpl(\
306306
GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
307307

308-
309308
namespace testing {
310309

311-
312310
// The ACTION*() macros trigger warning C4100 (unreferenced formal
313311
// parameter) in MSVC with -W4. Unfortunately they cannot be fixed in
314312
// the macro definition, as the warnings are generated when the macro
@@ -319,24 +317,52 @@ namespace testing {
319317
# pragma warning(disable:4100)
320318
#endif
321319

322-
// Various overloads for InvokeArgument<N>().
323-
//
320+
namespace internal {
321+
322+
// internal::InvokeArgument - a helper for InvokeArgument action.
323+
// The basic overloads are provided here for generic functors.
324+
// Overloads for other custom-callables are provided in the
325+
// internal/custom/gmock-generated-actions.h header.
326+
template <typename F, typename... Args>
327+
auto InvokeArgument(F f, Args... args) -> decltype(f(args...)) {
328+
return f(args...);
329+
}
330+
331+
template <std::size_t index, typename... Params>
332+
struct InvokeArgumentAction {
333+
template <typename... Args>
334+
auto operator()(Args&&... args) const -> decltype(internal::InvokeArgument(
335+
std::get<index>(std::forward_as_tuple(std::forward<Args>(args)...)),
336+
std::declval<const Params&>()...)) {
337+
internal::FlatTuple<Args&&...> args_tuple(std::forward<Args>(args)...);
338+
return params.Apply([&](const Params&... unpacked_params) {
339+
auto&& callable = args_tuple.template Get<index>();
340+
return internal::InvokeArgument(
341+
std::forward<decltype(callable)>(callable), unpacked_params...);
342+
});
343+
}
344+
345+
internal::FlatTuple<Params...> params;
346+
};
347+
348+
} // namespace internal
349+
324350
// The InvokeArgument<N>(a1, a2, ..., a_k) action invokes the N-th
325351
// (0-based) argument, which must be a k-ary callable, of the mock
326352
// function, with arguments a1, a2, ..., a_k.
327353
//
328354
// Notes:
329355
//
330356
// 1. The arguments are passed by value by default. If you need to
331-
// pass an argument by reference, wrap it inside ByRef(). For
357+
// pass an argument by reference, wrap it inside std::ref(). For
332358
// example,
333359
//
334-
// InvokeArgument<1>(5, string("Hello"), ByRef(foo))
360+
// InvokeArgument<1>(5, string("Hello"), std::ref(foo))
335361
//
336362
// passes 5 and string("Hello") by value, and passes foo by
337363
// reference.
338364
//
339-
// 2. If the callable takes an argument by reference but ByRef() is
365+
// 2. If the callable takes an argument by reference but std::ref() is
340366
// not used, it will receive the reference to a copy of the value,
341367
// instead of the original value. For example, when the 0-th
342368
// argument of the mock function takes a const string&, the action
@@ -348,19 +374,13 @@ namespace testing {
348374
// to the callable. This makes it easy for a user to define an
349375
// InvokeArgument action from temporary values and have it performed
350376
// later.
351-
352-
$range i 0..n
353-
$for i [[
354-
$range j 0..i-1
355-
356-
ACTION_TEMPLATE(InvokeArgument,
357-
HAS_1_TEMPLATE_PARAMS(int, k),
358-
AND_$i[[]]_VALUE_PARAMS($for j, [[p$j]])) {
359-
return internal::InvokeArgument(::std::get<k>(args)$for j[[, p$j]]);
377+
template <std::size_t index, typename... Params>
378+
internal::InvokeArgumentAction<index, typename std::decay<Params>::type...>
379+
InvokeArgument(Params&&... params) {
380+
return {internal::FlatTuple<typename std::decay<Params>::type...>(
381+
std::forward<Params>(params)...)};
360382
}
361383

362-
]]
363-
364384
#ifdef _MSC_VER
365385
# pragma warning(pop)
366386
#endif

0 commit comments

Comments
 (0)