|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /// \file
- // Range v3 library
- //
- // Copyright Eric Niebler 2013-present
- //
- // Use, modification and distribution is subject to 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)
- //
- // Project home: https://github.com/ericniebler/range-v3
- //
-
- #ifndef RANGES_V3_VIEW_ISTREAM_HPP
- #define RANGES_V3_VIEW_ISTREAM_HPP
-
- #include <istream>
-
- #include <range/v3/range_fwd.hpp>
-
- #include <range/v3/iterator/default_sentinel.hpp>
- #include <range/v3/utility/semiregular_box.hpp>
- #include <range/v3/utility/static_const.hpp>
- #include <range/v3/view/facade.hpp>
-
- namespace ranges
- {
- /// \addtogroup group-views
- /// @{
- template<typename Val>
- struct istream_view : view_facade<istream_view<Val>, unknown>
- {
- private:
- friend range_access;
- std::istream * sin_;
- semiregular_box_t<Val> obj_;
- struct cursor
- {
- private:
- friend range_access;
- using single_pass = std::true_type;
- istream_view * rng_ = nullptr;
-
- public:
- cursor() = default;
- explicit cursor(istream_view * rng)
- : rng_(rng)
- {}
- void next()
- {
- rng_->next();
- }
- Val & read() const noexcept
- {
- return rng_->cached();
- }
- bool equal(default_sentinel_t) const
- {
- return !rng_->sin_;
- }
- bool equal(cursor that) const
- {
- return !rng_->sin_ == !that.rng_->sin_;
- }
- };
- void next()
- {
- if(!(*sin_ >> cached()))
- sin_ = nullptr;
- }
- cursor begin_cursor()
- {
- return cursor{this};
- }
-
- public:
- istream_view() = default;
- explicit istream_view(std::istream & sin)
- : sin_(&sin)
- , obj_{}
- {
- next(); // prime the pump
- }
- Val & cached() noexcept
- {
- return obj_;
- }
- };
-
- /// \cond
- template<typename Val>
- using istream_range RANGES_DEPRECATED(
- "istream_range<T> has been renamed to istream_view<T>") = istream_view<Val>;
- /// \endcond
-
- /// \cond
- namespace _istream_
- {
- /// \endcond
- template<typename Val>
- inline auto istream(std::istream & sin) -> CPP_ret(istream_view<Val>)( //
- requires copy_constructible<Val> && default_constructible<Val>)
- {
- return istream_view<Val>{sin};
- }
- /// \cond
- } // namespace _istream_
- using namespace _istream_;
- /// \endcond
-
- /// @}
- } // namespace ranges
-
- #endif
|