hb-meta.hh 6.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * 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"


B
Behdad Esfahbod 已提交
33
/*
34
 * C++ template meta-programming & fundamentals used with them.
B
Behdad Esfahbod 已提交
35 36
 */

37 38
/* Function overloading SFINAE and priority. */

39 40
#define HB_AUTO_RETURN(E) -> decltype ((E)) { return (E); }
#define HB_VOID_RETURN(E) -> hb_void_tt<decltype ((E))> { (E); }
41 42 43 44 45

template <unsigned Pri> struct hb_priority : hb_priority<Pri - 1> {};
template <>             struct hb_priority<0> {};
#define hb_prioritize hb_priority<16> ()

B
Behdad Esfahbod 已提交
46
#define HB_FUNCOBJ(x) static_const x HB_UNUSED
B
Behdad Esfahbod 已提交
47

B
Behdad Esfahbod 已提交
48
struct
49
{
B
Behdad Esfahbod 已提交
50 51 52
  template <typename T>
  T* operator () (const T& arg) const
  {
53 54
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wcast-align"
B
Behdad Esfahbod 已提交
55 56 57 58
    /* https://en.cppreference.com/w/cpp/memory/addressof */
    return reinterpret_cast<T*> (
	     &const_cast<char&> (
		reinterpret_cast<const volatile char&> (arg)));
59
#pragma GCC diagnostic pop
B
Behdad Esfahbod 已提交
60 61
  }
} HB_FUNCOBJ (hb_addressof);
62

63
template <typename T> static inline T hb_declval ();
B
Behdad Esfahbod 已提交
64
#define hb_declval(T) (hb_declval<T> ())
B
Behdad Esfahbod 已提交
65

B
Behdad Esfahbod 已提交
66 67
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 }; };
68
template <typename T> using hb_remove_const = typename hb_match_const<T>::type;
B
Behdad Esfahbod 已提交
69 70 71
#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 }; };
72
template <typename T> using hb_remove_reference = typename hb_match_reference<T>::type;
B
Behdad Esfahbod 已提交
73 74 75
#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 }; };
76
template <typename T> using hb_remove_pointer = typename hb_match_pointer<T>::type;
B
Behdad Esfahbod 已提交
77
#define hb_is_pointer(T) hb_match_pointer<T>::value
B
Behdad Esfahbod 已提交
78

79

80 81 82
/* std::move and std::forward */

template <typename T>
83
static hb_remove_reference<T>&& hb_move (T&& t) { return (hb_remove_reference<T>&&) (t); }
84 85

template <typename T>
86
static T&& hb_forward (hb_remove_reference<T>& t) { return (T&&) t; }
87
template <typename T>
88
static T&& hb_forward (hb_remove_reference<T>&& t) { return (T&&) t; }
89

90 91 92
struct
{
  template <typename T> auto
93
  operator () (T&& v) const HB_AUTO_RETURN (hb_forward<T> (v))
94 95

  template <typename T> auto
96
  operator () (T *v) const HB_AUTO_RETURN (*v)
97 98 99

} HB_FUNCOBJ (hb_deref_pointer);

100

B
Behdad Esfahbod 已提交
101 102
/* Void!  For when we need a expression-type of void. */
struct hb_void_t { typedef void value; };
103

104 105
/* Void meta-function ala std::void_t
 * https://en.cppreference.com/w/cpp/types/void_t */
106 107
template<typename... Ts> struct _hb_void_tt { typedef void type; };
template<typename... Ts> using hb_void_tt = typename _hb_void_tt<Ts...>::type;
108

B
Behdad Esfahbod 已提交
109 110 111 112 113
/* 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;
114

115 116
template<bool B, typename T = void> struct hb_enable_if {};
template<typename T>                struct hb_enable_if<true, T> { typedef T type; };
B
Behdad Esfahbod 已提交
117
#define hb_enable_if(Cond) typename hb_enable_if<(Cond)>::type* = nullptr
B
Behdad Esfahbod 已提交
118

119 120
template <typename T, typename T2> struct hb_is_same : hb_false_t {};
template <typename T>              struct hb_is_same<T, T> : hb_true_t {};
B
Behdad Esfahbod 已提交
121 122
#define hb_is_same(T, T2) hb_is_same<T, T2>::value

B
Behdad Esfahbod 已提交
123
template <typename T> struct hb_is_signed;
124 125 126 127 128 129 130 131 132
/* 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 }; };
B
Behdad Esfahbod 已提交
133 134 135 136 137 138 139
#define hb_is_signed(T) hb_is_signed<T>::value

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

B
Behdad Esfahbod 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153
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

B
Behdad Esfahbod 已提交
154

155
#endif /* HB_META_HH */