blob: 3f78f4d02b3c83747e9b5fc4c889e4164310fdff [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- iomanip ----------------------------------===//
3//
Chandler Carruthd2012102019-01-19 10:56:40 +00004// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Howard Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_IOMANIP
11#define _LIBCPP_IOMANIP
12
13/*
14 iomanip synopsis
15
Marshall Clow096d5792013-11-14 20:01:38 +000016namespace std {
17
Howard Hinnantc51e1022010-05-11 19:42:16 +000018// types T1, T2, ... are unspecified implementation types
19T1 resetiosflags(ios_base::fmtflags mask);
20T2 setiosflags (ios_base::fmtflags mask);
21T3 setbase(int base);
22template<charT> T4 setfill(charT c);
23T5 setprecision(int n);
24T6 setw(int n);
25template <class moneyT> T7 get_money(moneyT& mon, bool intl = false);
26template <class charT, class moneyT> T8 put_money(const moneyT& mon, bool intl = false);
27template <class charT> T9 get_time(struct tm* tmb, const charT* fmt);
28template <class charT> T10 put_time(const struct tm* tmb, const charT* fmt);
29
Marshall Clowf38a2982013-09-05 04:48:45 +000030template <class charT>
31 T11 quoted(const charT* s, charT delim=charT('"'), charT escape=charT('\\')); // C++14
32
33template <class charT, class traits, class Allocator>
34 T12 quoted(const basic_string<charT, traits, Allocator>& s,
35 charT delim=charT('"'), charT escape=charT('\\')); // C++14
36
37template <class charT, class traits, class Allocator>
38 T13 quoted(basic_string<charT, traits, Allocator>& s,
39 charT delim=charT('"'), charT escape=charT('\\')); // C++14
40
Howard Hinnantc51e1022010-05-11 19:42:16 +000041} // std
42
43*/
44
45#include <__config>
Marshall Clowdf63a6d2016-07-21 05:31:24 +000046#include <__string>
Howard Hinnantc51e1022010-05-11 19:42:16 +000047#include <istream>
Marshall Clow0a1e7502018-09-12 19:41:40 +000048#include <version>
Howard Hinnantc51e1022010-05-11 19:42:16 +000049
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000050#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantc51e1022010-05-11 19:42:16 +000051#pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000052#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +000053
54_LIBCPP_BEGIN_NAMESPACE_STD
55
56// resetiosflags
57
58class __iom_t1
59{
60 ios_base::fmtflags __mask_;
61public:
Howard Hinnant64da2602010-09-22 15:29:08 +000062 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +000063 explicit __iom_t1(ios_base::fmtflags __m) : __mask_(__m) {}
64
65 template <class _CharT, class _Traits>
66 friend
Howard Hinnant64da2602010-09-22 15:29:08 +000067 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +000068 basic_istream<_CharT, _Traits>&
69 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t1& __x)
70 {
71 __is.unsetf(__x.__mask_);
72 return __is;
73 }
74
75 template <class _CharT, class _Traits>
76 friend
Howard Hinnant64da2602010-09-22 15:29:08 +000077 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +000078 basic_ostream<_CharT, _Traits>&
79 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t1& __x)
80 {
81 __os.unsetf(__x.__mask_);
82 return __os;
83 }
84};
85
86inline _LIBCPP_INLINE_VISIBILITY
87__iom_t1
88resetiosflags(ios_base::fmtflags __mask)
89{
90 return __iom_t1(__mask);
91}
92
93// setiosflags
94
95class __iom_t2
96{
97 ios_base::fmtflags __mask_;
98public:
Howard Hinnant64da2602010-09-22 15:29:08 +000099 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000100 explicit __iom_t2(ios_base::fmtflags __m) : __mask_(__m) {}
101
102 template <class _CharT, class _Traits>
103 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000104 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000105 basic_istream<_CharT, _Traits>&
106 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t2& __x)
107 {
108 __is.setf(__x.__mask_);
109 return __is;
110 }
111
112 template <class _CharT, class _Traits>
113 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000114 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000115 basic_ostream<_CharT, _Traits>&
116 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t2& __x)
117 {
118 __os.setf(__x.__mask_);
119 return __os;
120 }
121};
122
123inline _LIBCPP_INLINE_VISIBILITY
124__iom_t2
125setiosflags(ios_base::fmtflags __mask)
126{
127 return __iom_t2(__mask);
128}
129
130// setbase
131
132class __iom_t3
133{
134 int __base_;
135public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000136 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000137 explicit __iom_t3(int __b) : __base_(__b) {}
138
139 template <class _CharT, class _Traits>
140 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000141 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000142 basic_istream<_CharT, _Traits>&
143 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t3& __x)
144 {
145 __is.setf(__x.__base_ == 8 ? ios_base::oct :
146 __x.__base_ == 10 ? ios_base::dec :
147 __x.__base_ == 16 ? ios_base::hex :
148 ios_base::fmtflags(0), ios_base::basefield);
149 return __is;
150 }
151
152 template <class _CharT, class _Traits>
153 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000154 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000155 basic_ostream<_CharT, _Traits>&
156 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t3& __x)
157 {
158 __os.setf(__x.__base_ == 8 ? ios_base::oct :
159 __x.__base_ == 10 ? ios_base::dec :
160 __x.__base_ == 16 ? ios_base::hex :
161 ios_base::fmtflags(0), ios_base::basefield);
162 return __os;
163 }
164};
165
166inline _LIBCPP_INLINE_VISIBILITY
167__iom_t3
168setbase(int __base)
169{
170 return __iom_t3(__base);
171}
172
173// setfill
174
175template<class _CharT>
176class __iom_t4
177{
178 _CharT __fill_;
179public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000180 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000181 explicit __iom_t4(_CharT __c) : __fill_(__c) {}
182
183 template <class _Traits>
184 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000185 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000186 basic_ostream<_CharT, _Traits>&
187 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t4& __x)
188 {
189 __os.fill(__x.__fill_);
190 return __os;
191 }
192};
193
194template<class _CharT>
195inline _LIBCPP_INLINE_VISIBILITY
196__iom_t4<_CharT>
197setfill(_CharT __c)
198{
199 return __iom_t4<_CharT>(__c);
200}
201
202// setprecision
203
204class __iom_t5
205{
206 int __n_;
207public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000208 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000209 explicit __iom_t5(int __n) : __n_(__n) {}
210
211 template <class _CharT, class _Traits>
212 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000213 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000214 basic_istream<_CharT, _Traits>&
215 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t5& __x)
216 {
217 __is.precision(__x.__n_);
218 return __is;
219 }
220
221 template <class _CharT, class _Traits>
222 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000223 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000224 basic_ostream<_CharT, _Traits>&
225 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t5& __x)
226 {
227 __os.precision(__x.__n_);
228 return __os;
229 }
230};
231
232inline _LIBCPP_INLINE_VISIBILITY
233__iom_t5
234setprecision(int __n)
235{
236 return __iom_t5(__n);
237}
238
239// setw
240
241class __iom_t6
242{
243 int __n_;
244public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000245 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000246 explicit __iom_t6(int __n) : __n_(__n) {}
247
248 template <class _CharT, class _Traits>
249 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000250 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000251 basic_istream<_CharT, _Traits>&
252 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t6& __x)
253 {
254 __is.width(__x.__n_);
255 return __is;
256 }
257
258 template <class _CharT, class _Traits>
259 friend
Howard Hinnant64da2602010-09-22 15:29:08 +0000260 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000261 basic_ostream<_CharT, _Traits>&
262 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t6& __x)
263 {
264 __os.width(__x.__n_);
265 return __os;
266 }
267};
268
269inline _LIBCPP_INLINE_VISIBILITY
270__iom_t6
271setw(int __n)
272{
273 return __iom_t6(__n);
274}
275
276// get_money
277
278template <class _MoneyT> class __iom_t7;
279
280template <class _CharT, class _Traits, class _MoneyT>
281basic_istream<_CharT, _Traits>&
282operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t7<_MoneyT>& __x);
283
284template <class _MoneyT>
285class __iom_t7
286{
287 _MoneyT& __mon_;
288 bool __intl_;
289public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000290 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000291 __iom_t7(_MoneyT& __mon, bool __intl)
292 : __mon_(__mon), __intl_(__intl) {}
293
Howard Hinnantc834c512011-11-29 18:15:50 +0000294 template <class _CharT, class _Traits, class _Mp>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000295 friend
296 basic_istream<_CharT, _Traits>&
Howard Hinnantc834c512011-11-29 18:15:50 +0000297 operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t7<_Mp>& __x);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000298};
299
300template <class _CharT, class _Traits, class _MoneyT>
301basic_istream<_CharT, _Traits>&
302operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t7<_MoneyT>& __x)
303{
304#ifndef _LIBCPP_NO_EXCEPTIONS
305 try
306 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000307#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000308 typename basic_istream<_CharT, _Traits>::sentry __s(__is);
309 if (__s)
310 {
Howard Hinnantc834c512011-11-29 18:15:50 +0000311 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
312 typedef money_get<_CharT, _Ip> _Fp;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000313 ios_base::iostate __err = ios_base::goodbit;
Howard Hinnantc834c512011-11-29 18:15:50 +0000314 const _Fp& __mf = use_facet<_Fp>(__is.getloc());
315 __mf.get(_Ip(__is), _Ip(), __x.__intl_, __is, __err, __x.__mon_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000316 __is.setstate(__err);
317 }
318#ifndef _LIBCPP_NO_EXCEPTIONS
319 }
320 catch (...)
321 {
322 __is.__set_badbit_and_consider_rethrow();
323 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000324#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000325 return __is;
326}
327
328template <class _MoneyT>
329inline _LIBCPP_INLINE_VISIBILITY
330__iom_t7<_MoneyT>
331get_money(_MoneyT& __mon, bool __intl = false)
332{
333 return __iom_t7<_MoneyT>(__mon, __intl);
334}
335
336// put_money
337
338template <class _MoneyT> class __iom_t8;
339
340template <class _CharT, class _Traits, class _MoneyT>
341basic_ostream<_CharT, _Traits>&
342operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t8<_MoneyT>& __x);
343
344template <class _MoneyT>
345class __iom_t8
346{
347 const _MoneyT& __mon_;
348 bool __intl_;
349public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000350 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000351 __iom_t8(const _MoneyT& __mon, bool __intl)
352 : __mon_(__mon), __intl_(__intl) {}
353
Howard Hinnantc834c512011-11-29 18:15:50 +0000354 template <class _CharT, class _Traits, class _Mp>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000355 friend
356 basic_ostream<_CharT, _Traits>&
Howard Hinnantc834c512011-11-29 18:15:50 +0000357 operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t8<_Mp>& __x);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000358};
359
360template <class _CharT, class _Traits, class _MoneyT>
361basic_ostream<_CharT, _Traits>&
362operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t8<_MoneyT>& __x)
363{
364#ifndef _LIBCPP_NO_EXCEPTIONS
365 try
366 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000367#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000368 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
369 if (__s)
370 {
Howard Hinnantc834c512011-11-29 18:15:50 +0000371 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
372 typedef money_put<_CharT, _Op> _Fp;
373 const _Fp& __mf = use_facet<_Fp>(__os.getloc());
374 if (__mf.put(_Op(__os), __x.__intl_, __os, __os.fill(), __x.__mon_).failed())
Howard Hinnantc51e1022010-05-11 19:42:16 +0000375 __os.setstate(ios_base::badbit);
376 }
377#ifndef _LIBCPP_NO_EXCEPTIONS
378 }
379 catch (...)
380 {
381 __os.__set_badbit_and_consider_rethrow();
382 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000383#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000384 return __os;
385}
386
387template <class _MoneyT>
388inline _LIBCPP_INLINE_VISIBILITY
389__iom_t8<_MoneyT>
390put_money(const _MoneyT& __mon, bool __intl = false)
391{
392 return __iom_t8<_MoneyT>(__mon, __intl);
393}
394
395// get_time
396
397template <class _CharT> class __iom_t9;
398
399template <class _CharT, class _Traits>
400basic_istream<_CharT, _Traits>&
401operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t9<_CharT>& __x);
402
403template <class _CharT>
404class __iom_t9
405{
406 tm* __tm_;
407 const _CharT* __fmt_;
408public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000409 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000410 __iom_t9(tm* __tm, const _CharT* __fmt)
411 : __tm_(__tm), __fmt_(__fmt) {}
412
Howard Hinnantc834c512011-11-29 18:15:50 +0000413 template <class _Cp, class _Traits>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000414 friend
Howard Hinnantc834c512011-11-29 18:15:50 +0000415 basic_istream<_Cp, _Traits>&
416 operator>>(basic_istream<_Cp, _Traits>& __is, const __iom_t9<_Cp>& __x);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000417};
418
419template <class _CharT, class _Traits>
420basic_istream<_CharT, _Traits>&
421operator>>(basic_istream<_CharT, _Traits>& __is, const __iom_t9<_CharT>& __x)
422{
423#ifndef _LIBCPP_NO_EXCEPTIONS
424 try
425 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000426#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000427 typename basic_istream<_CharT, _Traits>::sentry __s(__is);
428 if (__s)
429 {
Howard Hinnantc834c512011-11-29 18:15:50 +0000430 typedef istreambuf_iterator<_CharT, _Traits> _Ip;
431 typedef time_get<_CharT, _Ip> _Fp;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000432 ios_base::iostate __err = ios_base::goodbit;
Howard Hinnantc834c512011-11-29 18:15:50 +0000433 const _Fp& __tf = use_facet<_Fp>(__is.getloc());
434 __tf.get(_Ip(__is), _Ip(), __is, __err, __x.__tm_,
Howard Hinnantc51e1022010-05-11 19:42:16 +0000435 __x.__fmt_, __x.__fmt_ + _Traits::length(__x.__fmt_));
436 __is.setstate(__err);
437 }
438#ifndef _LIBCPP_NO_EXCEPTIONS
439 }
440 catch (...)
441 {
442 __is.__set_badbit_and_consider_rethrow();
443 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000444#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000445 return __is;
446}
447
448template <class _CharT>
449inline _LIBCPP_INLINE_VISIBILITY
450__iom_t9<_CharT>
451get_time(tm* __tm, const _CharT* __fmt)
452{
453 return __iom_t9<_CharT>(__tm, __fmt);
454}
455
456// put_time
457
458template <class _CharT> class __iom_t10;
459
460template <class _CharT, class _Traits>
461basic_ostream<_CharT, _Traits>&
462operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t10<_CharT>& __x);
463
464template <class _CharT>
465class __iom_t10
466{
467 const tm* __tm_;
468 const _CharT* __fmt_;
469public:
Howard Hinnant64da2602010-09-22 15:29:08 +0000470 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000471 __iom_t10(const tm* __tm, const _CharT* __fmt)
472 : __tm_(__tm), __fmt_(__fmt) {}
473
Howard Hinnantc834c512011-11-29 18:15:50 +0000474 template <class _Cp, class _Traits>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000475 friend
Howard Hinnantc834c512011-11-29 18:15:50 +0000476 basic_ostream<_Cp, _Traits>&
477 operator<<(basic_ostream<_Cp, _Traits>& __os, const __iom_t10<_Cp>& __x);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000478};
479
480template <class _CharT, class _Traits>
481basic_ostream<_CharT, _Traits>&
482operator<<(basic_ostream<_CharT, _Traits>& __os, const __iom_t10<_CharT>& __x)
483{
484#ifndef _LIBCPP_NO_EXCEPTIONS
485 try
486 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000487#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000488 typename basic_ostream<_CharT, _Traits>::sentry __s(__os);
489 if (__s)
490 {
Howard Hinnantc834c512011-11-29 18:15:50 +0000491 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
492 typedef time_put<_CharT, _Op> _Fp;
493 const _Fp& __tf = use_facet<_Fp>(__os.getloc());
494 if (__tf.put(_Op(__os), __os, __os.fill(), __x.__tm_,
Howard Hinnantc51e1022010-05-11 19:42:16 +0000495 __x.__fmt_, __x.__fmt_ + _Traits::length(__x.__fmt_)).failed())
496 __os.setstate(ios_base::badbit);
497 }
498#ifndef _LIBCPP_NO_EXCEPTIONS
499 }
500 catch (...)
501 {
502 __os.__set_badbit_and_consider_rethrow();
503 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000504#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000505 return __os;
506}
507
508template <class _CharT>
509inline _LIBCPP_INLINE_VISIBILITY
510__iom_t10<_CharT>
511put_time(const tm* __tm, const _CharT* __fmt)
512{
513 return __iom_t10<_CharT>(__tm, __fmt);
514}
515
Marshall Clowf38a2982013-09-05 04:48:45 +0000516template <class _CharT, class _Traits, class _ForwardIterator>
517std::basic_ostream<_CharT, _Traits> &
Louis Dionne173f29e2019-05-29 16:01:36 +0000518__quoted_output ( basic_ostream<_CharT, _Traits> &__os,
Marshall Clowf38a2982013-09-05 04:48:45 +0000519 _ForwardIterator __first, _ForwardIterator __last, _CharT __delim, _CharT __escape )
520{
Marshall Clow3d036762014-03-07 21:45:32 +0000521 _VSTD::basic_string<_CharT, _Traits> __str;
522 __str.push_back(__delim);
Marshall Clowf38a2982013-09-05 04:48:45 +0000523 for ( ; __first != __last; ++ __first )
524 {
525 if (_Traits::eq (*__first, __escape) || _Traits::eq (*__first, __delim))
Marshall Clow3d036762014-03-07 21:45:32 +0000526 __str.push_back(__escape);
527 __str.push_back(*__first);
Marshall Clowf38a2982013-09-05 04:48:45 +0000528 }
Marshall Clow3d036762014-03-07 21:45:32 +0000529 __str.push_back(__delim);
530 return __put_character_sequence(__os, __str.data(), __str.size());
Marshall Clowf38a2982013-09-05 04:48:45 +0000531}
532
533template <class _CharT, class _Traits, class _String>
534basic_istream<_CharT, _Traits> &
535__quoted_input ( basic_istream<_CharT, _Traits> &__is, _String & __string, _CharT __delim, _CharT __escape )
536{
537 __string.clear ();
538 _CharT __c;
539 __is >> __c;
540 if ( __is.fail ())
541 return __is;
542
543 if (!_Traits::eq (__c, __delim)) // no delimiter, read the whole string
544 {
545 __is.unget ();
546 __is >> __string;
547 return __is;
548 }
549
550 __save_flags<_CharT, _Traits> sf(__is);
551 noskipws (__is);
552 while (true)
553 {
554 __is >> __c;
555 if ( __is.fail ())
556 break;
557 if (_Traits::eq (__c, __escape))
558 {
559 __is >> __c;
560 if ( __is.fail ())
561 break;
562 }
563 else if (_Traits::eq (__c, __delim))
564 break;
565 __string.push_back ( __c );
566 }
567 return __is;
568}
569
570
Marshall Clowf38a2982013-09-05 04:48:45 +0000571template <class _CharT, class _Traits, class _Iter>
572basic_ostream<_CharT, _Traits>& operator<<(
Louis Dionne173f29e2019-05-29 16:01:36 +0000573 basic_ostream<_CharT, _Traits>& __os,
Marshall Clowf38a2982013-09-05 04:48:45 +0000574 const __quoted_output_proxy<_CharT, _Iter, _Traits> & __proxy)
575{
576 return __quoted_output (__os, __proxy.__first, __proxy.__last, __proxy.__delim, __proxy.__escape);
577}
578
579template <class _CharT, class _Traits, class _Allocator>
580struct __quoted_proxy
581{
582 basic_string<_CharT, _Traits, _Allocator> &__string;
583 _CharT __delim;
584 _CharT __escape;
585
586 __quoted_proxy(basic_string<_CharT, _Traits, _Allocator> &__s, _CharT __d, _CharT __e)
587 : __string(__s), __delim(__d), __escape(__e) {}
588};
589
590template <class _CharT, class _Traits, class _Allocator>
591_LIBCPP_INLINE_VISIBILITY
592basic_ostream<_CharT, _Traits>& operator<<(
Louis Dionne173f29e2019-05-29 16:01:36 +0000593 basic_ostream<_CharT, _Traits>& __os,
Marshall Clowf38a2982013-09-05 04:48:45 +0000594 const __quoted_proxy<_CharT, _Traits, _Allocator> & __proxy)
595{
Marshall Clow096d5792013-11-14 20:01:38 +0000596 return __quoted_output (__os, __proxy.__string.cbegin (), __proxy.__string.cend (), __proxy.__delim, __proxy.__escape);
Marshall Clowf38a2982013-09-05 04:48:45 +0000597}
598
599// extractor for non-const basic_string& proxies
600template <class _CharT, class _Traits, class _Allocator>
601_LIBCPP_INLINE_VISIBILITY
602basic_istream<_CharT, _Traits>& operator>>(
Louis Dionne173f29e2019-05-29 16:01:36 +0000603 basic_istream<_CharT, _Traits>& __is,
Marshall Clowf38a2982013-09-05 04:48:45 +0000604 const __quoted_proxy<_CharT, _Traits, _Allocator> & __proxy)
605{
606 return __quoted_input ( __is, __proxy.__string, __proxy.__delim, __proxy.__escape );
607}
608
609
610template <class _CharT>
611_LIBCPP_INLINE_VISIBILITY
612__quoted_output_proxy<_CharT, const _CharT *>
613quoted ( const _CharT *__s, _CharT __delim = _CharT('"'), _CharT __escape =_CharT('\\'))
614{
615 const _CharT *__end = __s;
616 while ( *__end ) ++__end;
617 return __quoted_output_proxy<_CharT, const _CharT *> ( __s, __end, __delim, __escape );
618}
619
Eric Fiselier435db152016-06-17 19:46:40 +0000620
621template <class _CharT, class _Traits, class _Allocator>
622_LIBCPP_INLINE_VISIBILITY
623__quoted_output_proxy<_CharT, typename basic_string <_CharT, _Traits, _Allocator>::const_iterator>
624__quoted ( const basic_string <_CharT, _Traits, _Allocator> &__s, _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
625{
626 return __quoted_output_proxy<_CharT,
627 typename basic_string <_CharT, _Traits, _Allocator>::const_iterator>
628 ( __s.cbegin(), __s.cend (), __delim, __escape );
629}
630
631template <class _CharT, class _Traits, class _Allocator>
632_LIBCPP_INLINE_VISIBILITY
633__quoted_proxy<_CharT, _Traits, _Allocator>
634__quoted ( basic_string <_CharT, _Traits, _Allocator> &__s, _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
635{
636 return __quoted_proxy<_CharT, _Traits, _Allocator>( __s, __delim, __escape );
637}
638
639
640#if _LIBCPP_STD_VER > 11
641
Marshall Clowf38a2982013-09-05 04:48:45 +0000642template <class _CharT, class _Traits, class _Allocator>
643_LIBCPP_INLINE_VISIBILITY
644__quoted_output_proxy<_CharT, typename basic_string <_CharT, _Traits, _Allocator>::const_iterator>
645quoted ( const basic_string <_CharT, _Traits, _Allocator> &__s, _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
646{
Eric Fiselier435db152016-06-17 19:46:40 +0000647 return __quoted(__s, __delim, __escape);
Marshall Clowf38a2982013-09-05 04:48:45 +0000648}
649
650template <class _CharT, class _Traits, class _Allocator>
Eric Fiselier435db152016-06-17 19:46:40 +0000651_LIBCPP_INLINE_VISIBILITY
Marshall Clowf38a2982013-09-05 04:48:45 +0000652__quoted_proxy<_CharT, _Traits, _Allocator>
653quoted ( basic_string <_CharT, _Traits, _Allocator> &__s, _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
654{
Eric Fiselier435db152016-06-17 19:46:40 +0000655 return __quoted(__s, __delim, __escape);
Marshall Clowf38a2982013-09-05 04:48:45 +0000656}
Marshall Clow3f209102016-10-27 15:10:07 +0000657
658template <class _CharT, class _Traits>
659__quoted_output_proxy<_CharT, const _CharT *, _Traits>
660quoted (basic_string_view <_CharT, _Traits> __sv,
661 _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\'))
662{
Louis Dionne173f29e2019-05-29 16:01:36 +0000663 return __quoted_output_proxy<_CharT, const _CharT *, _Traits>
Marshall Clow3f209102016-10-27 15:10:07 +0000664 ( __sv.data(), __sv.data() + __sv.size(), __delim, __escape );
665}
Marshall Clowf38a2982013-09-05 04:48:45 +0000666#endif
667
Howard Hinnantc51e1022010-05-11 19:42:16 +0000668_LIBCPP_END_NAMESPACE_STD
669
670#endif // _LIBCPP_IOMANIP