/* * 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" /* * C++ template meta-programming & fundamentals used with them. */ /* 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 struct _hb_void_tt { typedef void type; }; template using hb_void_tt = typename _hb_void_tt::type; template struct _hb_head_tt { typedef Head type; }; template using hb_head_tt = typename _hb_head_tt::type; /* Bool! For when we need to evaluate type-dependent expressions * in a template argument. */ template struct hb_bool_tt { static constexpr bool value = b; }; typedef hb_bool_tt hb_true_t; typedef hb_bool_tt hb_false_t; /* Basic type SFINAE. */ template struct hb_enable_if {}; template struct hb_enable_if { typedef T type; }; #define hb_enable_if(Cond) typename hb_enable_if<(Cond)>::type* = nullptr /* Concepts/Requires alias: */ #define hb_requires(Cond) hb_enable_if((Cond)) template struct hb_is_same : hb_false_t {}; template struct hb_is_same : hb_true_t {}; #define hb_is_same(T, T2) hb_is_same::value /* Function overloading SFINAE and priority. */ #define HB_RETURN(Ret, E) -> hb_head_tt { return (E); } #define HB_AUTO_RETURN(E) -> decltype ((E)) { return (E); } #define HB_VOID_RETURN(E) -> hb_void_tt { (E); } template struct hb_priority : hb_priority {}; template <> struct hb_priority<0> {}; #define hb_prioritize hb_priority<16> () #define HB_FUNCOBJ(x) static_const x HB_UNUSED template struct hb_match_identity { typedef T type; }; template using hb_type_identity = typename hb_match_identity::type; struct { template T* operator () (T& arg) const { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wcast-align" /* https://en.cppreference.com/w/cpp/memory/addressof */ return reinterpret_cast ( &const_cast ( reinterpret_cast (arg))); #pragma GCC diagnostic pop } } HB_FUNCOBJ (hb_addressof); template static inline T hb_declval (); #define hb_declval(T) (hb_declval ()) template struct hb_match_const { typedef T type; static constexpr bool value = false; }; template struct hb_match_const { typedef T type; static constexpr bool value = true; }; template using hb_remove_const = typename hb_match_const::type; #define hb_is_const(T) hb_match_const::value template struct hb_match_reference { typedef T type; static constexpr bool value = false; }; template struct hb_match_reference { typedef T type; static constexpr bool value = true; }; template struct hb_match_reference { typedef T type; static constexpr bool value = true; }; template using hb_remove_reference = typename hb_match_reference::type; #define hb_is_reference(T) hb_match_reference::value template struct hb_match_pointer { typedef T type; static constexpr bool value = false; }; template struct hb_match_pointer { typedef T type; static constexpr bool value = true; }; template using hb_remove_pointer = typename hb_match_pointer::type; #define hb_is_pointer(T) hb_match_pointer::value /* TODO Add feature-parity to std::decay. */ template using hb_decay = hb_remove_const>; template struct _hb_conditional { typedef T type; }; template struct _hb_conditional { typedef F type; }; template using hb_conditional = typename _hb_conditional::type; template struct hb_is_convertible { private: static constexpr bool from_void = hb_is_same (void, hb_decay); static constexpr bool to_void = hb_is_same (void, hb_decay ); static constexpr bool either_void = from_void || to_void; static constexpr bool both_void = from_void && to_void; static hb_true_t impl2 (hb_conditional); template static auto impl (hb_priority<1>) -> decltype (impl2 (hb_declval (T))); template static hb_false_t impl (hb_priority<0>); public: static constexpr bool value = both_void || (!either_void && decltype (impl> (hb_prioritize))::value); }; #define hb_is_convertible(From,To) hb_is_convertible::value template struct hb_is_cr_convertible { public: static constexpr bool value = hb_is_same (hb_decay, hb_decay) && (!hb_is_const (From) || hb_is_const (To)) && (!hb_is_reference (To) || hb_is_const (To) || hb_is_reference (To)); }; #define hb_is_cr_convertible(From,To) hb_is_cr_convertible::value /* std::move and std::forward */ template static hb_remove_reference&& hb_move (T&& t) { return (hb_remove_reference&&) (t); } template static T&& hb_forward (hb_remove_reference& t) { return (T&&) t; } template static T&& hb_forward (hb_remove_reference&& t) { return (T&&) t; } struct { template auto operator () (T&& v) const HB_AUTO_RETURN (hb_forward (v)) template auto operator () (T *v) const HB_AUTO_RETURN (*v) } HB_FUNCOBJ (hb_deref); struct { template auto operator () (T&& v) const HB_AUTO_RETURN (hb_forward (v)) template auto operator () (T& v) const HB_AUTO_RETURN (hb_addressof (v)) } HB_FUNCOBJ (hb_ref); template struct hb_reference_wrapper { hb_reference_wrapper (T v) : v (v) {} bool operator == (const hb_reference_wrapper& o) const { return v == o.v; } bool operator != (const hb_reference_wrapper& o) const { return v != o.v; } operator T () const { return v; } T get () const { return v; } T v; }; template struct hb_reference_wrapper { hb_reference_wrapper (T& v) : v (hb_addressof (v)) {} bool operator == (const hb_reference_wrapper& o) const { return v == o.v; } bool operator != (const hb_reference_wrapper& o) const { return v != o.v; } operator T& () const { return *v; } T& get () const { return *v; } T* v; }; template struct hb_is_signed; template <> struct hb_is_signed { static constexpr bool value = CHAR_MIN < 0; }; template <> struct hb_is_signed { static constexpr bool value = true; }; template <> struct hb_is_signed { static constexpr bool value = false; }; template <> struct hb_is_signed { static constexpr bool value = true; }; template <> struct hb_is_signed { static constexpr bool value = false; }; template <> struct hb_is_signed { static constexpr bool value = true; }; template <> struct hb_is_signed { static constexpr bool value = false; }; template <> struct hb_is_signed { static constexpr bool value = true; }; template <> struct hb_is_signed { static constexpr bool value = false; }; template <> struct hb_is_signed { static constexpr bool value = true; }; template <> struct hb_is_signed { static constexpr bool value = false; }; #define hb_is_signed(T) hb_is_signed::value template struct hb_int_min; template <> struct hb_int_min { static constexpr char value = CHAR_MIN; }; template <> struct hb_int_min { static constexpr signed char value = SCHAR_MIN; }; template <> struct hb_int_min { static constexpr unsigned char value = 0; }; template <> struct hb_int_min { static constexpr signed short value = SHRT_MIN; }; template <> struct hb_int_min { static constexpr unsigned short value = 0; }; template <> struct hb_int_min { static constexpr signed int value = INT_MIN; }; template <> struct hb_int_min { static constexpr unsigned int value = 0; }; template <> struct hb_int_min { static constexpr signed long value = LONG_MIN; }; template <> struct hb_int_min { static constexpr unsigned long value = 0; }; template <> struct hb_int_min { static constexpr signed long long value = LLONG_MIN; }; template <> struct hb_int_min { static constexpr unsigned long long value = 0; }; #define hb_int_min(T) hb_int_min::value template struct hb_int_max; template <> struct hb_int_max { static constexpr char value = CHAR_MAX; }; template <> struct hb_int_max { static constexpr signed char value = SCHAR_MAX; }; template <> struct hb_int_max { static constexpr unsigned char value = UCHAR_MAX; }; template <> struct hb_int_max { static constexpr signed short value = SHRT_MAX; }; template <> struct hb_int_max { static constexpr unsigned short value = USHRT_MAX; }; template <> struct hb_int_max { static constexpr signed int value = INT_MAX; }; template <> struct hb_int_max { static constexpr unsigned int value = UINT_MAX; }; template <> struct hb_int_max { static constexpr signed long value = LONG_MAX; }; template <> struct hb_int_max { static constexpr unsigned long value = ULONG_MAX; }; template <> struct hb_int_max { static constexpr signed long long value = LLONG_MAX; }; template <> struct hb_int_max { static constexpr unsigned long long value = ULLONG_MAX; }; #define hb_int_max(T) hb_int_max::value template struct hb_signedness_int; template <> struct hb_signedness_int { typedef unsigned int value; }; template <> struct hb_signedness_int { typedef signed int value; }; #define hb_signedness_int(T) hb_signedness_int::value template struct hb_is_integer { static constexpr bool value = false;}; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; template <> struct hb_is_integer { static constexpr bool value = true; }; #define hb_is_integer(T) hb_is_integer::value #endif /* HB_META_HH */