From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 1BAEC383F855; Tue, 26 May 2020 14:12:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1BAEC383F855 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1590502321; bh=ytYkWIdnoWnPOYLUi79FC6xZ3nhU3L4Kw9hY/+SAtAA=; h=From:To:Subject:Date:From; b=ShIExa7vsuN7YQqS2CNKSpBsFYhBwHCgGIrtN+9l5MX19s+48mZFy61p/yXz8E9Tn WKfomS5B9kyfMabdPOUQQ0KA4a70rdsUW4y8+Dz1Yti4MrkY9Sn3n0qoovfvcE6lQB jpQYf7litlyA6XRqQOXYJXQYeiAD8xuK+6Bqw70E= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Martin Liska To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc(refs/users/marxin/heads/vect_cond_expr-rework-v5)] libstdc++: Simplify filesystem::path SFINAE constraints X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/users/marxin/heads/vect_cond_expr-rework-v5 X-Git-Oldrev: 804254edb48f87d726a1bc9e95af04076c030e35 X-Git-Newrev: 988b853f9c829742907ae22ac66de56facfc7bc5 Message-Id: <20200526141201.1BAEC383F855@sourceware.org> Date: Tue, 26 May 2020 14:12:01 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 May 2020 14:12:01 -0000 https://gcc.gnu.org/g:988b853f9c829742907ae22ac66de56facfc7bc5 commit 988b853f9c829742907ae22ac66de56facfc7bc5 Author: Jonathan Wakely Date: Sat May 23 07:28:40 2020 +0100 libstdc++: Simplify filesystem::path SFINAE constraints This replaces the filesystem::__detail::_Path SFINAE helper with two separate helpers, _Path and _Path2. This avoids having one helper which tries to check two different sets of requirements. The _Path helper now uses variable templates instead of a set of overloaded functions to detect specializations of basic_string or basic_string_view. The __not_> check is not necessary in C++20 because iterator_traits is now empty. For C++17 replace that check with a __safe_iterator_traits helper with partial specializations for void pointers. Finally, the __is_encoded_char check no longer uses remove_const_t, which means that iterators with a const value_type will no longer be accepted as arguments for path creation. Such iterators resulted in undefined behaviour anyway, so it's still conforming to reject them in the constraint checks. * include/bits/fs_path.h (filesystem::__detail::__is_encoded_char): Replace alias template with variable template. Don't remove const. (filesystem::__detail::__is_path_src): Replace overloaded function template with variable template and specializations. (filesystem::__detail::__is_path_iter_src): Replace alias template with class template. (filesystem::__detail::_Path): Use __is_path_src. Remove support for iterator pairs. (filesystem::__detail::_Path2): New alias template for checking InputIterator requirements. (filesystem::__detail::__constructible_from): Remove. (filesystem::path): Replace _Path with _Path2. * testsuite/27_io/filesystem/path/construct/80762.cc: Check with two constructor arguments of void and void* types. Diff: --- libstdc++-v3/ChangeLog | 17 +++ libstdc++-v3/include/bits/fs_path.h | 125 +++++++++++++-------- .../27_io/filesystem/path/construct/80762.cc | 6 + 3 files changed, 100 insertions(+), 48 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d19cd51db35..b82479f0ed6 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,20 @@ +2020-05-23 Jonathan Wakely + + * include/bits/fs_path.h (filesystem::__detail::__is_encoded_char): + Replace alias template with variable template. Don't remove const. + (filesystem::__detail::__is_path_src): Replace overloaded function + template with variable template and specializations. + (filesystem::__detail::__is_path_iter_src): Replace alias template + with class template. + (filesystem::__detail::_Path): Use __is_path_src. Remove support for + iterator pairs. + (filesystem::__detail::_Path2): New alias template for checking + InputIterator requirements. + (filesystem::__detail::__constructible_from): Remove. + (filesystem::path): Replace _Path with _Path2. + * testsuite/27_io/filesystem/path/construct/80762.cc: Check with two + constructor arguments of void and void* types. + 2020-05-21 Matthias Kretz * testsuite/Makefile.am: Remove dup target_triplet and set tool, diff --git a/libstdc++-v3/include/bits/fs_path.h b/libstdc++-v3/include/bits/fs_path.h index ee6ab15cc4c..5a998284a99 100644 --- a/libstdc++-v3/include/bits/fs_path.h +++ b/libstdc++-v3/include/bits/fs_path.h @@ -73,58 +73,87 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __detail { template - using __is_encoded_char = __is_one_of, - char, + inline constexpr bool __is_encoded_char = false; + template<> + inline constexpr bool __is_encoded_char = true; #ifdef _GLIBCXX_USE_CHAR8_T - char8_t, + template<> + inline constexpr bool __is_encoded_char = true; #endif #if _GLIBCXX_USE_WCHAR_T - wchar_t, + template<> + inline constexpr bool __is_encoded_char = true; #endif - char16_t, char32_t>; - - template> - using __is_path_iter_src - = __and_<__is_encoded_char, - std::is_base_of>; + template<> + inline constexpr bool __is_encoded_char = true; + template<> + inline constexpr bool __is_encoded_char = true; +#if __cpp_concepts >= 201907L template - static __is_path_iter_src<_Iter> - __is_path_src(_Iter, int); - - template - static __is_encoded_char<_CharT> - __is_path_src(const basic_string<_CharT, _Traits, _Alloc>&, int); - - template - static __is_encoded_char<_CharT> - __is_path_src(const basic_string_view<_CharT, _Traits>&, int); + using __safe_iterator_traits = std::iterator_traits<_Iter>; +#else + template + struct __safe_iterator_traits : std::iterator_traits<_Iter> + { }; - template - static std::false_type - __is_path_src(const _Unknown&, ...); + // Protect against ill-formed iterator_traits specializations in C++17 + template<> struct __safe_iterator_traits { }; + template<> struct __safe_iterator_traits { }; + template<> struct __safe_iterator_traits { }; + template<> struct __safe_iterator_traits { }; +#endif - template - struct __constructible_from; + template + struct __is_path_iter_src + : false_type + { }; - template - struct __constructible_from<_Iter, _Iter> - : __is_path_iter_src<_Iter> + template + struct __is_path_iter_src<_Iter_traits, + void_t> + : bool_constant<__is_encoded_char> { }; template - struct __constructible_from<_Source, void> - : decltype(__is_path_src(std::declval<_Source>(), 0)) - { }; + inline constexpr bool __is_path_src + = __is_path_iter_src>>::value; + + template<> + inline constexpr bool __is_path_src = false; + + template<> + inline constexpr bool __is_path_src = false; + + template<> + inline constexpr bool __is_path_src = false; + + template<> + inline constexpr bool __is_path_src = false; + + template<> + inline constexpr bool __is_path_src = false; + + template<> + inline constexpr bool __is_path_src = false; + + template + inline constexpr bool + __is_path_src> + = __is_encoded_char<_CharT>; + + template + inline constexpr bool + __is_path_src> + = __is_encoded_char<_CharT>; + + // SFINAE constraint for Source parameters as required by [fs.path.req]. + template + using _Path = enable_if_t<__is_path_src<_Tp>, path>; - template - using _Path = typename - std::enable_if<__and_<__not_, path>>, - __not_>>, - __constructible_from<_Tp1, _Tp2>>::value, - path>::type; + // SFINAE constraint for InputIterator parameters as required by [fs.req]. + template> + using _Path2 = enable_if_t<__is_path_iter_src<_Tr>::value, path>; template static _Source @@ -227,7 +256,7 @@ namespace __detail { _M_split_cmpts(); } template> + typename _Require = __detail::_Path2<_InputIterator>> path(_InputIterator __first, _InputIterator __last, format = auto_format) : _M_pathname(_S_convert(__first, __last)) { _M_split_cmpts(); } @@ -241,8 +270,8 @@ namespace __detail { _M_split_cmpts(); } template, - typename _Require2 = __detail::__value_type_is_char<_InputIterator>> + typename _Require = __detail::_Path2<_InputIterator>, + typename _Req2 = __detail::__value_type_is_char<_InputIterator>> path(_InputIterator __first, _InputIterator __last, const locale& __loc, format = auto_format) : _M_pathname(_S_convert_loc(__first, __last, __loc)) @@ -268,7 +297,7 @@ namespace __detail { return *this = path(__source); } template - __detail::_Path<_InputIterator, _InputIterator>& + __detail::_Path2<_InputIterator>& assign(_InputIterator __first, _InputIterator __last) { return *this = path(__first, __last); } @@ -295,7 +324,7 @@ namespace __detail } template - __detail::_Path<_InputIterator, _InputIterator>& + __detail::_Path2<_InputIterator>& append(_InputIterator __first, _InputIterator __last) { _M_append(_S_convert(__first, __last)); @@ -315,7 +344,7 @@ namespace __detail operator+=(_Source const& __x) { return concat(__x); } template - __detail::_Path<_CharT*, _CharT*>& + __detail::_Path2<_CharT*>& operator+=(_CharT __x); template @@ -328,7 +357,7 @@ namespace __detail } template - __detail::_Path<_InputIterator, _InputIterator>& + __detail::_Path2<_InputIterator>& concat(_InputIterator __first, _InputIterator __last) { _M_concat(_S_convert(__first, __last)); @@ -695,7 +724,7 @@ namespace __detail * @relates std::filesystem::path */ template, + typename _Require = __detail::_Path2<_InputIterator>, typename _CharT = __detail::__value_type_is_char_or_char8_t<_InputIterator>> inline path @@ -1000,7 +1029,7 @@ namespace __detail } template - inline __detail::_Path<_CharT*, _CharT*>& + inline __detail::_Path2<_CharT*>& path::operator+=(_CharT __x) { auto* __addr = std::__addressof(__x); diff --git a/libstdc++-v3/testsuite/27_io/filesystem/path/construct/80762.cc b/libstdc++-v3/testsuite/27_io/filesystem/path/construct/80762.cc index bfc1e125e0c..2f37b663f26 100644 --- a/libstdc++-v3/testsuite/27_io/filesystem/path/construct/80762.cc +++ b/libstdc++-v3/testsuite/27_io/filesystem/path/construct/80762.cc @@ -37,3 +37,9 @@ static_assert( !std::is_constructible_v ); static_assert( !std::is_constructible_v ); static_assert( !std::is_constructible_v ); static_assert( !std::is_constructible_v ); + +static_assert( !std::is_constructible_v ); +static_assert( !std::is_constructible_v ); +static_assert( !std::is_constructible_v ); +static_assert( !std::is_constructible_v ); +static_assert( !std::is_constructible_v );