2013-08-08 09:54:33 +00:00
|
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
=============================================================================*/
|
2012-04-01 13:15:09 +00:00
|
|
|
|
#ifndef SPROUT_CSTRING_STRCSPN_HPP
|
|
|
|
|
#define SPROUT_CSTRING_STRCSPN_HPP
|
|
|
|
|
|
2013-01-12 16:16:48 +00:00
|
|
|
|
#include <iterator>
|
|
|
|
|
#include <type_traits>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
#include <sprout/config.hpp>
|
2014-04-30 07:30:26 +00:00
|
|
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
2013-01-12 16:16:48 +00:00
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2013-02-07 15:49:47 +00:00
|
|
|
|
#include <sprout/tuple/tuple/tuple.hpp>
|
|
|
|
|
#include <sprout/tuple/tuple/get.hpp>
|
2013-01-12 16:16:48 +00:00
|
|
|
|
#include <sprout/type_traits/is_char_type.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
#include <sprout/cstring/strchr.hpp>
|
|
|
|
|
|
|
|
|
|
namespace sprout {
|
2013-01-12 16:16:48 +00:00
|
|
|
|
namespace detail {
|
|
|
|
|
template<typename InputIterator1, typename ForwardIterator2>
|
|
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<InputIterator1, std::size_t, bool>
|
|
|
|
|
strcspn_impl_1(
|
|
|
|
|
sprout::tuples::tuple<InputIterator1, std::size_t, bool> const& current,
|
|
|
|
|
ForwardIterator2 first2, typename std::iterator_traits<InputIterator1>::difference_type n
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
typedef sprout::tuples::tuple<InputIterator1, std::size_t, bool> type;
|
|
|
|
|
return sprout::tuples::get<2>(current) || !*sprout::tuples::get<0>(current) ? current
|
|
|
|
|
: n == 1 ? !*sprout::detail::strchr(first2, *sprout::tuples::get<0>(current))
|
|
|
|
|
? type(sprout::next(sprout::tuples::get<0>(current)), sprout::tuples::get<1>(current) + 1, false)
|
|
|
|
|
: type(sprout::tuples::get<0>(current), sprout::tuples::get<1>(current), true)
|
|
|
|
|
: sprout::detail::strcspn_impl_1(
|
|
|
|
|
sprout::detail::strcspn_impl_1(
|
|
|
|
|
current,
|
|
|
|
|
first2, n / 2
|
|
|
|
|
),
|
|
|
|
|
first2, n - n / 2
|
|
|
|
|
)
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
template<typename InputIterator1, typename ForwardIterator2>
|
|
|
|
|
inline SPROUT_CONSTEXPR sprout::tuples::tuple<InputIterator1, std::size_t, bool>
|
|
|
|
|
strcspn_impl(
|
|
|
|
|
sprout::tuples::tuple<InputIterator1, std::size_t, bool> const& current,
|
|
|
|
|
ForwardIterator2 first2, typename std::iterator_traits<InputIterator1>::difference_type n
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
return sprout::tuples::get<2>(current) || !*sprout::tuples::get<0>(current) ? current
|
|
|
|
|
: sprout::detail::strcspn_impl(
|
|
|
|
|
sprout::detail::strcspn_impl_1(
|
|
|
|
|
current,
|
|
|
|
|
first2, n
|
|
|
|
|
),
|
|
|
|
|
first2, n * 2
|
|
|
|
|
)
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
template<typename InputIterator1, typename ForwardIterator2>
|
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
|
strcspn(InputIterator1 first1, ForwardIterator2 first2) {
|
|
|
|
|
typedef sprout::tuples::tuple<InputIterator1, std::size_t, bool> type;
|
|
|
|
|
return sprout::tuples::get<1>(sprout::detail::strcspn_impl(type(first1, 0, false), first2, 1));
|
|
|
|
|
}
|
|
|
|
|
} // namespace detail
|
|
|
|
|
|
2013-03-22 05:24:19 +00:00
|
|
|
|
// 7.21.5.3 strcspn <20><EFBFBD>
|
2013-01-12 16:16:48 +00:00
|
|
|
|
//
|
|
|
|
|
// recursion depth:
|
|
|
|
|
// O(log(N1+N2))
|
|
|
|
|
//
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
|
strcspn(char const* s1, char const* s2) {
|
2013-01-12 16:16:48 +00:00
|
|
|
|
return sprout::detail::strcspn(s1, s2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename Elem>
|
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
|
sprout::is_char_type<Elem>::value,
|
|
|
|
|
std::size_t
|
|
|
|
|
>::type
|
|
|
|
|
strcspn(Elem* s1, Elem* s2) {
|
|
|
|
|
return sprout::detail::strcspn(s1, s2);
|
2012-04-01 13:15:09 +00:00
|
|
|
|
}
|
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CSTRING_STRCSPN_HPP
|