libstdc++
|
00001 // String based streams -*- C++ -*- 00002 00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 00004 // 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 00005 // 00006 // This file is part of the GNU ISO C++ Library. This library is free 00007 // software; you can redistribute it and/or modify it under the 00008 // terms of the GNU General Public License as published by the 00009 // Free Software Foundation; either version 3, or (at your option) 00010 // any later version. 00011 00012 // This library is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 00017 // Under Section 7 of GPL version 3, you are granted additional 00018 // permissions described in the GCC Runtime Library Exception, version 00019 // 3.1, as published by the Free Software Foundation. 00020 00021 // You should have received a copy of the GNU General Public License and 00022 // a copy of the GCC Runtime Library Exception along with this program; 00023 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 00024 // <http://www.gnu.org/licenses/>. 00025 00026 /** @file include/sstream 00027 * This is a Standard C++ Library header. 00028 */ 00029 00030 // 00031 // ISO C++ 14882: 27.7 String-based streams 00032 // 00033 00034 #ifndef _GLIBCXX_SSTREAM 00035 #define _GLIBCXX_SSTREAM 1 00036 00037 #pragma GCC system_header 00038 00039 #include <istream> 00040 #include <ostream> 00041 00042 namespace std _GLIBCXX_VISIBILITY(default) 00043 { 00044 _GLIBCXX_BEGIN_NAMESPACE_VERSION 00045 00046 // [27.7.1] template class basic_stringbuf 00047 /** 00048 * @brief The actual work of input and output (for std::string). 00049 * @ingroup io 00050 * 00051 * This class associates either or both of its input and output sequences 00052 * with a sequence of characters, which can be initialized from, or made 00053 * available as, a @c std::basic_string. (Paraphrased from [27.7.1]/1.) 00054 * 00055 * For this class, open modes (of type @c ios_base::openmode) have 00056 * @c in set if the input sequence can be read, and @c out set if the 00057 * output sequence can be written. 00058 */ 00059 template<typename _CharT, typename _Traits, typename _Alloc> 00060 class basic_stringbuf : public basic_streambuf<_CharT, _Traits> 00061 { 00062 public: 00063 // Types: 00064 typedef _CharT char_type; 00065 typedef _Traits traits_type; 00066 // _GLIBCXX_RESOLVE_LIB_DEFECTS 00067 // 251. basic_stringbuf missing allocator_type 00068 typedef _Alloc allocator_type; 00069 typedef typename traits_type::int_type int_type; 00070 typedef typename traits_type::pos_type pos_type; 00071 typedef typename traits_type::off_type off_type; 00072 00073 typedef basic_streambuf<char_type, traits_type> __streambuf_type; 00074 typedef basic_string<char_type, _Traits, _Alloc> __string_type; 00075 typedef typename __string_type::size_type __size_type; 00076 00077 protected: 00078 /// Place to stash in || out || in | out settings for current stringbuf. 00079 ios_base::openmode _M_mode; 00080 00081 // Data Members: 00082 __string_type _M_string; 00083 00084 public: 00085 // Constructors: 00086 /** 00087 * @brief Starts with an empty string buffer. 00088 * @param __mode Whether the buffer can read, or write, or both. 00089 * 00090 * The default constructor initializes the parent class using its 00091 * own default ctor. 00092 */ 00093 explicit 00094 basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out) 00095 : __streambuf_type(), _M_mode(__mode), _M_string() 00096 { } 00097 00098 /** 00099 * @brief Starts with an existing string buffer. 00100 * @param __str A string to copy as a starting buffer. 00101 * @param __mode Whether the buffer can read, or write, or both. 00102 * 00103 * This constructor initializes the parent class using its 00104 * own default ctor. 00105 */ 00106 explicit 00107 basic_stringbuf(const __string_type& __str, 00108 ios_base::openmode __mode = ios_base::in | ios_base::out) 00109 : __streambuf_type(), _M_mode(), _M_string(__str.data(), __str.size()) 00110 { _M_stringbuf_init(__mode); } 00111 00112 // Get and set: 00113 /** 00114 * @brief Copying out the string buffer. 00115 * @return A copy of one of the underlying sequences. 00116 * 00117 * <em>If the buffer is only created in input mode, the underlying 00118 * character sequence is equal to the input sequence; otherwise, it 00119 * is equal to the output sequence.</em> [27.7.1.2]/1 00120 */ 00121 __string_type 00122 str() const 00123 { 00124 __string_type __ret; 00125 if (this->pptr()) 00126 { 00127 // The current egptr() may not be the actual string end. 00128 if (this->pptr() > this->egptr()) 00129 __ret = __string_type(this->pbase(), this->pptr()); 00130 else 00131 __ret = __string_type(this->pbase(), this->egptr()); 00132 } 00133 else 00134 __ret = _M_string; 00135 return __ret; 00136 } 00137 00138 /** 00139 * @brief Setting a new buffer. 00140 * @param __s The string to use as a new sequence. 00141 * 00142 * Deallocates any previous stored sequence, then copies @a s to 00143 * use as a new one. 00144 */ 00145 void 00146 str(const __string_type& __s) 00147 { 00148 // Cannot use _M_string = __s, since v3 strings are COW. 00149 _M_string.assign(__s.data(), __s.size()); 00150 _M_stringbuf_init(_M_mode); 00151 } 00152 00153 protected: 00154 // Common initialization code goes here. 00155 void 00156 _M_stringbuf_init(ios_base::openmode __mode) 00157 { 00158 _M_mode = __mode; 00159 __size_type __len = 0; 00160 if (_M_mode & (ios_base::ate | ios_base::app)) 00161 __len = _M_string.size(); 00162 _M_sync(const_cast<char_type*>(_M_string.data()), 0, __len); 00163 } 00164 00165 virtual streamsize 00166 showmanyc() 00167 { 00168 streamsize __ret = -1; 00169 if (_M_mode & ios_base::in) 00170 { 00171 _M_update_egptr(); 00172 __ret = this->egptr() - this->gptr(); 00173 } 00174 return __ret; 00175 } 00176 00177 virtual int_type 00178 underflow(); 00179 00180 virtual int_type 00181 pbackfail(int_type __c = traits_type::eof()); 00182 00183 virtual int_type 00184 overflow(int_type __c = traits_type::eof()); 00185 00186 /** 00187 * @brief Manipulates the buffer. 00188 * @param __s Pointer to a buffer area. 00189 * @param __n Size of @a __s. 00190 * @return @c this 00191 * 00192 * If no buffer has already been created, and both @a __s and @a __n are 00193 * non-zero, then @c __s is used as a buffer; see 00194 * http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch25s02.html 00195 * for more. 00196 */ 00197 virtual __streambuf_type* 00198 setbuf(char_type* __s, streamsize __n) 00199 { 00200 if (__s && __n >= 0) 00201 { 00202 // This is implementation-defined behavior, and assumes 00203 // that an external char_type array of length __n exists 00204 // and has been pre-allocated. If this is not the case, 00205 // things will quickly blow up. 00206 00207 // Step 1: Destroy the current internal array. 00208 _M_string.clear(); 00209 00210 // Step 2: Use the external array. 00211 _M_sync(__s, __n, 0); 00212 } 00213 return this; 00214 } 00215 00216 virtual pos_type 00217 seekoff(off_type __off, ios_base::seekdir __way, 00218 ios_base::openmode __mode = ios_base::in | ios_base::out); 00219 00220 virtual pos_type 00221 seekpos(pos_type __sp, 00222 ios_base::openmode __mode = ios_base::in | ios_base::out); 00223 00224 // Internal function for correctly updating the internal buffer 00225 // for a particular _M_string, due to initialization or re-sizing 00226 // of an existing _M_string. 00227 void 00228 _M_sync(char_type* __base, __size_type __i, __size_type __o); 00229 00230 // Internal function for correctly updating egptr() to the actual 00231 // string end. 00232 void 00233 _M_update_egptr() 00234 { 00235 const bool __testin = _M_mode & ios_base::in; 00236 if (this->pptr() && this->pptr() > this->egptr()) 00237 { 00238 if (__testin) 00239 this->setg(this->eback(), this->gptr(), this->pptr()); 00240 else 00241 this->setg(this->pptr(), this->pptr(), this->pptr()); 00242 } 00243 } 00244 00245 // Works around the issue with pbump, part of the protected 00246 // interface of basic_streambuf, taking just an int. 00247 void 00248 _M_pbump(char_type* __pbeg, char_type* __pend, off_type __off); 00249 }; 00250 00251 00252 // [27.7.2] Template class basic_istringstream 00253 /** 00254 * @brief Controlling input for std::string. 00255 * @ingroup io 00256 * 00257 * This class supports reading from objects of type std::basic_string, 00258 * using the inherited functions from std::basic_istream. To control 00259 * the associated sequence, an instance of std::basic_stringbuf is used, 00260 * which this page refers to as @c sb. 00261 */ 00262 template<typename _CharT, typename _Traits, typename _Alloc> 00263 class basic_istringstream : public basic_istream<_CharT, _Traits> 00264 { 00265 public: 00266 // Types: 00267 typedef _CharT char_type; 00268 typedef _Traits traits_type; 00269 // _GLIBCXX_RESOLVE_LIB_DEFECTS 00270 // 251. basic_stringbuf missing allocator_type 00271 typedef _Alloc allocator_type; 00272 typedef typename traits_type::int_type int_type; 00273 typedef typename traits_type::pos_type pos_type; 00274 typedef typename traits_type::off_type off_type; 00275 00276 // Non-standard types: 00277 typedef basic_string<_CharT, _Traits, _Alloc> __string_type; 00278 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 00279 typedef basic_istream<char_type, traits_type> __istream_type; 00280 00281 private: 00282 __stringbuf_type _M_stringbuf; 00283 00284 public: 00285 // Constructors: 00286 /** 00287 * @brief Default constructor starts with an empty string buffer. 00288 * @param __mode Whether the buffer can read, or write, or both. 00289 * 00290 * @c ios_base::in is automatically included in @a __mode. 00291 * 00292 * Initializes @c sb using @c __mode|in, and passes @c &sb to the base 00293 * class initializer. Does not allocate any buffer. 00294 * 00295 * That's a lie. We initialize the base class with NULL, because the 00296 * string class does its own memory management. 00297 */ 00298 explicit 00299 basic_istringstream(ios_base::openmode __mode = ios_base::in) 00300 : __istream_type(), _M_stringbuf(__mode | ios_base::in) 00301 { this->init(&_M_stringbuf); } 00302 00303 /** 00304 * @brief Starts with an existing string buffer. 00305 * @param __str A string to copy as a starting buffer. 00306 * @param __mode Whether the buffer can read, or write, or both. 00307 * 00308 * @c ios_base::in is automatically included in @a mode. 00309 * 00310 * Initializes @c sb using @a str and @c mode|in, and passes @c &sb 00311 * to the base class initializer. 00312 * 00313 * That's a lie. We initialize the base class with NULL, because the 00314 * string class does its own memory management. 00315 */ 00316 explicit 00317 basic_istringstream(const __string_type& __str, 00318 ios_base::openmode __mode = ios_base::in) 00319 : __istream_type(), _M_stringbuf(__str, __mode | ios_base::in) 00320 { this->init(&_M_stringbuf); } 00321 00322 /** 00323 * @brief The destructor does nothing. 00324 * 00325 * The buffer is deallocated by the stringbuf object, not the 00326 * formatting stream. 00327 */ 00328 ~basic_istringstream() 00329 { } 00330 00331 // Members: 00332 /** 00333 * @brief Accessing the underlying buffer. 00334 * @return The current basic_stringbuf buffer. 00335 * 00336 * This hides both signatures of std::basic_ios::rdbuf(). 00337 */ 00338 __stringbuf_type* 00339 rdbuf() const 00340 { return const_cast<__stringbuf_type*>(&_M_stringbuf); } 00341 00342 /** 00343 * @brief Copying out the string buffer. 00344 * @return @c rdbuf()->str() 00345 */ 00346 __string_type 00347 str() const 00348 { return _M_stringbuf.str(); } 00349 00350 /** 00351 * @brief Setting a new buffer. 00352 * @param __s The string to use as a new sequence. 00353 * 00354 * Calls @c rdbuf()->str(s). 00355 */ 00356 void 00357 str(const __string_type& __s) 00358 { _M_stringbuf.str(__s); } 00359 }; 00360 00361 00362 // [27.7.3] Template class basic_ostringstream 00363 /** 00364 * @brief Controlling output for std::string. 00365 * @ingroup io 00366 * 00367 * This class supports writing to objects of type std::basic_string, 00368 * using the inherited functions from std::basic_ostream. To control 00369 * the associated sequence, an instance of std::basic_stringbuf is used, 00370 * which this page refers to as @c sb. 00371 */ 00372 template <typename _CharT, typename _Traits, typename _Alloc> 00373 class basic_ostringstream : public basic_ostream<_CharT, _Traits> 00374 { 00375 public: 00376 // Types: 00377 typedef _CharT char_type; 00378 typedef _Traits traits_type; 00379 // _GLIBCXX_RESOLVE_LIB_DEFECTS 00380 // 251. basic_stringbuf missing allocator_type 00381 typedef _Alloc allocator_type; 00382 typedef typename traits_type::int_type int_type; 00383 typedef typename traits_type::pos_type pos_type; 00384 typedef typename traits_type::off_type off_type; 00385 00386 // Non-standard types: 00387 typedef basic_string<_CharT, _Traits, _Alloc> __string_type; 00388 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 00389 typedef basic_ostream<char_type, traits_type> __ostream_type; 00390 00391 private: 00392 __stringbuf_type _M_stringbuf; 00393 00394 public: 00395 // Constructors/destructor: 00396 /** 00397 * @brief Default constructor starts with an empty string buffer. 00398 * @param __mode Whether the buffer can read, or write, or both. 00399 * 00400 * @c ios_base::out is automatically included in @a mode. 00401 * 00402 * Initializes @c sb using @c mode|out, and passes @c &sb to the base 00403 * class initializer. Does not allocate any buffer. 00404 * 00405 * That's a lie. We initialize the base class with NULL, because the 00406 * string class does its own memory management. 00407 */ 00408 explicit 00409 basic_ostringstream(ios_base::openmode __mode = ios_base::out) 00410 : __ostream_type(), _M_stringbuf(__mode | ios_base::out) 00411 { this->init(&_M_stringbuf); } 00412 00413 /** 00414 * @brief Starts with an existing string buffer. 00415 * @param __str A string to copy as a starting buffer. 00416 * @param __mode Whether the buffer can read, or write, or both. 00417 * 00418 * @c ios_base::out is automatically included in @a mode. 00419 * 00420 * Initializes @c sb using @a str and @c mode|out, and passes @c &sb 00421 * to the base class initializer. 00422 * 00423 * That's a lie. We initialize the base class with NULL, because the 00424 * string class does its own memory management. 00425 */ 00426 explicit 00427 basic_ostringstream(const __string_type& __str, 00428 ios_base::openmode __mode = ios_base::out) 00429 : __ostream_type(), _M_stringbuf(__str, __mode | ios_base::out) 00430 { this->init(&_M_stringbuf); } 00431 00432 /** 00433 * @brief The destructor does nothing. 00434 * 00435 * The buffer is deallocated by the stringbuf object, not the 00436 * formatting stream. 00437 */ 00438 ~basic_ostringstream() 00439 { } 00440 00441 // Members: 00442 /** 00443 * @brief Accessing the underlying buffer. 00444 * @return The current basic_stringbuf buffer. 00445 * 00446 * This hides both signatures of std::basic_ios::rdbuf(). 00447 */ 00448 __stringbuf_type* 00449 rdbuf() const 00450 { return const_cast<__stringbuf_type*>(&_M_stringbuf); } 00451 00452 /** 00453 * @brief Copying out the string buffer. 00454 * @return @c rdbuf()->str() 00455 */ 00456 __string_type 00457 str() const 00458 { return _M_stringbuf.str(); } 00459 00460 /** 00461 * @brief Setting a new buffer. 00462 * @param __s The string to use as a new sequence. 00463 * 00464 * Calls @c rdbuf()->str(s). 00465 */ 00466 void 00467 str(const __string_type& __s) 00468 { _M_stringbuf.str(__s); } 00469 }; 00470 00471 00472 // [27.7.4] Template class basic_stringstream 00473 /** 00474 * @brief Controlling input and output for std::string. 00475 * @ingroup io 00476 * 00477 * This class supports reading from and writing to objects of type 00478 * std::basic_string, using the inherited functions from 00479 * std::basic_iostream. To control the associated sequence, an instance 00480 * of std::basic_stringbuf is used, which this page refers to as @c sb. 00481 */ 00482 template <typename _CharT, typename _Traits, typename _Alloc> 00483 class basic_stringstream : public basic_iostream<_CharT, _Traits> 00484 { 00485 public: 00486 // Types: 00487 typedef _CharT char_type; 00488 typedef _Traits traits_type; 00489 // _GLIBCXX_RESOLVE_LIB_DEFECTS 00490 // 251. basic_stringbuf missing allocator_type 00491 typedef _Alloc allocator_type; 00492 typedef typename traits_type::int_type int_type; 00493 typedef typename traits_type::pos_type pos_type; 00494 typedef typename traits_type::off_type off_type; 00495 00496 // Non-standard Types: 00497 typedef basic_string<_CharT, _Traits, _Alloc> __string_type; 00498 typedef basic_stringbuf<_CharT, _Traits, _Alloc> __stringbuf_type; 00499 typedef basic_iostream<char_type, traits_type> __iostream_type; 00500 00501 private: 00502 __stringbuf_type _M_stringbuf; 00503 00504 public: 00505 // Constructors/destructors 00506 /** 00507 * @brief Default constructor starts with an empty string buffer. 00508 * @param __m Whether the buffer can read, or write, or both. 00509 * 00510 * Initializes @c sb using the mode from @c __m, and passes @c 00511 * &sb to the base class initializer. Does not allocate any 00512 * buffer. 00513 * 00514 * That's a lie. We initialize the base class with NULL, because the 00515 * string class does its own memory management. 00516 */ 00517 explicit 00518 basic_stringstream(ios_base::openmode __m = ios_base::out | ios_base::in) 00519 : __iostream_type(), _M_stringbuf(__m) 00520 { this->init(&_M_stringbuf); } 00521 00522 /** 00523 * @brief Starts with an existing string buffer. 00524 * @param __str A string to copy as a starting buffer. 00525 * @param __m Whether the buffer can read, or write, or both. 00526 * 00527 * Initializes @c sb using @a __str and @c __m, and passes @c &sb 00528 * to the base class initializer. 00529 * 00530 * That's a lie. We initialize the base class with NULL, because the 00531 * string class does its own memory management. 00532 */ 00533 explicit 00534 basic_stringstream(const __string_type& __str, 00535 ios_base::openmode __m = ios_base::out | ios_base::in) 00536 : __iostream_type(), _M_stringbuf(__str, __m) 00537 { this->init(&_M_stringbuf); } 00538 00539 /** 00540 * @brief The destructor does nothing. 00541 * 00542 * The buffer is deallocated by the stringbuf object, not the 00543 * formatting stream. 00544 */ 00545 ~basic_stringstream() 00546 { } 00547 00548 // Members: 00549 /** 00550 * @brief Accessing the underlying buffer. 00551 * @return The current basic_stringbuf buffer. 00552 * 00553 * This hides both signatures of std::basic_ios::rdbuf(). 00554 */ 00555 __stringbuf_type* 00556 rdbuf() const 00557 { return const_cast<__stringbuf_type*>(&_M_stringbuf); } 00558 00559 /** 00560 * @brief Copying out the string buffer. 00561 * @return @c rdbuf()->str() 00562 */ 00563 __string_type 00564 str() const 00565 { return _M_stringbuf.str(); } 00566 00567 /** 00568 * @brief Setting a new buffer. 00569 * @param __s The string to use as a new sequence. 00570 * 00571 * Calls @c rdbuf()->str(s). 00572 */ 00573 void 00574 str(const __string_type& __s) 00575 { _M_stringbuf.str(__s); } 00576 }; 00577 00578 _GLIBCXX_END_NAMESPACE_VERSION 00579 } // namespace 00580 00581 #include <bits/sstream.tcc> 00582 00583 #endif /* _GLIBCXX_SSTREAM */