2015-04-20 17:16:18 +10:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_TUPLE_HPP
|
|
|
|
#define __UTIL_TUPLE_HPP
|
|
|
|
|
|
|
|
#include "types.hpp"
|
2015-04-21 14:19:56 +10:00
|
|
|
#include "variadic.hpp"
|
2015-04-20 17:16:18 +10:00
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
|
2017-01-05 15:06:49 +11:00
|
|
|
namespace util::tuple {
|
2015-04-20 17:16:18 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// call a provided object with type_tag<T> for each type in a tuple
|
|
|
|
template <
|
|
|
|
typename T,
|
|
|
|
typename F,
|
|
|
|
size_t S = 0
|
|
|
|
>
|
|
|
|
typename std::enable_if<
|
|
|
|
S == std::tuple_size<T>::value,
|
|
|
|
void
|
|
|
|
>::type
|
|
|
|
for_type (F)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template<
|
|
|
|
typename T,
|
|
|
|
typename F,
|
|
|
|
size_t S = 0
|
|
|
|
>
|
|
|
|
typename std::enable_if<
|
|
|
|
S < std::tuple_size<T>::value,
|
|
|
|
void
|
|
|
|
>::type
|
|
|
|
for_type (F f)
|
|
|
|
{
|
|
|
|
using E = typename std::tuple_element<S,T>::type;
|
|
|
|
|
|
|
|
f (type_tag<E> {});
|
|
|
|
for_type<T,F,S+1> (f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T, typename F>
|
|
|
|
auto for_type (F f, T t)
|
|
|
|
{ return for_type<decltype(t)> (f); }
|
|
|
|
|
|
|
|
|
2015-08-10 15:44:15 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// unpack a tuple as function arguments
|
|
|
|
namespace detail {
|
|
|
|
template <
|
|
|
|
typename Func,
|
|
|
|
typename ...Args,
|
|
|
|
size_t ...I
|
|
|
|
>
|
|
|
|
auto
|
2017-06-07 16:31:55 +10:00
|
|
|
call (const Func &func, std::tuple<Args...> args, std::index_sequence<I...>)
|
2015-08-10 15:44:15 +10:00
|
|
|
{
|
|
|
|
// quiet unused variable warning with zero args
|
|
|
|
(void)args;
|
|
|
|
|
|
|
|
// XXX: Use `std::invoke' when gcc catches up with c++17
|
|
|
|
return func (std::get<I> (args)...);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <
|
|
|
|
typename Func,
|
|
|
|
typename ...Args
|
|
|
|
>
|
|
|
|
auto
|
|
|
|
call (const Func &func, std::tuple<Args...> args)
|
|
|
|
{
|
2017-06-07 16:31:55 +10:00
|
|
|
return detail::call (func, args, std::make_index_sequence<sizeof...(Args)> {});
|
2015-08-10 15:44:15 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-20 17:16:18 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// call a provided object with each value in a tuple
|
|
|
|
template <
|
|
|
|
size_t S = 0,
|
|
|
|
typename F,
|
|
|
|
typename ...T
|
|
|
|
>
|
|
|
|
typename std::enable_if<
|
|
|
|
S == sizeof...(T),
|
|
|
|
void
|
|
|
|
>::type
|
|
|
|
for_each (F, const std::tuple<T...>&)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template<
|
|
|
|
size_t S = 0,
|
|
|
|
typename F,
|
|
|
|
typename ...T
|
|
|
|
>
|
|
|
|
typename std::enable_if<
|
|
|
|
S < sizeof...(T),
|
|
|
|
void
|
|
|
|
>::type
|
|
|
|
for_each (F f, const std::tuple<T...> &t)
|
|
|
|
{
|
|
|
|
f (std::get<S> (t));
|
|
|
|
for_each<S+1,F,T...> (f, t);
|
|
|
|
}
|
2015-04-21 14:19:56 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Statically map the member types of a tuple via F<>::type
|
|
|
|
///
|
|
|
|
/// T: tuple type
|
|
|
|
/// F: type mapping object, conversion uses F<>::type
|
|
|
|
/// I: tuple indexing helper
|
|
|
|
template <
|
|
|
|
typename T,
|
|
|
|
template <
|
|
|
|
typename
|
|
|
|
> class F,
|
2017-06-07 16:31:55 +10:00
|
|
|
typename I = std::make_index_sequence<
|
2015-04-21 14:19:56 +10:00
|
|
|
std::tuple_size<T>::value
|
2017-06-07 16:31:55 +10:00
|
|
|
>
|
2015-04-21 14:19:56 +10:00
|
|
|
>
|
|
|
|
struct map;
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <
|
|
|
|
typename T,
|
|
|
|
template <
|
|
|
|
typename
|
|
|
|
> class F,
|
|
|
|
size_t ...I
|
|
|
|
>
|
|
|
|
struct map<
|
|
|
|
T,
|
|
|
|
F,
|
2017-06-07 16:31:55 +10:00
|
|
|
std::index_sequence<I...>
|
2015-04-21 14:19:56 +10:00
|
|
|
> {
|
|
|
|
typedef std::tuple<
|
|
|
|
typename F<
|
|
|
|
typename std::tuple_element<I, T>::type
|
|
|
|
>::type...
|
|
|
|
> type;
|
|
|
|
};
|
2017-05-18 18:21:25 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-06-13 17:00:17 +10:00
|
|
|
/// do nothing with a set of parameters.
|
|
|
|
///
|
|
|
|
/// useful for temporarily silencing unused argument warnings in parameter
|
2017-08-16 17:25:29 +10:00
|
|
|
/// packs, or for avoiding assignment of [[gnu::warn_unused_result]] to a
|
|
|
|
/// temporary value we'd just cast to void anyway (GCC#66425).
|
2017-06-13 17:00:17 +10:00
|
|
|
///
|
|
|
|
/// it is guaranteed that this function will never be defined out in
|
|
|
|
/// debug/release/whatever builds. so it is safe to use to guarantee
|
|
|
|
/// parameter evaluation.
|
2017-07-11 11:06:59 +10:00
|
|
|
inline void
|
2017-05-18 18:21:25 +10:00
|
|
|
ignore (void)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T, typename ...Args>
|
|
|
|
void
|
|
|
|
ignore (T, Args ...args)
|
|
|
|
{
|
|
|
|
ignore (std::forward<Args> (args)...);
|
|
|
|
};
|
2017-07-11 11:07:48 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// query the index of the first occurrence of type `T' in the tuple type
|
|
|
|
/// `TupleT'.
|
|
|
|
///
|
|
|
|
/// if the query type does not occur in the tuple type a compiler error
|
|
|
|
/// should be generated.
|
|
|
|
template <class T, class TupleT>
|
|
|
|
struct index;
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <class T, class ...Types>
|
|
|
|
struct index<T, std::tuple<T, Types...>> {
|
|
|
|
static constexpr std::size_t value = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <class T, class U, class ...Types>
|
|
|
|
struct index<T,std::tuple<U, Types...>> {
|
|
|
|
static constexpr std::size_t value = 1 + index<T, std::tuple<Types...>>::value;
|
|
|
|
};
|
|
|
|
};
|
2015-04-20 17:16:18 +10:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|