From: Eric Niebler Date: Wed, 4 May 2016 21:45:20 +0000 (-0700) Subject: rearrange folly::Function so that its template arguments are deducable. X-Git-Tag: 2016.07.26~279 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=62b1d04761973f209a7f5f6205ec8aabc10089ed;p=folly.git rearrange folly::Function so that its template arguments are deducable. Summary: `folly::Function` was an alias to a more complex type with template arguments that could not be deduced. For example, the call to `foo` below was failing to compile. ``` template void foo(folly::Function f) { } int main() { foo( folly::Function{ [](int i){} } ); } ``` Rearrange the code so that folly::Function is no longer an alias, thus making its template arguments deducable. Reviewed By: luciang, spacedentist Differential Revision: D3256130 fb-gh-sync-id: fb403e48d161635b3b7f36e53b1679eb46cbfe7f fbshipit-source-id: fb403e48d161635b3b7f36e53b1679eb46cbfe7f --- diff --git a/folly/Function.h b/folly/Function.h index f5926ac3..a1b230e0 100644 --- a/folly/Function.h +++ b/folly/Function.h @@ -227,14 +227,12 @@ namespace folly { -namespace impl { -template +template class Function; template -Function constCastFunction( - Function&&) noexcept; -} // impl +Function constCastFunction( + Function&&) noexcept; namespace detail { namespace function { @@ -246,9 +244,6 @@ union Data { typename std::aligned_storage<6 * sizeof(void*)>::type small; }; -template -using ConstIf = typename std::conditional::type; - template ::type> using IsSmall = std::integral_constant< bool, @@ -259,6 +254,8 @@ using IsSmall = std::integral_constant< using SmallTag = std::true_type; using HeapTag = std::false_type; +struct CoerceTag {}; + template bool isNullPtrFn(T* p) { return p == nullptr; @@ -268,21 +265,135 @@ std::false_type isNullPtrFn(T&&) { return {}; } -template -ReturnType uninitCall(Data&, Args&&...) { - throw std::bad_function_call(); -} inline bool uninitNoop(Op, Data*, Data*) { return false; } +template +struct FunctionTraits; + +template +struct FunctionTraits { + using Call = ReturnType (*)(Data&, Args&&...); + using IsConst = std::false_type; + using ConstSignature = ReturnType(Args...) const; + using NonConstSignature = ReturnType(Args...); + using OtherSignature = ConstSignature; + + template ::type> + using ResultOf = decltype( + static_cast(std::declval()(std::declval()...))); + + template + static ReturnType callSmall(Data& p, Args&&... args) { + return static_cast((*static_cast( + static_cast(&p.small)))(static_cast(args)...)); + } + + template + static ReturnType callBig(Data& p, Args&&... args) { + return static_cast( + (*static_cast(p.big))(static_cast(args)...)); + } + + static ReturnType uninitCall(Data&, Args&&...) { + throw std::bad_function_call(); + } + + ReturnType operator()(Args... args) { + auto& fn = *static_cast*>(this); + return fn.call_(fn.data_, static_cast(args)...); + } + + struct SharedFunctionImpl { + std::shared_ptr> sp_; + ReturnType operator()(Args&&... args) const { + return (*sp_)(static_cast(args)...); + } + }; +}; + +template +struct FunctionTraits { + using Call = ReturnType (*)(Data&, Args&&...); + using IsConst = std::true_type; + using ConstSignature = ReturnType(Args...) const; + using NonConstSignature = ReturnType(Args...); + using OtherSignature = NonConstSignature; + + template ::type> + using ResultOf = decltype(static_cast( + std::declval()(std::declval()...))); + + template + static ReturnType callSmall(Data& p, Args&&... args) { + return static_cast((*static_cast( + static_cast(&p.small)))(static_cast(args)...)); + } + + template + static ReturnType callBig(Data& p, Args&&... args) { + return static_cast( + (*static_cast(p.big))(static_cast(args)...)); + } + + static ReturnType uninitCall(Data&, Args&&...) { + throw std::bad_function_call(); + } + + ReturnType operator()(Args... args) const { + auto& fn = *static_cast*>(this); + return fn.call_(fn.data_, static_cast(args)...); + } + + struct SharedFunctionImpl { + std::shared_ptr> sp_; + ReturnType operator()(Args&&... args) const { + return (*sp_)(static_cast(args)...); + } + }; +}; + +template +bool execSmall(Op o, Data* src, Data* dst) { + switch (o) { + case Op::MOVE: + ::new (static_cast(&dst->small)) + Fun(std::move(*static_cast(static_cast(&src->small)))); + FOLLY_FALLTHROUGH; + case Op::NUKE: + static_cast(static_cast(&src->small))->~Fun(); + break; + case Op::FULL: + return true; + case Op::HEAP: + break; + } + return false; +} + +template +bool execBig(Op o, Data* src, Data* dst) { + switch (o) { + case Op::MOVE: + dst->big = src->big; + src->big = nullptr; + break; + case Op::NUKE: + delete static_cast(src->big); + break; + case Op::FULL: + case Op::HEAP: + break; + } + return true; +} + } // namespace function } // namespace detail -namespace impl { - -template -class Function final { +template +class Function final : private detail::function::FunctionTraits { // These utility types are defined outside of the template to reduce // the number of instantiations, and then imported in the class // namespace for convenience. @@ -290,98 +401,53 @@ class Function final { using Op = detail::function::Op; using SmallTag = detail::function::SmallTag; using HeapTag = detail::function::HeapTag; - using Call = ReturnType (*)(Data&, Args&&...); + using CoerceTag = detail::function::CoerceTag; + + using Traits = detail::function::FunctionTraits; + using Call = typename Traits::Call; using Exec = bool (*)(Op, Data*, Data*); - template - using ConstIf = detail::function::ConstIf; template using IsSmall = detail::function::IsSmall; - /** - * @Function is const-safe: - * - @call_ takes @Data as non-const param to avoid code/data duplication. - * - @data_ can only be mutated if @constCastFunction is used. - */ + using OtherSignature = typename Traits::OtherSignature; + + // The `data_` member is mutable to allow `constCastFunction` to work without + // invoking undefined behavior. Const-correctness is only violated when + // `FunctionType` is a const function type (e.g., `int() const`) and `*this` + // is the result of calling `constCastFunction`. mutable Data data_; - Call call_{&detail::function::uninitCall}; + Call call_{&Traits::uninitCall}; Exec exec_{&detail::function::uninitNoop}; - friend Function constCastFunction<>( - Function&&) noexcept; - friend class Function; - - template - struct OpsSmall { - using FunT = typename std::decay::type; - static ReturnType call(Data& p, Args&&... args) { - return static_cast((*static_cast*>( - static_cast(&p.small)))(static_cast(args)...)); - } - static bool exec(Op o, Data* src, Data* dst) { - switch (o) { - case Op::MOVE: - ::new (static_cast(&dst->small)) FunT( - std::move(*static_cast(static_cast(&src->small)))); - FOLLY_FALLTHROUGH; - case Op::NUKE: - static_cast(static_cast(&src->small))->~FunT(); - break; - case Op::FULL: - return true; - case Op::HEAP: - break; - } - return false; - } - }; + friend Traits; + friend Function folly::constCastFunction<>( + Function&&) noexcept; + friend class Function; template Function(Fun&& fun, SmallTag) noexcept { - using Ops = OpsSmall; + using FunT = typename std::decay::type; if (!detail::function::isNullPtrFn(fun)) { - ::new (static_cast(&data_.small)) - typename Ops::FunT(static_cast(fun)); - exec_ = &Ops::exec; - call_ = &Ops::call; + ::new (static_cast(&data_.small)) FunT(static_cast(fun)); + call_ = &Traits::template callSmall; + exec_ = &detail::function::execSmall; } } - template - struct OpsHeap { - using FunT = typename std::decay::type; - static ReturnType call(Data& p, Args&&... args) { - return static_cast( - (*static_cast*>(p.big))(static_cast(args)...)); - } - static bool exec(Op o, Data* src, Data* dst) { - switch (o) { - case Op::MOVE: - dst->big = src->big; - src->big = nullptr; - break; - case Op::NUKE: - delete static_cast(src->big); - break; - case Op::FULL: - case Op::HEAP: - break; - } - return true; - } - }; - template Function(Fun&& fun, HeapTag) { - using Ops = OpsHeap; - data_.big = new typename Ops::FunT(static_cast(fun)); - call_ = &Ops::call; - exec_ = &Ops::exec; + using FunT = typename std::decay::type; + data_.big = new FunT(static_cast(fun)); + call_ = &Traits::template callBig; + exec_ = &detail::function::execBig; } - template ::type> - using ResultOf = decltype(static_cast( - std::declval&>()(std::declval()...))); + Function(Function&& that, CoerceTag) noexcept { + that.exec_(Op::MOVE, &that.data_, &data_); + std::swap(call_, that.call_); + std::swap(exec_, that.exec_); + } public: /** @@ -427,7 +493,7 @@ class Function final { * \note `typename = ResultOf` prevents this overload from being * selected by overload resolution when `fun` is not a compatible function. */ - template > + template > /* implicit */ Function(Fun&& fun) noexcept(IsSmall::value) : Function(static_cast(fun), IsSmall{}) {} @@ -435,13 +501,10 @@ class Function final { * For moving a `Function` into a `Function`. */ template < - bool OtherConst, - typename std::enable_if::type = 0> - Function(Function&& that) noexcept { - that.exec_(Op::MOVE, &that.data_, &data_); - std::swap(call_, that.call_); - std::swap(exec_, that.exec_); - } + bool Const = Traits::IsConst::value, + typename std::enable_if::type = 0> + Function(Function&& that) noexcept + : Function(std::move(that), CoerceTag{}) {} /** * If `ptr` is null, constructs an empty `Function`. Otherwise, @@ -489,7 +552,7 @@ class Function final { * \note `typename = ResultOf` prevents this overload from being * selected by overload resolution when `fun` is not a compatible function. */ - template > + template > Function& operator=(Fun&& fun) noexcept( noexcept(/* implicit */ Function(std::declval()))) { // Doing this in place is more efficient when we can do so safely. @@ -526,31 +589,8 @@ class Function final { /** * Call the wrapped callable object with the specified arguments. - * If this `Function` object is a const `folly::Function` object, - * this overload shall not participate in overload resolution. */ - template < - // `True` makes `operator()` a template so we can SFINAE on `Const`, - // which is non-deduced here. - bool True = true, - typename std::enable_if::type = 0> - ReturnType operator()(Args... args) { - return call_(data_, static_cast(args)...); - } - - /** - * Call the wrapped callable object with the specified arguments. - * If this `Function` object is not a const `folly::Function` object, - * this overload shall not participate in overload resolution. - */ - template < - // `True` makes `operator()` a template so we can SFINAE on `Const`, - // which is non-deduced here. - bool True = true, - typename std::enable_if::type = 0> - ReturnType operator()(Args... args) const { - return call_(data_, static_cast(args)...); - } + using Traits::operator(); /** * Exchanges the callable objects of `*this` and `that`. @@ -582,80 +622,51 @@ class Function final { * Note that the returned `std::function` will share its state (i.e. captured * data) across all copies you make of it, so be very careful when copying. */ - std::function asStdFunction() && { - struct Impl { - std::shared_ptr sp_; - ReturnType operator()(Args&&... args) const { - return (*sp_)(static_cast(args)...); - } - }; + std::function asStdFunction() && { + using Impl = typename Traits::SharedFunctionImpl; return Impl{std::make_shared(std::move(*this))}; } }; -template -void swap( - Function& lhs, - Function& rhs) noexcept { +template +void swap(Function& lhs, Function& rhs) noexcept { lhs.swap(rhs); } -template -bool operator==(const Function& fn, std::nullptr_t) { +template +bool operator==(const Function& fn, std::nullptr_t) { return !fn; } -template -bool operator==(std::nullptr_t, const Function& fn) { +template +bool operator==(std::nullptr_t, const Function& fn) { return !fn; } -template -bool operator!=(const Function& fn, std::nullptr_t) { +template +bool operator!=(const Function& fn, std::nullptr_t) { return !(fn == nullptr); } -template -bool operator!=(std::nullptr_t, const Function& fn) { +template +bool operator!=(std::nullptr_t, const Function& fn) { return !(nullptr == fn); } /** - * NOTE: See detailed note about @constCastFunction at the top of the file. + * NOTE: See detailed note about `constCastFunction` at the top of the file. * This is potentially dangerous and requires the equivalent of a `const_cast`. */ template -Function constCastFunction( - Function&& that) noexcept { - Function fn{}; - that.exec_(detail::function::Op::MOVE, &that.data_, &fn.data_); - std::swap(fn.call_, that.call_); - std::swap(fn.exec_, that.exec_); - return fn; +Function constCastFunction( + Function&& that) noexcept { + return Function{std::move(that), + detail::function::CoerceTag{}}; } -template -Function constCastFunction( - Function&& that) noexcept { - return std::move(that); -} - -template -struct MakeFunction {}; - -template -struct MakeFunction { - using type = Function; -}; - template -struct MakeFunction { - using type = Function; -}; -} // namespace impl - -/* using override */ using impl::constCastFunction; - -template -using Function = typename impl::MakeFunction::type; +Function constCastFunction( + Function&& that) noexcept { + return std::move(that); } +} // namespace folly diff --git a/folly/test/FunctionTest.cpp b/folly/test/FunctionTest.cpp index 7c5159c9..3f138516 100644 --- a/folly/test/FunctionTest.cpp +++ b/folly/test/FunctionTest.cpp @@ -49,6 +49,10 @@ struct Functor { return oldvalue; } }; + +template +void deduceArgs(Function) {} + } // namespace // TEST ===================================================================== @@ -849,3 +853,9 @@ TEST(Function, SelfMoveAssign) { f = std::move(g); EXPECT_TRUE(f); } + +TEST(Function, DeducableArguments) { + deduceArgs(Function{[] {}}); + deduceArgs(Function{[](int, float) {}}); + deduceArgs(Function{[](int i, float) { return i; }}); +}