blob: 58a4768d9d40b6ddf39b2a007ede496c8508d86e [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- ostream -----------------------------------===//
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_OSTREAM
12#define _LIBCPP_OSTREAM
13
14/*
15 ostream synopsis
16
17template <class charT, class traits = char_traits<charT> >
18class basic_ostream
19 : virtual public basic_ios<charT,traits>
20{
21public:
22 // types (inherited from basic_ios (27.5.4)):
23 typedef charT char_type;
24 typedef traits traits_type;
25 typedef typename traits_type::int_type int_type;
26 typedef typename traits_type::pos_type pos_type;
27 typedef typename traits_type::off_type off_type;
28
29 // 27.7.2.2 Constructor/destructor:
30 explicit basic_ostream(basic_streambuf<char_type,traits>* sb);
31 basic_ostream(basic_ostream&& rhs);
32 virtual ~basic_ostream();
33
34 // 27.7.2.3 Assign/swap
Marshall Clow2df37002013-08-14 15:15:28 +000035 basic_ostream& operator=(const basic_ostream& rhs) = delete; // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000036 basic_ostream& operator=(basic_ostream&& rhs);
37 void swap(basic_ostream& rhs);
38
39 // 27.7.2.4 Prefix/suffix:
40 class sentry;
41
42 // 27.7.2.6 Formatted output:
43 basic_ostream& operator<<(basic_ostream& (*pf)(basic_ostream&));
44 basic_ostream& operator<<(basic_ios<charT, traits>& (*pf)(basic_ios<charT,traits>&));
45 basic_ostream& operator<<(ios_base& (*pf)(ios_base&));
46 basic_ostream& operator<<(bool n);
47 basic_ostream& operator<<(short n);
48 basic_ostream& operator<<(unsigned short n);
49 basic_ostream& operator<<(int n);
50 basic_ostream& operator<<(unsigned int n);
51 basic_ostream& operator<<(long n);
52 basic_ostream& operator<<(unsigned long n);
53 basic_ostream& operator<<(long long n);
54 basic_ostream& operator<<(unsigned long long n);
55 basic_ostream& operator<<(float f);
56 basic_ostream& operator<<(double f);
57 basic_ostream& operator<<(long double f);
58 basic_ostream& operator<<(const void* p);
59 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
60
61 // 27.7.2.7 Unformatted output:
62 basic_ostream& put(char_type c);
63 basic_ostream& write(const char_type* s, streamsize n);
64 basic_ostream& flush();
65
66 // 27.7.2.5 seeks:
67 pos_type tellp();
68 basic_ostream& seekp(pos_type);
69 basic_ostream& seekp(off_type, ios_base::seekdir);
Marshall Clow546eca82014-09-16 15:27:01 +000070protected:
71 basic_ostream(const basic_ostream& rhs) = delete;
72 basic_ostream(basic_ostream&& rhs);
73 // 27.7.3.3 Assign/swap
74 basic_ostream& operator=(basic_ostream& rhs) = delete;
75 basic_ostream& operator=(const basic_ostream&& rhs);
76 void swap(basic_ostream& rhs);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000077};
78
79// 27.7.2.6.4 character inserters
80
81template<class charT, class traits>
82 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, charT);
83
84template<class charT, class traits>
85 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, char);
86
87template<class traits>
88 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, char);
89
90// signed and unsigned
91
92template<class traits>
93 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, signed char);
94
95template<class traits>
96 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, unsigned char);
97
98// NTBS
99template<class charT, class traits>
100 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, const charT*);
101
102template<class charT, class traits>
103 basic_ostream<charT,traits>& operator<<(basic_ostream<charT,traits>&, const char*);
104
105template<class traits>
106 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const char*);
107
108// signed and unsigned
109template<class traits>
110basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const signed char*);
111
112template<class traits>
113 basic_ostream<char,traits>& operator<<(basic_ostream<char,traits>&, const unsigned char*);
114
115// swap:
116template <class charT, class traits>
117 void swap(basic_ostream<charT, traits>& x, basic_ostream<charT, traits>& y);
118
119template <class charT, class traits>
120 basic_ostream<charT,traits>& endl(basic_ostream<charT,traits>& os);
121
122template <class charT, class traits>
123 basic_ostream<charT,traits>& ends(basic_ostream<charT,traits>& os);
124
125template <class charT, class traits>
126 basic_ostream<charT,traits>& flush(basic_ostream<charT,traits>& os);
127
128// rvalue stream insertion
129template <class charT, class traits, class T>
130 basic_ostream<charT, traits>&
131 operator<<(basic_ostream<charT, traits>&& os, const T& x);
132
133} // std
134
135*/
136
137#include <__config>
138#include <ios>
139#include <streambuf>
140#include <locale>
141#include <iterator>
142#include <bitset>
143
Howard Hinnant08e17472011-10-17 20:05:10 +0000144#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000145#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000146#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000147
148_LIBCPP_BEGIN_NAMESPACE_STD
149
150template <class _CharT, class _Traits>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000151class _LIBCPP_TYPE_VIS_ONLY basic_ostream
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000152 : virtual public basic_ios<_CharT, _Traits>
153{
154public:
155 // types (inherited from basic_ios (27.5.4)):
156 typedef _CharT char_type;
157 typedef _Traits traits_type;
158 typedef typename traits_type::int_type int_type;
159 typedef typename traits_type::pos_type pos_type;
160 typedef typename traits_type::off_type off_type;
161
162 // 27.7.2.2 Constructor/destructor:
163 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb);
164 virtual ~basic_ostream();
165protected:
Howard Hinnant73d21a42010-09-04 23:28:19 +0000166#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantac6de542011-07-07 21:03:52 +0000167 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000168 basic_ostream(basic_ostream&& __rhs);
169#endif
170
171 // 27.7.2.3 Assign/swap
Howard Hinnant73d21a42010-09-04 23:28:19 +0000172#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantac6de542011-07-07 21:03:52 +0000173 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000174 basic_ostream& operator=(basic_ostream&& __rhs);
175#endif
176 void swap(basic_ostream& __rhs);
Marshall Clow546eca82014-09-16 15:27:01 +0000177
178#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
Marshall Clowd1fae172014-09-16 15:33:53 +0000179 basic_ostream (const basic_ostream& __rhs) = delete;
180 basic_ostream& operator=(const basic_ostream& __rhs) = delete;
Marshall Clow546eca82014-09-16 15:27:01 +0000181#else
Marshall Clowbb9902e2014-09-17 01:58:15 +0000182 basic_ostream (const basic_ostream& __rhs); // not defined
183 basic_ostream& operator=(const basic_ostream& __rhs); // not defined
Marshall Clow546eca82014-09-16 15:27:01 +0000184#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000185public:
186
187 // 27.7.2.4 Prefix/suffix:
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000188 class _LIBCPP_TYPE_VIS_ONLY sentry;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000189
190 // 27.7.2.6 Formatted output:
191 basic_ostream& operator<<(basic_ostream& (*__pf)(basic_ostream&));
192 basic_ostream& operator<<(basic_ios<char_type, traits_type>&
193 (*__pf)(basic_ios<char_type,traits_type>&));
194 basic_ostream& operator<<(ios_base& (*__pf)(ios_base&));
195 basic_ostream& operator<<(bool __n);
196 basic_ostream& operator<<(short __n);
197 basic_ostream& operator<<(unsigned short __n);
198 basic_ostream& operator<<(int __n);
199 basic_ostream& operator<<(unsigned int __n);
200 basic_ostream& operator<<(long __n);
201 basic_ostream& operator<<(unsigned long __n);
202 basic_ostream& operator<<(long long __n);
203 basic_ostream& operator<<(unsigned long long __n);
204 basic_ostream& operator<<(float __f);
205 basic_ostream& operator<<(double __f);
206 basic_ostream& operator<<(long double __f);
207 basic_ostream& operator<<(const void* __p);
208 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
209
210 // 27.7.2.7 Unformatted output:
211 basic_ostream& put(char_type __c);
212 basic_ostream& write(const char_type* __s, streamsize __n);
213 basic_ostream& flush();
214
215 // 27.7.2.5 seeks:
216 pos_type tellp();
217 basic_ostream& seekp(pos_type __pos);
218 basic_ostream& seekp(off_type __off, ios_base::seekdir __dir);
219
220protected:
221 _LIBCPP_ALWAYS_INLINE
222 basic_ostream() {} // extension, intentially does not initialize
223};
224
225template <class _CharT, class _Traits>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000226class _LIBCPP_TYPE_VIS_ONLY basic_ostream<_CharT, _Traits>::sentry
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000227{
228 bool __ok_;
229 basic_ostream<_CharT, _Traits>& __os_;
230
231 sentry(const sentry&); // = delete;
232 sentry& operator=(const sentry&); // = delete;
233
234public:
235 explicit sentry(basic_ostream<_CharT, _Traits>& __os);
236 ~sentry();
237
238 _LIBCPP_ALWAYS_INLINE
Howard Hinnant77861882012-02-21 21:46:43 +0000239 _LIBCPP_EXPLICIT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000240 operator bool() const {return __ok_;}
241};
242
243template <class _CharT, class _Traits>
244basic_ostream<_CharT, _Traits>::sentry::sentry(basic_ostream<_CharT, _Traits>& __os)
245 : __ok_(false),
246 __os_(__os)
247{
248 if (__os.good())
249 {
250 if (__os.tie())
251 __os.tie()->flush();
252 __ok_ = true;
253 }
254}
255
256template <class _CharT, class _Traits>
257basic_ostream<_CharT, _Traits>::sentry::~sentry()
258{
259 if (__os_.rdbuf() && __os_.good() && (__os_.flags() & ios_base::unitbuf)
260 && !uncaught_exception())
261 {
262#ifndef _LIBCPP_NO_EXCEPTIONS
263 try
264 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000265#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000266 if (__os_.rdbuf()->pubsync() == -1)
267 __os_.setstate(ios_base::badbit);
268#ifndef _LIBCPP_NO_EXCEPTIONS
269 }
270 catch (...)
271 {
272 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000273#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000274 }
275}
276
277template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000278inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000279basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<char_type, traits_type>* __sb)
280{
281 this->init(__sb);
282}
283
Howard Hinnant73d21a42010-09-04 23:28:19 +0000284#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000285
286template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000287inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000288basic_ostream<_CharT, _Traits>::basic_ostream(basic_ostream&& __rhs)
289{
290 this->move(__rhs);
291}
292
293template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000294inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000295basic_ostream<_CharT, _Traits>&
296basic_ostream<_CharT, _Traits>::operator=(basic_ostream&& __rhs)
297{
298 swap(__rhs);
299 return *this;
300}
301
Howard Hinnant73d21a42010-09-04 23:28:19 +0000302#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000303
304template <class _CharT, class _Traits>
305basic_ostream<_CharT, _Traits>::~basic_ostream()
306{
307}
308
309template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000310inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000311void
312basic_ostream<_CharT, _Traits>::swap(basic_ostream& __rhs)
313{
314 basic_ios<char_type, traits_type>::swap(__rhs);
315}
316
317template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000318inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000319basic_ostream<_CharT, _Traits>&
320basic_ostream<_CharT, _Traits>::operator<<(basic_ostream& (*__pf)(basic_ostream&))
321{
322 return __pf(*this);
323}
324
325template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000326inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000327basic_ostream<_CharT, _Traits>&
328basic_ostream<_CharT, _Traits>::operator<<(basic_ios<char_type, traits_type>&
329 (*__pf)(basic_ios<char_type,traits_type>&))
330{
331 __pf(*this);
332 return *this;
333}
334
335template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000336inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000337basic_ostream<_CharT, _Traits>&
338basic_ostream<_CharT, _Traits>::operator<<(ios_base& (*__pf)(ios_base&))
339{
340 __pf(*this);
341 return *this;
342}
343
344template <class _CharT, class _Traits>
345basic_ostream<_CharT, _Traits>&
346basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<char_type, traits_type>* __sb)
347{
348#ifndef _LIBCPP_NO_EXCEPTIONS
349 try
350 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000351#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000352 sentry __s(*this);
353 if (__s)
354 {
355 if (__sb)
356 {
357#ifndef _LIBCPP_NO_EXCEPTIONS
358 try
359 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000360#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant99968442011-11-29 18:15:50 +0000361 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
362 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
363 _Ip __i(__sb);
364 _Ip __eof;
365 _Op __o(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000366 size_t __c = 0;
367 for (; __i != __eof; ++__i, ++__o, ++__c)
368 {
369 *__o = *__i;
370 if (__o.failed())
371 break;
372 }
373 if (__c == 0)
374 this->setstate(ios_base::failbit);
375#ifndef _LIBCPP_NO_EXCEPTIONS
376 }
377 catch (...)
378 {
379 this->__set_failbit_and_consider_rethrow();
380 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000381#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000382 }
383 else
384 this->setstate(ios_base::badbit);
385 }
386#ifndef _LIBCPP_NO_EXCEPTIONS
387 }
388 catch (...)
389 {
390 this->__set_badbit_and_consider_rethrow();
391 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000392#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000393 return *this;
394}
395
396template <class _CharT, class _Traits>
397basic_ostream<_CharT, _Traits>&
398basic_ostream<_CharT, _Traits>::operator<<(bool __n)
399{
400#ifndef _LIBCPP_NO_EXCEPTIONS
401 try
402 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000403#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000404 sentry __s(*this);
405 if (__s)
406 {
Howard Hinnant99968442011-11-29 18:15:50 +0000407 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
408 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000409 if (__f.put(*this, *this, this->fill(), __n).failed())
410 this->setstate(ios_base::badbit | ios_base::failbit);
411 }
412#ifndef _LIBCPP_NO_EXCEPTIONS
413 }
414 catch (...)
415 {
416 this->__set_badbit_and_consider_rethrow();
417 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000418#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000419 return *this;
420}
421
422template <class _CharT, class _Traits>
423basic_ostream<_CharT, _Traits>&
424basic_ostream<_CharT, _Traits>::operator<<(short __n)
425{
426#ifndef _LIBCPP_NO_EXCEPTIONS
427 try
428 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000429#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000430 sentry __s(*this);
431 if (__s)
432 {
433 ios_base::fmtflags __flags = ios_base::flags() & ios_base::basefield;
Howard Hinnant99968442011-11-29 18:15:50 +0000434 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
435 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000436 if (__f.put(*this, *this, this->fill(),
437 __flags == ios_base::oct || __flags == ios_base::hex ?
438 static_cast<long>(static_cast<unsigned short>(__n)) :
439 static_cast<long>(__n)).failed())
440 this->setstate(ios_base::badbit | ios_base::failbit);
441 }
442#ifndef _LIBCPP_NO_EXCEPTIONS
443 }
444 catch (...)
445 {
446 this->__set_badbit_and_consider_rethrow();
447 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000448#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000449 return *this;
450}
451
452template <class _CharT, class _Traits>
453basic_ostream<_CharT, _Traits>&
454basic_ostream<_CharT, _Traits>::operator<<(unsigned short __n)
455{
456#ifndef _LIBCPP_NO_EXCEPTIONS
457 try
458 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000459#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000460 sentry __s(*this);
461 if (__s)
462 {
Howard Hinnant99968442011-11-29 18:15:50 +0000463 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
464 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000465 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
466 this->setstate(ios_base::badbit | ios_base::failbit);
467 }
468#ifndef _LIBCPP_NO_EXCEPTIONS
469 }
470 catch (...)
471 {
472 this->__set_badbit_and_consider_rethrow();
473 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000474#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000475 return *this;
476}
477
478template <class _CharT, class _Traits>
479basic_ostream<_CharT, _Traits>&
480basic_ostream<_CharT, _Traits>::operator<<(int __n)
481{
482#ifndef _LIBCPP_NO_EXCEPTIONS
483 try
484 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000485#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000486 sentry __s(*this);
487 if (__s)
488 {
489 ios_base::fmtflags __flags = ios_base::flags() & ios_base::basefield;
Howard Hinnant99968442011-11-29 18:15:50 +0000490 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
491 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000492 if (__f.put(*this, *this, this->fill(),
493 __flags == ios_base::oct || __flags == ios_base::hex ?
494 static_cast<long>(static_cast<unsigned int>(__n)) :
495 static_cast<long>(__n)).failed())
496 this->setstate(ios_base::badbit | ios_base::failbit);
497 }
498#ifndef _LIBCPP_NO_EXCEPTIONS
499 }
500 catch (...)
501 {
502 this->__set_badbit_and_consider_rethrow();
503 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000504#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000505 return *this;
506}
507
508template <class _CharT, class _Traits>
509basic_ostream<_CharT, _Traits>&
510basic_ostream<_CharT, _Traits>::operator<<(unsigned int __n)
511{
512#ifndef _LIBCPP_NO_EXCEPTIONS
513 try
514 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000515#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000516 sentry __s(*this);
517 if (__s)
518 {
Howard Hinnant99968442011-11-29 18:15:50 +0000519 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
520 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000521 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
522 this->setstate(ios_base::badbit | ios_base::failbit);
523 }
524#ifndef _LIBCPP_NO_EXCEPTIONS
525 }
526 catch (...)
527 {
528 this->__set_badbit_and_consider_rethrow();
529 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000530#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000531 return *this;
532}
533
534template <class _CharT, class _Traits>
535basic_ostream<_CharT, _Traits>&
536basic_ostream<_CharT, _Traits>::operator<<(long __n)
537{
538#ifndef _LIBCPP_NO_EXCEPTIONS
539 try
540 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000541#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000542 sentry __s(*this);
543 if (__s)
544 {
Howard Hinnant99968442011-11-29 18:15:50 +0000545 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
546 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000547 if (__f.put(*this, *this, this->fill(), __n).failed())
548 this->setstate(ios_base::badbit | ios_base::failbit);
549 }
550#ifndef _LIBCPP_NO_EXCEPTIONS
551 }
552 catch (...)
553 {
554 this->__set_badbit_and_consider_rethrow();
555 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000556#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000557 return *this;
558}
559
560template <class _CharT, class _Traits>
561basic_ostream<_CharT, _Traits>&
562basic_ostream<_CharT, _Traits>::operator<<(unsigned long __n)
563{
564#ifndef _LIBCPP_NO_EXCEPTIONS
565 try
566 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000567#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000568 sentry __s(*this);
569 if (__s)
570 {
Howard Hinnant99968442011-11-29 18:15:50 +0000571 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
572 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000573 if (__f.put(*this, *this, this->fill(), __n).failed())
574 this->setstate(ios_base::badbit | ios_base::failbit);
575 }
576#ifndef _LIBCPP_NO_EXCEPTIONS
577 }
578 catch (...)
579 {
580 this->__set_badbit_and_consider_rethrow();
581 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000582#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000583 return *this;
584}
585
586template <class _CharT, class _Traits>
587basic_ostream<_CharT, _Traits>&
588basic_ostream<_CharT, _Traits>::operator<<(long long __n)
589{
590#ifndef _LIBCPP_NO_EXCEPTIONS
591 try
592 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000593#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000594 sentry __s(*this);
595 if (__s)
596 {
Howard Hinnant99968442011-11-29 18:15:50 +0000597 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
598 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000599 if (__f.put(*this, *this, this->fill(), __n).failed())
600 this->setstate(ios_base::badbit | ios_base::failbit);
601 }
602#ifndef _LIBCPP_NO_EXCEPTIONS
603 }
604 catch (...)
605 {
606 this->__set_badbit_and_consider_rethrow();
607 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000608#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000609 return *this;
610}
611
612template <class _CharT, class _Traits>
613basic_ostream<_CharT, _Traits>&
614basic_ostream<_CharT, _Traits>::operator<<(unsigned long long __n)
615{
616#ifndef _LIBCPP_NO_EXCEPTIONS
617 try
618 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000619#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000620 sentry __s(*this);
621 if (__s)
622 {
Howard Hinnant99968442011-11-29 18:15:50 +0000623 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
624 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000625 if (__f.put(*this, *this, this->fill(), __n).failed())
626 this->setstate(ios_base::badbit | ios_base::failbit);
627 }
628#ifndef _LIBCPP_NO_EXCEPTIONS
629 }
630 catch (...)
631 {
632 this->__set_badbit_and_consider_rethrow();
633 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000634#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000635 return *this;
636}
637
638template <class _CharT, class _Traits>
639basic_ostream<_CharT, _Traits>&
640basic_ostream<_CharT, _Traits>::operator<<(float __n)
641{
642#ifndef _LIBCPP_NO_EXCEPTIONS
643 try
644 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000645#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000646 sentry __s(*this);
647 if (__s)
648 {
Howard Hinnant99968442011-11-29 18:15:50 +0000649 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
650 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000651 if (__f.put(*this, *this, this->fill(), static_cast<double>(__n)).failed())
652 this->setstate(ios_base::badbit | ios_base::failbit);
653 }
654#ifndef _LIBCPP_NO_EXCEPTIONS
655 }
656 catch (...)
657 {
658 this->__set_badbit_and_consider_rethrow();
659 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000660#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000661 return *this;
662}
663
664template <class _CharT, class _Traits>
665basic_ostream<_CharT, _Traits>&
666basic_ostream<_CharT, _Traits>::operator<<(double __n)
667{
668#ifndef _LIBCPP_NO_EXCEPTIONS
669 try
670 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000671#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000672 sentry __s(*this);
673 if (__s)
674 {
Howard Hinnant99968442011-11-29 18:15:50 +0000675 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
676 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000677 if (__f.put(*this, *this, this->fill(), __n).failed())
678 this->setstate(ios_base::badbit | ios_base::failbit);
679 }
680#ifndef _LIBCPP_NO_EXCEPTIONS
681 }
682 catch (...)
683 {
684 this->__set_badbit_and_consider_rethrow();
685 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000686#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000687 return *this;
688}
689
690template <class _CharT, class _Traits>
691basic_ostream<_CharT, _Traits>&
692basic_ostream<_CharT, _Traits>::operator<<(long double __n)
693{
694#ifndef _LIBCPP_NO_EXCEPTIONS
695 try
696 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000697#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000698 sentry __s(*this);
699 if (__s)
700 {
Howard Hinnant99968442011-11-29 18:15:50 +0000701 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
702 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000703 if (__f.put(*this, *this, this->fill(), __n).failed())
704 this->setstate(ios_base::badbit | ios_base::failbit);
705 }
706#ifndef _LIBCPP_NO_EXCEPTIONS
707 }
708 catch (...)
709 {
710 this->__set_badbit_and_consider_rethrow();
711 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000712#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000713 return *this;
714}
715
716template <class _CharT, class _Traits>
717basic_ostream<_CharT, _Traits>&
718basic_ostream<_CharT, _Traits>::operator<<(const void* __n)
719{
720#ifndef _LIBCPP_NO_EXCEPTIONS
721 try
722 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000723#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000724 sentry __s(*this);
725 if (__s)
726 {
Howard Hinnant99968442011-11-29 18:15:50 +0000727 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
728 const _Fp& __f = use_facet<_Fp>(this->getloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000729 if (__f.put(*this, *this, this->fill(), __n).failed())
730 this->setstate(ios_base::badbit | ios_base::failbit);
731 }
732#ifndef _LIBCPP_NO_EXCEPTIONS
733 }
734 catch (...)
735 {
736 this->__set_badbit_and_consider_rethrow();
737 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000738#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000739 return *this;
740}
741
742template<class _CharT, class _Traits>
743basic_ostream<_CharT, _Traits>&
Marshall Clow73b46a72013-12-10 19:25:49 +0000744__put_character_sequence(basic_ostream<_CharT, _Traits>& __os,
745 const _CharT* __str, size_t __len)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000746{
747#ifndef _LIBCPP_NO_EXCEPTIONS
748 try
749 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000750#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000751 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
752 if (__s)
753 {
Howard Hinnant99968442011-11-29 18:15:50 +0000754 typedef ostreambuf_iterator<_CharT, _Traits> _Ip;
755 if (__pad_and_output(_Ip(__os),
Marshall Clow73b46a72013-12-10 19:25:49 +0000756 __str,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000757 (__os.flags() & ios_base::adjustfield) == ios_base::left ?
Marshall Clow73b46a72013-12-10 19:25:49 +0000758 __str + __len :
759 __str,
760 __str + __len,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000761 __os,
762 __os.fill()).failed())
763 __os.setstate(ios_base::badbit | ios_base::failbit);
764 }
765#ifndef _LIBCPP_NO_EXCEPTIONS
766 }
767 catch (...)
768 {
769 __os.__set_badbit_and_consider_rethrow();
770 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000771#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000772 return __os;
773}
774
Marshall Clow73b46a72013-12-10 19:25:49 +0000775
776template<class _CharT, class _Traits>
777basic_ostream<_CharT, _Traits>&
778operator<<(basic_ostream<_CharT, _Traits>& __os, _CharT __c)
779{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000780 return _VSTD::__put_character_sequence(__os, &__c, 1);
Marshall Clow73b46a72013-12-10 19:25:49 +0000781}
782
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000783template<class _CharT, class _Traits>
784basic_ostream<_CharT, _Traits>&
785operator<<(basic_ostream<_CharT, _Traits>& __os, char __cn)
786{
787#ifndef _LIBCPP_NO_EXCEPTIONS
788 try
789 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000790#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000791 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
792 if (__s)
793 {
794 _CharT __c = __os.widen(__cn);
Howard Hinnant99968442011-11-29 18:15:50 +0000795 typedef ostreambuf_iterator<_CharT, _Traits> _Ip;
796 if (__pad_and_output(_Ip(__os),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000797 &__c,
798 (__os.flags() & ios_base::adjustfield) == ios_base::left ?
799 &__c + 1 :
800 &__c,
801 &__c + 1,
802 __os,
803 __os.fill()).failed())
804 __os.setstate(ios_base::badbit | ios_base::failbit);
805 }
806#ifndef _LIBCPP_NO_EXCEPTIONS
807 }
808 catch (...)
809 {
810 __os.__set_badbit_and_consider_rethrow();
811 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000812#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000813 return __os;
814}
815
816template<class _Traits>
817basic_ostream<char, _Traits>&
818operator<<(basic_ostream<char, _Traits>& __os, char __c)
819{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000820 return _VSTD::__put_character_sequence(__os, &__c, 1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000821}
822
823template<class _Traits>
824basic_ostream<char, _Traits>&
825operator<<(basic_ostream<char, _Traits>& __os, signed char __c)
826{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000827 return _VSTD::__put_character_sequence(__os, (char *) &__c, 1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000828}
829
830template<class _Traits>
831basic_ostream<char, _Traits>&
832operator<<(basic_ostream<char, _Traits>& __os, unsigned char __c)
833{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000834 return _VSTD::__put_character_sequence(__os, (char *) &__c, 1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000835}
836
837template<class _CharT, class _Traits>
838basic_ostream<_CharT, _Traits>&
839operator<<(basic_ostream<_CharT, _Traits>& __os, const _CharT* __str)
840{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000841 return _VSTD::__put_character_sequence(__os, __str, _Traits::length(__str));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000842}
843
844template<class _CharT, class _Traits>
845basic_ostream<_CharT, _Traits>&
846operator<<(basic_ostream<_CharT, _Traits>& __os, const char* __strn)
847{
848#ifndef _LIBCPP_NO_EXCEPTIONS
849 try
850 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000851#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000852 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
853 if (__s)
854 {
Howard Hinnant99968442011-11-29 18:15:50 +0000855 typedef ostreambuf_iterator<_CharT, _Traits> _Ip;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000856 size_t __len = char_traits<char>::length(__strn);
857 const int __bs = 100;
858 _CharT __wbb[__bs];
859 _CharT* __wb = __wbb;
860 unique_ptr<_CharT, void(*)(void*)> __h(0, free);
861 if (__len > __bs)
862 {
863 __wb = (_CharT*)malloc(__len*sizeof(_CharT));
864 if (__wb == 0)
865 __throw_bad_alloc();
866 __h.reset(__wb);
867 }
868 for (_CharT* __p = __wb; *__strn != '\0'; ++__strn, ++__p)
869 *__p = __os.widen(*__strn);
Howard Hinnant99968442011-11-29 18:15:50 +0000870 if (__pad_and_output(_Ip(__os),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000871 __wb,
872 (__os.flags() & ios_base::adjustfield) == ios_base::left ?
873 __wb + __len :
874 __wb,
875 __wb + __len,
876 __os,
877 __os.fill()).failed())
878 __os.setstate(ios_base::badbit | ios_base::failbit);
879 }
880#ifndef _LIBCPP_NO_EXCEPTIONS
881 }
882 catch (...)
883 {
884 __os.__set_badbit_and_consider_rethrow();
885 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000886#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000887 return __os;
888}
889
890template<class _Traits>
891basic_ostream<char, _Traits>&
892operator<<(basic_ostream<char, _Traits>& __os, const char* __str)
893{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000894 return _VSTD::__put_character_sequence(__os, __str, _Traits::length(__str));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000895}
896
897template<class _Traits>
898basic_ostream<char, _Traits>&
899operator<<(basic_ostream<char, _Traits>& __os, const signed char* __str)
900{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000901 const char *__s = (const char *) __str;
902 return _VSTD::__put_character_sequence(__os, __s, _Traits::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000903}
904
905template<class _Traits>
906basic_ostream<char, _Traits>&
907operator<<(basic_ostream<char, _Traits>& __os, const unsigned char* __str)
908{
Marshall Clow8eb5acc2014-02-16 01:57:26 +0000909 const char *__s = (const char *) __str;
910 return _VSTD::__put_character_sequence(__os, __s, _Traits::length(__s));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000911}
912
913template <class _CharT, class _Traits>
914basic_ostream<_CharT, _Traits>&
915basic_ostream<_CharT, _Traits>::put(char_type __c)
916{
917#ifndef _LIBCPP_NO_EXCEPTIONS
918 try
919 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000920#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000921 sentry __s(*this);
922 if (__s)
923 {
Howard Hinnant99968442011-11-29 18:15:50 +0000924 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
925 _Op __o(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000926 *__o = __c;
927 if (__o.failed())
928 this->setstate(ios_base::badbit);
929 }
930#ifndef _LIBCPP_NO_EXCEPTIONS
931 }
932 catch (...)
933 {
934 this->__set_badbit_and_consider_rethrow();
935 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000936#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000937 return *this;
938}
939
940template <class _CharT, class _Traits>
941basic_ostream<_CharT, _Traits>&
942basic_ostream<_CharT, _Traits>::write(const char_type* __s, streamsize __n)
943{
944#ifndef _LIBCPP_NO_EXCEPTIONS
945 try
946 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000947#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000948 sentry __sen(*this);
949 if (__sen && __n)
950 {
Howard Hinnant0b939632013-01-15 17:22:03 +0000951 if (this->rdbuf()->sputn(__s, __n) != __n)
952 this->setstate(ios_base::badbit);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000953 }
954#ifndef _LIBCPP_NO_EXCEPTIONS
955 }
956 catch (...)
957 {
958 this->__set_badbit_and_consider_rethrow();
959 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000960#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000961 return *this;
962}
963
964template <class _CharT, class _Traits>
965basic_ostream<_CharT, _Traits>&
966basic_ostream<_CharT, _Traits>::flush()
967{
968#ifndef _LIBCPP_NO_EXCEPTIONS
969 try
970 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000971#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000972 if (this->rdbuf())
973 {
974 sentry __s(*this);
975 if (__s)
976 {
977 if (this->rdbuf()->pubsync() == -1)
978 this->setstate(ios_base::badbit);
979 }
980 }
981#ifndef _LIBCPP_NO_EXCEPTIONS
982 }
983 catch (...)
984 {
985 this->__set_badbit_and_consider_rethrow();
986 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000987#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000988 return *this;
989}
990
991template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +0000992inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000993typename basic_ostream<_CharT, _Traits>::pos_type
994basic_ostream<_CharT, _Traits>::tellp()
995{
996 if (this->fail())
997 return pos_type(-1);
998 return this->rdbuf()->pubseekoff(0, ios_base::cur, ios_base::out);
999}
1000
1001template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001002inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001003basic_ostream<_CharT, _Traits>&
1004basic_ostream<_CharT, _Traits>::seekp(pos_type __pos)
1005{
Marshall Clow76a86702013-10-31 22:20:45 +00001006 sentry __s(*this);
Marshall Clow1224e892015-06-22 15:01:21 +00001007 if (!this->fail())
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001008 {
1009 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1))
1010 this->setstate(ios_base::failbit);
1011 }
1012 return *this;
1013}
1014
1015template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001016inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001017basic_ostream<_CharT, _Traits>&
1018basic_ostream<_CharT, _Traits>::seekp(off_type __off, ios_base::seekdir __dir)
1019{
Marshall Clow76a86702013-10-31 22:20:45 +00001020 sentry __s(*this);
Marshall Clow1224e892015-06-22 15:01:21 +00001021 if (!this->fail())
Marshall Clow76a86702013-10-31 22:20:45 +00001022 {
1023 if (this->rdbuf()->pubseekoff(__off, __dir, ios_base::out) == pos_type(-1))
1024 this->setstate(ios_base::failbit);
1025 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001026 return *this;
1027}
1028
1029template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001030inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001031basic_ostream<_CharT, _Traits>&
1032endl(basic_ostream<_CharT, _Traits>& __os)
1033{
1034 __os.put(__os.widen('\n'));
1035 __os.flush();
1036 return __os;
1037}
1038
1039template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001040inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001041basic_ostream<_CharT, _Traits>&
1042ends(basic_ostream<_CharT, _Traits>& __os)
1043{
1044 __os.put(_CharT());
1045 return __os;
1046}
1047
1048template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001049inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001050basic_ostream<_CharT, _Traits>&
1051flush(basic_ostream<_CharT, _Traits>& __os)
1052{
1053 __os.flush();
1054 return __os;
1055}
1056
Howard Hinnant73d21a42010-09-04 23:28:19 +00001057#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001058
1059template <class _Stream, class _Tp>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001060inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001061typename enable_if
1062<
1063 !is_lvalue_reference<_Stream>::value &&
1064 is_base_of<ios_base, _Stream>::value,
Howard Hinnante1a7b042012-01-12 23:37:51 +00001065 _Stream&&
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001066>::type
1067operator<<(_Stream&& __os, const _Tp& __x)
1068{
1069 __os << __x;
Howard Hinnante1a7b042012-01-12 23:37:51 +00001070 return _VSTD::move(__os);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001071}
1072
Howard Hinnant73d21a42010-09-04 23:28:19 +00001073#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001074
1075template<class _CharT, class _Traits, class _Allocator>
1076basic_ostream<_CharT, _Traits>&
1077operator<<(basic_ostream<_CharT, _Traits>& __os,
1078 const basic_string<_CharT, _Traits, _Allocator>& __str)
1079{
Marshall Clow8eb5acc2014-02-16 01:57:26 +00001080 return _VSTD::__put_character_sequence(__os, __str.data(), __str.size());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001081}
1082
Marshall Clow1e00d6d2016-07-21 05:31:24 +00001083template<class _CharT, class _Traits>
1084basic_ostream<_CharT, _Traits>&
1085operator<<(basic_ostream<_CharT, _Traits>& __os,
1086 const basic_string_view<_CharT, _Traits> __sv)
1087{
1088 return _VSTD::__put_character_sequence(__os, __sv.data(), __sv.size());
1089}
1090
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001091template <class _CharT, class _Traits>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001092inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001093basic_ostream<_CharT, _Traits>&
1094operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __ec)
1095{
1096 return __os << __ec.category().name() << ':' << __ec.value();
1097}
1098
Howard Hinnant99968442011-11-29 18:15:50 +00001099template<class _CharT, class _Traits, class _Yp>
Evgeniy Stepanov4c7ee802016-01-08 19:21:02 +00001100inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001101basic_ostream<_CharT, _Traits>&
Howard Hinnant99968442011-11-29 18:15:50 +00001102operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001103{
1104 return __os << __p.get();
1105}
1106
1107template <class _CharT, class _Traits, size_t _Size>
1108basic_ostream<_CharT, _Traits>&
Howard Hinnanta02851e2011-04-05 14:55:28 +00001109operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Size>& __x)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001110{
1111 return __os << __x.template to_string<_CharT, _Traits>
1112 (use_facet<ctype<_CharT> >(__os.getloc()).widen('0'),
1113 use_facet<ctype<_CharT> >(__os.getloc()).widen('1'));
1114}
1115
Howard Hinnant0f678bd2013-08-12 18:38:34 +00001116_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS basic_ostream<char>)
1117_LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS basic_ostream<wchar_t>)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001118
1119_LIBCPP_END_NAMESPACE_STD
1120
1121#endif // _LIBCPP_OSTREAM