2018-12-27 23:23:12 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_META_HH
|
|
|
|
#define HB_META_HH
|
|
|
|
|
|
|
|
#include "hb.hh"
|
|
|
|
|
|
|
|
|
2018-12-27 23:38:26 +01:00
|
|
|
/*
|
2019-01-29 03:26:23 +01:00
|
|
|
* C++ template meta-programming & fundamentals used with them.
|
2018-12-27 23:38:26 +01:00
|
|
|
*/
|
|
|
|
|
2019-04-17 16:20:02 +02:00
|
|
|
/* Void! For when we need a expression-type of void. */
|
|
|
|
struct hb_void_t { typedef void value; };
|
|
|
|
|
|
|
|
/* Void meta-function ala std::void_t
|
|
|
|
* https://en.cppreference.com/w/cpp/types/void_t */
|
|
|
|
template<typename... Ts> struct _hb_void_tt { typedef void type; };
|
|
|
|
template<typename... Ts> using hb_void_tt = typename _hb_void_tt<Ts...>::type;
|
|
|
|
|
|
|
|
template<typename Head, typename... Ts> struct _hb_head_tt { typedef Head type; };
|
|
|
|
template<typename... Ts> using hb_head_tt = typename _hb_head_tt<Ts...>::type;
|
|
|
|
|
|
|
|
/* Bool! For when we need to evaluate type-dependent expressions
|
|
|
|
* in a template argument. */
|
|
|
|
template <bool b> struct hb_bool_tt { enum { value = b }; };
|
|
|
|
typedef hb_bool_tt<true> hb_true_t;
|
|
|
|
typedef hb_bool_tt<false> hb_false_t;
|
|
|
|
|
|
|
|
|
2019-04-16 23:34:06 +02:00
|
|
|
/* Function overloading SFINAE and priority. */
|
|
|
|
|
2019-04-17 16:20:02 +02:00
|
|
|
#define HB_RETURN(Ret, E) -> hb_head_tt<Ret, decltype ((E))> { return (E); }
|
2019-04-17 00:28:17 +02:00
|
|
|
#define HB_AUTO_RETURN(E) -> decltype ((E)) { return (E); }
|
|
|
|
#define HB_VOID_RETURN(E) -> hb_void_tt<decltype ((E))> { (E); }
|
2019-04-16 23:34:06 +02:00
|
|
|
|
|
|
|
template <unsigned Pri> struct hb_priority : hb_priority<Pri - 1> {};
|
|
|
|
template <> struct hb_priority<0> {};
|
|
|
|
#define hb_prioritize hb_priority<16> ()
|
|
|
|
|
2019-04-15 21:39:03 +02:00
|
|
|
#define HB_FUNCOBJ(x) static_const x HB_UNUSED
|
2018-12-27 23:38:26 +01:00
|
|
|
|
2019-04-17 16:20:02 +02:00
|
|
|
|
2019-04-15 21:39:03 +02:00
|
|
|
struct
|
2019-01-29 03:26:23 +01:00
|
|
|
{
|
2019-04-15 21:39:03 +02:00
|
|
|
template <typename T>
|
|
|
|
T* operator () (const T& arg) const
|
|
|
|
{
|
2019-01-29 03:26:23 +01:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
2019-04-15 21:39:03 +02:00
|
|
|
/* https://en.cppreference.com/w/cpp/memory/addressof */
|
|
|
|
return reinterpret_cast<T*> (
|
|
|
|
&const_cast<char&> (
|
|
|
|
reinterpret_cast<const volatile char&> (arg)));
|
2019-01-29 03:26:23 +01:00
|
|
|
#pragma GCC diagnostic pop
|
2019-04-15 21:39:03 +02:00
|
|
|
}
|
|
|
|
} HB_FUNCOBJ (hb_addressof);
|
2019-01-29 03:26:23 +01:00
|
|
|
|
2018-12-28 22:41:04 +01:00
|
|
|
template <typename T> static inline T hb_declval ();
|
2019-01-08 20:27:51 +01:00
|
|
|
#define hb_declval(T) (hb_declval<T> ())
|
2018-12-28 20:29:09 +01:00
|
|
|
|
2019-01-08 01:41:52 +01:00
|
|
|
template <typename T> struct hb_match_const { typedef T type; enum { value = false }; };
|
|
|
|
template <typename T> struct hb_match_const<const T> { typedef T type; enum { value = true }; };
|
2019-04-16 22:45:53 +02:00
|
|
|
template <typename T> using hb_remove_const = typename hb_match_const<T>::type;
|
2019-01-08 01:41:52 +01:00
|
|
|
#define hb_is_const(T) hb_match_const<T>::value
|
|
|
|
template <typename T> struct hb_match_reference { typedef T type; enum { value = false }; };
|
|
|
|
template <typename T> struct hb_match_reference<T &> { typedef T type; enum { value = true }; };
|
2019-04-16 22:45:53 +02:00
|
|
|
template <typename T> using hb_remove_reference = typename hb_match_reference<T>::type;
|
2019-01-08 01:41:52 +01:00
|
|
|
#define hb_is_reference(T) hb_match_reference<T>::value
|
|
|
|
template <typename T> struct hb_match_pointer { typedef T type; enum { value = false }; };
|
|
|
|
template <typename T> struct hb_match_pointer<T *> { typedef T type; enum { value = true }; };
|
2019-04-16 22:45:53 +02:00
|
|
|
template <typename T> using hb_remove_pointer = typename hb_match_pointer<T>::type;
|
2019-01-08 01:41:52 +01:00
|
|
|
#define hb_is_pointer(T) hb_match_pointer<T>::value
|
2018-12-31 00:49:34 +01:00
|
|
|
|
2019-04-26 21:52:28 +02:00
|
|
|
template <typename T> using hb_decay = hb_remove_const<hb_remove_reference<T>>;
|
|
|
|
|
2019-04-26 21:57:56 +02:00
|
|
|
#define hb_is_cr_convertible_to(A, B) ( \
|
|
|
|
hb_is_same (hb_decay<A>, hb_decay<B>) && \
|
|
|
|
hb_is_const (A) <= hb_is_const (B) && \
|
|
|
|
hb_is_reference (A) >= hb_is_reference (B))
|
|
|
|
|
2018-12-27 23:23:12 +01:00
|
|
|
|
2019-03-31 03:19:36 +02:00
|
|
|
/* std::move and std::forward */
|
|
|
|
|
|
|
|
template <typename T>
|
2019-04-16 22:45:53 +02:00
|
|
|
static hb_remove_reference<T>&& hb_move (T&& t) { return (hb_remove_reference<T>&&) (t); }
|
2019-03-31 03:19:36 +02:00
|
|
|
|
|
|
|
template <typename T>
|
2019-04-16 22:45:53 +02:00
|
|
|
static T&& hb_forward (hb_remove_reference<T>& t) { return (T&&) t; }
|
2019-03-31 03:19:36 +02:00
|
|
|
template <typename T>
|
2019-04-16 22:45:53 +02:00
|
|
|
static T&& hb_forward (hb_remove_reference<T>&& t) { return (T&&) t; }
|
2019-03-31 03:19:36 +02:00
|
|
|
|
2019-04-16 23:34:06 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
template <typename T> auto
|
2019-04-17 00:28:17 +02:00
|
|
|
operator () (T&& v) const HB_AUTO_RETURN (hb_forward<T> (v))
|
2019-04-16 23:34:06 +02:00
|
|
|
|
|
|
|
template <typename T> auto
|
2019-04-17 00:28:17 +02:00
|
|
|
operator () (T *v) const HB_AUTO_RETURN (*v)
|
2019-04-16 23:34:06 +02:00
|
|
|
|
|
|
|
} HB_FUNCOBJ (hb_deref_pointer);
|
|
|
|
|
2019-03-31 03:19:36 +02:00
|
|
|
|
2019-04-16 16:45:20 +02:00
|
|
|
template<bool B, typename T = void> struct hb_enable_if {};
|
|
|
|
template<typename T> struct hb_enable_if<true, T> { typedef T type; };
|
2019-01-08 00:33:04 +01:00
|
|
|
#define hb_enable_if(Cond) typename hb_enable_if<(Cond)>::type* = nullptr
|
2018-12-27 23:38:26 +01:00
|
|
|
|
2019-04-16 16:45:20 +02:00
|
|
|
template <typename T, typename T2> struct hb_is_same : hb_false_t {};
|
|
|
|
template <typename T> struct hb_is_same<T, T> : hb_true_t {};
|
2019-04-03 23:15:01 +02:00
|
|
|
#define hb_is_same(T, T2) hb_is_same<T, T2>::value
|
|
|
|
|
2018-12-28 20:34:00 +01:00
|
|
|
template <typename T> struct hb_is_signed;
|
2019-02-14 07:08:54 +01:00
|
|
|
/* https://github.com/harfbuzz/harfbuzz/issues/1535 */
|
|
|
|
template <> struct hb_is_signed<int8_t> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_signed<int16_t> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_signed<int32_t> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_signed<int64_t> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_signed<uint8_t> { enum { value = false }; };
|
|
|
|
template <> struct hb_is_signed<uint16_t> { enum { value = false }; };
|
|
|
|
template <> struct hb_is_signed<uint32_t> { enum { value = false }; };
|
|
|
|
template <> struct hb_is_signed<uint64_t> { enum { value = false }; };
|
2018-12-28 20:34:00 +01:00
|
|
|
#define hb_is_signed(T) hb_is_signed<T>::value
|
|
|
|
|
2019-04-24 16:53:16 +02:00
|
|
|
template <typename T> struct hb_int_min { static constexpr T value = 0; };
|
|
|
|
template <> struct hb_int_min<char> { static constexpr char value = CHAR_MIN; };
|
|
|
|
template <> struct hb_int_min<int> { static constexpr int value = INT_MIN; };
|
|
|
|
template <> struct hb_int_min<long> { static constexpr long value = LONG_MIN; };
|
|
|
|
#define hb_int_min(T) hb_int_min<T>::value
|
|
|
|
|
2018-12-28 20:34:00 +01:00
|
|
|
template <bool is_signed> struct hb_signedness_int;
|
|
|
|
template <> struct hb_signedness_int<false> { typedef unsigned int value; };
|
|
|
|
template <> struct hb_signedness_int<true> { typedef signed int value; };
|
|
|
|
#define hb_signedness_int(T) hb_signedness_int<T>::value
|
|
|
|
|
2019-03-29 05:44:12 +01:00
|
|
|
template <typename T> struct hb_is_integer { enum { value = false }; };
|
|
|
|
template <> struct hb_is_integer<char> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<signed char> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<unsigned char> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<signed short> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<unsigned short> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<signed int> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<unsigned int> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<signed long> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<unsigned long> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<signed long long> { enum { value = true }; };
|
|
|
|
template <> struct hb_is_integer<unsigned long long> { enum { value = true }; };
|
|
|
|
#define hb_is_integer(T) hb_is_integer<T>::value
|
|
|
|
|
2018-12-28 20:34:00 +01:00
|
|
|
|
2018-12-27 23:23:12 +01:00
|
|
|
#endif /* HB_META_HH */
|