1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
/// \file
// Range v3 library
//
// Copyright Eric Niebler 2014-present
// Copyright Google LLC 2020-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_ITERATOR_STREAM_ITERATORS_HPP
#define RANGES_V3_ITERATOR_STREAM_ITERATORS_HPP
#include <cstddef>
#include <iosfwd>
#include <iterator>
#include <string>
#include <type_traits>
#include <utility>
#include <range/v3/range_fwd.hpp>
#include <range/v3/iterator/concepts.hpp>
#include <range/v3/detail/prologue.hpp>
namespace ranges
{
/// \addtogroup group-iterator
/// @{
template<typename T = void, typename Char = char,
typename Traits = std::char_traits<Char>>
struct ostream_iterator
{
private:
template<class U>
using value_t = meta::if_<std::is_void<T>, U, T>;
public:
using difference_type = std::ptrdiff_t;
using char_type = Char;
using traits_type = Traits;
using ostream_type = std::basic_ostream<Char, Traits>;
constexpr ostream_iterator() = default;
ostream_iterator(ostream_type & s, Char const * d = nullptr) noexcept
: sout_(&s)
, delim_(d)
{}
template(typename U)(
requires convertible_to<U, value_t<U> const &>)
ostream_iterator & operator=(U && value)
{
RANGES_EXPECT(sout_);
*sout_ << static_cast<value_t<U> const &>(static_cast<U &&>(value));
if(delim_)
*sout_ << delim_;
return *this;
}
ostream_iterator & operator*()
{
return *this;
}
ostream_iterator & operator++()
{
return *this;
}
ostream_iterator & operator++(int)
{
return *this;
}
private:
ostream_type * sout_;
Char const * delim_;
};
template<typename Delim, typename Char = char,
typename Traits = std::char_traits<Char>>
struct ostream_joiner
{
CPP_assert(semiregular<Delim>);
using difference_type = std::ptrdiff_t;
using char_type = Char;
using traits_type = Traits;
using ostream_type = std::basic_ostream<Char, Traits>;
constexpr ostream_joiner() = default;
ostream_joiner(ostream_type & s, Delim const & d)
: delim_(d)
, sout_(std::addressof(s))
, first_(true)
{}
ostream_joiner(ostream_type & s, Delim && d)
: delim_(std::move(d))
, sout_(std::addressof(s))
, first_(true)
{}
template<typename T>
ostream_joiner & operator=(T const & value)
{
RANGES_EXPECT(sout_);
if(!first_)
*sout_ << delim_;
first_ = false;
*sout_ << value;
return *this;
}
ostream_joiner & operator*() noexcept
{
return *this;
}
ostream_joiner & operator++() noexcept
{
return *this;
}
ostream_joiner & operator++(int) noexcept
{
return *this;
}
private:
Delim delim_;
ostream_type * sout_;
bool first_;
};
struct make_ostream_joiner_fn
{
template(typename Delim, typename Char, typename Traits)(
requires semiregular<detail::decay_t<Delim>>)
ostream_joiner<detail::decay_t<Delim>, Char, Traits> //
operator()(std::basic_ostream<Char, Traits> & s, Delim && d) const
{
return {s, std::forward<Delim>(d)};
}
};
/// \sa `make_ostream_joiner_fn`
RANGES_INLINE_VARIABLE(make_ostream_joiner_fn, make_ostream_joiner)
template<typename Char, typename Traits = std::char_traits<Char>>
struct ostreambuf_iterator
{
public:
typedef ptrdiff_t difference_type;
typedef Char char_type;
typedef Traits traits_type;
typedef std::basic_streambuf<Char, Traits> streambuf_type;
typedef std::basic_ostream<Char, Traits> ostream_type;
constexpr ostreambuf_iterator() = default;
ostreambuf_iterator(ostream_type & s) noexcept
: ostreambuf_iterator(s.rdbuf())
{}
ostreambuf_iterator(streambuf_type * s) noexcept
: sbuf_(s)
{
RANGES_ASSERT(s != nullptr);
}
ostreambuf_iterator & operator=(Char c)
{
RANGES_ASSERT(sbuf_ != nullptr);
if(!failed_)
failed_ = (sbuf_->sputc(c) == Traits::eof());
return *this;
}
ostreambuf_iterator & operator*()
{
return *this;
}
ostreambuf_iterator & operator++()
{
return *this;
}
ostreambuf_iterator & operator++(int)
{
return *this;
}
bool failed() const noexcept
{
return failed_;
}
private:
streambuf_type * sbuf_ = nullptr;
bool failed_ = false;
};
namespace cpp20
{
template<typename T, typename Char = char,
typename Traits = std::char_traits<Char>>
using ostream_iterator = ranges::ostream_iterator<T, Char, Traits>;
using ranges::ostreambuf_iterator;
} // namespace cpp20
/// \brief Writes to an ostream object using the unformatted
/// `std::basic_ostream::write` operation. This means that `32` will be encoded as
/// `100000` as opposed to the string "32".
///
template<typename CharT = char, typename Traits = std::char_traits<CharT>>
class unformatted_ostream_iterator final
{
public:
using iterator_category = std::output_iterator_tag;
using difference_type = std::ptrdiff_t;
using char_type = CharT;
using traits_type = Traits;
using ostream_type = std::basic_ostream<CharT, Traits>;
unformatted_ostream_iterator() = default;
explicit unformatted_ostream_iterator(ostream_type & out) noexcept
: out_(&out)
{}
template<typename T>
// requires stream_insertible<T, ostream_type>
unformatted_ostream_iterator & operator=(T const & t)
{
RANGES_EXPECT(out_);
out_->write(reinterpret_cast<char const *>(std::addressof(t)), sizeof(T));
return *this;
}
unformatted_ostream_iterator & operator*() noexcept
{
return *this;
}
unformatted_ostream_iterator & operator++() noexcept
{
return *this;
}
unformatted_ostream_iterator & operator++(int) noexcept
{
return *this;
}
private:
ostream_type * out_ = nullptr;
};
/// @}
} // namespace ranges
/// \cond
RANGES_DIAGNOSTIC_PUSH
RANGES_DIAGNOSTIC_IGNORE_MISMATCHED_TAGS
namespace std
{
template<typename T, typename Char, typename Traits>
struct iterator_traits<::ranges::ostream_iterator<T, Char, Traits>>
: ::ranges::detail::std_output_iterator_traits<>
{};
template<typename Char, typename Traits>
struct iterator_traits<::ranges::ostreambuf_iterator<Char, Traits>>
: ::ranges::detail::std_output_iterator_traits<>
{};
} // namespace std
RANGES_DIAGNOSTIC_POP
/// \endcond
#include <range/v3/detail/epilogue.hpp>
#endif // RANGES_V3_ITERATOR_STREAM_ITERATORS_HPP
|