blob: 2c8d63e09fb899f0254a81f265fe67fc51fbfd01 [file] [log] [blame]
/*
* Copyright 2014 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef FRUIT_LAMBDA_INVOKER_H
#define FRUIT_LAMBDA_INVOKER_H
#include <fruit/impl/fruit-config.h>
#include <fruit/impl/injection_errors.h>
#include <fruit/impl/meta/errors.h>
#include <fruit/impl/meta/metaprogramming.h>
#include <fruit/impl/meta/signatures.h>
#include <fruit/impl/meta/wrappers.h>
#include <cstddef>
#include <functional>
#include <type_traits>
namespace fruit {
namespace impl {
class LambdaInvoker {
public:
template <typename F, typename... Args>
FRUIT_ALWAYS_INLINE static auto invoke(Args&&... args)
-> decltype(std::declval<const F&>()(std::declval<Args>()...)) {
// We reinterpret-cast a char[] to avoid de-referencing nullptr, which would technically be
// undefined behavior (even though we would not access any data there anyway).
// Sharing this buffer for different types F would also be undefined behavior since we'd break
// strict aliasing between those types.
alignas(alignof(F)) static char buf[1];
FruitStaticAssert(fruit::impl::meta::IsEmpty(fruit::impl::meta::Type<F>));
FruitStaticAssert(fruit::impl::meta::IsTriviallyCopyable(fruit::impl::meta::Type<F>));
// Since `F' is empty, a valid value of type F is already stored at the beginning of buf.
F* f = reinterpret_cast<F*>(buf);
return (*f)(std::forward<Args>(args)...);
}
};
} // namespace impl
} // namespace fruit
#endif // FRUIT_LAMBDA_INVOKER_H