2011-07-20 20:34:46 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-07-20 20:34:46 +10:00
|
|
|
*
|
2019-02-27 11:14:45 +11:00
|
|
|
* Copyright 2011-2019 Danny Robson <danny@nerdcruft.net>
|
2011-07-20 20:34:46 +10:00
|
|
|
*/
|
|
|
|
|
2019-02-27 11:14:45 +11:00
|
|
|
#pragma once
|
2012-06-13 15:46:44 +10:00
|
|
|
|
2019-05-30 10:43:28 +10:00
|
|
|
#include "types/description.hpp"
|
|
|
|
|
2011-05-23 17:18:52 +10:00
|
|
|
#include <cstdint>
|
2012-05-25 15:19:07 +10:00
|
|
|
#include <cstdlib>
|
2011-07-16 14:47:34 +10:00
|
|
|
#include <memory>
|
2014-07-07 15:18:27 +10:00
|
|
|
#include <stdexcept>
|
2018-03-15 23:48:21 +11:00
|
|
|
#include <tuple>
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-10-06 15:20:51 +11:00
|
|
|
|
2015-11-05 13:17:59 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// analogue of std::data for use until we get proper c++17 support
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft {
|
2015-11-05 13:17:59 +11:00
|
|
|
template <typename T>
|
|
|
|
auto
|
|
|
|
data (T &t)
|
|
|
|
{ return t.data (); }
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
auto
|
|
|
|
data (const T &t)
|
|
|
|
{ return t.data (); }
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T, size_t N>
|
|
|
|
constexpr T*
|
|
|
|
data (T (&t)[N])
|
|
|
|
{ return &t[0]; }
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T, size_t N>
|
|
|
|
constexpr const T*
|
|
|
|
data (const T (&t)[N])
|
|
|
|
{ return &t[0]; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2016-01-27 15:32:58 +11:00
|
|
|
/// returns the first argument from a parameter pack which can evaluate to true.
|
2014-07-07 15:18:27 +10:00
|
|
|
template <class T>
|
|
|
|
T
|
2016-01-27 15:32:58 +11:00
|
|
|
first (T a)
|
|
|
|
{
|
2014-07-07 15:18:27 +10:00
|
|
|
if (a)
|
|
|
|
return a;
|
|
|
|
|
|
|
|
throw std::logic_error ("no valid object");
|
|
|
|
}
|
|
|
|
|
2016-01-27 15:32:58 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-07-07 15:18:27 +10:00
|
|
|
template <class T, class ...Args>
|
|
|
|
T
|
2016-01-27 15:32:58 +11:00
|
|
|
first (T a, Args&& ...b)
|
|
|
|
{
|
2014-07-07 15:18:27 +10:00
|
|
|
if (a)
|
|
|
|
return a;
|
|
|
|
|
|
|
|
return first (std::forward<Args>(b)...);
|
|
|
|
}
|
|
|
|
|
2015-04-20 17:46:14 +10:00
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft {
|
2019-05-30 10:43:28 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// A tag type that is used when type_tag dispatching descriptions that
|
|
|
|
/// claim to be enums. The underlying type can be recovered from the 'type'
|
|
|
|
/// typedef of this class.
|
|
|
|
template <typename UnderlyingT>
|
|
|
|
struct unknown_enum_tag {
|
|
|
|
using type = UnderlyingT;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename ValueT>
|
|
|
|
struct is_unknown_enum_tag :
|
|
|
|
public std::false_type {};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <
|
|
|
|
typename UnderlyingT
|
|
|
|
> struct is_unknown_enum_tag<
|
|
|
|
unknown_enum_tag<UnderlyingT>
|
|
|
|
>: public std::true_type {};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename ValueT>
|
|
|
|
constexpr auto is_unknown_enum_tag_v = is_unknown_enum_tag<ValueT>::value;
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2015-04-20 17:46:14 +10:00
|
|
|
/// represents a type as a POD struct (but is statically recoverable via
|
|
|
|
/// the 'type' member).
|
|
|
|
template <typename T>
|
|
|
|
struct type_tag
|
|
|
|
{
|
|
|
|
typedef T type;
|
|
|
|
};
|
2016-03-11 19:16:17 +11:00
|
|
|
|
|
|
|
|
2019-05-30 10:43:28 +10:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename UnderlyingT>
|
|
|
|
struct type_tag<unknown_enum_tag<UnderlyingT>> {
|
|
|
|
cruft::types::description desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-03-11 19:16:17 +11:00
|
|
|
///------------------------------------------------------------------------
|
|
|
|
/// count the number of parameters we are given. useful for counting
|
|
|
|
/// arguments in variadic macros (ie, sizeof... (__VA_ARGS__))
|
|
|
|
template <typename ...T>
|
|
|
|
constexpr size_t
|
|
|
|
param_count (const T... t)
|
|
|
|
{
|
|
|
|
// prevent unused variable warnings by never forwarding recursively
|
|
|
|
// ideally we'd use void casting, but it doesn't work for parameter
|
|
|
|
// packs
|
|
|
|
if (false)
|
|
|
|
return param_count (t...);
|
|
|
|
|
|
|
|
return sizeof... (t);
|
|
|
|
}
|
2015-04-20 17:46:14 +10:00
|
|
|
|
2019-02-27 11:14:45 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// A trait that tests for the presence of a 'native' member function.
|
|
|
|
///
|
|
|
|
/// Not terrifically useful by itself, but it is use reasonably frequently
|
|
|
|
/// in various library wrappers that we maintain (to return the underlying
|
|
|
|
/// native objects).
|
|
|
|
template <typename ValueT, typename = std::void_t<>>
|
|
|
|
struct has_native : public std::false_type
|
|
|
|
{};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <
|
|
|
|
typename ValueT
|
|
|
|
> struct has_native<
|
|
|
|
ValueT,
|
|
|
|
std::void_t<
|
|
|
|
decltype(std::declval<ValueT> ().native ())
|
|
|
|
>
|
|
|
|
> : public std::true_type {};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename ValueT>
|
|
|
|
constexpr auto has_native_v = has_native<ValueT>::value;
|
2020-02-07 10:15:43 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Unconditionally ignore the first argument, and store the second as `type`.
|
|
|
|
///
|
|
|
|
/// This aids converting parameter packs types. eg, converting all types
|
|
|
|
/// to strings by using an expression of the form:
|
|
|
|
/// `convert_t<ValueT, std::string>...`
|
|
|
|
template <typename IgnoredT, typename ResultT>
|
|
|
|
struct convert {
|
|
|
|
using type = ResultT;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <typename IgnoredT, typename ResultT>
|
|
|
|
using convert_t = typename convert<IgnoredT, ResultT>::type;
|
2019-02-27 11:14:45 +11:00
|
|
|
}
|