1 // Stream buffer classes -*- C++ -*-
3 // Copyright (C) 1997-2020 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file include/streambuf
26 * This is a Standard C++ Library header.
30 // ISO C++ 14882: 27.5 Stream buffers
33 #ifndef _GLIBXX_STREAMBUF
34 #define _GLIBXX_STREAMBUF 1
36 #pragma GCC system_header
38 #include <bits/c++config.h>
40 #include <bits/localefwd.h>
41 #include <bits/ios_base.h>
42 #include <bits/cpp_type_traits.h>
43 #include <ext/type_traits.h>
45 namespace std _GLIBCXX_VISIBILITY(default)
47 _GLIBCXX_BEGIN_NAMESPACE_VERSION
49 #define _IsUnused __attribute__ ((__unused__))
51 template<typename _CharT, typename _Traits>
53 __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>*,
54 basic_streambuf<_CharT, _Traits>*, bool&);
57 * @brief The actual work of input and output (interface).
60 * @tparam _CharT Type of character stream.
61 * @tparam _Traits Traits for character type, defaults to
62 * char_traits<_CharT>.
64 * This is a base class. Derived stream buffers each control a
65 * pair of character sequences: one for input, and one for output.
67 * Section [27.5.1] of the standard describes the requirements and
68 * behavior of stream buffer classes. That section (three paragraphs)
69 * is reproduced here, for simplicity and accuracy.
71 * -# Stream buffers can impose various constraints on the sequences
72 * they control. Some constraints are:
73 * - The controlled input sequence can be not readable.
74 * - The controlled output sequence can be not writable.
75 * - The controlled sequences can be associated with the contents of
76 * other representations for character sequences, such as external
78 * - The controlled sequences can support operations @e directly to or
79 * from associated sequences.
80 * - The controlled sequences can impose limitations on how the
81 * program can read characters from a sequence, write characters to
82 * a sequence, put characters back into an input sequence, or alter
83 * the stream position.
85 * -# Each sequence is characterized by three pointers which, if non-null,
86 * all point into the same @c charT array object. The array object
87 * represents, at any moment, a (sub)sequence of characters from the
88 * sequence. Operations performed on a sequence alter the values
89 * stored in these pointers, perform reads and writes directly to or
90 * from associated sequences, and alter <em>the stream position</em> and
91 * conversion state as needed to maintain this subsequence relationship.
92 * The three pointers are:
93 * - the <em>beginning pointer</em>, or lowest element address in the
94 * array (called @e xbeg here);
95 * - the <em>next pointer</em>, or next element address that is a
96 * current candidate for reading or writing (called @e xnext here);
97 * - the <em>end pointer</em>, or first element address beyond the
98 * end of the array (called @e xend here).
100 * -# The following semantic constraints shall always apply for any set
101 * of three pointers for a sequence, using the pointer names given
103 * - If @e xnext is not a null pointer, then @e xbeg and @e xend shall
104 * also be non-null pointers into the same @c charT array, as
105 * described above; otherwise, @e xbeg and @e xend shall also be null.
106 * - If @e xnext is not a null pointer and @e xnext < @e xend for an
107 * output sequence, then a <em>write position</em> is available.
108 * In this case, @e *xnext shall be assignable as the next element
109 * to write (to put, or to store a character value, into the sequence).
110 * - If @e xnext is not a null pointer and @e xbeg < @e xnext for an
111 * input sequence, then a <em>putback position</em> is available.
112 * In this case, @e xnext[-1] shall have a defined value and is the
113 * next (preceding) element to store a character that is put back
114 * into the input sequence.
115 * - If @e xnext is not a null pointer and @e xnext< @e xend for an
116 * input sequence, then a <em>read position</em> is available.
117 * In this case, @e *xnext shall have a defined value and is the
118 * next element to read (to get, or to obtain a character value,
119 * from the sequence).
121 template<typename _CharT, typename _Traits>
122 class basic_streambuf
127 * These are standard types. They permit a standardized way of
128 * referring to names of (or names dependent on) the template
129 * parameters, which are specific to the implementation.
131 typedef _CharT char_type;
132 typedef _Traits traits_type;
133 typedef typename traits_type::int_type int_type;
134 typedef typename traits_type::pos_type pos_type;
135 typedef typename traits_type::off_type off_type;
139 /// This is a non-standard type.
140 typedef basic_streambuf<char_type, traits_type> __streambuf_type;
143 friend class basic_ios<char_type, traits_type>;
144 friend class basic_istream<char_type, traits_type>;
145 friend class basic_ostream<char_type, traits_type>;
146 friend class istreambuf_iterator<char_type, traits_type>;
147 friend class ostreambuf_iterator<char_type, traits_type>;
150 __copy_streambufs_eof<>(basic_streambuf*, basic_streambuf*, bool&);
152 template<bool _IsMove, typename _CharT2>
153 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
155 __copy_move_a2(istreambuf_iterator<_CharT2>,
156 istreambuf_iterator<_CharT2>, _CharT2*);
158 template<typename _CharT2>
159 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
160 istreambuf_iterator<_CharT2> >::__type
161 find(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>,
164 template<typename _CharT2, typename _Distance>
165 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
167 advance(istreambuf_iterator<_CharT2>&, _Distance);
169 template<typename _CharT2, typename _Traits2>
170 friend basic_istream<_CharT2, _Traits2>&
171 operator>>(basic_istream<_CharT2, _Traits2>&, _CharT2*);
173 template<typename _CharT2, typename _Traits2, typename _Alloc>
174 friend basic_istream<_CharT2, _Traits2>&
175 operator>>(basic_istream<_CharT2, _Traits2>&,
176 basic_string<_CharT2, _Traits2, _Alloc>&);
178 template<typename _CharT2, typename _Traits2, typename _Alloc>
179 friend basic_istream<_CharT2, _Traits2>&
180 getline(basic_istream<_CharT2, _Traits2>&,
181 basic_string<_CharT2, _Traits2, _Alloc>&, _CharT2);
185 * This is based on _IO_FILE, just reordered to be more consistent,
186 * and is intended to be the most minimal abstraction for an
188 * - get == input == read
189 * - put == output == write
191 char_type* _M_in_beg; ///< Start of get area.
192 char_type* _M_in_cur; ///< Current read area.
193 char_type* _M_in_end; ///< End of get area.
194 char_type* _M_out_beg; ///< Start of put area.
195 char_type* _M_out_cur; ///< Current put area.
196 char_type* _M_out_end; ///< End of put area.
198 /// Current locale setting.
199 locale _M_buf_locale;
202 /// Destructor deallocates no buffer space.
207 // [27.5.2.2.1] locales
209 * @brief Entry point for imbue().
210 * @param __loc The new locale.
211 * @return The previous locale.
213 * Calls the derived imbue(__loc).
216 pubimbue(const locale& __loc)
218 locale __tmp(this->getloc());
220 _M_buf_locale = __loc;
225 * @brief Locale access.
226 * @return The current locale in effect.
228 * If pubimbue(loc) has been called, then the most recent @c loc
229 * is returned. Otherwise the global locale in effect at the time
230 * of construction is returned.
234 { return _M_buf_locale; }
236 // [27.5.2.2.2] buffer management and positioning
239 * @brief Entry points for derived buffer functions.
241 * The public versions of @c pubfoo dispatch to the protected
242 * derived @c foo member functions, passing the arguments (if any)
243 * and returning the result unchanged.
246 pubsetbuf(char_type* __s, streamsize __n)
247 { return this->setbuf(__s, __n); }
250 * @brief Alters the stream position.
251 * @param __off Offset.
252 * @param __way Value for ios_base::seekdir.
253 * @param __mode Value for ios_base::openmode.
255 * Calls virtual seekoff function.
258 pubseekoff(off_type __off, ios_base::seekdir __way,
259 ios_base::openmode __mode = ios_base::in | ios_base::out)
260 { return this->seekoff(__off, __way, __mode); }
263 * @brief Alters the stream position.
264 * @param __sp Position
265 * @param __mode Value for ios_base::openmode.
267 * Calls virtual seekpos function.
270 pubseekpos(pos_type __sp,
271 ios_base::openmode __mode = ios_base::in | ios_base::out)
272 { return this->seekpos(__sp, __mode); }
275 * @brief Calls virtual sync function.
278 pubsync() { return this->sync(); }
281 // [27.5.2.2.3] get area
283 * @brief Looking ahead into the stream.
284 * @return The number of characters available.
286 * If a read position is available, returns the number of characters
287 * available for reading before the buffer must be refilled.
288 * Otherwise returns the derived @c showmanyc().
293 const streamsize __ret = this->egptr() - this->gptr();
294 return __ret ? __ret : this->showmanyc();
298 * @brief Getting the next character.
299 * @return The next character, or eof.
301 * Calls @c sbumpc(), and if that function returns
302 * @c traits::eof(), so does this function. Otherwise, @c sgetc().
307 int_type __ret = traits_type::eof();
308 if (__builtin_expect(!traits_type::eq_int_type(this->sbumpc(),
310 __ret = this->sgetc();
315 * @brief Getting the next character.
316 * @return The next character, or eof.
318 * If the input read position is available, returns that character
319 * and increments the read pointer, otherwise calls and returns
326 if (__builtin_expect(this->gptr() < this->egptr(), true))
328 __ret = traits_type::to_int_type(*this->gptr());
332 __ret = this->uflow();
337 * @brief Getting the next character.
338 * @return The next character, or eof.
340 * If the input read position is available, returns that character,
341 * otherwise calls and returns @c underflow(). Does not move the
342 * read position after fetching the character.
348 if (__builtin_expect(this->gptr() < this->egptr(), true))
349 __ret = traits_type::to_int_type(*this->gptr());
351 __ret = this->underflow();
356 * @brief Entry point for xsgetn.
357 * @param __s A buffer area.
358 * @param __n A count.
360 * Returns xsgetn(__s,__n). The effect is to fill @a __s[0] through
361 * @a __s[__n-1] with characters from the input sequence, if possible.
364 sgetn(char_type* __s, streamsize __n)
365 { return this->xsgetn(__s, __n); }
367 // [27.5.2.2.4] putback
369 * @brief Pushing characters back into the input stream.
370 * @param __c The character to push back.
371 * @return The previous character, if possible.
373 * Similar to sungetc(), but @a __c is pushed onto the stream
374 * instead of <em>the previous character.</em> If successful,
375 * the next character fetched from the input stream will be @a
379 sputbackc(char_type __c)
382 const bool __testpos = this->eback() < this->gptr();
383 if (__builtin_expect(!__testpos ||
384 !traits_type::eq(__c, this->gptr()[-1]), false))
385 __ret = this->pbackfail(traits_type::to_int_type(__c));
389 __ret = traits_type::to_int_type(*this->gptr());
395 * @brief Moving backwards in the input stream.
396 * @return The previous character, if possible.
398 * If a putback position is available, this function decrements
399 * the input pointer and returns that character. Otherwise,
400 * calls and returns pbackfail(). The effect is to @a unget
401 * the last character @a gotten.
407 if (__builtin_expect(this->eback() < this->gptr(), true))
410 __ret = traits_type::to_int_type(*this->gptr());
413 __ret = this->pbackfail();
417 // [27.5.2.2.5] put area
419 * @brief Entry point for all single-character output functions.
420 * @param __c A character to output.
421 * @return @a __c, if possible.
423 * One of two public output functions.
425 * If a write position is available for the output sequence (i.e.,
426 * the buffer is not full), stores @a __c in that position, increments
427 * the position, and returns @c traits::to_int_type(__c). If a write
428 * position is not available, returns @c overflow(__c).
434 if (__builtin_expect(this->pptr() < this->epptr(), true))
438 __ret = traits_type::to_int_type(__c);
441 __ret = this->overflow(traits_type::to_int_type(__c));
446 * @brief Entry point for all single-character output functions.
447 * @param __s A buffer read area.
448 * @param __n A count.
450 * One of two public output functions.
453 * Returns xsputn(__s,__n). The effect is to write @a __s[0] through
454 * @a __s[__n-1] to the output sequence, if possible.
457 sputn(const char_type* __s, streamsize __n)
458 { return this->xsputn(__s, __n); }
462 * @brief Base constructor.
464 * Only called from derived constructors, and sets up all the
465 * buffer data to zero, including the pointers described in the
466 * basic_streambuf class description. Note that, as a result,
467 * - the class starts with no read nor write positions available,
468 * - this is not an error
471 : _M_in_beg(0), _M_in_cur(0), _M_in_end(0),
472 _M_out_beg(0), _M_out_cur(0), _M_out_end(0),
473 _M_buf_locale(locale())
476 // [27.5.2.3.1] get area access
479 * @brief Access to the get area.
481 * These functions are only available to other protected functions,
482 * including derived classes.
484 * - eback() returns the beginning pointer for the input sequence
485 * - gptr() returns the next pointer for the input sequence
486 * - egptr() returns the end pointer for the input sequence
489 eback() const { return _M_in_beg; }
492 gptr() const { return _M_in_cur; }
495 egptr() const { return _M_in_end; }
499 * @brief Moving the read position.
500 * @param __n The delta by which to move.
502 * This just advances the read position without returning any data.
505 gbump(int __n) { _M_in_cur += __n; }
508 * @brief Setting the three read area pointers.
509 * @param __gbeg A pointer.
510 * @param __gnext A pointer.
511 * @param __gend A pointer.
512 * @post @a __gbeg == @c eback(), @a __gnext == @c gptr(), and
513 * @a __gend == @c egptr()
516 setg(char_type* __gbeg, char_type* __gnext, char_type* __gend)
523 // [27.5.2.3.2] put area access
526 * @brief Access to the put area.
528 * These functions are only available to other protected functions,
529 * including derived classes.
531 * - pbase() returns the beginning pointer for the output sequence
532 * - pptr() returns the next pointer for the output sequence
533 * - epptr() returns the end pointer for the output sequence
536 pbase() const { return _M_out_beg; }
539 pptr() const { return _M_out_cur; }
542 epptr() const { return _M_out_end; }
546 * @brief Moving the write position.
547 * @param __n The delta by which to move.
549 * This just advances the write position without returning any data.
552 pbump(int __n) { _M_out_cur += __n; }
555 * @brief Setting the three write area pointers.
556 * @param __pbeg A pointer.
557 * @param __pend A pointer.
558 * @post @a __pbeg == @c pbase(), @a __pbeg == @c pptr(), and
559 * @a __pend == @c epptr()
562 setp(char_type* __pbeg, char_type* __pend)
564 _M_out_beg = _M_out_cur = __pbeg;
568 // [27.5.2.4] virtual functions
569 // [27.5.2.4.1] locales
571 * @brief Changes translations.
572 * @param __loc A new locale.
574 * Translations done during I/O which depend on the current
575 * locale are changed by this call. The standard adds,
576 * <em>Between invocations of this function a class derived
577 * from streambuf can safely cache results of calls to locale
578 * functions and to members of facets so obtained.</em>
580 * @note Base class version does nothing.
583 imbue(const locale& __loc _IsUnused)
586 // [27.5.2.4.2] buffer management and positioning
588 * @brief Manipulates the buffer.
590 * Each derived class provides its own appropriate behavior. See
591 * the next-to-last paragraph of
592 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/streambufs.html#io.streambuf.buffering
593 * for more on this function.
595 * @note Base class version does nothing, returns @c this.
597 virtual basic_streambuf<char_type,_Traits>*
598 setbuf(char_type*, streamsize)
602 * @brief Alters the stream positions.
604 * Each derived class provides its own appropriate behavior.
605 * @note Base class version does nothing, returns a @c pos_type
606 * that represents an invalid stream position.
609 seekoff(off_type, ios_base::seekdir,
610 ios_base::openmode /*__mode*/ = ios_base::in | ios_base::out)
611 { return pos_type(off_type(-1)); }
614 * @brief Alters the stream positions.
616 * Each derived class provides its own appropriate behavior.
617 * @note Base class version does nothing, returns a @c pos_type
618 * that represents an invalid stream position.
622 ios_base::openmode /*__mode*/ = ios_base::in | ios_base::out)
623 { return pos_type(off_type(-1)); }
626 * @brief Synchronizes the buffer arrays with the controlled sequences.
627 * @return -1 on failure.
629 * Each derived class provides its own appropriate behavior,
630 * including the definition of @a failure.
631 * @note Base class version does nothing, returns zero.
636 // [27.5.2.4.3] get area
638 * @brief Investigating the data available.
639 * @return An estimate of the number of characters available in the
640 * input sequence, or -1.
642 * <em>If it returns a positive value, then successive calls to
643 * @c underflow() will not return @c traits::eof() until at
644 * least that number of characters have been supplied. If @c
645 * showmanyc() returns -1, then calls to @c underflow() or @c
646 * uflow() will fail.</em> [27.5.2.4.3]/1
648 * @note Base class version does nothing, returns zero.
649 * @note The standard adds that <em>the intention is not only that the
650 * calls [to underflow or uflow] will not return @c eof() but
651 * that they will return immediately.</em>
652 * @note The standard adds that <em>the morphemes of @c showmanyc are
653 * @b es-how-many-see, not @b show-manic.</em>
656 showmanyc() { return 0; }
659 * @brief Multiple character extraction.
660 * @param __s A buffer area.
661 * @param __n Maximum number of characters to assign.
662 * @return The number of characters assigned.
664 * Fills @a __s[0] through @a __s[__n-1] with characters from the input
665 * sequence, as if by @c sbumpc(). Stops when either @a __n characters
666 * have been copied, or when @c traits::eof() would be copied.
668 * It is expected that derived classes provide a more efficient
669 * implementation by overriding this definition.
672 xsgetn(char_type* __s, streamsize __n);
675 * @brief Fetches more data from the controlled sequence.
676 * @return The first character from the <em>pending sequence</em>.
678 * Informally, this function is called when the input buffer is
679 * exhausted (or does not exist, as buffering need not actually be
680 * done). If a buffer exists, it is @a refilled. In either case, the
681 * next available character is returned, or @c traits::eof() to
682 * indicate a null pending sequence.
684 * For a formal definition of the pending sequence, see a good text
685 * such as Langer & Kreft, or [27.5.2.4.3]/7-14.
687 * A functioning input streambuf can be created by overriding only
688 * this function (no buffer area will be used). For an example, see
689 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/streambufs.html
691 * @note Base class version does nothing, returns eof().
695 { return traits_type::eof(); }
698 * @brief Fetches more data from the controlled sequence.
699 * @return The first character from the <em>pending sequence</em>.
701 * Informally, this function does the same thing as @c underflow(),
702 * and in fact is required to call that function. It also returns
703 * the new character, like @c underflow() does. However, this
704 * function also moves the read position forward by one.
709 int_type __ret = traits_type::eof();
710 const bool __testeof = traits_type::eq_int_type(this->underflow(),
714 __ret = traits_type::to_int_type(*this->gptr());
720 // [27.5.2.4.4] putback
722 * @brief Tries to back up the input sequence.
723 * @param __c The character to be inserted back into the sequence.
724 * @return eof() on failure, <em>some other value</em> on success
725 * @post The constraints of @c gptr(), @c eback(), and @c pptr()
726 * are the same as for @c underflow().
728 * @note Base class version does nothing, returns eof().
731 pbackfail(int_type __c _IsUnused = traits_type::eof())
732 { return traits_type::eof(); }
736 * @brief Multiple character insertion.
737 * @param __s A buffer area.
738 * @param __n Maximum number of characters to write.
739 * @return The number of characters written.
741 * Writes @a __s[0] through @a __s[__n-1] to the output sequence, as if
742 * by @c sputc(). Stops when either @a n characters have been
743 * copied, or when @c sputc() would return @c traits::eof().
745 * It is expected that derived classes provide a more efficient
746 * implementation by overriding this definition.
749 xsputn(const char_type* __s, streamsize __n);
752 * @brief Consumes data from the buffer; writes to the
753 * controlled sequence.
754 * @param __c An additional character to consume.
755 * @return eof() to indicate failure, something else (usually
756 * @a __c, or not_eof())
758 * Informally, this function is called when the output buffer
759 * is full (or does not exist, as buffering need not actually
760 * be done). If a buffer exists, it is @a consumed, with
761 * <em>some effect</em> on the controlled sequence.
762 * (Typically, the buffer is written out to the sequence
763 * verbatim.) In either case, the character @a c is also
764 * written out, if @a __c is not @c eof().
766 * For a formal definition of this function, see a good text
767 * such as Langer & Kreft, or [27.5.2.4.5]/3-7.
769 * A functioning output streambuf can be created by overriding only
770 * this function (no buffer area will be used).
772 * @note Base class version does nothing, returns eof().
775 overflow(int_type __c _IsUnused = traits_type::eof())
776 { return traits_type::eof(); }
778 #if _GLIBCXX_USE_DEPRECATED && __cplusplus <= 201402L
779 // Annex D.6 (removed in C++17)
782 * @brief Tosses a character.
784 * Advances the read pointer, ignoring the character that would have
787 * See http://gcc.gnu.org/ml/libstdc++/2002-05/msg00168.html
789 _GLIBCXX_DEPRECATED_SUGGEST("std::basic_streambuf::sbumpc")
793 if (this->gptr() < this->egptr())
800 // Also used by specializations for char and wchar_t in src.
802 __safe_gbump(streamsize __n) { _M_in_cur += __n; }
805 __safe_pbump(streamsize __n) { _M_out_cur += __n; }
807 #if __cplusplus < 201103L
812 basic_streambuf(const basic_streambuf&);
815 operator=(const basic_streambuf&);
817 #if __cplusplus >= 201103L
819 swap(basic_streambuf& __sb)
821 std::swap(_M_in_beg, __sb._M_in_beg);
822 std::swap(_M_in_cur, __sb._M_in_cur);
823 std::swap(_M_in_end, __sb._M_in_end);
824 std::swap(_M_out_beg, __sb._M_out_beg);
825 std::swap(_M_out_cur, __sb._M_out_cur);
826 std::swap(_M_out_end, __sb._M_out_end);
827 std::swap(_M_buf_locale, __sb._M_buf_locale);
832 #if __cplusplus >= 201103L
833 template<typename _CharT, typename _Traits>
834 std::basic_streambuf<_CharT, _Traits>::
835 basic_streambuf(const basic_streambuf&) = default;
837 template<typename _CharT, typename _Traits>
838 std::basic_streambuf<_CharT, _Traits>&
839 std::basic_streambuf<_CharT, _Traits>::
840 operator=(const basic_streambuf&) = default;
843 // Explicit specialization declarations, defined in src/streambuf.cc.
846 __copy_streambufs_eof(basic_streambuf<char>* __sbin,
847 basic_streambuf<char>* __sbout, bool& __ineof);
848 #ifdef _GLIBCXX_USE_WCHAR_T
851 __copy_streambufs_eof(basic_streambuf<wchar_t>* __sbin,
852 basic_streambuf<wchar_t>* __sbout, bool& __ineof);
857 _GLIBCXX_END_NAMESPACE_VERSION
860 #include <bits/streambuf.tcc>
862 #endif /* _GLIBCXX_STREAMBUF */