Sprout/sprout/string/string.hpp

911 lines
31 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
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-14 10:06:21 +00:00
#ifndef SPROUT_STRING_STRING_HPP
#define SPROUT_STRING_STRING_HPP
#include <cstddef>
2013-02-19 16:12:56 +00:00
#include <string>
2012-04-14 10:06:21 +00:00
#include <algorithm>
#include <utility>
#include <stdexcept>
#include <type_traits>
#include <initializer_list>
2012-04-14 10:06:21 +00:00
#include <sprout/config.hpp>
2013-04-06 04:06:51 +00:00
#include <sprout/index_tuple/metafunction.hpp>
2013-02-07 14:12:57 +00:00
#include <sprout/array/array.hpp>
#include <sprout/array/make_array.hpp>
2012-04-14 10:06:21 +00:00
#include <sprout/iterator/reverse_iterator.hpp>
2013-01-11 19:08:44 +00:00
#include <sprout/iterator/operation.hpp>
#include <sprout/algorithm/find.hpp>
2012-04-14 10:06:21 +00:00
#include <sprout/utility/forward.hpp>
2012-10-05 15:58:56 +00:00
#include <sprout/utility/swap.hpp>
#include <sprout/math/comparison.hpp>
2012-04-14 10:06:21 +00:00
#include <sprout/string/char_traits.hpp>
2012-10-08 14:49:05 +00:00
#include <sprout/string/npos.hpp>
#include <sprout/string/detail/operations.hpp>
2013-02-19 16:12:56 +00:00
#include HDR_ALGORITHM_MIN_MAX_SSCRISK_CEL_OR_SPROUT
2012-04-14 10:06:21 +00:00
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
# include <sprout/iterator/index_iterator.hpp>
#endif
namespace sprout {
namespace detail {
struct string_raw_construct_t {};
struct string_from_c_str_construct_t {};
template<typename T, std::size_t N, typename Traits = sprout::char_traits<T> >
class string_construct_access;
template<typename T, std::size_t N, typename Traits>
class basic_string_impl {
friend class sprout::detail::string_construct_access<T, N, Traits>;
public:
typedef T value_type;
typedef T& reference;
typedef T const& const_reference;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef T* pointer;
typedef T const* const_pointer;
typedef Traits traits_type;
protected:
value_type elems[N + 1];
size_type len;
protected:
SPROUT_CONSTEXPR basic_string_impl()
: elems{}, len()
{}
SPROUT_CONSTEXPR basic_string_impl(basic_string_impl const&) = default;
SPROUT_CONSTEXPR basic_string_impl(basic_string_impl&&) SPROUT_NOEXCEPT = default;
template<typename String, sprout::index_t... Indexes>
SPROUT_CONSTEXPR basic_string_impl(
sprout::index_tuple<Indexes...>,
String const& str, size_type pos, size_type n
)
: elems{
(sprout::math::less(Indexes, n) ? str[Indexes + pos]
: value_type()
)...
}
, len(n)
{}
template<typename String, sprout::index_t... Indexes>
SPROUT_CONSTEXPR basic_string_impl(
sprout::index_tuple<Indexes...>,
sprout::detail::string_from_c_str_construct_t, String const& str, size_type pos, size_type n
)
: elems{
(sprout::math::less(Indexes, n) ? str[Indexes + pos]
: value_type()
)...
}
, len(!(N < n) ? n
: throw std::out_of_range("basic_string<>: index out of range")
)
{}
template<typename... Args, sprout::index_t... Indexes>
SPROUT_CONSTEXPR basic_string_impl(
sprout::index_tuple<Indexes...>,
sprout::detail::string_raw_construct_t, size_type n, Args&&... args
)
: elems{
(sprout::math::less(Indexes, n) ? sprout::forward<Args>(args)
: value_type()
)...
}
, len(n)
{}
};
} // namespace detail
2012-04-14 10:06:21 +00:00
//
// basic_string
//
template<typename T, std::size_t N, typename Traits = sprout::char_traits<T> >
class basic_string
: private sprout::detail::basic_string_impl<T, N, Traits>
{
friend class sprout::detail::string_construct_access<T, N, Traits>;
private:
typedef sprout::detail::basic_string_impl<T, N, Traits> impl_type;
2012-04-14 10:06:21 +00:00
public:
typedef typename impl_type::value_type value_type;
typedef typename impl_type::reference reference;
typedef typename impl_type::const_reference const_reference;
typedef typename impl_type::size_type size_type;
typedef typename impl_type::difference_type difference_type;
typedef typename impl_type::pointer pointer;
typedef typename impl_type::const_pointer const_pointer;
typedef typename impl_type::traits_type traits_type;
2012-04-14 10:06:21 +00:00
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
typedef sprout::index_iterator<basic_string&, true> iterator;
typedef sprout::index_iterator<basic_string const&, true> const_iterator;
2012-04-14 10:06:21 +00:00
#else
typedef T* iterator;
typedef T const* const_iterator;
2012-04-14 10:06:21 +00:00
#endif
typedef sprout::reverse_iterator<iterator> reverse_iterator;
typedef sprout::reverse_iterator<const_iterator> const_reverse_iterator;
2012-10-08 14:49:05 +00:00
private:
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
2012-10-08 14:49:05 +00:00
template<typename Iterator>
class is_string_iterator
: public std::false_type
{};
template<typename Iterator>
class is_string_iterator<Iterator const>
: public is_string_iterator<Iterator>
{};
template<typename Iterator>
class is_string_iterator<Iterator volatile>
: public is_string_iterator<Iterator>
{};
template<typename Iterator>
class is_string_iterator<Iterator const volatile>
: public is_string_iterator<Iterator>
{};
template<std::size_t N2>
class is_string_iterator<sprout::index_iterator<basic_string<T, N2, Traits>&, true> >
2012-10-08 14:49:05 +00:00
: public std::true_type
{};
template<std::size_t N2>
class is_string_iterator<sprout::index_iterator<basic_string<T, N2, Traits> const&, true> >
2012-10-08 14:49:05 +00:00
: public std::true_type
{};
#endif
2012-04-14 10:06:21 +00:00
public:
2013-02-19 17:23:20 +00:00
SPROUT_STATIC_CONSTEXPR size_type npos = sprout::npos_t::get<size_type>::value;
2012-04-14 10:06:21 +00:00
SPROUT_STATIC_CONSTEXPR size_type static_size = N;
public:
2013-02-19 16:12:56 +00:00
static SPROUT_CONSTEXPR basic_string from_c_str(T const* s, size_type n) {
return basic_string(s, n);
2012-04-14 10:06:21 +00:00
}
2013-02-19 16:12:56 +00:00
static SPROUT_CONSTEXPR basic_string from_c_str(T const* s) {
return basic_string(s);
2012-04-14 10:06:21 +00:00
}
2013-02-19 16:12:56 +00:00
static SPROUT_CONSTEXPR basic_string from_c_str(std::basic_string<T, Traits> const& s) {
return from_c_str(s.data(), s.size());
}
private:
using impl_type::elems;
using impl_type::len;
private:
template<typename... Args, typename Enable = typename std::enable_if<(sizeof...(Args) <= N)>::type>
SPROUT_CONSTEXPR basic_string(sprout::detail::string_raw_construct_t, size_type n, Args&&... args)
: impl_type(
sprout::index_pack<Args...>::make(),
sprout::detail::string_raw_construct_t(), n, sprout::forward<Args>(args)...
)
{}
2012-04-14 10:06:21 +00:00
public:
// construct/copy/destroy:
SPROUT_CONSTEXPR basic_string() = default;
SPROUT_CONSTEXPR basic_string(basic_string const&) = default;
template<std::size_t N2, typename Enable = typename std::enable_if<(N2 < N)>::type>
SPROUT_CONSTEXPR basic_string(basic_string<T, N2, Traits> const& str)
: impl_type(
sprout::make_index_tuple<N2>::make(),
str, 0, str.size()
)
{}
SPROUT_CONSTEXPR basic_string(basic_string const& str, size_type pos, size_type n = npos)
: impl_type(
sprout::make_index_tuple<N>::make(),
str, pos, NS_SSCRISK_CEL_OR_SPROUT::min(n, str.size() - pos)
)
{}
template<std::size_t N2, typename Enable = typename std::enable_if<(N2 < N)>::type>
SPROUT_CONSTEXPR basic_string(basic_string<T, N2, Traits> const& str, size_type pos, size_type n = npos)
: impl_type(
sprout::make_index_tuple<N2>::make(),
str, pos, NS_SSCRISK_CEL_OR_SPROUT::min(n, str.size() - pos)
)
{}
template<std::size_t N2, typename Enable = typename std::enable_if<(N2 - 1 <= N)>::type>
SPROUT_CONSTEXPR basic_string(T const(& arr)[N2])
: impl_type(
sprout::make_index_tuple<N2 - 1>::make(),
arr, 0, sprout::char_traits_helper<typename sprout::basic_string<T, N2 - 1>::traits_type>::length(arr, N2 - 1)
)
{}
template<std::size_t N2, typename Enable = typename std::enable_if<(N2 - 1 <= N)>::type>
SPROUT_CONSTEXPR basic_string(T const(& arr)[N2], size_type n)
: impl_type(
sprout::make_index_tuple<N2 - 1>::make(),
arr, 0, NS_SSCRISK_CEL_OR_SPROUT::min(n, sprout::char_traits_helper<typename sprout::basic_string<T, N2 - 1>::traits_type>::length(arr, N2 - 1))
)
{}
SPROUT_CONSTEXPR basic_string(value_type const* s)
: impl_type(
sprout::make_index_tuple<N>::make(),
sprout::detail::string_from_c_str_construct_t(), s, 0, traits_type::length(s)
)
{}
SPROUT_CONSTEXPR basic_string(value_type const* s, size_type n)
: impl_type(
sprout::make_index_tuple<N>::make(),
sprout::detail::string_from_c_str_construct_t(), s, 0, NS_SSCRISK_CEL_OR_SPROUT::min(n, traits_type::length(s))
)
{}
// !!!
// template<typename InputIterator>
// SPROUT_CONSTEXPR basic_string(InputIterator first, InputIterator last);
template<typename RandomAccessIterator>
SPROUT_CONSTEXPR basic_string(RandomAccessIterator first, RandomAccessIterator last)
: impl_type(
sprout::make_index_tuple<N>::make(),
sprout::detail::string_from_c_str_construct_t(), first, 0, sprout::distance(first, last)
)
{}
basic_string(std::initializer_list<value_type> il)
: impl_type(
sprout::make_index_tuple<N>::make(),
sprout::detail::string_from_c_str_construct_t(), il.begin(), 0, il.size()
)
{}
basic_string&
operator=(basic_string const& rhs) {
return assign(rhs);
}
template<std::size_t N2, typename Enable = typename std::enable_if<(N2 != N)>::type>
basic_string&
operator=(basic_string<T, N2, Traits> const& rhs) {
2012-04-14 10:06:21 +00:00
return assign(rhs);
}
basic_string&
operator=(value_type const* rhs) {
2012-04-14 10:06:21 +00:00
return assign(rhs);
}
basic_string&
operator=(value_type rhs) {
2012-04-14 10:06:21 +00:00
return assign(1, rhs);
}
// iterators:
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
iterator
begin() SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return iterator(*this, 0);
}
SPROUT_CONSTEXPR const_iterator
begin() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_iterator(*this, 0);
}
iterator
end() SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return iterator(*this, size());
}
SPROUT_CONSTEXPR const_iterator
end() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_iterator(*this, size());
}
#else
iterator
begin() SPROUT_NOEXCEPT {
return data();
2012-04-14 10:06:21 +00:00
}
SPROUT_CONSTEXPR const_iterator
begin() const SPROUT_NOEXCEPT {
return data();
2012-04-14 10:06:21 +00:00
}
iterator end()
SPROUT_NOEXCEPT {
return data() + size();
2012-04-14 10:06:21 +00:00
}
SPROUT_CONSTEXPR const_iterator
end() const SPROUT_NOEXCEPT {
return data() + size();
2012-04-14 10:06:21 +00:00
}
#endif
reverse_iterator
rbegin() SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_reverse_iterator(end());
}
SPROUT_CONSTEXPR const_reverse_iterator
rbegin() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_reverse_iterator(end());
}
reverse_iterator
rend() SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_reverse_iterator(begin());
}
SPROUT_CONSTEXPR const_reverse_iterator
rend() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_reverse_iterator(begin());
}
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
SPROUT_CONSTEXPR const_iterator
cbegin() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_iterator(*this, 0);
}
SPROUT_CONSTEXPR const_iterator
cend() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_iterator(*this, size());
}
#else
SPROUT_CONSTEXPR const_iterator
cbegin() const SPROUT_NOEXCEPT {
return data();
2012-04-14 10:06:21 +00:00
}
SPROUT_CONSTEXPR const_iterator
cend() const SPROUT_NOEXCEPT {
return data() + size();
2012-04-14 10:06:21 +00:00
}
#endif
SPROUT_CONSTEXPR const_reverse_iterator
crbegin() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_reverse_iterator(end());
}
SPROUT_CONSTEXPR const_reverse_iterator
crend() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return const_reverse_iterator(begin());
}
// capacity:
SPROUT_CONSTEXPR size_type
size() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return len;
}
SPROUT_CONSTEXPR size_type
length() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return size();
}
SPROUT_CONSTEXPR size_type
max_size() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return static_size;
}
void
resize(size_type n, value_type c) {
2012-04-14 10:06:21 +00:00
maxcheck(n);
if (n > size()) {
traits_type::assign(end(), n - size(), c);
}
traits_type::assign(begin() + n, static_size - n, value_type());
2012-04-14 10:06:21 +00:00
len = n;
}
void
resize(size_type n) {
2012-04-14 10:06:21 +00:00
resize(n, value_type());
}
void
clear() {
traits_type::assign(begin(), static_size, value_type());
2012-04-14 10:06:21 +00:00
len = 0;
}
SPROUT_CONSTEXPR bool
empty() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return size() == 0;
}
// element access:
reference
operator[](size_type i) {
2012-04-14 10:06:21 +00:00
return elems[i];
}
SPROUT_CONSTEXPR const_reference
operator[](size_type i) const {
2012-04-14 10:06:21 +00:00
return elems[i];
}
reference
at(size_type i) {
return i < size() ? elems[i]
2012-04-14 10:06:21 +00:00
: (throw std::out_of_range("basic_string<>: index out of range"), elems[i])
;
}
SPROUT_CONSTEXPR const_reference
at(size_type i) const {
return i < size() ? elems[i]
2012-04-14 10:06:21 +00:00
: (throw std::out_of_range("basic_string<>: index out of range"), elems[i])
;
}
reference
front() {
2012-04-14 10:06:21 +00:00
return elems[0];
}
SPROUT_CONSTEXPR const_reference
front() const {
2012-04-14 10:06:21 +00:00
return elems[0];
}
reference
back() {
2012-04-14 10:06:21 +00:00
return elems[size() - 1];
}
SPROUT_CONSTEXPR const_reference
back() const {
2012-04-14 10:06:21 +00:00
return elems[size() - 1];
}
// modifiers:
template<std::size_t N2>
basic_string&
assign(basic_string<T, N2, Traits> const& str) {
2012-04-14 10:06:21 +00:00
return assign(str.begin(), str.size());
}
template<std::size_t N2>
basic_string&
assign(basic_string<T, N2, Traits> const& str, size_type pos, size_type n) {
2012-04-14 10:06:21 +00:00
if (str.size() < pos + n) {
throw std::out_of_range("basic_string<>: index out of range");
}
return assign(str.begin() + pos, n);
}
basic_string&
assign(value_type const* s, size_type n) {
2012-04-14 10:06:21 +00:00
maxcheck(n);
for (size_type i = 0; i < n; ++i) {
traits_type::assign(elems[i], s[i]);
}
for (size_type i = n; i < static_size; ++i) {
2012-04-14 10:06:21 +00:00
traits_type::assign(elems[i], value_type());
}
len = n;
return *this;
}
basic_string&
assign(value_type const* s) {
2012-04-14 10:06:21 +00:00
return assign(s, traits_type::length(s));
}
basic_string&
assign(size_type n, value_type c) {
2012-04-14 10:06:21 +00:00
maxcheck(n);
traits_type::assign(begin(), n, c);
traits_type::assign(begin() + n, static_size - n, value_type());
2012-04-14 10:06:21 +00:00
len = n;
return *this;
}
template<typename Iterator>
basic_string&
assign(Iterator first, Iterator last) {
2012-04-14 10:06:21 +00:00
size_type n = 0;
for (; n < static_size || first != last; ++n, ++first) {
2012-04-14 10:06:21 +00:00
traits_type::assign(elems[n], *first);
}
for (size_type i = n; i < static_size; ++i) {
2012-04-14 10:06:21 +00:00
traits_type::assign(elems[i], value_type());
}
len = n;
return *this;
}
void
swap(basic_string& other)
2012-10-05 15:58:56 +00:00
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(std::swap(std::declval<T&>(), std::declval<T&>())))
{
2012-04-14 10:06:21 +00:00
std::swap_ranges(other.begin(), other.begin() + other.max_size(), begin());
2012-10-05 15:58:56 +00:00
sprout::swap(len, other.len);
2012-04-14 10:06:21 +00:00
}
// string operations:
SPROUT_CONSTEXPR const_pointer
c_str() const SPROUT_NOEXCEPT {
return data();
2012-04-14 10:06:21 +00:00
}
pointer
data() SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return &elems[0];
}
SPROUT_CONSTEXPR const_pointer
data() const SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return &elems[0];
}
template<std::size_t N2>
SPROUT_CONSTEXPR size_type
find(basic_string<T, N2, Traits> const& str, size_type pos = 0) const SPROUT_NOEXCEPT {
return sprout::string_detail::find_impl<basic_string>(begin(), size(), str.begin(), pos, str.size());
}
SPROUT_CONSTEXPR size_type
find(value_type const* s, size_type pos, size_type n) const {
return sprout::string_detail::find_impl<basic_string>(begin(), size(), s, pos, n);
}
SPROUT_CONSTEXPR size_type
find(value_type const* s, size_type pos = 0) const {
return find(s, pos, traits_type::length(s));
}
SPROUT_CONSTEXPR size_type
find(value_type c, size_type pos = 0) const {
return sprout::string_detail::find_c_impl<basic_string>(begin(), size(), c, pos);
}
template<std::size_t N2>
2012-10-08 09:01:11 +00:00
SPROUT_CONSTEXPR size_type
rfind(basic_string<T, N2, Traits> const& str, size_type pos = npos) const SPROUT_NOEXCEPT {
return sprout::string_detail::rfind_impl<basic_string>(begin(), size(), str.begin(), pos, str.size());
2012-10-08 09:01:11 +00:00
}
SPROUT_CONSTEXPR size_type
rfind(value_type const* s, size_type pos, size_type n) const {
return sprout::string_detail::rfind_impl<basic_string>(begin(), size(), s, pos, n);
2012-10-08 09:01:11 +00:00
}
SPROUT_CONSTEXPR size_type
rfind(value_type const* s, size_type pos = npos) const {
return rfind(s, pos, traits_type::length(s));
}
SPROUT_CONSTEXPR size_type
rfind(value_type c, size_type pos = npos) const {
return sprout::string_detail::rfind_c_impl<basic_string>(begin(), size(), c, pos);
2012-10-08 09:01:11 +00:00
}
template<std::size_t N2>
SPROUT_CONSTEXPR size_type
find_first_of(basic_string<T, N2, Traits> const& str, size_type pos = 0) const SPROUT_NOEXCEPT {
return sprout::string_detail::find_first_of_impl<basic_string>(begin(), size(), str.begin(), pos, str.size());
}
SPROUT_CONSTEXPR size_type
find_first_of(value_type const* s, size_type pos, size_type n) const {
return sprout::string_detail::find_first_of_impl<basic_string>(begin(), size(), s, pos, n);
}
SPROUT_CONSTEXPR size_type
find_first_of(value_type const* s, size_type pos = 0) const {
return find_first_of(s, pos, traits_type::length(s));
}
SPROUT_CONSTEXPR size_type
find_first_of(value_type c, size_type pos = 0) const {
return find(c, pos);
}
template<std::size_t N2>
SPROUT_CONSTEXPR size_type
find_last_of(basic_string<T, N2, Traits> const& str, size_type pos = npos) const SPROUT_NOEXCEPT {
return sprout::string_detail::find_last_of_impl<basic_string>(begin(), size(), str.begin(), pos, str.size());
}
SPROUT_CONSTEXPR size_type
find_last_of(value_type const* s, size_type pos, size_type n) const {
return sprout::string_detail::find_last_of_impl<basic_string>(begin(), size(), s, pos, n);
}
SPROUT_CONSTEXPR size_type
find_last_of(value_type const* s, size_type pos = npos) const {
return find_last_of(s, pos, traits_type::length(s));
}
SPROUT_CONSTEXPR size_type
find_last_of(value_type c, size_type pos = npos) const {
return rfind(c, pos);
}
template<std::size_t N2>
SPROUT_CONSTEXPR size_type
find_first_not_of(basic_string<T, N2, Traits> const& str, size_type pos = 0) const SPROUT_NOEXCEPT {
return sprout::string_detail::find_first_not_of_impl<basic_string>(begin(), size(), str.begin(), pos, str.size());
}
SPROUT_CONSTEXPR size_type
find_first_not_of(value_type const* s, size_type pos, size_type n) const {
return sprout::string_detail::find_first_not_of_impl<basic_string>(begin(), size(), s, pos, n);
}
SPROUT_CONSTEXPR size_type
find_first_not_of(value_type const* s, size_type pos = 0) const {
return find_first_not_of(s, pos, traits_type::length(s));
}
SPROUT_CONSTEXPR size_type
find_first_not_of(value_type c, size_type pos = 0) const {
return sprout::string_detail::find_first_not_of_c_impl<basic_string>(begin(), size(), c, pos);
}
template<std::size_t N2>
SPROUT_CONSTEXPR size_type
find_last_not_of(basic_string<T, N2, Traits> const& str, size_type pos = npos) const SPROUT_NOEXCEPT {
return sprout::string_detail::find_last_not_of_impl<basic_string>(begin(), size(), str.begin(), pos, str.size());
}
SPROUT_CONSTEXPR size_type
find_last_not_of(value_type const* s, size_type pos, size_type n) const {
return sprout::string_detail::find_last_not_of_impl<basic_string>(begin(), size(), s, pos, n);
}
SPROUT_CONSTEXPR size_type
find_last_not_of(value_type const* s, size_type pos = npos) const {
return find_last_not_of(s, pos, traits_type::length(s));
}
SPROUT_CONSTEXPR size_type
find_last_not_of(value_type c, size_type pos = npos) const {
return sprout::string_detail::find_last_not_of_c_impl<basic_string>(begin(), size(), c, pos);
}
SPROUT_CONSTEXPR basic_string
substr(size_type pos = 0, size_type n = npos) const {
return !(size() < pos) ? n == npos
2012-04-14 10:06:21 +00:00
? substr(pos, size() - pos)
: from_c_str(c_str() + pos, n)
: throw std::out_of_range("basic_string<>: index out of range")
;
}
template<std::size_t N2>
SPROUT_CONSTEXPR int
compare(basic_string<T, N2, Traits> const& str) const {
2012-04-14 10:06:21 +00:00
return compare(0, size(), str.begin(), str.size());
}
SPROUT_CONSTEXPR int
compare(value_type const* s) const {
2012-04-14 10:06:21 +00:00
return compare(0, size(), s, traits_type::length(s));
}
template<std::size_t N2>
SPROUT_CONSTEXPR int
compare(size_type pos1, size_type n1, basic_string<T, N2, Traits> const& str) const {
2012-04-14 10:06:21 +00:00
return compare(pos1, n1, str, 0, npos);
}
SPROUT_CONSTEXPR int
compare(size_type pos1, size_type n1, value_type const* s) const {
2012-04-14 10:06:21 +00:00
return compare(pos1, n1, s, traits_type::length(s));
}
template<std::size_t N2>
SPROUT_CONSTEXPR int
compare(size_type pos1, size_type n1, basic_string<T, N2, Traits> const& str, size_type pos2, size_type n2) const {
2012-04-14 10:06:21 +00:00
return !(str.size() < pos2)
? compare(pos1, n1, str.begin() + pos2, NS_SSCRISK_CEL_OR_SPROUT::min(n2, str.size() - pos2))
: throw std::out_of_range("basic_string<>: index out of range")
;
}
SPROUT_CONSTEXPR int
compare(size_type pos1, size_type n1, value_type const* s, size_type n2) const {
2012-04-14 10:06:21 +00:00
return !(size() < pos1)
? sprout::string_detail::compare_impl<basic_string>(begin(), pos1, NS_SSCRISK_CEL_OR_SPROUT::min(n1, size() - pos1), s, n2)
2012-04-14 10:06:21 +00:00
: throw std::out_of_range("basic_string<>: index out of range")
;
}
// others:
2013-02-19 16:12:56 +00:00
template<typename Allocator>
SPROUT_EXPLICIT_CONVERSION operator std::basic_string<T, Traits, Allocator>() const {
2013-02-19 16:12:56 +00:00
return std::basic_string<T, Traits, Allocator>(data(), size());
}
pointer
c_array() SPROUT_NOEXCEPT {
2012-04-14 10:06:21 +00:00
return &elems[0];
}
void
rangecheck(size_type i) const {
2012-04-14 10:06:21 +00:00
if (i >= size()) {
throw std::out_of_range("basic_string<>: index out of range");
}
}
void
maxcheck(size_type n) const {
if (n > static_size) {
2012-04-14 10:06:21 +00:00
throw std::out_of_range("basic_string<>: index out of range");
}
}
2012-04-14 10:06:21 +00:00
#if SPROUT_USE_INDEX_ITERATOR_IMPLEMENTATION
template<typename ConstIterator>
typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
basic_string&
>::type
assign(ConstIterator s, size_type n) {
2012-04-14 10:06:21 +00:00
maxcheck(n);
for (size_type i = 0; i < n; ++i) {
traits_type::assign(elems[i], s[i]);
}
for (size_type i = n; i < static_size; ++i) {
2012-04-14 10:06:21 +00:00
traits_type::assign(elems[i], value_type());
}
len = n;
return *this;
}
template<typename ConstIterator>
typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
basic_string&
>::type
assign(ConstIterator s) {
2012-04-14 10:06:21 +00:00
return assign(s, traits_type::length(s));
}
template<typename ConstIterator>
typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
basic_string&
>::type
operator=(ConstIterator rhs) {
2012-04-14 10:06:21 +00:00
return assign(rhs);
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find(ConstIterator s, size_type pos, size_type n) const {
return sprout::string_detail::find_impl<basic_string>(begin(), size(), s, pos, n);
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find(ConstIterator s, size_type pos = 0) const {
return find(s, pos, traits_type::length(s));
}
2012-04-14 10:06:21 +00:00
template<typename ConstIterator>
2012-10-08 09:01:11 +00:00
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
2012-10-08 09:01:11 +00:00
size_type
>::type
rfind(ConstIterator s, size_type pos, size_type n) const {
return sprout::string_detail::rfind_impl<basic_string>(begin(), size(), s, pos, n);
2012-10-08 09:01:11 +00:00
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
2012-10-08 09:01:11 +00:00
size_type
>::type
rfind(ConstIterator s, size_type pos = npos) const {
return rfind(s, pos, traits_type::length(s));
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_first_of(ConstIterator s, size_type pos, size_type n) const {
return sprout::string_detail::find_first_of_impl<basic_string>(begin(), size(), s, pos, n);
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_first_of(ConstIterator s, size_type pos = 0) const {
return find_first_of(s, pos, traits_type::length(s));
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_last_of(ConstIterator s, size_type pos, size_type n) const {
return sprout::string_detail::find_last_of_impl<basic_string>(begin(), size(), s, pos, n);
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_last_of(ConstIterator s, size_type pos = 0) const {
return find_last_of(s, pos, traits_type::length(s));
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_first_not_of(ConstIterator s, size_type pos, size_type n) const {
return sprout::string_detail::find_first_not_of_impl<basic_string>(begin(), size(), s, pos, n);
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_first_not_of(ConstIterator s, size_type pos = 0) const {
return sprout::string_detail::find_first_not_of_impl<basic_string>(s, pos, traits_type::length(s));
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_last_not_of(ConstIterator s, size_type pos, size_type n) const {
return sprout::string_detail::find_last_not_of_impl<basic_string>(begin(), size(), s, pos, n);
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
size_type
>::type
find_last_not_of(ConstIterator s, size_type pos = npos) const {
return sprout::string_detail::find_last_not_of_impl<basic_string>(s, pos, traits_type::length(s));
}
template<typename ConstIterator>
2012-04-14 10:06:21 +00:00
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
2012-04-14 10:06:21 +00:00
int
>::type
compare(ConstIterator s) const {
2012-04-14 10:06:21 +00:00
return compare(0, size(), s, traits_type::length(s));
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
2012-04-14 10:06:21 +00:00
int
>::type
compare(size_type pos1, size_type n1, ConstIterator s) const {
2012-04-14 10:06:21 +00:00
return compare(pos1, n1, s, traits_type::length(s));
}
template<typename ConstIterator>
SPROUT_CONSTEXPR typename std::enable_if<
2012-10-08 14:49:05 +00:00
is_string_iterator<ConstIterator>::value,
2012-04-14 10:06:21 +00:00
int
>::type
compare(size_type pos1, size_type n1, ConstIterator s, size_type n2) const {
2012-04-14 10:06:21 +00:00
return !(size() < pos1)
? sprout::string_detail::compare_impl<basic_string>(begin(), pos1, NS_SSCRISK_CEL_OR_SPROUT::min(n1, size() - pos1), s, n2)
2012-04-14 10:06:21 +00:00
: throw std::out_of_range("basic_string<>: index out of range")
;
}
#endif
};
template<typename T, std::size_t N, typename Traits>
SPROUT_CONSTEXPR_OR_CONST typename sprout::basic_string<T, N, Traits>::size_type sprout::basic_string<T, N, Traits>::npos;
2012-04-14 10:06:21 +00:00
template<typename T, std::size_t N, typename Traits>
SPROUT_CONSTEXPR_OR_CONST typename sprout::basic_string<T, N, Traits>::size_type sprout::basic_string<T, N, Traits>::static_size;
2012-04-14 10:06:21 +00:00
//
// swap
//
template<typename T, std::size_t N, typename Traits>
2012-10-05 15:58:56 +00:00
inline void
swap(sprout::basic_string<T, N, Traits>& lhs, sprout::basic_string<T, N, Traits>& rhs)
SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(lhs.swap(rhs)))
2012-04-14 10:06:21 +00:00
{
lhs.swap(rhs);
}
namespace detail {
template<typename T, std::size_t N, typename Traits>
class string_construct_access {
public:
template<typename... Args>
static SPROUT_CONSTEXPR sprout::basic_string<T, N, Traits>
raw_construct(typename sprout::basic_string<T, N, Traits>::size_type n, Args&&... args) {
return sprout::basic_string<T, N, Traits>(sprout::detail::string_raw_construct_t(), n, sprout::forward<Args>(args)...);
}
};
2012-04-14 10:06:21 +00:00
template<typename Container>
struct make_construct_impl;
template<typename T, std::size_t N, typename Traits>
struct make_construct_impl<sprout::basic_string<T, N, Traits> > {
private:
typedef sprout::basic_string<T, N, Traits> copied_type;
private:
template<std::size_t M>
2012-10-05 15:58:56 +00:00
static SPROUT_CONSTEXPR typename copied_type::size_type
length_impl(sprout::array<T, M> const& arr) {
2013-02-19 16:12:56 +00:00
return sprout::distance(arr.begin(), sprout::find(arr.begin(), arr.end(), T()));
2012-04-14 10:06:21 +00:00
}
public:
template<typename... Args>
2012-10-05 15:58:56 +00:00
static SPROUT_CONSTEXPR typename copied_type::size_type
length(Args&&... args) {
return length_impl(sprout::make_array<T>(sprout::forward<Args>(args)...));
2012-04-14 10:06:21 +00:00
}
template<typename... Args>
2012-10-05 15:58:56 +00:00
static SPROUT_CONSTEXPR copied_type
make(Args&&... args) {
typedef sprout::detail::string_construct_access<T, N, Traits> access_type;
return access_type::raw_construct(length(args...), sprout::forward<Args>(args)...);
2012-04-14 10:06:21 +00:00
}
template<typename... Args>
2012-10-05 15:58:56 +00:00
static SPROUT_CONSTEXPR copied_type
make(typename copied_type::size_type size, Args&&... args) {
typedef sprout::detail::string_construct_access<T, N, Traits> access_type;
return access_type::raw_construct(size, sprout::forward<Args>(args)...);
2012-04-14 10:06:21 +00:00
}
};
} // namespace detail
2012-12-19 14:06:08 +00:00
//
// to_string
//
template<typename T, std::size_t N, typename Traits>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N, Traits>
to_string(sprout::basic_string<T, N, Traits> const& s) {
return s;
}
2012-04-14 10:06:21 +00:00
template<typename T, std::size_t N>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR sprout::basic_string<T, N - 1>
to_string(T const(& arr)[N]) {
return sprout::basic_string<T, N - 1>(arr);
2012-04-14 10:06:21 +00:00
}
//
// string_from_c_str
//
template<std::size_t N, typename T>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR sprout::basic_string<T, N>
string_from_c_str(T const* s, std::size_t n) {
2012-04-14 10:06:21 +00:00
return sprout::basic_string<T, N>::from_c_str(s, n);
}
template<std::size_t N, typename T>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR sprout::basic_string<T, N>
string_from_c_str(T const* s) {
2012-04-14 10:06:21 +00:00
return sprout::basic_string<T, N>::from_c_str(s);
}
2013-02-19 16:12:56 +00:00
template<std::size_t N, typename T, typename Traits>
inline SPROUT_CONSTEXPR sprout::basic_string<T, N, Traits>
string_from_c_str(std::basic_string<T, Traits> const& s) {
return sprout::basic_string<T, N, Traits>::from_c_str(s);
}
2012-04-14 10:06:21 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_STRING_STRING_HPP