123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- // (c) Daniel Llorens - 2013-2017
- // This library is free software; you can redistribute it and/or modify it under
- // the terms of the GNU Lesser General Public License as published by the Free
- // Software Foundation; either version 3 of the License, or (at your option) any
- // later version.
- /// @file type.H
- /// @brief Type predicates and use-as-xpr wrapper for foreign types.
- #pragma once
- #include "ra/atom.H"
- #include <iterator>
- namespace ra {
- #define RA_IS_DEF(NAME, PRED) \
- template <class A, class Enable=void> constexpr bool JOIN(NAME, _def) = false; \
- template <class A> constexpr bool JOIN(NAME, _def) < A, std::enable_if_t< PRED >> = true; \
- template <class A> constexpr bool NAME = JOIN(NAME, _def)< std::decay_t< A >>;
- // specialize this for new types for which is_scalar<> should be true. These are foreign types.
- RA_IS_DEF(is_scalar, (!std::is_pointer<A>::value && std::is_scalar<A>::value))
- // other foreign types we care about.
- template <class A> constexpr bool is_foreign_vector_def = false;
- template <class A, class Enable=void> constexpr bool is_foreign_vector = is_foreign_vector_def<std::decay_t<A>>;
- template <class T, class A> constexpr bool is_foreign_vector_def<std::vector<T, A>> = true;
- template <class T, std::size_t N> constexpr bool is_foreign_vector_def<std::array<T, N>> = true;
- template <class A> constexpr bool is_builtin_array = std::is_array<std::remove_cv_t<std::remove_reference_t<A>>>::value;
- // TODO make things is_iterator explicitly, as with is_scalar, and not by poking in the insides.
- // TODO check the rest of the required interface of A and A::flat() right here.
- RA_IS_DEF(is_iterator, (mp::exists<decltype(std::declval<A>().flat())>))
- RA_IS_DEF(is_ra_scalar, (std::is_same<A, Scalar<typename A::C> >::value))
- RA_IS_DEF(is_iterator_pos_rank, is_iterator<A> && A::rank_s()!=0)
- RA_IS_DEF(is_slice, (mp::exists<decltype(std::declval<A>().iter())> && mp::exists<decltype(ra_traits<A>::size_s())>)) // reject public-derived from A
- RA_IS_DEF(is_slice_pos_rank, is_slice<A> && A::rank_s()!=0)
- template <class A> constexpr bool is_ra = is_iterator<A> || is_slice<A>;
- template <class A> constexpr bool is_ra_pos_rank = is_iterator_pos_rank<A> || is_slice_pos_rank<A>;
- template <class A> constexpr bool is_ra_zero_rank = is_ra<A> && !is_ra_pos_rank<A>;
- template <class A> constexpr bool is_zero_or_scalar = is_ra_zero_rank<A> || is_scalar<A>;
- #undef RA_IS_DEF
- // --------------
- // to provide extension of scalar functions to ra:: types
- // --------------
- template <class ... A> constexpr bool ra_pos_and_any = (is_ra_pos_rank<A> || ...) && ((is_ra<A> || is_scalar<A> || is_foreign_vector<A> || is_builtin_array<A>) && ...);
- // all args have rank 0 (so immediate application), but at least one is ra:: (don't collide with the scalar version).
- template <class ... A> constexpr bool ra_zero = !(is_scalar<A> && ...) && (is_zero_or_scalar<A> && ...);
- template <class T>
- struct ra_traits_def<T, std::enable_if_t<is_scalar<T>>>
- {
- using V = T;
- using value_type = T;
- constexpr static dim_t size(V const & v) { return 1; }
- constexpr static dim_t size_s() { return 1; }
- constexpr static rank_t rank(V const & v) { return 0; }
- constexpr static rank_t rank_s() { return 0; }
- };
- // --------------
- // Coerce potential ArrayIterators
- // --------------
- template <class T, int a>
- inline constexpr auto start(T && t)
- {
- static_assert(!mp::exists<T>, "bad type for ra:: operator");
- }
- // it matters that this copies when T is lvalue. But FIXME shouldn't be necessary.
- template <class T, std::enable_if_t<is_iterator<T> && !is_ra_scalar<T>, int> = 0>
- inline constexpr auto start(T && t)
- {
- return std::forward<T>(t);
- }
- template <class T, std::enable_if_t<is_ra_scalar<T>, int> =0>
- inline constexpr decltype(auto) start(T && t)
- {
- return std::forward<T>(t);
- }
- template <class T, std::enable_if_t<is_slice<T>, int> = 0>
- inline constexpr auto start(T && t)
- {
- return t.iter(); // BUG if t is rvalue, t.iter() won't retain it. See test-ra-7.C [opt-small].
- }
- template <class T, std::enable_if_t<is_scalar<T>, int> = 0>
- inline constexpr auto start(T && t)
- {
- return ra::scalar(std::forward<T>(t));
- }
- template <class T, std::enable_if_t<is_foreign_vector<T>, int> = 0>
- inline constexpr auto start(T && t)
- {
- return Vector<T> { std::forward<T>(t) };
- }
- template <class T>
- inline constexpr auto start(std::initializer_list<T> && v)
- {
- return Vector<std::initializer_list<T>> { std::move(v) };
- }
- // forward declare for expr.H; implemented in small.H.
- template <class T, std::enable_if_t<is_builtin_array<T>, int> = 0>
- inline constexpr auto start(T && t);
- // FIXME one of these is ET-generic and the other is slice only, so make up your mind.
- // FIXME do we really want to drop const? See use in concrete_type.
- template <class A> using value_t = std::decay_t<decltype(*(ra::start(std::declval<A>()).flat()))>;
- template <class V> inline auto size(V const & v) { return ra_traits<V>::size(v); }
- } // namespace ra
|