std::basic_string
. (Paraphrased from [27.7.1]/1.)
For this class, open modes (of type ios_base::openmode
) have in
set if the input sequence can be read, and out
set if the output sequence can be written.
Definition at line 62 of file sstream.
|
These are standard types. They permit a standardized way of referring to names of (or names dependant on) the template parameters, which are specific to the implementation. Reimplemented from basic_streambuf. |
|
Starts with an empty string buffer.
|
|
Starts with an existing string buffer.
|
|
Access to the get area. These functions are only available to other protected functions, including derived classes.
Definition at line 456 of file streambuf. Referenced by basic_filebuf::imbue(), basic_stringbuf::overflow(), basic_stringbuf::seekoff(), basic_filebuf::seekoff(), basic_stringbuf::seekpos(), basic_streambuf< char_type, traits_type >::sputbackc(), and basic_filebuf::underflow(). |
|
Moving the read position.
Definition at line 472 of file streambuf. Referenced by basic_stringbuf::pbackfail(), basic_filebuf::pbackfail(), basic_streambuf< char_type, traits_type >::sbumpc(), basic_stringbuf::seekoff(), basic_stringbuf::seekpos(), basic_streambuf< char_type, traits_type >::sputbackc(), basic_streambuf< char_type, traits_type >::stossc(), basic_streambuf< char_type, traits_type >::sungetc(), basic_streambuf< char_type, traits_type >::uflow(), and basic_streambuf::xsgetn(). |
|
Locale access.
loc is returned. Otherwise the global locale in effect at the time of construction is returned.
|
|
Changes translations.
Reimplemented in basic_filebuf, and basic_filebuf< char_type, traits_type >. Definition at line 550 of file streambuf. Referenced by basic_streambuf< char_type, traits_type >::pubimbue(). |
|
Looking ahead into the stream.
showmanyc() .
|
|
Consumes data from the buffer; writes to the controlled sequence.
eof() .For a formal definiton of this function, see a good text such as Langer & Kreft, or [27.5.2.4.5]/3-7. A functioning output streambuf can be created by overriding only this function (no buffer area will be used).
Reimplemented from basic_streambuf. Definition at line 86 of file sstream.tcc. References basic_string::assign(), basic_string::capacity(), basic_string::data(), basic_streambuf::eback(), std::max(), basic_string::max_size(), std::min(), ios_base::out, basic_streambuf::pbase(), basic_string::reserve(), basic_streambuf::sputc(), and basic_string::swap(). |
|
Tries to back up the input sequence.
Reimplemented from basic_streambuf. Definition at line 52 of file sstream.tcc. References basic_streambuf::gbump(), and ios_base::out. |
|
Access to the put area. These functions are only available to other protected functions, including derived classes.
Definition at line 503 of file streambuf. Referenced by basic_stringbuf::overflow(), basic_filebuf::overflow(), basic_stringbuf::seekoff(), and basic_stringbuf::seekpos(). |
|
Moving the write position.
Definition at line 519 of file streambuf. Referenced by basic_filebuf::overflow(), basic_stringbuf::seekoff(), basic_stringbuf::seekpos(), basic_streambuf< char_type, traits_type >::sputc(), and basic_streambuf::xsputn(). |
|
Entry point for imbue().
|
|
Entry points for derived buffer functions.
The public versions of |
|
Getting the next character.
uflow() .
Definition at line 291 of file streambuf. Referenced by basic_istream::getline(), basic_istream::ignore(), istreambuf_iterator::operator++(), and std::operator>>(). |
|
Alters the stream positions. Each derived class provides its own appropriate behavior.
Reimplemented from basic_streambuf. Definition at line 147 of file sstream.tcc. References ios_base::cur, basic_streambuf::eback(), ios_base::end, basic_streambuf::gbump(), ios_base::in, ios_base::out, basic_streambuf::pbase(), and basic_streambuf::pbump(). |
|
Alters the stream positions. Each derived class provides its own appropriate behavior.
Reimplemented from basic_streambuf. Definition at line 194 of file sstream.tcc. References basic_streambuf::eback(), basic_streambuf::gbump(), ios_base::in, ios_base::out, basic_streambuf::pbase(), and basic_streambuf::pbump(). |
|
Manipulates the buffer.
s is used as a buffer; see http://gcc.gnu.org/onlinedocs/libstdc++/27_io/howto.html#2 for more.
Reimplemented from basic_streambuf. Definition at line 191 of file sstream. References basic_string::assign(). |
|
Setting the three read area pointers.
|
|
Setting the three write area pointers.
|
|
Getting the next character.
underflow() . Does not move the read position after fetching the character.
Definition at line 313 of file streambuf. Referenced by basic_istream::get(), basic_istream::getline(), basic_istream::ignore(), and basic_streambuf< char_type, traits_type >::snextc(). |
|
Entry point for xsgetn.
|
|
Investigating the data available.
underflow() will not return traits::eof() until at least that number of characters have been supplied. If showmanyc() returns -1, then calls to underflow() or uflow() will fail." [27.5.2.4.3]/1
Reimplemented in basic_filebuf, and basic_filebuf< char_type, traits_type >. Definition at line 623 of file streambuf. Referenced by basic_streambuf< char_type, traits_type >::in_avail(). |
|
Getting the next character.
sbumpc() , and if that function returns traits::eof() , so does this function. Otherwise, sgetc() .
Definition at line 273 of file streambuf. Referenced by basic_istream::get(), basic_istream::getline(), and basic_istream::ignore(). |
|
Pushing characters back into the input stream.
Definition at line 346 of file streambuf. Referenced by std::operator>>(), and basic_istream::putback(). |
|
Entry point for all single-character output functions.
If a write position is available for the output sequence (i.e., the buffer is not full), stores c in that position, increments the position, and returns Definition at line 398 of file streambuf. Referenced by basic_istream::get(), ostreambuf_iterator::operator=(), and basic_stringbuf::overflow(). |
|
Entry point for all single-character output functions.
Returns xsputn(s,n). The effect is to write s[0] through s[n-1] to the output sequence, if possible. |
|
Tosses a character. Advances the read pointer, ignoring the character that would have been read. See http://gcc.gnu.org/ml/libstdc++/2002-05/msg00168.html
|
|
Setting a new buffer.
Definition at line 150 of file sstream. References basic_string::assign(), basic_string::data(), and basic_string::size(). |
|
Copying out the string buffer.
Definition at line 128 of file sstream. Referenced by basic_stringstream::str(), basic_ostringstream::str(), and basic_istringstream::str(). |
|
Moving backwards in the input stream.
Definition at line 371 of file streambuf. Referenced by basic_istream::unget(). |
|
Synchronizes the buffer arrays with the controlled sequences.
Reimplemented in stdio_sync_filebuf, basic_filebuf, and basic_filebuf< char_type, traits_type >. |
|
Fetches more data from the controlled sequence.
underflow() , and in fact is required to call that function. It also returns the new character, like underflow() does. However, this function also moves the read position forward by one.
Reimplemented in stdio_sync_filebuf. Definition at line 674 of file streambuf. Referenced by basic_streambuf< char_type, traits_type >::sbumpc(), basic_streambuf< char_type, traits_type >::stossc(), and basic_streambuf::xsgetn(). |
|
Fetches more data from the controlled sequence.
traits::eof() to indicate a null pending sequence.For a formal definiton of the pending sequence, see a good text such as Langer & Kreft, or [27.5.2.4.3]/7-14. A functioning input streambuf can be created by overriding only this function (no buffer area will be used). For an example, see http://gcc.gnu.org/onlinedocs/libstdc++/27_io/howto.html#6
Reimplemented from basic_streambuf. Definition at line 129 of file sstream.tcc. References ios_base::in. |
|
Multiple character extraction.
sbumpc() . Stops when either n characters have been copied, or when traits::eof() would be copied.It is expected that derived classes provide a more efficient implementation by overriding this definition. Reimplemented in basic_filebuf, and basic_filebuf< char_type, traits_type >. Definition at line 50 of file streambuf.tcc. References std::copy(), basic_streambuf::gbump(), std::min(), and basic_streambuf::uflow(). Referenced by basic_streambuf< char_type, traits_type >::sgetn(). |
|
Multiple character insertion.
sputc() . Stops when either n characters have been copied, or when sputc() would return traits::eof() .It is expected that derived classes provide a more efficient implementation by overriding this definition. Reimplemented in basic_filebuf, and basic_filebuf< char_type, traits_type >. Definition at line 84 of file streambuf.tcc. References std::copy(), std::min(), basic_streambuf::overflow(), and basic_streambuf::pbump(). Referenced by basic_streambuf< char_type, traits_type >::sputn(). |