141 lines
5.7 KiB
C
141 lines
5.7 KiB
C
|
// Copyright (c) 2015 Amanieu d'Antras
|
||
|
//
|
||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
// of this software and associated documentation files (the "Software"), to deal
|
||
|
// in the Software without restriction, including without limitation the rights
|
||
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
// copies of the Software, and to permit persons to whom the Software is
|
||
|
// furnished to do so, subject to the following conditions:
|
||
|
//
|
||
|
// The above copyright notice and this permission notice shall be included in
|
||
|
// all copies or substantial portions of the Software.
|
||
|
//
|
||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
// THE SOFTWARE.
|
||
|
|
||
|
#ifndef ASYNCXX_H_
|
||
|
# error "Do not include this header directly, include <async++.h> instead."
|
||
|
#endif
|
||
|
|
||
|
namespace async {
|
||
|
namespace detail {
|
||
|
|
||
|
// Pseudo-void type: it takes up no space but can be moved and copied
|
||
|
struct fake_void {};
|
||
|
template<typename T>
|
||
|
struct void_to_fake_void {
|
||
|
typedef T type;
|
||
|
};
|
||
|
template<>
|
||
|
struct void_to_fake_void<void> {
|
||
|
typedef fake_void type;
|
||
|
};
|
||
|
template<typename T>
|
||
|
T fake_void_to_void(T&& x)
|
||
|
{
|
||
|
return std::forward<T>(x);
|
||
|
}
|
||
|
inline void fake_void_to_void(fake_void) {}
|
||
|
|
||
|
// Check if type is a task type, used to detect task unwraping
|
||
|
template<typename T>
|
||
|
struct is_task: public std::false_type {};
|
||
|
template<typename T>
|
||
|
struct is_task<task<T>>: public std::true_type {};
|
||
|
template<typename T>
|
||
|
struct is_task<const task<T>>: public std::true_type {};
|
||
|
template<typename T>
|
||
|
struct is_task<shared_task<T>>: public std::true_type {};
|
||
|
template<typename T>
|
||
|
struct is_task<const shared_task<T>>: public std::true_type {};
|
||
|
|
||
|
// Extract the result type of a task if T is a task, otherwise just return T
|
||
|
template<typename T>
|
||
|
struct remove_task {
|
||
|
typedef T type;
|
||
|
};
|
||
|
template<typename T>
|
||
|
struct remove_task<task<T>> {
|
||
|
typedef T type;
|
||
|
};
|
||
|
template<typename T>
|
||
|
struct remove_task<const task<T>> {
|
||
|
typedef T type;
|
||
|
};
|
||
|
template<typename T>
|
||
|
struct remove_task<shared_task<T>> {
|
||
|
typedef T type;
|
||
|
};
|
||
|
template<typename T>
|
||
|
struct remove_task<const shared_task<T>> {
|
||
|
typedef T type;
|
||
|
};
|
||
|
|
||
|
// Check if a type is callable with the given arguments
|
||
|
typedef char one[1];
|
||
|
typedef char two[2];
|
||
|
template<typename Func, typename... Args, typename = decltype(std::declval<Func>()(std::declval<Args>()...))>
|
||
|
two& is_callable_helper(int);
|
||
|
template<typename Func, typename... Args>
|
||
|
one& is_callable_helper(...);
|
||
|
template<typename T>
|
||
|
struct is_callable;
|
||
|
template<typename Func, typename... Args>
|
||
|
struct is_callable<Func(Args...)>: public std::integral_constant<bool, sizeof(is_callable_helper<Func, Args...>(0)) - 1> {};
|
||
|
|
||
|
// Wrapper to run a function object with an optional parameter:
|
||
|
// - void returns are turned into fake_void
|
||
|
// - fake_void parameter will invoke the function with no arguments
|
||
|
template<typename Func, typename = typename std::enable_if<!std::is_void<decltype(std::declval<Func>()())>::value>::type>
|
||
|
decltype(std::declval<Func>()()) invoke_fake_void(Func&& f)
|
||
|
{
|
||
|
return std::forward<Func>(f)();
|
||
|
}
|
||
|
template<typename Func, typename = typename std::enable_if<std::is_void<decltype(std::declval<Func>()())>::value>::type>
|
||
|
fake_void invoke_fake_void(Func&& f)
|
||
|
{
|
||
|
std::forward<Func>(f)();
|
||
|
return fake_void();
|
||
|
}
|
||
|
template<typename Func, typename Param>
|
||
|
typename void_to_fake_void<decltype(std::declval<Func>()(std::declval<Param>()))>::type invoke_fake_void(Func&& f, Param&& p)
|
||
|
{
|
||
|
return detail::invoke_fake_void([&f, &p] {return std::forward<Func>(f)(std::forward<Param>(p));});
|
||
|
}
|
||
|
template<typename Func>
|
||
|
typename void_to_fake_void<decltype(std::declval<Func>()())>::type invoke_fake_void(Func&& f, fake_void)
|
||
|
{
|
||
|
return detail::invoke_fake_void(std::forward<Func>(f));
|
||
|
}
|
||
|
|
||
|
// Various properties of a continuation function
|
||
|
template<typename Func, typename Parent, typename = decltype(std::declval<Func>()())>
|
||
|
fake_void is_value_cont_helper(const Parent&, int, int);
|
||
|
template<typename Func, typename Parent, typename = decltype(std::declval<Func>()(std::declval<Parent>().get()))>
|
||
|
std::true_type is_value_cont_helper(const Parent&, int, int);
|
||
|
template<typename Func, typename = decltype(std::declval<Func>()())>
|
||
|
std::true_type is_value_cont_helper(const task<void>&, int, int);
|
||
|
template<typename Func, typename = decltype(std::declval<Func>()())>
|
||
|
std::true_type is_value_cont_helper(const shared_task<void>&, int, int);
|
||
|
template<typename Func, typename Parent, typename = decltype(std::declval<Func>()(std::declval<Parent>()))>
|
||
|
std::false_type is_value_cont_helper(const Parent&, int, ...);
|
||
|
template<typename Func, typename Parent>
|
||
|
void is_value_cont_helper(const Parent&, ...);
|
||
|
template<typename Parent, typename Func>
|
||
|
struct continuation_traits {
|
||
|
typedef typename std::decay<Func>::type decay_func;
|
||
|
typedef decltype(detail::is_value_cont_helper<decay_func>(std::declval<Parent>(), 0, 0)) is_value_cont;
|
||
|
static_assert(!std::is_void<is_value_cont>::value, "Parameter type for continuation function is invalid for parent task type");
|
||
|
typedef typename std::conditional<std::is_same<is_value_cont, fake_void>::value, fake_void, typename std::conditional<std::is_same<is_value_cont, std::true_type>::value, typename void_to_fake_void<decltype(std::declval<Parent>().get())>::type, Parent>::type>::type param_type;
|
||
|
typedef decltype(detail::fake_void_to_void(detail::invoke_fake_void(std::declval<decay_func>(), std::declval<param_type>()))) result_type;
|
||
|
typedef task<typename remove_task<result_type>::type> task_type;
|
||
|
};
|
||
|
|
||
|
} // namespace detail
|
||
|
} // namespace async
|