X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2FTraits.h;h=b7301e25102cd76b032c08f68fdaf5630f074f83;hp=877a325f74fd820049daccc71a381ee0f834b1ac;hb=59cb2ab00419bffb627e89cb096e1288c2f37eeb;hpb=3259ce0e737922616205bd72cda16f59722cf4ea diff --git a/folly/Traits.h b/folly/Traits.h index 877a325f..b7301e25 100644 --- a/folly/Traits.h +++ b/folly/Traits.h @@ -1,5 +1,5 @@ /* - * Copyright 2017 Facebook, Inc. + * Copyright 2011-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,10 +18,10 @@ #pragma once -#include +#include #include +#include #include -#include #include @@ -40,14 +40,20 @@ template \ struct classname##__folly_traits_impl__ { \ template \ - static std::true_type test(typename UTheClass_::type_name*); \ + static constexpr bool test(typename UTheClass_::type_name*) { \ + return true; \ + } \ template \ - static std::false_type test(...); \ + static constexpr bool test(...) { \ + return false; \ + } \ }; \ template \ - using classname = decltype( \ + using classname = typename std::conditional< \ classname##__folly_traits_impl__::template test( \ - nullptr)) + nullptr), \ + std::true_type, \ + std::false_type>::type; #define FOLLY_CREATE_HAS_MEMBER_FN_TRAITS_IMPL(classname, func_name, cv_qual) \ template \ @@ -150,10 +156,38 @@ template using _t = typename T::type; /** + * A type trait to remove all const volatile and reference qualifiers on a + * type T + */ +template +struct remove_cvref { + using type = + typename std::remove_cv::type>::type; +}; +template +using remove_cvref_t = typename remove_cvref::type; + +/** + * type_t + * + * A type alias for the first template type argument. `type_t` is useful for + * controlling class-template and function-template partial specialization. + * + * Example: + * + * template + * class Container { + * public: + * template + * Container( + * type_t()...))>, + * Args&&...); + * }; + * * void_t * * A type alias for `void`. `void_t` is useful for controling class-template - * partial specialization. + * and function-template partial specialization. * * Example: * @@ -166,23 +200,48 @@ using _t = typename T::type; * struct has_value_type> * : std::true_type {}; */ -#if defined(__cpp_lib_void_t) || defined(_MSC_VER) -/* using override */ using std::void_t; - -#else // defined(__cpp_lib_void_t) || defined(_MSC_VER) +/** + * There is a bug in libstdc++, libc++, and MSVC's STL that causes it to + * ignore unused template parameter arguments in template aliases and does not + * cause substitution failures. This defect has been recorded here: + * http://open-std.org/JTC1/SC22/WG21/docs/cwg_defects.html#1558. + * + * This causes the implementation of std::void_t to be buggy, as it is likely + * defined as something like the following: + * + * template + * using void_t = void; + * + * This causes the compiler to ignore all the template arguments and does not + * help when one wants to cause substitution failures. Rather declarations + * which have void_t in orthogonal specializations are treated as the same. + * For example, assuming the possible `T` types are only allowed to have + * either the alias `one` or `two` and never both or none: + * + * template ::one>* = nullptr> + * void foo(T&&) {} + * template ::two>* = nullptr> + * void foo(T&&) {} + * + * The second foo() will be a redefinition because it conflicts with the first + * one; void_t does not cause substitution failures - the template types are + * just ignored. + */ namespace traits_detail { -template -struct void_t_ { - using type = void; +template +struct type_t_ { + using type = T; }; } // namespace traits_detail +template +using type_t = typename traits_detail::type_t_::type; template -using void_t = _t>; - -#endif // defined(__cpp_lib_void_t) || defined(_MSC_VER) +using void_t = type_t; /** * IsRelocatable::value describes the ability of moving around @@ -261,11 +320,12 @@ struct is_trivially_copyable : std::is_trivial {}; template using is_trivially_copyable = std::is_trivially_copyable; #endif -} +} // namespace traits_detail struct Ignore { + Ignore() = default; template - /* implicit */ Ignore(const T&) {} + constexpr /* implicit */ Ignore(const T&) {} template const Ignore& operator=(T const&) const { return *this; } }; @@ -282,7 +342,7 @@ struct IsEqualityComparable decltype(std::declval() == std::declval()), bool > {}; -} +} // namespace traits_detail_IsEqualityComparable /* using override */ using traits_detail_IsEqualityComparable:: IsEqualityComparable; @@ -296,7 +356,7 @@ struct IsLessThanComparable decltype(std::declval() < std::declval()), bool > {}; -} +} // namespace traits_detail_IsLessThanComparable /* using override */ using traits_detail_IsLessThanComparable:: IsLessThanComparable; @@ -324,7 +384,7 @@ struct IsNothrowSwappable noexcept(swap(std::declval(), std::declval())) > {}; #endif -} +} // namespace traits_detail_IsNothrowSwappable /* using override */ using traits_detail_IsNothrowSwappable::IsNothrowSwappable; @@ -380,8 +440,14 @@ struct Bools { // Lighter-weight than Conjunction, but evaluates all sub-conditions eagerly. template -using StrictConjunction = - std::is_same, Bools>; +struct StrictConjunction + : std::is_same, Bools<(Ts::value || true)...>> {}; + +template +struct StrictDisjunction + : Negation< + std::is_same, Bools<(Ts::value && false)...>> + > {}; } // namespace folly @@ -390,12 +456,12 @@ using StrictConjunction = * regular type, use it like this: * * // Make sure you're at namespace ::folly scope - * template<> FOLLY_ASSUME_RELOCATABLE(MyType) + * template <> FOLLY_ASSUME_RELOCATABLE(MyType) * * When using it with a template type, use it like this: * * // Make sure you're at namespace ::folly scope - * template + * template * FOLLY_ASSUME_RELOCATABLE(MyType) */ #define FOLLY_ASSUME_RELOCATABLE(...) \ @@ -503,15 +569,8 @@ struct IsRelocatable< std::pair > IsRelocatable::value> {}; // Is T one of T1, T2, ..., Tn? -template -struct IsOneOf { - enum { value = false }; -}; - -template -struct IsOneOf { - enum { value = std::is_same::value || IsOneOf::value }; -}; +template +using IsOneOf = StrictDisjunction...>; /* * Complementary type traits for integral comparisons. @@ -540,9 +599,9 @@ struct is_negative_impl { // types) that violate -Wsign-compare and/or -Wbool-compare so suppress them // in order to not prevent all calling code from using it. FOLLY_PUSH_WARNING -FOLLY_GCC_DISABLE_WARNING(sign-compare) +FOLLY_GCC_DISABLE_WARNING("-Wsign-compare") #if __GNUC_PREREQ(5, 0) -FOLLY_GCC_DISABLE_WARNING(bool-compare) +FOLLY_GCC_DISABLE_WARNING("-Wbool-compare") #endif FOLLY_MSVC_DISABLE_WARNING(4388) // sign-compare FOLLY_MSVC_DISABLE_WARNING(4804) // bool-compare @@ -565,7 +624,7 @@ bool greater_than_impl(LHS const lhs) { FOLLY_POP_WARNING -} // namespace detail { +} // namespace detail // same as `x < 0` template @@ -600,100 +659,6 @@ bool greater_than(LHS const lhs) { RHS, rhs, typename std::remove_reference::type >(lhs); } - -namespace traits_detail { -struct InPlaceTag {}; -template -struct InPlaceTypeTag {}; -template -struct InPlaceIndexTag {}; -} - -/** - * Like std::piecewise_construct, a tag type & instance used for in-place - * construction of non-movable contained types, e.g. by Synchronized. - * Follows the naming and design of std::in_place suggested in - * http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0032r2.pdf - */ -using in_place_t = traits_detail::InPlaceTag (&)(traits_detail::InPlaceTag); - -template -using in_place_type_t = - traits_detail::InPlaceTypeTag (&)(traits_detail::InPlaceTypeTag); - -template -using in_place_index_t = - traits_detail::InPlaceIndexTag (&)(traits_detail::InPlaceIndexTag); - -inline traits_detail::InPlaceTag in_place(traits_detail::InPlaceTag = {}) { - return {}; -} - -template -inline traits_detail::InPlaceTypeTag in_place( - traits_detail::InPlaceTypeTag = {}) { - return {}; -} - -template -inline traits_detail::InPlaceIndexTag in_place( - traits_detail::InPlaceIndexTag = {}) { - return {}; -} - -// For backwards compatibility: -using construct_in_place_t = in_place_t; - -inline traits_detail::InPlaceTag construct_in_place( - traits_detail::InPlaceTag = {}) { - return {}; -} - -/** - * Initializer lists are a powerful compile time syntax introduced in C++11 - * but due to their often conflicting syntax they are not used by APIs for - * construction. - * - * Further standard conforming compilers *strongly* favor an - * std::initalizer_list overload for construction if one exists. The - * following is a simple tag used to disambiguate construction with - * initializer lists and regular uniform initialization. - * - * For example consider the following case - * - * class Something { - * public: - * explicit Something(int); - * Something(std::intiializer_list); - * - * operator int(); - * }; - * - * ... - * Something something{1}; // SURPRISE!! - * - * The last call to instantiate the Something object will go to the - * initializer_list overload. Which may be surprising to users. - * - * If however this tag was used to disambiguate such construction it would be - * easy for users to see which construction overload their code was referring - * to. For example - * - * class Something { - * public: - * explicit Something(int); - * Something(folly::initlist_construct_t, std::initializer_list); - * - * operator int(); - * }; - * - * ... - * Something something_one{1}; // not the initializer_list overload - * Something something_two{folly::initlist_construct, {1}}; // correct - */ -struct initlist_construct_t {}; -constexpr initlist_construct_t initlist_construct{}; - } // namespace folly // Assume nothing when compiling with MSVC.