39 #ifndef GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
40 #define GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
46 #include <type_traits>
67 const std::vector<const
char*>& names, const
Strings& values);
78 template <typename Pointer>
79 inline const typename Pointer::element_type*
GetRawPointer(const Pointer&
p) {
84 template <
typename Element>
85 inline const Element*
GetRawPointer(
const std::reference_wrapper<Element>& r) {
90 template <
typename Element>
99 #define GMOCK_INTERNAL_WARNING_PUSH()
100 #define GMOCK_INTERNAL_WARNING_CLANG(Level, Name)
101 #define GMOCK_INTERNAL_WARNING_POP()
103 #if defined(__clang__)
104 #undef GMOCK_INTERNAL_WARNING_PUSH
105 #define GMOCK_INTERNAL_WARNING_PUSH() _Pragma("clang diagnostic push")
106 #undef GMOCK_INTERNAL_WARNING_CLANG
107 #define GMOCK_INTERNAL_WARNING_CLANG(Level, Warning) \
108 _Pragma(GMOCK_PP_INTERNAL_STRINGIZE(clang diagnostic Level Warning))
109 #undef GMOCK_INTERNAL_WARNING_POP
110 #define GMOCK_INTERNAL_WARNING_POP() _Pragma("clang diagnostic pop")
117 #if defined(_MSC_VER) && !defined(_NATIVE_WCHAR_T_DEFINED)
120 #define GMOCK_WCHAR_T_IS_NATIVE_ 1
131 template <
typename T>
137 #define GMOCK_DECLARE_KIND_(type, kind) \
139 struct KindOf<type> { \
140 enum { value = kind }; \
158 #if GMOCK_WCHAR_T_IS_NATIVE_
167 #undef GMOCK_DECLARE_KIND_
170 #define GMOCK_KIND_OF_(type) \
171 static_cast< ::testing::internal::TypeKind>( \
172 ::testing::internal::KindOf<type>::value)
183 template <TypeKind kFromKind,
typename From, TypeKind kToKind,
typename To>
188 (kFromKind ==
kBool) ?
true
191 : (kFromKind != kToKind) ?
false
195 (((
sizeof(From) <
sizeof(To)) &&
199 ((
sizeof(From) ==
sizeof(To)) &&
204 : (kFromKind ==
kFloatingPoint && (
sizeof(From) <=
sizeof(To))) ?
true
216 template <
typename From,
typename To>
232 const std::string& message) = 0;
243 inline void Assert(
bool condition,
const char* file,
int line,
244 const std::string& msg) {
250 inline void Assert(
bool condition,
const char* file,
int line) {
251 Assert(condition, file, line,
"Assertion failed.");
256 inline void Expect(
bool condition,
const char* file,
int line,
257 const std::string& msg) {
263 inline void Expect(
bool condition,
const char* file,
int line) {
264 Expect(condition, file, line,
"Expectation failed.");
291 int stack_frames_to_skip);
313 template <
typename T>
316 "Internal error: attempt to return invalid value");
317 #if defined(__GNUC__) || defined(__clang__)
318 __builtin_unreachable();
319 #elif defined(_MSC_VER)
342 template <
class RawContainer>
350 "RawContainer type must not be const");
357 template <
typename Element,
size_t N>
360 typedef typename std::remove_const<Element>::type
RawElement;
371 "Element type must not be const");
381 template <
typename ElementPo
inter,
typename Size>
384 typedef typename std::remove_const<
385 typename std::pointer_traits<ElementPointer>::element_type>
::type
391 const ::std::tuple<ElementPointer, Size>& array) {
392 return type(std::get<0>(array), std::get<1>(array),
395 static type Copy(const ::std::tuple<ElementPointer, Size>& array) {
402 template <
typename T>
403 class StlContainerView<
T&>;
408 template <
typename T>
414 template <
typename K,
typename V>
423 template <
typename F,
typename Tuple,
size_t... Idx>
424 auto ApplyImpl(
F&& f, Tuple&& args, std::index_sequence<Idx...>)
425 -> decltype(std::forward<F>(f)(
426 std::get<Idx>(std::forward<Tuple>(args))...)) {
427 return std::forward<F>(
f)(std::get<Idx>(std::forward<Tuple>(args))...);
431 template <
typename F,
typename Tuple>
434 std::forward<F>(f), std::forward<Tuple>(args),
435 std::make_index_sequence<std::tuple_size<
436 typename std::remove_reference<Tuple>::type>::
value>())) {
437 return ApplyImpl(std::forward<F>(
f), std::forward<Tuple>(args),
438 std::make_index_sequence<std::tuple_size<
439 typename std::remove_reference<Tuple>::type>::
value>());
455 template <
typename T>
458 template <
typename R,
typename... Args>
461 static constexpr
size_t ArgumentCount =
sizeof...(Args);
470 #ifdef GTEST_INTERNAL_NEED_REDUNDANT_CONSTEXPR_DECL
471 template <
typename R,
typename... Args>
472 constexpr
size_t Function<
R(Args...)>::ArgumentCount;
479 template <
size_t I,
typename T>
482 bool Base64Unescape(
const std::string& encoded, std::string* decoded);
489 #endif // GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
Sacado::Fad::DFad< double > F
virtual ~FailureReporterInterface()=default
#define GMOCK_KIND_OF_(type)
friend GTEST_API_ WithoutMatchers GetWithoutMatchers()
GTEST_API_ void IllegalDoDefault(const char *file, int line)
internal::NativeArray< RawElement > type
static const_reference ConstReference(const RawContainer &container)
GTEST_API_ FailureReporterInterface * GetFailureReporter()
const type const_reference
internal::NativeArray< RawElement > type
::std::vector<::std::string > Strings
std::integral_constant< bool,(kFromKind==kBool)?true:(kFromKind!=kToKind)?false:(kFromKind==kInteger &&(((sizeof(From)< sizeof(To))&&!(std::is_signed< From >::value &&!std::is_signed< To >::value))||((sizeof(From)==sizeof(To))&&(std::is_signed< From >::value==std::is_signed< To >::value))))?true:(kFromKind==kFloatingPoint &&(sizeof(From)<=sizeof(To)))?true:false > LosslessArithmeticConvertibleImpl
std::tuple< Args...> ArgumentTuple
static type Copy(const ::std::tuple< ElementPointer, Size > &array)
static const_reference ConstReference(const Element(&array)[N])
const char kInfoVerbosity[]
bool Base64Unescape(const std::string &encoded, std::string *decoded)
const char kWarningVerbosity[]
Sacado::Rad::ADvar< double > R
GTEST_API_ std::string ConvertIdentifierNameToWords(const char *id_name)
GMOCK_DECLARE_KIND_(bool, kBool)
auto Apply(F &&f, Tuple &&args) -> decltype(ApplyImpl(std::forward< F >(f), std::forward< Tuple >(args), std::make_index_sequence< std::tuple_size< typename std::remove_reference< Tuple >::type >::value >()))
const type const_reference
auto ApplyImpl(F &&f, Tuple &&args, std::index_sequence< Idx...>) -> decltype(std::forward< F >(f)(std::get< Idx >(std::forward< Tuple >(args))...))
void(Args...) MakeResultVoid
GTEST_DISABLE_MSC_WARNINGS_POP_() inline const char *SkipComma(const char *str)
virtual void ReportFailure(FailureType type, const char *file, int line, const std::string &message)=0
std::remove_const< Element >::type RawElement
const type & const_reference
GTEST_API_ bool LogIsVisible(LogSeverity severity)
LosslessArithmeticConvertibleImpl< GMOCK_KIND_OF_(From), From, GMOCK_KIND_OF_(To), To > LosslessArithmeticConvertible
static type Copy(const RawContainer &container)
static const_reference ConstReference(const ::std::tuple< ElementPointer, Size > &array)
void Assert(bool condition, const char *file, int line, const std::string &msg)
IgnoredValue(Args...) MakeResultIgnoredValue
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251) class GTEST_API_ TypedTestSuitePState
static type Copy(const Element(&array)[N])
std::tuple< Matcher< Args >...> ArgumentMatcherTuple
const char kErrorVerbosity[]
GTEST_API_ std::string JoinAsKeyValueTuple(const std::vector< const char * > &names, const Strings &values)
const Pointer::element_type * GetRawPointer(const Pointer &p)
std::remove_const< typename std::pointer_traits< ElementPointer >::element_type >::type RawElement
void Expect(bool condition, const char *file, int line, const std::string &msg)
GTEST_API_ WithoutMatchers GetWithoutMatchers()
typename std::tuple_element< I, T >::type TupleElement
GTEST_API_ void Log(LogSeverity severity, const std::string &message, int stack_frames_to_skip)