30#ifndef _STREAMBUF_ITERATOR_H
31#define _STREAMBUF_ITERATOR_H 1
33#pragma GCC system_header
38namespace std _GLIBCXX_VISIBILITY(default)
40_GLIBCXX_BEGIN_NAMESPACE_VERSION
49 template<
typename _CharT,
typename _Traits>
51 :
public iterator<input_iterator_tag, _CharT, typename _Traits::off_type,
58#if __cplusplus < 201103L
60#elif __cplusplus > 201703L
73 template<
typename _CharT2>
74 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
79 template<
bool _IsMove,
typename _CharT2>
80 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
85 template<
typename _CharT2,
typename _Size>
86 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
90 template<
typename _CharT2>
91 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
96 template<
typename _CharT2,
typename _Distance>
97 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
117#if __cplusplus > 201703L && __cpp_lib_concepts
122#if __cplusplus >= 201103L
125 ~istreambuf_iterator() =
default;
130 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
134 : _M_sbuf(__s), _M_c(traits_type::eof()) { }
136#if __cplusplus >= 201103L
149#ifdef _GLIBCXX_DEBUG_PEDANTIC
152 __glibcxx_requires_cond(!_S_is_eof(__c),
153 _M_message(__gnu_debug::__msg_deref_istreambuf)
154 ._M_iterator(*
this));
156 return traits_type::to_char_type(__c);
163 __glibcxx_requires_cond(_M_sbuf &&
164 (!_S_is_eof(_M_c) || !_S_is_eof(_M_sbuf->
sgetc())),
165 _M_message(__gnu_debug::__msg_inc_istreambuf)
166 ._M_iterator(*
this));
169 _M_c = traits_type::eof();
177 __glibcxx_requires_cond(_M_sbuf &&
178 (!_S_is_eof(_M_c) || !_S_is_eof(_M_sbuf->
sgetc())),
179 _M_message(__gnu_debug::__msg_inc_istreambuf)
180 ._M_iterator(*
this));
183 __old._M_c = _M_sbuf->
sbumpc();
184 _M_c = traits_type::eof();
194 {
return _M_at_eof() == __b._M_at_eof(); }
201 if (_M_sbuf && _S_is_eof(__ret) && _S_is_eof(__ret = _M_sbuf->
sgetc()))
208 {
return _S_is_eof(_M_get()); }
213 const int_type __eof = traits_type::eof();
214 return traits_type::eq_int_type(__c, __eof);
217#if __cplusplus > 201703L && __cpp_lib_concepts
220 {
return __i._M_at_eof(); }
224 template<
typename _CharT,
typename _Traits>
226 operator==(
const istreambuf_iterator<_CharT, _Traits>& __a,
227 const istreambuf_iterator<_CharT, _Traits>& __b)
228 {
return __a.equal(__b); }
230 template<
typename _CharT,
typename _Traits>
232 operator!=(
const istreambuf_iterator<_CharT, _Traits>& __a,
233 const istreambuf_iterator<_CharT, _Traits>& __b)
234 {
return !__a.equal(__b); }
237 template<
typename _CharT,
typename _Traits>
239 :
public iterator<output_iterator_tag, void, void, void, void>
245#if __cplusplus > 201703L
254 template<
typename _CharT2>
255 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
266#if __cplusplus > 201703L
269 : _M_sbuf(
nullptr), _M_failed(true) { }
274 : _M_sbuf(__s.rdbuf()), _M_failed(!_M_sbuf) { }
278 : _M_sbuf(__s), _M_failed(!_M_sbuf) { }
285 _Traits::eq_int_type(_M_sbuf->
sputc(__c), _Traits::eof()))
308 {
return _M_failed; }
313 if (__builtin_expect(!_M_failed,
true)
314 && __builtin_expect(this->_M_sbuf->
sputn(__ws, __len) != __len,
322 template<
typename _CharT>
323 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
324 ostreambuf_iterator<_CharT> >::__type
325 copy(istreambuf_iterator<_CharT> __first,
326 istreambuf_iterator<_CharT> __last,
327 ostreambuf_iterator<_CharT> __result)
329 if (__first._M_sbuf && !__last._M_sbuf && !__result._M_failed)
332 __copy_streambufs_eof(__first._M_sbuf, __result._M_sbuf, __ineof);
334 __result._M_failed =
true;
339 template<
bool _IsMove,
typename _CharT>
340 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
341 ostreambuf_iterator<_CharT> >::__type
342 __copy_move_a2(_CharT* __first, _CharT* __last,
343 ostreambuf_iterator<_CharT> __result)
347 __result._M_put(__first, __num);
351 template<
bool _IsMove,
typename _CharT>
352 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
353 ostreambuf_iterator<_CharT> >::__type
354 __copy_move_a2(
const _CharT* __first,
const _CharT* __last,
355 ostreambuf_iterator<_CharT> __result)
359 __result._M_put(__first, __num);
363 template<
bool _IsMove,
typename _CharT>
364 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
366 __copy_move_a2(istreambuf_iterator<_CharT> __first,
367 istreambuf_iterator<_CharT> __last, _CharT* __result)
369 typedef istreambuf_iterator<_CharT> __is_iterator_type;
370 typedef typename __is_iterator_type::traits_type traits_type;
371 typedef typename __is_iterator_type::streambuf_type streambuf_type;
372 typedef typename traits_type::int_type int_type;
374 if (__first._M_sbuf && !__last._M_sbuf)
376 streambuf_type* __sb = __first._M_sbuf;
377 int_type __c = __sb->sgetc();
378 while (!traits_type::eq_int_type(__c, traits_type::eof()))
380 const streamsize __n = __sb->egptr() - __sb->gptr();
383 traits_type::copy(__result, __sb->gptr(), __n);
384 __sb->__safe_gbump(__n);
386 __c = __sb->underflow();
390 *__result++ = traits_type::to_char_type(__c);
391 __c = __sb->snextc();
398 template<
typename _CharT,
typename _Size>
399 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
401 __copy_n_a(istreambuf_iterator<_CharT> __it, _Size __n, _CharT* __result,
402 bool __strict __attribute__((__unused__)))
407 __glibcxx_requires_cond(__it._M_sbuf,
408 _M_message(__gnu_debug::__msg_inc_istreambuf)
410 _CharT* __beg = __result;
411 __result += __it._M_sbuf->sgetn(__beg, __n);
412 __glibcxx_requires_cond(!__strict || __result - __beg == __n,
413 _M_message(__gnu_debug::__msg_inc_istreambuf)
418 template<
typename _CharT>
419 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
420 istreambuf_iterator<_CharT> >::__type
421 find(istreambuf_iterator<_CharT> __first,
422 istreambuf_iterator<_CharT> __last,
const _CharT& __val)
424 typedef istreambuf_iterator<_CharT> __is_iterator_type;
425 typedef typename __is_iterator_type::traits_type traits_type;
426 typedef typename __is_iterator_type::streambuf_type streambuf_type;
427 typedef typename traits_type::int_type int_type;
428 const int_type __eof = traits_type::eof();
430 if (__first._M_sbuf && !__last._M_sbuf)
432 const int_type __ival = traits_type::to_int_type(__val);
433 streambuf_type* __sb = __first._M_sbuf;
434 int_type __c = __sb->sgetc();
435 while (!traits_type::eq_int_type(__c, __eof)
436 && !traits_type::eq_int_type(__c, __ival))
438 streamsize __n = __sb->egptr() - __sb->gptr();
441 const _CharT* __p = traits_type::find(__sb->gptr(),
444 __n = __p - __sb->gptr();
445 __sb->__safe_gbump(__n);
449 __c = __sb->snextc();
452 __first._M_c = __eof;
458 template<
typename _CharT,
typename _Distance>
459 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
461 advance(istreambuf_iterator<_CharT>& __i, _Distance __n)
466 __glibcxx_assert(__n > 0);
467 __glibcxx_requires_cond(!__i._M_at_eof(),
468 _M_message(__gnu_debug::__msg_inc_istreambuf)
471 typedef istreambuf_iterator<_CharT> __is_iterator_type;
472 typedef typename __is_iterator_type::traits_type traits_type;
473 typedef typename __is_iterator_type::streambuf_type streambuf_type;
474 typedef typename traits_type::int_type int_type;
475 const int_type __eof = traits_type::eof();
477 streambuf_type* __sb = __i._M_sbuf;
480 streamsize __size = __sb->egptr() - __sb->gptr();
483 __sb->__safe_gbump(__n);
487 __sb->__safe_gbump(__size);
489 if (traits_type::eq_int_type(__sb->underflow(), __eof))
491 __glibcxx_requires_cond(__n == 0,
492 _M_message(__gnu_debug::__msg_inc_istreambuf)
503_GLIBCXX_END_NAMESPACE_VERSION
ISO C++ entities toplevel namespace is std.
ptrdiff_t streamsize
Integral type for I/O operation counts and buffer sizes.
constexpr void advance(_InputIterator &__i, _Distance __n)
A generalization of pointer arithmetic.
The actual work of input and output (interface).
streamsize sputn(const char_type *__s, streamsize __n)
Entry point for all single-character output functions.
int_type sbumpc()
Getting the next character.
int_type sgetc()
Getting the next character.
int_type sputc(char_type __c)
Entry point for all single-character output functions.
Template class basic_istream.
Template class basic_ostream.
Provides input iterator semantics for streambufs.
basic_streambuf< _CharT, _Traits > streambuf_type
Public typedefs.
constexpr istreambuf_iterator() noexcept
Construct end of input stream iterator.
basic_istream< _CharT, _Traits > istream_type
Public typedefs.
char_type operator*() const
Return the current character pointed to by iterator. This returns streambuf.sgetc()....
bool equal(const istreambuf_iterator &__b) const
Return true both iterators are end or both are not end.
istreambuf_iterator & operator++()
Advance the iterator. Calls streambuf.sbumpc().
_Traits traits_type
Public typedefs.
istreambuf_iterator(istream_type &__s) noexcept
Construct start of input stream iterator.
istreambuf_iterator operator++(int)
Advance the iterator. Calls streambuf.sbumpc().
_CharT char_type
Public typedefs.
istreambuf_iterator(streambuf_type *__s) noexcept
Construct start of streambuf iterator.
_Traits::int_type int_type
Public typedefs.
Provides output iterator semantics for streambufs.
ostreambuf_iterator & operator++(int)
Return *this.
ostreambuf_iterator & operator++()
Return *this.
bool failed() const noexcept
Return true if previous operator=() failed.
_Traits traits_type
Public typedefs.
ostreambuf_iterator & operator=(_CharT __c)
Write character to streambuf. Calls streambuf.sputc().
ostreambuf_iterator & operator*()
Return *this.
basic_ostream< _CharT, _Traits > ostream_type
Public typedefs.
basic_streambuf< _CharT, _Traits > streambuf_type
Public typedefs.
ostreambuf_iterator(ostream_type &__s) noexcept
Construct output iterator from ostream.
_CharT char_type
Public typedefs.
ostreambuf_iterator(streambuf_type *__s) noexcept
Construct output iterator from streambuf.
_CharT * pointer
This type represents a pointer-to-value_type.
void difference_type
Distance between iterators is represented as this type.
_CharT reference
This type represents a reference-to-value_type.