blob: 27ae78f9d45f561e0b103152c9b347064d1e44e1 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- sstream ----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_SSTREAM
12#define _LIBCPP_SSTREAM
13
14/*
15 sstream synopsis
16
17template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
18class basic_stringbuf
19 : public basic_streambuf<charT, traits>
20{
21public:
22 typedef charT char_type;
23 typedef traits traits_type;
24 typedef typename traits_type::int_type int_type;
25 typedef typename traits_type::pos_type pos_type;
26 typedef typename traits_type::off_type off_type;
27 typedef Allocator allocator_type;
28
29 // 27.8.1.1 Constructors:
30 explicit basic_stringbuf(ios_base::openmode which = ios_base::in | ios_base::out);
31 explicit basic_stringbuf(const basic_string<char_type, traits_type, allocator_type>& str,
32 ios_base::openmode which = ios_base::in | ios_base::out);
33 basic_stringbuf(basic_stringbuf&& rhs);
34
35 // 27.8.1.2 Assign and swap:
36 basic_stringbuf& operator=(basic_stringbuf&& rhs);
37 void swap(basic_stringbuf& rhs);
38
39 // 27.8.1.3 Get and set:
40 basic_string<char_type, traits_type, allocator_type> str() const;
41 void str(const basic_string<char_type, traits_type, allocator_type>& s);
42
43protected:
44 // 27.8.1.4 Overridden virtual functions:
45 virtual int_type underflow();
46 virtual int_type pbackfail(int_type c = traits_type::eof());
47 virtual int_type overflow (int_type c = traits_type::eof());
48 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type*, streamsize);
49 virtual pos_type seekoff(off_type off, ios_base::seekdir way,
50 ios_base::openmode which = ios_base::in | ios_base::out);
51 virtual pos_type seekpos(pos_type sp,
52 ios_base::openmode which = ios_base::in | ios_base::out);
53};
54
55template <class charT, class traits, class Allocator>
56 void swap(basic_stringbuf<charT, traits, Allocator>& x,
57 basic_stringbuf<charT, traits, Allocator>& y);
58
59typedef basic_stringbuf<char> stringbuf;
60typedef basic_stringbuf<wchar_t> wstringbuf;
61
62template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
63class basic_istringstream
64 : public basic_istream<charT, traits>
65{
66public:
67 typedef charT char_type;
68 typedef traits traits_type;
69 typedef typename traits_type::int_type int_type;
70 typedef typename traits_type::pos_type pos_type;
71 typedef typename traits_type::off_type off_type;
72 typedef Allocator allocator_type;
73
74 // 27.8.2.1 Constructors:
75 explicit basic_istringstream(ios_base::openmode which = ios_base::in);
76 explicit basic_istringstream(const basic_string<char_type, traits_type,allocator_type>& str,
77 ios_base::openmode which = ios_base::in);
78 basic_istringstream(basic_istringstream&& rhs);
79
80 // 27.8.2.2 Assign and swap:
81 basic_istringstream& operator=(basic_istringstream&& rhs);
82 void swap(basic_istringstream& rhs);
83
84 // 27.8.2.3 Members:
85 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
86 basic_string<char_type, traits_type, allocator_type> str() const;
87 void str(const basic_string<char_type, traits_type, allocator_type>& s);
88};
89
90template <class charT, class traits, class Allocator>
91 void swap(basic_istringstream<charT, traits, Allocator>& x,
92 basic_istringstream<charT, traits, Allocator>& y);
93
94typedef basic_istringstream<char> istringstream;
95typedef basic_istringstream<wchar_t> wistringstream;
96
97template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
98class basic_ostringstream
99 : public basic_ostream<charT, traits>
100{
101public:
102 // types:
103 typedef charT char_type;
104 typedef traits traits_type;
105 typedef typename traits_type::int_type int_type;
106 typedef typename traits_type::pos_type pos_type;
107 typedef typename traits_type::off_type off_type;
108 typedef Allocator allocator_type;
109
110 // 27.8.3.1 Constructors/destructor:
111 explicit basic_ostringstream(ios_base::openmode which = ios_base::out);
112 explicit basic_ostringstream(const basic_string<char_type, traits_type, allocator_type>& str,
113 ios_base::openmode which = ios_base::out);
114 basic_ostringstream(basic_ostringstream&& rhs);
115
116 // 27.8.3.2 Assign/swap:
117 basic_ostringstream& operator=(basic_ostringstream&& rhs);
118 void swap(basic_ostringstream& rhs);
119
120 // 27.8.3.3 Members:
121 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
122 basic_string<char_type, traits_type, allocator_type> str() const;
123 void str(const basic_string<char_type, traits_type, allocator_type>& s);
124};
125
126template <class charT, class traits, class Allocator>
127 void swap(basic_ostringstream<charT, traits, Allocator>& x,
128 basic_ostringstream<charT, traits, Allocator>& y);
129
130typedef basic_ostringstream<char> ostringstream;
131typedef basic_ostringstream<wchar_t> wostringstream;
132
133template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
134class basic_stringstream
135 : public basic_iostream<charT, traits>
136{
137public:
138 // types:
139 typedef charT char_type;
140 typedef traits traits_type;
141 typedef typename traits_type::int_type int_type;
142 typedef typename traits_type::pos_type pos_type;
143 typedef typename traits_type::off_type off_type;
144 typedef Allocator allocator_type;
145
146 // constructors/destructor
147 explicit basic_stringstream(ios_base::openmode which = ios_base::out|ios_base::in);
148 explicit basic_stringstream(const basic_string<char_type, traits_type, allocator_type>& str,
149 ios_base::openmode which = ios_base::out|ios_base::in);
150 basic_stringstream(basic_stringstream&& rhs);
151
152 // 27.8.5.1 Assign/swap:
153 basic_stringstream& operator=(basic_stringstream&& rhs);
154 void swap(basic_stringstream& rhs);
155
156 // Members:
157 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
158 basic_string<char_type, traits_type, allocator_type> str() const;
159 void str(const basic_string<char_type, traits_type, allocator_type>& str);
160};
161
162template <class charT, class traits, class Allocator>
163 void swap(basic_stringstream<charT, traits, Allocator>& x,
164 basic_stringstream<charT, traits, Allocator>& y);
165
166typedef basic_stringstream<char> stringstream;
167typedef basic_stringstream<wchar_t> wstringstream;
168
169} // std
170
171*/
172
173#include <__config>
174#include <ostream>
175#include <istream>
176#include <string>
177
Howard Hinnant66c6f972011-11-29 16:45:27 +0000178#include <__undef_min_max>
179
Howard Hinnant08e17472011-10-17 20:05:10 +0000180#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000181#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000182#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000183
184_LIBCPP_BEGIN_NAMESPACE_STD
185
186// basic_stringbuf
187
188template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000189class _LIBCPP_TYPE_VIS_ONLY basic_stringbuf
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000190 : public basic_streambuf<_CharT, _Traits>
191{
192public:
193 typedef _CharT char_type;
194 typedef _Traits traits_type;
195 typedef typename traits_type::int_type int_type;
196 typedef typename traits_type::pos_type pos_type;
197 typedef typename traits_type::off_type off_type;
198 typedef _Allocator allocator_type;
199
200 typedef basic_string<char_type, traits_type, allocator_type> string_type;
201
202private:
203
204 string_type __str_;
205 mutable char_type* __hm_;
206 ios_base::openmode __mode_;
207
208public:
209 // 27.8.1.1 Constructors:
210 explicit basic_stringbuf(ios_base::openmode __wch = ios_base::in | ios_base::out);
211 explicit basic_stringbuf(const string_type& __s,
212 ios_base::openmode __wch = ios_base::in | ios_base::out);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000213#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000214 basic_stringbuf(basic_stringbuf&& __rhs);
215#endif
216
217 // 27.8.1.2 Assign and swap:
Howard Hinnant73d21a42010-09-04 23:28:19 +0000218#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000219 basic_stringbuf& operator=(basic_stringbuf&& __rhs);
220#endif
221 void swap(basic_stringbuf& __rhs);
222
223 // 27.8.1.3 Get and set:
224 string_type str() const;
225 void str(const string_type& __s);
226
227protected:
228 // 27.8.1.4 Overridden virtual functions:
229 virtual int_type underflow();
230 virtual int_type pbackfail(int_type __c = traits_type::eof());
231 virtual int_type overflow (int_type __c = traits_type::eof());
232 virtual pos_type seekoff(off_type __off, ios_base::seekdir __way,
233 ios_base::openmode __wch = ios_base::in | ios_base::out);
234 virtual pos_type seekpos(pos_type __sp,
235 ios_base::openmode __wch = ios_base::in | ios_base::out);
236};
237
238template <class _CharT, class _Traits, class _Allocator>
239inline _LIBCPP_INLINE_VISIBILITY
240basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(ios_base::openmode __wch)
241 : __hm_(0),
242 __mode_(__wch)
243{
244 str(string_type());
245}
246
247template <class _CharT, class _Traits, class _Allocator>
248inline _LIBCPP_INLINE_VISIBILITY
249basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(const string_type& __s,
250 ios_base::openmode __wch)
251 : __hm_(0),
252 __mode_(__wch)
253{
254 str(__s);
255}
256
Howard Hinnant73d21a42010-09-04 23:28:19 +0000257#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000258
259template <class _CharT, class _Traits, class _Allocator>
260basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(basic_stringbuf&& __rhs)
261 : __mode_(__rhs.__mode_)
262{
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000263 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
264 ptrdiff_t __binp = -1;
265 ptrdiff_t __ninp = -1;
266 ptrdiff_t __einp = -1;
267 if (__rhs.eback() != nullptr)
268 {
269 __binp = __rhs.eback() - __p;
270 __ninp = __rhs.gptr() - __p;
271 __einp = __rhs.egptr() - __p;
272 }
273 ptrdiff_t __bout = -1;
274 ptrdiff_t __nout = -1;
275 ptrdiff_t __eout = -1;
276 if (__rhs.pbase() != nullptr)
277 {
278 __bout = __rhs.pbase() - __p;
279 __nout = __rhs.pptr() - __p;
280 __eout = __rhs.epptr() - __p;
281 }
282 ptrdiff_t __hm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000283 __str_ = _VSTD::move(__rhs.__str_);
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000284 __p = const_cast<char_type*>(__str_.data());
285 if (__binp != -1)
286 this->setg(__p + __binp, __p + __ninp, __p + __einp);
287 if (__bout != -1)
288 {
289 this->setp(__p + __bout, __p + __eout);
290 this->pbump(__nout);
291 }
292 __hm_ = __hm == -1 ? nullptr : __p + __hm;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000293 __p = const_cast<char_type*>(__rhs.__str_.data());
294 __rhs.setg(__p, __p, __p);
295 __rhs.setp(__p, __p);
296 __rhs.__hm_ = __p;
297 this->pubimbue(__rhs.getloc());
298}
299
300template <class _CharT, class _Traits, class _Allocator>
301basic_stringbuf<_CharT, _Traits, _Allocator>&
302basic_stringbuf<_CharT, _Traits, _Allocator>::operator=(basic_stringbuf&& __rhs)
303{
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000304 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
305 ptrdiff_t __binp = -1;
306 ptrdiff_t __ninp = -1;
307 ptrdiff_t __einp = -1;
308 if (__rhs.eback() != nullptr)
309 {
310 __binp = __rhs.eback() - __p;
311 __ninp = __rhs.gptr() - __p;
312 __einp = __rhs.egptr() - __p;
313 }
314 ptrdiff_t __bout = -1;
315 ptrdiff_t __nout = -1;
316 ptrdiff_t __eout = -1;
317 if (__rhs.pbase() != nullptr)
318 {
319 __bout = __rhs.pbase() - __p;
320 __nout = __rhs.pptr() - __p;
321 __eout = __rhs.epptr() - __p;
322 }
323 ptrdiff_t __hm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000324 __str_ = _VSTD::move(__rhs.__str_);
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000325 __p = const_cast<char_type*>(__str_.data());
326 if (__binp != -1)
327 this->setg(__p + __binp, __p + __ninp, __p + __einp);
Dan Albert7112dae2014-11-20 15:55:17 -0800328 else
329 this->setg(nullptr, nullptr, nullptr);
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000330 if (__bout != -1)
331 {
332 this->setp(__p + __bout, __p + __eout);
333 this->pbump(__nout);
334 }
Dan Albert7112dae2014-11-20 15:55:17 -0800335 else
336 this->setp(nullptr, nullptr);
337
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000338 __hm_ = __hm == -1 ? nullptr : __p + __hm;
339 __mode_ = __rhs.__mode_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000340 __p = const_cast<char_type*>(__rhs.__str_.data());
341 __rhs.setg(__p, __p, __p);
342 __rhs.setp(__p, __p);
343 __rhs.__hm_ = __p;
344 this->pubimbue(__rhs.getloc());
345 return *this;
346}
347
Howard Hinnant73d21a42010-09-04 23:28:19 +0000348#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000349
350template <class _CharT, class _Traits, class _Allocator>
351void
352basic_stringbuf<_CharT, _Traits, _Allocator>::swap(basic_stringbuf& __rhs)
353{
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000354 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
355 ptrdiff_t __rbinp = -1;
356 ptrdiff_t __rninp = -1;
357 ptrdiff_t __reinp = -1;
358 if (__rhs.eback() != nullptr)
359 {
360 __rbinp = __rhs.eback() - __p;
361 __rninp = __rhs.gptr() - __p;
362 __reinp = __rhs.egptr() - __p;
363 }
364 ptrdiff_t __rbout = -1;
365 ptrdiff_t __rnout = -1;
366 ptrdiff_t __reout = -1;
367 if (__rhs.pbase() != nullptr)
368 {
369 __rbout = __rhs.pbase() - __p;
370 __rnout = __rhs.pptr() - __p;
371 __reout = __rhs.epptr() - __p;
372 }
373 ptrdiff_t __rhm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p;
374 __p = const_cast<char_type*>(__str_.data());
375 ptrdiff_t __lbinp = -1;
376 ptrdiff_t __lninp = -1;
377 ptrdiff_t __leinp = -1;
378 if (this->eback() != nullptr)
379 {
380 __lbinp = this->eback() - __p;
381 __lninp = this->gptr() - __p;
382 __leinp = this->egptr() - __p;
383 }
384 ptrdiff_t __lbout = -1;
385 ptrdiff_t __lnout = -1;
386 ptrdiff_t __leout = -1;
387 if (this->pbase() != nullptr)
388 {
389 __lbout = this->pbase() - __p;
390 __lnout = this->pptr() - __p;
391 __leout = this->epptr() - __p;
392 }
393 ptrdiff_t __lhm = __hm_ == nullptr ? -1 : __hm_ - __p;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000394 _VSTD::swap(__mode_, __rhs.__mode_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000395 __str_.swap(__rhs.__str_);
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000396 __p = const_cast<char_type*>(__str_.data());
397 if (__rbinp != -1)
398 this->setg(__p + __rbinp, __p + __rninp, __p + __reinp);
399 else
400 this->setg(nullptr, nullptr, nullptr);
401 if (__rbout != -1)
402 {
403 this->setp(__p + __rbout, __p + __reout);
404 this->pbump(__rnout);
405 }
406 else
407 this->setp(nullptr, nullptr);
408 __hm_ = __rhm == -1 ? nullptr : __p + __rhm;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000409 __p = const_cast<char_type*>(__rhs.__str_.data());
Howard Hinnant4aa8b062013-04-03 20:21:29 +0000410 if (__lbinp != -1)
411 __rhs.setg(__p + __lbinp, __p + __lninp, __p + __leinp);
412 else
413 __rhs.setg(nullptr, nullptr, nullptr);
414 if (__lbout != -1)
415 {
416 __rhs.setp(__p + __lbout, __p + __leout);
417 __rhs.pbump(__lnout);
418 }
419 else
420 __rhs.setp(nullptr, nullptr);
421 __rhs.__hm_ = __lhm == -1 ? nullptr : __p + __lhm;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000422 locale __tl = __rhs.getloc();
423 __rhs.pubimbue(this->getloc());
424 this->pubimbue(__tl);
425}
426
427template <class _CharT, class _Traits, class _Allocator>
428inline _LIBCPP_INLINE_VISIBILITY
429void
430swap(basic_stringbuf<_CharT, _Traits, _Allocator>& __x,
431 basic_stringbuf<_CharT, _Traits, _Allocator>& __y)
432{
433 __x.swap(__y);
434}
435
436template <class _CharT, class _Traits, class _Allocator>
437basic_string<_CharT, _Traits, _Allocator>
438basic_stringbuf<_CharT, _Traits, _Allocator>::str() const
439{
440 if (__mode_ & ios_base::out)
441 {
442 if (__hm_ < this->pptr())
443 __hm_ = this->pptr();
444 return string_type(this->pbase(), __hm_, __str_.get_allocator());
445 }
446 else if (__mode_ & ios_base::in)
447 return string_type(this->eback(), this->egptr(), __str_.get_allocator());
448 return string_type(__str_.get_allocator());
449}
450
451template <class _CharT, class _Traits, class _Allocator>
452void
453basic_stringbuf<_CharT, _Traits, _Allocator>::str(const string_type& __s)
454{
455 __str_ = __s;
456 __hm_ = 0;
457 if (__mode_ & ios_base::in)
458 {
459 __hm_ = const_cast<char_type*>(__str_.data()) + __str_.size();
460 this->setg(const_cast<char_type*>(__str_.data()),
461 const_cast<char_type*>(__str_.data()),
462 __hm_);
463 }
464 if (__mode_ & ios_base::out)
465 {
466 typename string_type::size_type __sz = __str_.size();
467 __hm_ = const_cast<char_type*>(__str_.data()) + __sz;
468 __str_.resize(__str_.capacity());
469 this->setp(const_cast<char_type*>(__str_.data()),
470 const_cast<char_type*>(__str_.data()) + __str_.size());
471 if (__mode_ & (ios_base::app | ios_base::ate))
472 this->pbump(__sz);
473 }
474}
475
476template <class _CharT, class _Traits, class _Allocator>
477typename basic_stringbuf<_CharT, _Traits, _Allocator>::int_type
478basic_stringbuf<_CharT, _Traits, _Allocator>::underflow()
479{
480 if (__hm_ < this->pptr())
481 __hm_ = this->pptr();
482 if (__mode_ & ios_base::in)
483 {
484 if (this->egptr() < __hm_)
485 this->setg(this->eback(), this->gptr(), __hm_);
486 if (this->gptr() < this->egptr())
487 return traits_type::to_int_type(*this->gptr());
488 }
489 return traits_type::eof();
490}
491
492template <class _CharT, class _Traits, class _Allocator>
493typename basic_stringbuf<_CharT, _Traits, _Allocator>::int_type
494basic_stringbuf<_CharT, _Traits, _Allocator>::pbackfail(int_type __c)
495{
496 if (__hm_ < this->pptr())
497 __hm_ = this->pptr();
498 if (this->eback() < this->gptr())
499 {
500 if (traits_type::eq_int_type(__c, traits_type::eof()))
501 {
502 this->setg(this->eback(), this->gptr()-1, __hm_);
503 return traits_type::not_eof(__c);
504 }
505 if ((__mode_ & ios_base::out) ||
506 traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1]))
507 {
508 this->setg(this->eback(), this->gptr()-1, __hm_);
509 *this->gptr() = traits_type::to_char_type(__c);
510 return __c;
511 }
512 }
513 return traits_type::eof();
514}
515
516template <class _CharT, class _Traits, class _Allocator>
517typename basic_stringbuf<_CharT, _Traits, _Allocator>::int_type
518basic_stringbuf<_CharT, _Traits, _Allocator>::overflow(int_type __c)
519{
520 if (!traits_type::eq_int_type(__c, traits_type::eof()))
521 {
522 ptrdiff_t __ninp = this->gptr() - this->eback();
523 if (this->pptr() == this->epptr())
524 {
525 if (!(__mode_ & ios_base::out))
526 return traits_type::eof();
527#ifndef _LIBCPP_NO_EXCEPTIONS
528 try
529 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000530#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000531 ptrdiff_t __nout = this->pptr() - this->pbase();
532 ptrdiff_t __hm = __hm_ - this->pbase();
533 __str_.push_back(char_type());
534 __str_.resize(__str_.capacity());
535 char_type* __p = const_cast<char_type*>(__str_.data());
536 this->setp(__p, __p + __str_.size());
537 this->pbump(__nout);
538 __hm_ = this->pbase() + __hm;
539#ifndef _LIBCPP_NO_EXCEPTIONS
540 }
541 catch (...)
542 {
543 return traits_type::eof();
544 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000545#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000546 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000547 __hm_ = _VSTD::max(this->pptr() + 1, __hm_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000548 if (__mode_ & ios_base::in)
549 {
550 char_type* __p = const_cast<char_type*>(__str_.data());
551 this->setg(__p, __p + __ninp, __hm_);
552 }
553 return this->sputc(__c);
554 }
555 return traits_type::not_eof(__c);
556}
557
558template <class _CharT, class _Traits, class _Allocator>
559typename basic_stringbuf<_CharT, _Traits, _Allocator>::pos_type
560basic_stringbuf<_CharT, _Traits, _Allocator>::seekoff(off_type __off,
561 ios_base::seekdir __way,
562 ios_base::openmode __wch)
563{
564 if (__hm_ < this->pptr())
565 __hm_ = this->pptr();
566 if ((__wch & (ios_base::in | ios_base::out)) == 0)
567 return pos_type(-1);
568 if ((__wch & (ios_base::in | ios_base::out)) == (ios_base::in | ios_base::out)
569 && __way == ios_base::cur)
570 return pos_type(-1);
571 off_type __noff;
572 switch (__way)
573 {
574 case ios_base::beg:
575 __noff = 0;
576 break;
577 case ios_base::cur:
578 if (__wch & ios_base::in)
579 __noff = this->gptr() - this->eback();
580 else
581 __noff = this->pptr() - this->pbase();
582 break;
583 case ios_base::end:
584 __noff = __hm_ - __str_.data();
585 break;
586 default:
587 return pos_type(-1);
588 }
589 __noff += __off;
590 if (__noff < 0 || __hm_ - __str_.data() < __noff)
591 return pos_type(-1);
592 if (__noff != 0)
593 {
594 if ((__wch & ios_base::in) && this->gptr() == 0)
595 return pos_type(-1);
596 if ((__wch & ios_base::out) && this->pptr() == 0)
597 return pos_type(-1);
598 }
599 if (__wch & ios_base::in)
600 this->setg(this->eback(), this->eback() + __noff, __hm_);
601 if (__wch & ios_base::out)
602 {
603 this->setp(this->pbase(), this->epptr());
604 this->pbump(__noff);
605 }
606 return pos_type(__noff);
607}
608
609template <class _CharT, class _Traits, class _Allocator>
610inline _LIBCPP_INLINE_VISIBILITY
611typename basic_stringbuf<_CharT, _Traits, _Allocator>::pos_type
612basic_stringbuf<_CharT, _Traits, _Allocator>::seekpos(pos_type __sp,
613 ios_base::openmode __wch)
614{
615 return seekoff(__sp, ios_base::beg, __wch);
616}
617
618// basic_istringstream
619
620template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000621class _LIBCPP_TYPE_VIS_ONLY basic_istringstream
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000622 : public basic_istream<_CharT, _Traits>
623{
624public:
625 typedef _CharT char_type;
626 typedef _Traits traits_type;
627 typedef typename traits_type::int_type int_type;
628 typedef typename traits_type::pos_type pos_type;
629 typedef typename traits_type::off_type off_type;
630 typedef _Allocator allocator_type;
631
632 typedef basic_string<char_type, traits_type, allocator_type> string_type;
633
634private:
635 basic_stringbuf<char_type, traits_type, allocator_type> __sb_;
636
637public:
638 // 27.8.2.1 Constructors:
639 explicit basic_istringstream(ios_base::openmode __wch = ios_base::in);
640 explicit basic_istringstream(const string_type& __s,
641 ios_base::openmode __wch = ios_base::in);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000642#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000643 basic_istringstream(basic_istringstream&& __rhs);
644
645 // 27.8.2.2 Assign and swap:
646 basic_istringstream& operator=(basic_istringstream&& __rhs);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000647#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000648 void swap(basic_istringstream& __rhs);
649
650 // 27.8.2.3 Members:
651 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
652 string_type str() const;
653 void str(const string_type& __s);
654};
655
656template <class _CharT, class _Traits, class _Allocator>
657inline _LIBCPP_INLINE_VISIBILITY
658basic_istringstream<_CharT, _Traits, _Allocator>::basic_istringstream(ios_base::openmode __wch)
659 : basic_istream<_CharT, _Traits>(&__sb_),
660 __sb_(__wch | ios_base::in)
661{
662}
663
664template <class _CharT, class _Traits, class _Allocator>
665inline _LIBCPP_INLINE_VISIBILITY
666basic_istringstream<_CharT, _Traits, _Allocator>::basic_istringstream(const string_type& __s,
667 ios_base::openmode __wch)
668 : basic_istream<_CharT, _Traits>(&__sb_),
669 __sb_(__s, __wch | ios_base::in)
670{
671}
672
Howard Hinnant73d21a42010-09-04 23:28:19 +0000673#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000674
675template <class _CharT, class _Traits, class _Allocator>
676inline _LIBCPP_INLINE_VISIBILITY
677basic_istringstream<_CharT, _Traits, _Allocator>::basic_istringstream(basic_istringstream&& __rhs)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000678 : basic_istream<_CharT, _Traits>(_VSTD::move(__rhs)),
679 __sb_(_VSTD::move(__rhs.__sb_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000680{
681 basic_istream<_CharT, _Traits>::set_rdbuf(&__sb_);
682}
683
684template <class _CharT, class _Traits, class _Allocator>
685basic_istringstream<_CharT, _Traits, _Allocator>&
686basic_istringstream<_CharT, _Traits, _Allocator>::operator=(basic_istringstream&& __rhs)
687{
Howard Hinnant0949eed2011-06-30 21:18:19 +0000688 basic_istream<char_type, traits_type>::operator=(_VSTD::move(__rhs));
689 __sb_ = _VSTD::move(__rhs.__sb_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000690 return *this;
691}
692
Howard Hinnant73d21a42010-09-04 23:28:19 +0000693#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000694
695template <class _CharT, class _Traits, class _Allocator>
696inline _LIBCPP_INLINE_VISIBILITY
697void
698basic_istringstream<_CharT, _Traits, _Allocator>::swap(basic_istringstream& __rhs)
699{
700 basic_istream<char_type, traits_type>::swap(__rhs);
701 __sb_.swap(__rhs.__sb_);
702}
703
704template <class _CharT, class _Traits, class _Allocator>
705inline _LIBCPP_INLINE_VISIBILITY
706void
707swap(basic_istringstream<_CharT, _Traits, _Allocator>& __x,
708 basic_istringstream<_CharT, _Traits, _Allocator>& __y)
709{
710 __x.swap(__y);
711}
712
713template <class _CharT, class _Traits, class _Allocator>
714inline _LIBCPP_INLINE_VISIBILITY
715basic_stringbuf<_CharT, _Traits, _Allocator>*
716basic_istringstream<_CharT, _Traits, _Allocator>::rdbuf() const
717{
718 return const_cast<basic_stringbuf<char_type, traits_type, allocator_type>*>(&__sb_);
719}
720
721template <class _CharT, class _Traits, class _Allocator>
722inline _LIBCPP_INLINE_VISIBILITY
723basic_string<_CharT, _Traits, _Allocator>
724basic_istringstream<_CharT, _Traits, _Allocator>::str() const
725{
726 return __sb_.str();
727}
728
729template <class _CharT, class _Traits, class _Allocator>
730inline _LIBCPP_INLINE_VISIBILITY
731void
732basic_istringstream<_CharT, _Traits, _Allocator>::str(const string_type& __s)
733{
734 __sb_.str(__s);
735}
736
737// basic_ostringstream
738
739template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000740class _LIBCPP_TYPE_VIS_ONLY basic_ostringstream
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000741 : public basic_ostream<_CharT, _Traits>
742{
743public:
744 typedef _CharT char_type;
745 typedef _Traits traits_type;
746 typedef typename traits_type::int_type int_type;
747 typedef typename traits_type::pos_type pos_type;
748 typedef typename traits_type::off_type off_type;
749 typedef _Allocator allocator_type;
750
751 typedef basic_string<char_type, traits_type, allocator_type> string_type;
752
753private:
754 basic_stringbuf<char_type, traits_type, allocator_type> __sb_;
755
756public:
757 // 27.8.2.1 Constructors:
758 explicit basic_ostringstream(ios_base::openmode __wch = ios_base::out);
759 explicit basic_ostringstream(const string_type& __s,
760 ios_base::openmode __wch = ios_base::out);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000761#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000762 basic_ostringstream(basic_ostringstream&& __rhs);
763
764 // 27.8.2.2 Assign and swap:
765 basic_ostringstream& operator=(basic_ostringstream&& __rhs);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000766#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000767 void swap(basic_ostringstream& __rhs);
768
769 // 27.8.2.3 Members:
770 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
771 string_type str() const;
772 void str(const string_type& __s);
773};
774
775template <class _CharT, class _Traits, class _Allocator>
776inline _LIBCPP_INLINE_VISIBILITY
777basic_ostringstream<_CharT, _Traits, _Allocator>::basic_ostringstream(ios_base::openmode __wch)
778 : basic_ostream<_CharT, _Traits>(&__sb_),
779 __sb_(__wch | ios_base::out)
780{
781}
782
783template <class _CharT, class _Traits, class _Allocator>
784inline _LIBCPP_INLINE_VISIBILITY
785basic_ostringstream<_CharT, _Traits, _Allocator>::basic_ostringstream(const string_type& __s,
786 ios_base::openmode __wch)
787 : basic_ostream<_CharT, _Traits>(&__sb_),
788 __sb_(__s, __wch | ios_base::out)
789{
790}
791
Howard Hinnant73d21a42010-09-04 23:28:19 +0000792#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000793
794template <class _CharT, class _Traits, class _Allocator>
795inline _LIBCPP_INLINE_VISIBILITY
796basic_ostringstream<_CharT, _Traits, _Allocator>::basic_ostringstream(basic_ostringstream&& __rhs)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000797 : basic_ostream<_CharT, _Traits>(_VSTD::move(__rhs)),
798 __sb_(_VSTD::move(__rhs.__sb_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000799{
800 basic_ostream<_CharT, _Traits>::set_rdbuf(&__sb_);
801}
802
803template <class _CharT, class _Traits, class _Allocator>
804basic_ostringstream<_CharT, _Traits, _Allocator>&
805basic_ostringstream<_CharT, _Traits, _Allocator>::operator=(basic_ostringstream&& __rhs)
806{
Howard Hinnant0949eed2011-06-30 21:18:19 +0000807 basic_ostream<char_type, traits_type>::operator=(_VSTD::move(__rhs));
808 __sb_ = _VSTD::move(__rhs.__sb_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000809 return *this;
810}
811
Howard Hinnant73d21a42010-09-04 23:28:19 +0000812#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000813
814template <class _CharT, class _Traits, class _Allocator>
815inline _LIBCPP_INLINE_VISIBILITY
816void
817basic_ostringstream<_CharT, _Traits, _Allocator>::swap(basic_ostringstream& __rhs)
818{
819 basic_ostream<char_type, traits_type>::swap(__rhs);
820 __sb_.swap(__rhs.__sb_);
821}
822
823template <class _CharT, class _Traits, class _Allocator>
824inline _LIBCPP_INLINE_VISIBILITY
825void
826swap(basic_ostringstream<_CharT, _Traits, _Allocator>& __x,
827 basic_ostringstream<_CharT, _Traits, _Allocator>& __y)
828{
829 __x.swap(__y);
830}
831
832template <class _CharT, class _Traits, class _Allocator>
833inline _LIBCPP_INLINE_VISIBILITY
834basic_stringbuf<_CharT, _Traits, _Allocator>*
835basic_ostringstream<_CharT, _Traits, _Allocator>::rdbuf() const
836{
837 return const_cast<basic_stringbuf<char_type, traits_type, allocator_type>*>(&__sb_);
838}
839
840template <class _CharT, class _Traits, class _Allocator>
841inline _LIBCPP_INLINE_VISIBILITY
842basic_string<_CharT, _Traits, _Allocator>
843basic_ostringstream<_CharT, _Traits, _Allocator>::str() const
844{
845 return __sb_.str();
846}
847
848template <class _CharT, class _Traits, class _Allocator>
849inline _LIBCPP_INLINE_VISIBILITY
850void
851basic_ostringstream<_CharT, _Traits, _Allocator>::str(const string_type& __s)
852{
853 __sb_.str(__s);
854}
855
856// basic_stringstream
857
858template <class _CharT, class _Traits, class _Allocator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000859class _LIBCPP_TYPE_VIS_ONLY basic_stringstream
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000860 : public basic_iostream<_CharT, _Traits>
861{
862public:
863 typedef _CharT char_type;
864 typedef _Traits traits_type;
865 typedef typename traits_type::int_type int_type;
866 typedef typename traits_type::pos_type pos_type;
867 typedef typename traits_type::off_type off_type;
868 typedef _Allocator allocator_type;
869
870 typedef basic_string<char_type, traits_type, allocator_type> string_type;
871
872private:
873 basic_stringbuf<char_type, traits_type, allocator_type> __sb_;
874
875public:
876 // 27.8.2.1 Constructors:
877 explicit basic_stringstream(ios_base::openmode __wch = ios_base::in | ios_base::out);
878 explicit basic_stringstream(const string_type& __s,
879 ios_base::openmode __wch = ios_base::in | ios_base::out);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000880#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000881 basic_stringstream(basic_stringstream&& __rhs);
882
883 // 27.8.2.2 Assign and swap:
884 basic_stringstream& operator=(basic_stringstream&& __rhs);
Howard Hinnant73d21a42010-09-04 23:28:19 +0000885#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000886 void swap(basic_stringstream& __rhs);
887
888 // 27.8.2.3 Members:
889 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
890 string_type str() const;
891 void str(const string_type& __s);
892};
893
894template <class _CharT, class _Traits, class _Allocator>
895inline _LIBCPP_INLINE_VISIBILITY
896basic_stringstream<_CharT, _Traits, _Allocator>::basic_stringstream(ios_base::openmode __wch)
897 : basic_iostream<_CharT, _Traits>(&__sb_),
898 __sb_(__wch)
899{
900}
901
902template <class _CharT, class _Traits, class _Allocator>
903inline _LIBCPP_INLINE_VISIBILITY
904basic_stringstream<_CharT, _Traits, _Allocator>::basic_stringstream(const string_type& __s,
905 ios_base::openmode __wch)
906 : basic_iostream<_CharT, _Traits>(&__sb_),
907 __sb_(__s, __wch)
908{
909}
910
Howard Hinnant73d21a42010-09-04 23:28:19 +0000911#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000912
913template <class _CharT, class _Traits, class _Allocator>
914inline _LIBCPP_INLINE_VISIBILITY
915basic_stringstream<_CharT, _Traits, _Allocator>::basic_stringstream(basic_stringstream&& __rhs)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000916 : basic_iostream<_CharT, _Traits>(_VSTD::move(__rhs)),
917 __sb_(_VSTD::move(__rhs.__sb_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000918{
919 basic_istream<_CharT, _Traits>::set_rdbuf(&__sb_);
920}
921
922template <class _CharT, class _Traits, class _Allocator>
923basic_stringstream<_CharT, _Traits, _Allocator>&
924basic_stringstream<_CharT, _Traits, _Allocator>::operator=(basic_stringstream&& __rhs)
925{
Howard Hinnant0949eed2011-06-30 21:18:19 +0000926 basic_iostream<char_type, traits_type>::operator=(_VSTD::move(__rhs));
927 __sb_ = _VSTD::move(__rhs.__sb_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000928 return *this;
929}
930
Howard Hinnant73d21a42010-09-04 23:28:19 +0000931#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000932
933template <class _CharT, class _Traits, class _Allocator>
934inline _LIBCPP_INLINE_VISIBILITY
935void
936basic_stringstream<_CharT, _Traits, _Allocator>::swap(basic_stringstream& __rhs)
937{
938 basic_iostream<char_type, traits_type>::swap(__rhs);
939 __sb_.swap(__rhs.__sb_);
940}
941
942template <class _CharT, class _Traits, class _Allocator>
943inline _LIBCPP_INLINE_VISIBILITY
944void
945swap(basic_stringstream<_CharT, _Traits, _Allocator>& __x,
946 basic_stringstream<_CharT, _Traits, _Allocator>& __y)
947{
948 __x.swap(__y);
949}
950
951template <class _CharT, class _Traits, class _Allocator>
952inline _LIBCPP_INLINE_VISIBILITY
953basic_stringbuf<_CharT, _Traits, _Allocator>*
954basic_stringstream<_CharT, _Traits, _Allocator>::rdbuf() const
955{
956 return const_cast<basic_stringbuf<char_type, traits_type, allocator_type>*>(&__sb_);
957}
958
959template <class _CharT, class _Traits, class _Allocator>
960inline _LIBCPP_INLINE_VISIBILITY
961basic_string<_CharT, _Traits, _Allocator>
962basic_stringstream<_CharT, _Traits, _Allocator>::str() const
963{
964 return __sb_.str();
965}
966
967template <class _CharT, class _Traits, class _Allocator>
968inline _LIBCPP_INLINE_VISIBILITY
969void
970basic_stringstream<_CharT, _Traits, _Allocator>::str(const string_type& __s)
971{
972 __sb_.str(__s);
973}
974
975_LIBCPP_END_NAMESPACE_STD
976
977#endif // _LIBCPP_SSTREAM