mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix adaptors
This commit is contained in:
parent
86818d73cb
commit
d57b6e2b18
20 changed files with 489 additions and 556 deletions
206
sprout/range/adaptor/detail/jointed_range_default.hpp
Normal file
206
sprout/range/adaptor/detail/jointed_range_default.hpp
Normal file
|
@ -0,0 +1,206 @@
|
|||
#ifndef SPROUT_RANGE_ADAPTOR_DETAIL_JOINTED_RANGE_DEFAULT_HPP
|
||||
#define SPROUT_RANGE_ADAPTOR_DETAIL_JOINTED_RANGE_DEFAULT_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/pit.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/container/metafunctions.hpp>
|
||||
#include <sprout/range/range_container.hpp>
|
||||
#include <sprout/range/algorithm/copy.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
#include <sprout/type_traits/arithmetic_promote.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace adaptors {
|
||||
namespace detail {
|
||||
template<typename LRange, typename RRange, typename = void>
|
||||
class jointed_range_size;
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
> {
|
||||
public:
|
||||
typedef typename sprout::arithmetic_promote<
|
||||
typename sprout::container_traits<LRange>::size_type,
|
||||
typename sprout::container_traits<RRange>::size_type
|
||||
>::type size_type;
|
||||
SPROUT_STATIC_CONSTEXPR size_type static_size
|
||||
= sprout::container_traits<LRange>::static_size + sprout::container_traits<RRange>::static_size
|
||||
;
|
||||
static SPROUT_CONSTEXPR size_type fixed_size() {
|
||||
return static_size;
|
||||
}
|
||||
};
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& !sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
> {
|
||||
public:
|
||||
typedef typename sprout::container_traits<LRange>::size_type size_type;
|
||||
SPROUT_STATIC_CONSTEXPR size_type static_size = sprout::container_traits<LRange>::static_size;
|
||||
static SPROUT_CONSTEXPR size_type fixed_size() {
|
||||
return static_size;
|
||||
}
|
||||
};
|
||||
template<typename LRange, typename RRange>
|
||||
SPROUT_CONSTEXPR_OR_CONST typename sprout::adaptors::detail::jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& !sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
>::size_type
|
||||
sprout::adaptors::detail::jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& !sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
>::static_size;
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
!sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
> {
|
||||
public:
|
||||
typedef typename sprout::container_traits<RRange>::size_type size_type;
|
||||
SPROUT_STATIC_CONSTEXPR size_type static_size = sprout::container_traits<RRange>::static_size;
|
||||
static SPROUT_CONSTEXPR size_type fixed_size() {
|
||||
return static_size;
|
||||
}
|
||||
};
|
||||
template<typename LRange, typename RRange>
|
||||
SPROUT_CONSTEXPR_OR_CONST typename sprout::adaptors::detail::jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
!sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
>::size_type
|
||||
sprout::adaptors::detail::jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
!sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
>::static_size;
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_size<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
!sprout::detail::has_static_size<sprout::container_traits<LRange> >::value
|
||||
&& !sprout::detail::has_static_size<sprout::container_traits<RRange> >::value
|
||||
>::type
|
||||
> {};
|
||||
|
||||
template<
|
||||
typename LRange, typename RRange,
|
||||
typename Iterator = typename sprout::container_traits<LRange>::iterator
|
||||
>
|
||||
class jointed_range_default
|
||||
: public sprout::range::range_container<Iterator>
|
||||
, public sprout::adaptors::detail::jointed_range_size<LRange, RRange>
|
||||
{
|
||||
public:
|
||||
typedef LRange range_type;
|
||||
typedef LRange range1_type;
|
||||
typedef RRange range2_type;
|
||||
typedef sprout::range::range_container<Iterator> base_type;
|
||||
typedef typename base_type::iterator iterator;
|
||||
public:
|
||||
jointed_range_default() = default;
|
||||
jointed_range_default(jointed_range_default const&) = default;
|
||||
explicit SPROUT_CONSTEXPR jointed_range_default(iterator const& first, iterator const& last)
|
||||
: base_type(first, last)
|
||||
{}
|
||||
};
|
||||
|
||||
template<typename LRange, typename RRange, typename = void>
|
||||
class jointed_range_copied_type;
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_copied_type<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
sprout::containers::is_rebindable_size<LRange>::value
|
||||
>::type
|
||||
> {
|
||||
public:
|
||||
typedef typename sprout::containers::weak_rebind_size<
|
||||
typename sprout::container_construct_traits<LRange>::copied_type,
|
||||
sprout::adaptors::detail::jointed_range_size<LRange, RRange>::static_size
|
||||
>::type copied_type;
|
||||
};
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_copied_type<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
!sprout::containers::is_rebindable_size<LRange>::value && sprout::containers::is_rebindable_size<RRange>::value
|
||||
>::type
|
||||
> {
|
||||
public:
|
||||
typedef typename sprout::containers::weak_rebind_size<
|
||||
typename sprout::container_construct_traits<RRange>::copied_type,
|
||||
sprout::adaptors::detail::jointed_range_size<LRange, RRange>::static_size
|
||||
>::type type;
|
||||
};
|
||||
|
||||
template<typename LRange, typename RRange>
|
||||
class jointed_range_copied_type<
|
||||
LRange, RRange,
|
||||
typename std::enable_if<
|
||||
!sprout::containers::is_rebindable_size<LRange>::value && !sprout::containers::is_rebindable_size<RRange>::value
|
||||
>::type
|
||||
> {
|
||||
public:
|
||||
typedef typename sprout::container_construct_traits<LRange>::copied_type type;
|
||||
};
|
||||
} // namespace detail
|
||||
} // namespace adaptors
|
||||
|
||||
//
|
||||
// container_construct_traits
|
||||
//
|
||||
template<typename LRange, typename RRange, typename Iterator>
|
||||
struct container_construct_traits<sprout::adaptors::detail::jointed_range_default<LRange, RRange, Iterator> > {
|
||||
public:
|
||||
typedef typename sprout::adaptors::detail::jointed_range_copied_type<LRange, RRange>::type copied_type;
|
||||
public:
|
||||
template<typename Cont>
|
||||
static SPROUT_CONSTEXPR copied_type deep_copy(Cont&& cont) {
|
||||
return sprout::range::fixed::copy(sprout::forward<Cont>(cont), sprout::pit<copied_type>());
|
||||
}
|
||||
template<typename... Args>
|
||||
static SPROUT_CONSTEXPR copied_type make(Args&&... args) {
|
||||
return sprout::make<copied_type>(sprout::forward<Args>(args)...);
|
||||
}
|
||||
template<typename Cont, typename... Args>
|
||||
static SPROUT_CONSTEXPR copied_type remake(
|
||||
Cont&& cont,
|
||||
typename sprout::container_traits<sprout::adaptors::detail::jointed_range_default<LRange, RRange, Iterator> >::difference_type size,
|
||||
Args&&... args
|
||||
)
|
||||
{
|
||||
return sprout::remake<copied_type>(sprout::forward<Cont>(cont), size, sprout::forward<Args>(args)...);
|
||||
}
|
||||
};
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_ADAPTOR_DETAIL_JOINTED_RANGE_DEFAULT_HPP
|
111
sprout/range/adaptor/detail/sized_range_default.hpp
Normal file
111
sprout/range/adaptor/detail/sized_range_default.hpp
Normal file
|
@ -0,0 +1,111 @@
|
|||
#ifndef SPROUT_RANGE_ADAPTOR_DETAIL_SIZED_RANGE_DEFAULT_HPP
|
||||
#define SPROUT_RANGE_ADAPTOR_DETAIL_SIZED_RANGE_DEFAULT_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/pit.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/container/metafunctions.hpp>
|
||||
#include <sprout/range/range_container.hpp>
|
||||
#include <sprout/range/algorithm/copy.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace adaptors {
|
||||
namespace detail {
|
||||
template<typename Range, typename sprout::container_traits<Range>::size_type Size, typename = void>
|
||||
class sized_range_size;
|
||||
|
||||
template<typename Range, typename sprout::container_traits<Range>::size_type Size>
|
||||
class sized_range_size<
|
||||
Range, Size,
|
||||
typename std::enable_if<sprout::detail::has_static_size<sprout::container_traits<Range> >::value>::type
|
||||
> {
|
||||
public:
|
||||
SPROUT_STATIC_CONSTEXPR typename sprout::container_traits<Range>::size_type static_size
|
||||
= Size < sprout::container_traits<Range>::static_size ? Size
|
||||
: sprout::container_traits<Range>::static_size
|
||||
;
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<Range>::size_type fixed_size() {
|
||||
return static_size;
|
||||
}
|
||||
};
|
||||
template<typename Range, typename sprout::container_traits<Range>::size_type Size>
|
||||
SPROUT_CONSTEXPR_OR_CONST typename sprout::container_traits<Range>::size_type
|
||||
sprout::adaptors::detail::sized_range_size<
|
||||
Range, Size,
|
||||
typename std::enable_if<sprout::detail::has_static_size<sprout::container_traits<Range> >::value>::type
|
||||
>::static_size;
|
||||
|
||||
template<typename Range, typename sprout::container_traits<Range>::size_type Size>
|
||||
class sized_range_size<
|
||||
Range, Size,
|
||||
typename std::enable_if<!sprout::detail::has_static_size<sprout::container_traits<Range> >::value>::type
|
||||
> {
|
||||
public:
|
||||
SPROUT_STATIC_CONSTEXPR typename sprout::container_traits<Range>::size_type static_size = Size;
|
||||
static SPROUT_CONSTEXPR typename sprout::container_traits<Range>::size_type fixed_size() {
|
||||
return static_size;
|
||||
}
|
||||
};
|
||||
template<typename Range, typename sprout::container_traits<Range>::size_type Size>
|
||||
SPROUT_CONSTEXPR_OR_CONST typename sprout::container_traits<Range>::size_type
|
||||
sprout::adaptors::detail::sized_range_size<
|
||||
Range, Size,
|
||||
typename std::enable_if<!sprout::detail::has_static_size<sprout::container_traits<Range> >::value>::type
|
||||
>::static_size;
|
||||
|
||||
template<
|
||||
typename Range, typename sprout::container_traits<Range>::size_type Size,
|
||||
typename Iterator = typename sprout::container_traits<Range>::iterator
|
||||
>
|
||||
class sized_range_default
|
||||
: public sprout::range::range_container<Iterator>
|
||||
, public sprout::adaptors::detail::sized_range_size<Range, Size>
|
||||
{
|
||||
public:
|
||||
typedef Range range_type;
|
||||
typedef sprout::range::range_container<Iterator> base_type;
|
||||
typedef typename base_type::iterator iterator;
|
||||
public:
|
||||
sized_range_default() = default;
|
||||
sized_range_default(sized_range_default const&) = default;
|
||||
explicit SPROUT_CONSTEXPR sized_range_default(iterator const& first, iterator const& last)
|
||||
: base_type(first, last)
|
||||
{}
|
||||
};
|
||||
} // namespace detail
|
||||
} // namespace adaptors
|
||||
|
||||
//
|
||||
// container_construct_traits
|
||||
//
|
||||
template<typename Range, typename sprout::container_traits<Range>::size_type Size, typename Iterator>
|
||||
struct container_construct_traits<sprout::adaptors::detail::sized_range_default<Range, Size, Iterator> > {
|
||||
public:
|
||||
typedef typename sprout::containers::weak_rebind_size<
|
||||
typename sprout::container_construct_traits<Range>::copied_type,
|
||||
sprout::adaptors::detail::sized_range_default<Range, Size, Iterator>::static_size
|
||||
>::type copied_type;
|
||||
public:
|
||||
template<typename Cont>
|
||||
static SPROUT_CONSTEXPR copied_type deep_copy(Cont&& cont) {
|
||||
return sprout::range::fixed::copy(sprout::forward<Cont>(cont), sprout::pit<copied_type>());
|
||||
}
|
||||
template<typename... Args>
|
||||
static SPROUT_CONSTEXPR copied_type make(Args&&... args) {
|
||||
return sprout::make<copied_type>(sprout::forward<Args>(args)...);
|
||||
}
|
||||
template<typename Cont, typename... Args>
|
||||
static SPROUT_CONSTEXPR copied_type remake(
|
||||
Cont&& cont,
|
||||
typename sprout::container_traits<sprout::adaptors::detail::sized_range_default<Range, Size, Iterator> >::difference_type size,
|
||||
Args&&... args
|
||||
)
|
||||
{
|
||||
return sprout::remake<copied_type>(sprout::forward<Cont>(cont), size, sprout::forward<Args>(args)...);
|
||||
}
|
||||
};
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_ADAPTOR_DETAIL_SIZED_RANGE_DEFAULT_HPP
|
Loading…
Add table
Add a link
Reference in a new issue