Sprout/sprout/range/adaptor/counting.hpp
2012-05-23 19:33:06 +09:00

173 lines
5.2 KiB
C++

#ifndef SPROUT_RANGE_ADAPTOR_COUNTING_HPP
#define SPROUT_RANGE_ADAPTOR_COUNTING_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/pit.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/iterator/counting_iterator.hpp>
#include <sprout/range/range_container.hpp>
#include <sprout/range/algorithm/copy.hpp>
#include <sprout/type_traits/lvalue_reference.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/utility/lvalue_forward.hpp>
namespace sprout {
namespace adaptors {
//
// counting_range
//
template<typename Incrementable, typename Range = void>
class counting_range
: public sprout::range::range_container<
sprout::counting_iterator<Incrementable>
>
, public sprout::detail::container_nosy_static_size<Range>
, public sprout::detail::container_nosy_fixed_size<Range>
{
public:
typedef Range range_type;
typedef sprout::range::range_container<
sprout::counting_iterator<Incrementable>
> base_type;
typedef typename base_type::iterator iterator;
typedef typename base_type::value_type value_type;
typedef typename base_type::difference_type difference_type;
public:
counting_range() = default;
counting_range(counting_range const&) = default;
explicit SPROUT_CONSTEXPR counting_range(range_type& range)
: base_type(
iterator(),
sprout::next(iterator(), sprout::size(range))
)
{}
SPROUT_CONSTEXPR counting_range(
range_type& range,
value_type const& first
)
: base_type(
iterator(first),
sprout::next(iterator(first), sprout::size(range))
)
{}
SPROUT_CONSTEXPR counting_range(
range_type& range,
value_type const& first,
value_type const& last
)
: base_type(
iterator(first),
sprout::size(range) < last - first ? sprout::next(iterator(first), sprout::size(range))
: iterator(last)
)
{}
};
template<typename Incrementable>
class counting_range<Incrementable, void>
: public sprout::range::range_container<
sprout::counting_iterator<Incrementable>
>
{
public:
typedef sprout::range::range_container<
sprout::counting_iterator<Incrementable>
> base_type;
typedef typename base_type::iterator iterator;
typedef typename base_type::value_type value_type;
typedef typename base_type::difference_type difference_type;
public:
counting_range() = default;
counting_range(counting_range const&) = default;
explicit SPROUT_CONSTEXPR counting_range(value_type const& first)
: base_type(
iterator(first),
iterator()
)
{}
SPROUT_CONSTEXPR counting_range(
value_type const& first,
value_type const& last
)
: base_type(
iterator(first),
iterator(last)
)
{}
};
//
// counting_forwarder
//
class counting_forwarder {
public:
template<typename Incrementable>
SPROUT_CONSTEXPR sprout::adaptors::counting_range<Incrementable>
operator()(Incrementable const& first) const {
return sprout::adaptors::counting_range<Incrementable>(first);
}
template<typename Incrementable>
SPROUT_CONSTEXPR sprout::adaptors::counting_range<Incrementable>
operator()(Incrementable const& first, Incrementable const& last) const {
return sprout::adaptors::counting_range<Incrementable>(first, last);
}
};
//
// counting
//
namespace {
SPROUT_STATIC_CONSTEXPR sprout::adaptors::counting_forwarder counting{};
} // anonymous-namespace
//
// operator|
//
template<typename Range, typename Incrementable>
inline SPROUT_CONSTEXPR sprout::adaptors::counting_range<
Incrementable,
typename std::remove_reference<typename sprout::lvalue_reference<Range>::type>::type
>
operator|(Range&& lhs, sprout::adaptors::counting_range<Incrementable> const& rhs) {
return sprout::adaptors::counting_range<
Incrementable,
typename std::remove_reference<typename sprout::lvalue_reference<Range>::type>::type
>(
sprout::lvalue_forward<Range>(lhs),
*rhs.begin(),
*rhs.end()
);
}
} // namespace adaptors
//
// container_construct_traits
//
template<typename Incrementable, typename Range>
struct container_construct_traits<sprout::adaptors::counting_range<Incrementable, Range> > {
public:
typedef typename sprout::container_construct_traits<Range>::copied_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::counting_range<Incrementable, Range> >::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_COUNTING_HPP