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
|
|
|
*
|
2014-07-07 15:18:27 +10:00
|
|
|
* Copyright 2011-2014 Danny Robson <danny@nerdcruft.net>
|
2011-07-20 20:34:46 +10:00
|
|
|
*/
|
|
|
|
|
2018-03-15 23:48:21 +11:00
|
|
|
#ifndef CRUFT_UTIL_TYPES_HPP
|
|
|
|
#define CRUFT_UTIL_TYPES_HPP
|
2012-06-13 15:46:44 +10:00
|
|
|
|
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 {
|
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
|
|
|
|
|
|
|
|
|
|
|
///------------------------------------------------------------------------
|
|
|
|
/// 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
|
|
|
}
|
|
|
|
|
2012-06-13 15:46:44 +10:00
|
|
|
#endif
|