Commit 4f44c555 by Jonathan Wakely Committed by Jonathan Wakely

ptr_traits.h (__ptrtr_elt_type, [...]): Remove

	* include/bits/ptr_traits.h (__ptrtr_elt_type, __ptrtr_diff_type,
	__ptrtr_rebind, __ptrtr_not_void): Remove
	(__get_first_arg, __replace_first_arg, __make_not_void): Define new
	transformations.
	(__detected_or_): New detection trait.
	(pointer_traits): Use new traits.
	* testsuite/20_util/pointer_traits/pointer_to.cc: Add rebind member.
	* testsuite/20_util/pointer_traits/requirements/
	explicit_instantiation.cc: Use valid arguments to pointer_traits.

From-SVN: r225243
parent 6af6bef4
2015-07-01 Jonathan Wakely <jwakely@redhat.com> 2015-07-01 Jonathan Wakely <jwakely@redhat.com>
* include/bits/ptr_traits.h (__ptrtr_elt_type, __ptrtr_diff_type,
__ptrtr_rebind, __ptrtr_not_void): Remove
(__get_first_arg, __replace_first_arg, __make_not_void): Define new
transformations.
(__detected_or_): New detection trait.
(pointer_traits): Use new traits.
* testsuite/20_util/pointer_traits/pointer_to.cc: Add rebind member.
* testsuite/20_util/pointer_traits/requirements/
explicit_instantiation.cc: Use valid arguments to pointer_traits.
* doc/xml/manual/status_cxx2017.xml: Update status table. * doc/xml/manual/status_cxx2017.xml: Update status table.
* include/experimental/type_traits (void_t, is_detected, * include/experimental/type_traits (void_t, is_detected,
is_detected_v, detected_t, detected_or, detected_or_t, is_detected_v, detected_t, detected_or, detected_or_t,
......
...@@ -32,114 +32,86 @@ ...@@ -32,114 +32,86 @@
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
#include <type_traits> // For _GLIBCXX_HAS_NESTED_TYPE #include <type_traits>
namespace std _GLIBCXX_VISIBILITY(default) namespace std _GLIBCXX_VISIBILITY(default)
{ {
_GLIBCXX_BEGIN_NAMESPACE_VERSION _GLIBCXX_BEGIN_NAMESPACE_VERSION
_GLIBCXX_HAS_NESTED_TYPE(element_type) class __undefined;
_GLIBCXX_HAS_NESTED_TYPE(difference_type)
template<typename _Tp, bool = __has_element_type<_Tp>::value>
struct __ptrtr_elt_type;
// Given Template<T, ...> return T, otherwise invalid.
template<typename _Tp> template<typename _Tp>
struct __ptrtr_elt_type<_Tp, true> struct __get_first_arg
{ { using type = __undefined; };
typedef typename _Tp::element_type __type;
};
template<template<typename, typename...> class _SomePtr, typename _Tp,
typename... _Args>
struct __ptrtr_elt_type<_SomePtr<_Tp, _Args...>, false>
{
typedef _Tp __type;
};
template<typename _Tp, bool = __has_difference_type<_Tp>::value> template<template<typename, typename...> class _Template, typename _Tp,
struct __ptrtr_diff_type typename... _Types>
{ struct __get_first_arg<_Template<_Tp, _Types...>>
typedef typename _Tp::difference_type __type; { using type = _Tp; };
};
template<typename _Tp> template<typename _Tp>
struct __ptrtr_diff_type<_Tp, false> using __get_first_arg_t = typename __get_first_arg<_Tp>::type;
{
typedef ptrdiff_t __type;
};
template<typename _Ptr, typename _Up>
class __ptrtr_rebind_helper
{
template<typename _Ptr2, typename _Up2>
static constexpr true_type
_S_chk(typename _Ptr2::template rebind<_Up2>*);
template<typename, typename>
static constexpr false_type
_S_chk(...);
public:
using __type = decltype(_S_chk<_Ptr, _Up>(nullptr));
};
template<typename _Tp, typename _Up,
bool = __ptrtr_rebind_helper<_Tp, _Up>::__type::value>
struct __ptrtr_rebind;
// Given Template<T, ...> and U return Template<U, ...>, otherwise invalid.
template<typename _Tp, typename _Up> template<typename _Tp, typename _Up>
struct __ptrtr_rebind<_Tp, _Up, true> struct __replace_first_arg
{ { using type = __undefined; };
typedef typename _Tp::template rebind<_Up> __type;
};
template<template<typename, typename...> class _SomePtr, typename _Up, template<template<typename, typename...> class _Template, typename _Up,
typename _Tp, typename... _Args> typename _Tp, typename... _Types>
struct __ptrtr_rebind<_SomePtr<_Tp, _Args...>, _Up, false> struct __replace_first_arg<_Template<_Tp, _Types...>, _Up>
{ { using type = _Template<_Up, _Types...>; };
typedef _SomePtr<_Up, _Args...> __type;
};
template<typename _Tp, typename = typename remove_cv<_Tp>::type> template<typename _Tp, typename _Up>
struct __ptrtr_not_void using __replace_first_arg_t = typename __replace_first_arg<_Tp, _Up>::type;
{
typedef _Tp __type;
};
template<typename _Tp> template<typename _Tp>
struct __ptrtr_not_void<_Tp, void> using __make_not_void
{ = typename conditional<is_void<_Tp>::value, __undefined, _Tp>::type;
struct __type { };
};
template<typename _Ptr>
class __ptrtr_pointer_to
{
typedef typename __ptrtr_elt_type<_Ptr>::__type __orig_type;
typedef typename __ptrtr_not_void<__orig_type>::__type __element_type;
public:
static _Ptr pointer_to(__element_type& __e)
{ return _Ptr::pointer_to(__e); }
};
/** /**
* @brief Uniform interface to all pointer-like types * @brief Uniform interface to all pointer-like types
* @ingroup pointer_abstractions * @ingroup pointer_abstractions
*/ */
template<typename _Ptr> template<typename _Ptr>
struct pointer_traits : __ptrtr_pointer_to<_Ptr> struct pointer_traits
{ {
/// The pointer type private:
typedef _Ptr pointer; template<typename _Tp>
/// The type pointed to using __element_type = typename _Tp::element_type;
typedef typename __ptrtr_elt_type<_Ptr>::__type element_type;
/// Type used to represent the difference between two pointers template<typename _Tp>
typedef typename __ptrtr_diff_type<_Ptr>::__type difference_type; using __difference_type = typename _Tp::difference_type;
template<typename _Tp, typename _Up>
using __rebind = typename _Tp::template rebind<_Up>;
public:
/// The pointer type.
using pointer = _Ptr;
/// The type pointed to.
using element_type
= __detected_or_t_<__get_first_arg_t, __element_type, _Ptr>;
/// The type used to represent the difference between two pointers.
using difference_type
= __detected_or_t<ptrdiff_t, __difference_type, _Ptr>;
/// A pointer to a different type.
template<typename _Up> template<typename _Up>
using rebind = typename __ptrtr_rebind<_Ptr, _Up>::__type; using rebind
= __detected_or_t_<__replace_first_arg_t, __rebind, _Ptr, _Up>;
static _Ptr
pointer_to(__make_not_void<element_type>& __e)
{ return _Ptr::pointer_to(__e); }
static_assert(!is_same<element_type, __undefined>::value,
"pointer type defines element_type or is like SomePointer<T, Args>");
static_assert(!is_same<rebind<element_type>, __undefined>::value,
"pointer type defines rebind<U> or is like SomePointer<T, Args>");
}; };
/** /**
...@@ -165,10 +137,14 @@ _GLIBCXX_HAS_NESTED_TYPE(difference_type) ...@@ -165,10 +137,14 @@ _GLIBCXX_HAS_NESTED_TYPE(difference_type)
* @return @c addressof(__r) * @return @c addressof(__r)
*/ */
static pointer static pointer
pointer_to(typename __ptrtr_not_void<element_type>::__type& __r) noexcept pointer_to(__make_not_void<element_type>& __r) noexcept
{ return std::addressof(__r); } { return std::addressof(__r); }
}; };
/// Convenience alias for rebinding pointers.
template<typename _Ptr, typename _Tp>
using __ptr_rebind = typename pointer_traits<_Ptr>::template rebind<_Tp>;
_GLIBCXX_END_NAMESPACE_VERSION _GLIBCXX_END_NAMESPACE_VERSION
} // namespace std } // namespace std
......
...@@ -26,6 +26,8 @@ struct Ptr ...@@ -26,6 +26,8 @@ struct Ptr
typedef bool element_type; typedef bool element_type;
bool* value; bool* value;
template<typename> using rebind = Ptr;
static Ptr pointer_to(bool& b) { return Ptr{&b}; } static Ptr pointer_to(bool& b) { return Ptr{&b}; }
}; };
......
...@@ -22,10 +22,25 @@ ...@@ -22,10 +22,25 @@
#include <memory> #include <memory>
template<typename T>
struct P1
{
using element_type = T;
using difference_type = long;
template<typename U> using rebind = P1<U>;
static P1 pointer_to(T&) { return {}; }
};
template<typename T>
struct P2
{
static P2 pointer_to(T&) { return {}; }
};
namespace std namespace std
{ {
typedef short test_type; typedef short test_type;
template struct pointer_traits<test_type*>; template struct pointer_traits<test_type*>;
template struct pointer_traits<shared_ptr<test_type>>; template struct pointer_traits<P1<test_type>>;
template struct pointer_traits<unique_ptr<test_type>>; template struct pointer_traits<P2<test_type>>;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment