blob: 7019eb411b1e7e788b26c032536f05d87c72368f [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001//===-------------------------- ios.cpp -----------------------------------===//
2//
Howard Hinnantc566dc32010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantc51e1022010-05-11 19:42:16 +00004//
Howard Hinnantee11c312010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
Howard Hinnantf9260592013-08-29 20:56:53 +000010#define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__;
11
Howard Hinnantc51e1022010-05-11 19:42:16 +000012#include "ios"
13#include "streambuf"
14#include "istream"
15#include "string"
16#include "__locale"
17#include "algorithm"
18#include "memory"
19#include "new"
20#include "limits"
21#include <stdlib.h>
22
23_LIBCPP_BEGIN_NAMESPACE_STD
24
Howard Hinnantc51e1022010-05-11 19:42:16 +000025template class basic_ios<char>;
26template class basic_ios<wchar_t>;
27
28template class basic_streambuf<char>;
29template class basic_streambuf<wchar_t>;
30
31template class basic_istream<char>;
32template class basic_istream<wchar_t>;
33
34template class basic_ostream<char>;
35template class basic_ostream<wchar_t>;
36
37template class basic_iostream<char>;
38
39class _LIBCPP_HIDDEN __iostream_category
40 : public __do_message
41{
42public:
Howard Hinnant1f098bc2011-05-26 19:48:01 +000043 virtual const char* name() const _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +000044 virtual string message(int ev) const;
45};
46
47const char*
Howard Hinnant1f098bc2011-05-26 19:48:01 +000048__iostream_category::name() const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +000049{
50 return "iostream";
51}
52
53string
54__iostream_category::message(int ev) const
55{
Howard Hinnant155c2af2010-05-24 17:49:41 +000056 if (ev != static_cast<int>(io_errc::stream)
57#ifdef ELAST
58 && ev <= ELAST
59#endif
60 )
Howard Hinnantc51e1022010-05-11 19:42:16 +000061 return __do_message::message(ev);
62 return string("unspecified iostream_category error");
63}
64
65const error_category&
Marshall Clow3f138dc2013-10-12 22:49:56 +000066iostream_category() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +000067{
68 static __iostream_category s;
69 return s;
70}
71
72// ios_base::failure
73
74ios_base::failure::failure(const string& msg, const error_code& ec)
75 : system_error(ec, msg)
76{
77}
78
79ios_base::failure::failure(const char* msg, const error_code& ec)
80 : system_error(ec, msg)
81{
82}
83
84ios_base::failure::~failure() throw()
85{
86}
87
88// ios_base locale
89
90const ios_base::fmtflags ios_base::boolalpha;
91const ios_base::fmtflags ios_base::dec;
92const ios_base::fmtflags ios_base::fixed;
93const ios_base::fmtflags ios_base::hex;
94const ios_base::fmtflags ios_base::internal;
95const ios_base::fmtflags ios_base::left;
96const ios_base::fmtflags ios_base::oct;
97const ios_base::fmtflags ios_base::right;
98const ios_base::fmtflags ios_base::scientific;
99const ios_base::fmtflags ios_base::showbase;
100const ios_base::fmtflags ios_base::showpoint;
101const ios_base::fmtflags ios_base::showpos;
102const ios_base::fmtflags ios_base::skipws;
103const ios_base::fmtflags ios_base::unitbuf;
104const ios_base::fmtflags ios_base::uppercase;
105const ios_base::fmtflags ios_base::adjustfield;
106const ios_base::fmtflags ios_base::basefield;
107const ios_base::fmtflags ios_base::floatfield;
108
109const ios_base::iostate ios_base::badbit;
110const ios_base::iostate ios_base::eofbit;
111const ios_base::iostate ios_base::failbit;
112const ios_base::iostate ios_base::goodbit;
113
114const ios_base::openmode ios_base::app;
115const ios_base::openmode ios_base::ate;
116const ios_base::openmode ios_base::binary;
117const ios_base::openmode ios_base::in;
118const ios_base::openmode ios_base::out;
119const ios_base::openmode ios_base::trunc;
120
121void
122ios_base::__call_callbacks(event ev)
123{
124 for (size_t i = __event_size_; i;)
125 {
126 --i;
127 __fn_[i](ev, *this, __index_[i]);
128 }
129}
130
131// locale
132
133locale
134ios_base::imbue(const locale& newloc)
135{
136 static_assert(sizeof(locale) == sizeof(__loc_), "");
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000137 locale& loc_storage = *reinterpret_cast<locale*>(&__loc_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000138 locale oldloc = loc_storage;
139 loc_storage = newloc;
140 __call_callbacks(imbue_event);
141 return oldloc;
142}
143
144locale
145ios_base::getloc() const
146{
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000147 const locale& loc_storage = *reinterpret_cast<const locale*>(&__loc_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000148 return loc_storage;
149}
150
151// xalloc
Marshall Clowf9698ab2013-10-12 19:13:52 +0000152#if __has_feature(cxx_atomic)
153atomic<int> ios_base::__xindex_ = ATOMIC_VAR_INIT(0);
154#else
Howard Hinnantc51e1022010-05-11 19:42:16 +0000155int ios_base::__xindex_ = 0;
Marshall Clowf9698ab2013-10-12 19:13:52 +0000156#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000157
158int
159ios_base::xalloc()
160{
161 return __xindex_++;
162}
163
164long&
165ios_base::iword(int index)
166{
167 size_t req_size = static_cast<size_t>(index)+1;
168 if (req_size > __iarray_cap_)
169 {
170 size_t newcap;
171 const size_t mx = std::numeric_limits<size_t>::max();
172 if (req_size < mx/2)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000173 newcap = _VSTD::max(2 * __iarray_cap_, req_size);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000174 else
175 newcap = mx;
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000176 size_t newsize = newcap * sizeof(long);
177 long* iarray = static_cast<long*>(realloc(__iarray_, newsize));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000178 if (iarray == 0)
179 {
180 setstate(badbit);
181 static long error;
182 error = 0;
183 return error;
184 }
185 __iarray_ = iarray;
186 for (long* p = __iarray_ + __iarray_size_; __iarray_cap_ < newcap; ++__iarray_cap_, ++p)
187 *p = 0;
188 }
189 __iarray_size_ = max<size_t>(__iarray_size_, req_size);
190 return __iarray_[index];
191}
192
193void*&
194ios_base::pword(int index)
195{
196 size_t req_size = static_cast<size_t>(index)+1;
197 if (req_size > __parray_cap_)
198 {
199 size_t newcap;
200 const size_t mx = std::numeric_limits<size_t>::max();
201 if (req_size < mx/2)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000202 newcap = _VSTD::max(2 * __parray_cap_, req_size);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000203 else
204 newcap = mx;
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000205 size_t newsize = newcap * sizeof(void*);
206 void** parray = static_cast<void**>(realloc(__parray_, newsize));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000207 if (parray == 0)
208 {
209 setstate(badbit);
210 static void* error;
211 error = 0;
212 return error;
213 }
214 __parray_ = parray;
215 for (void** p = __parray_ + __parray_size_; __parray_cap_ < newcap; ++__parray_cap_, ++p)
216 *p = 0;
217 }
218 __parray_size_ = max<size_t>(__parray_size_, req_size);
219 return __parray_[index];
220}
221
222// register_callback
223
224void
225ios_base::register_callback(event_callback fn, int index)
226{
227 size_t req_size = __event_size_ + 1;
228 if (req_size > __event_cap_)
229 {
230 size_t newcap;
231 const size_t mx = std::numeric_limits<size_t>::max();
232 if (req_size < mx/2)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000233 newcap = _VSTD::max(2 * __event_cap_, req_size);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000234 else
235 newcap = mx;
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000236 size_t newesize = newcap * sizeof(event_callback);
237 event_callback* fns = static_cast<event_callback*>(realloc(__fn_, newesize));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000238 if (fns == 0)
239 setstate(badbit);
240 __fn_ = fns;
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000241 size_t newisize = newcap * sizeof(int);
242 int* indxs = static_cast<int *>(realloc(__index_, newisize));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000243 if (indxs == 0)
244 setstate(badbit);
245 __index_ = indxs;
246 }
247 __fn_[__event_size_] = fn;
248 __index_[__event_size_] = index;
249 ++__event_size_;
250}
251
252ios_base::~ios_base()
253{
254 __call_callbacks(erase_event);
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000255 locale& loc_storage = *reinterpret_cast<locale*>(&__loc_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000256 loc_storage.~locale();
257 free(__fn_);
258 free(__index_);
259 free(__iarray_);
260 free(__parray_);
261}
262
263// iostate
264
265void
266ios_base::clear(iostate state)
267{
268 if (__rdbuf_)
269 __rdstate_ = state;
270 else
271 __rdstate_ = state | badbit;
Howard Hinnant72f73582010-08-11 17:04:31 +0000272#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000273 if (((state | (__rdbuf_ ? goodbit : badbit)) & __exceptions_) != 0)
274 throw failure("ios_base::clear");
Howard Hinnantffb308e2010-08-22 00:03:27 +0000275#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000276}
277
278// init
279
280void
281ios_base::init(void* sb)
282{
283 __rdbuf_ = sb;
284 __rdstate_ = __rdbuf_ ? goodbit : badbit;
285 __exceptions_ = goodbit;
286 __fmtflags_ = skipws | dec;
287 __width_ = 0;
288 __precision_ = 6;
289 __fn_ = 0;
290 __index_ = 0;
291 __event_size_ = 0;
292 __event_cap_ = 0;
293 __iarray_ = 0;
294 __iarray_size_ = 0;
295 __iarray_cap_ = 0;
296 __parray_ = 0;
297 __parray_size_ = 0;
298 __parray_cap_ = 0;
299 ::new(&__loc_) locale;
300}
301
302void
303ios_base::copyfmt(const ios_base& rhs)
304{
305 // If we can't acquire the needed resources, throw bad_alloc (can't set badbit)
306 // Don't alter *this until all needed resources are aquired
307 unique_ptr<event_callback, void (*)(void*)> new_callbacks(0, free);
308 unique_ptr<int, void (*)(void*)> new_ints(0, free);
309 unique_ptr<long, void (*)(void*)> new_longs(0, free);
310 unique_ptr<void*, void (*)(void*)> new_pointers(0, free);
311 if (__event_cap_ < rhs.__event_size_)
312 {
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000313 size_t newesize = sizeof(event_callback) * rhs.__event_size_;
314 new_callbacks.reset(static_cast<event_callback*>(malloc(newesize)));
Howard Hinnant72f73582010-08-11 17:04:31 +0000315#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000316 if (!new_callbacks)
317 throw bad_alloc();
Howard Hinnantffb308e2010-08-22 00:03:27 +0000318#endif // _LIBCPP_NO_EXCEPTIONS
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000319
320 size_t newisize = sizeof(int) * rhs.__event_size_;
321 new_ints.reset(static_cast<int *>(malloc(newisize)));
Howard Hinnant72f73582010-08-11 17:04:31 +0000322#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000323 if (!new_ints)
324 throw bad_alloc();
Howard Hinnantffb308e2010-08-22 00:03:27 +0000325#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000326 }
327 if (__iarray_cap_ < rhs.__iarray_size_)
328 {
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000329 size_t newsize = sizeof(long) * rhs.__iarray_size_;
330 new_longs.reset(static_cast<long*>(malloc(newsize)));
Howard Hinnant72f73582010-08-11 17:04:31 +0000331#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000332 if (!new_longs)
333 throw bad_alloc();
Howard Hinnantffb308e2010-08-22 00:03:27 +0000334#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000335 }
336 if (__parray_cap_ < rhs.__parray_size_)
337 {
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000338 size_t newsize = sizeof(void*) * rhs.__parray_size_;
339 new_pointers.reset(static_cast<void**>(malloc(newsize)));
Howard Hinnant72f73582010-08-11 17:04:31 +0000340#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000341 if (!new_pointers)
342 throw bad_alloc();
Howard Hinnantffb308e2010-08-22 00:03:27 +0000343#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000344 }
345 // Got everything we need. Copy everything but __rdstate_, __rdbuf_ and __exceptions_
346 __fmtflags_ = rhs.__fmtflags_;
347 __precision_ = rhs.__precision_;
348 __width_ = rhs.__width_;
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000349 locale& lhs_loc = *reinterpret_cast<locale*>(&__loc_);
350 const locale& rhs_loc = *reinterpret_cast<const locale*>(&rhs.__loc_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000351 lhs_loc = rhs_loc;
352 if (__event_cap_ < rhs.__event_size_)
353 {
354 free(__fn_);
355 __fn_ = new_callbacks.release();
356 free(__index_);
357 __index_ = new_ints.release();
358 __event_cap_ = rhs.__event_size_;
359 }
360 for (__event_size_ = 0; __event_size_ < rhs.__event_size_; ++__event_size_)
361 {
362 __fn_[__event_size_] = rhs.__fn_[__event_size_];
363 __index_[__event_size_] = rhs.__index_[__event_size_];
364 }
365 if (__iarray_cap_ < rhs.__iarray_size_)
366 {
367 free(__iarray_);
368 __iarray_ = new_longs.release();
369 __iarray_cap_ = rhs.__iarray_size_;
370 }
371 for (__iarray_size_ = 0; __iarray_size_ < rhs.__iarray_size_; ++__iarray_size_)
372 __iarray_[__iarray_size_] = rhs.__iarray_[__iarray_size_];
373 if (__parray_cap_ < rhs.__parray_size_)
374 {
375 free(__parray_);
376 __parray_ = new_pointers.release();
377 __parray_cap_ = rhs.__parray_size_;
378 }
379 for (__parray_size_ = 0; __parray_size_ < rhs.__parray_size_; ++__parray_size_)
380 __parray_[__parray_size_] = rhs.__parray_[__parray_size_];
381}
382
383void
384ios_base::move(ios_base& rhs)
385{
386 // *this is uninitialized
387 __fmtflags_ = rhs.__fmtflags_;
388 __precision_ = rhs.__precision_;
389 __width_ = rhs.__width_;
390 __rdstate_ = rhs.__rdstate_;
391 __exceptions_ = rhs.__exceptions_;
392 __rdbuf_ = 0;
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000393 locale& rhs_loc = *reinterpret_cast<locale*>(&rhs.__loc_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000394 ::new(&__loc_) locale(rhs_loc);
395 __fn_ = rhs.__fn_;
396 rhs.__fn_ = 0;
397 __index_ = rhs.__index_;
398 rhs.__index_ = 0;
399 __event_size_ = rhs.__event_size_;
400 rhs.__event_size_ = 0;
401 __event_cap_ = rhs.__event_cap_;
402 rhs.__event_cap_ = 0;
403 __iarray_ = rhs.__iarray_;
404 rhs.__iarray_ = 0;
405 __iarray_size_ = rhs.__iarray_size_;
406 rhs.__iarray_size_ = 0;
407 __iarray_cap_ = rhs.__iarray_cap_;
408 rhs.__iarray_cap_ = 0;
409 __parray_ = rhs.__parray_;
410 rhs.__parray_ = 0;
411 __parray_size_ = rhs.__parray_size_;
412 rhs.__parray_size_ = 0;
413 __parray_cap_ = rhs.__parray_cap_;
414 rhs.__parray_cap_ = 0;
415}
416
417void
Howard Hinnant770a3662012-07-21 01:03:40 +0000418ios_base::swap(ios_base& rhs) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000419{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000420 _VSTD::swap(__fmtflags_, rhs.__fmtflags_);
421 _VSTD::swap(__precision_, rhs.__precision_);
422 _VSTD::swap(__width_, rhs.__width_);
423 _VSTD::swap(__rdstate_, rhs.__rdstate_);
424 _VSTD::swap(__exceptions_, rhs.__exceptions_);
Joerg Sonnenbergerc7655a22014-01-04 17:43:00 +0000425 locale& lhs_loc = *reinterpret_cast<locale*>(&__loc_);
426 locale& rhs_loc = *reinterpret_cast<locale*>(&rhs.__loc_);
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000427 _VSTD::swap(lhs_loc, rhs_loc);
428 _VSTD::swap(__fn_, rhs.__fn_);
429 _VSTD::swap(__index_, rhs.__index_);
430 _VSTD::swap(__event_size_, rhs.__event_size_);
431 _VSTD::swap(__event_cap_, rhs.__event_cap_);
432 _VSTD::swap(__iarray_, rhs.__iarray_);
433 _VSTD::swap(__iarray_size_, rhs.__iarray_size_);
434 _VSTD::swap(__iarray_cap_, rhs.__iarray_cap_);
435 _VSTD::swap(__parray_, rhs.__parray_);
436 _VSTD::swap(__parray_size_, rhs.__parray_size_);
437 _VSTD::swap(__parray_cap_, rhs.__parray_cap_);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000438}
439
440void
441ios_base::__set_badbit_and_consider_rethrow()
442{
443 __rdstate_ |= badbit;
Howard Hinnant72f73582010-08-11 17:04:31 +0000444#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000445 if (__exceptions_ & badbit)
446 throw;
Howard Hinnantffb308e2010-08-22 00:03:27 +0000447#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000448}
449
450void
451ios_base::__set_failbit_and_consider_rethrow()
452{
453 __rdstate_ |= failbit;
Howard Hinnant72f73582010-08-11 17:04:31 +0000454#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000455 if (__exceptions_ & failbit)
456 throw;
Howard Hinnantffb308e2010-08-22 00:03:27 +0000457#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000458}
459
460bool
461ios_base::sync_with_stdio(bool sync)
462{
463 static bool previous_state = true;
464 bool r = previous_state;
465 previous_state = sync;
466 return r;
467}
468
469_LIBCPP_END_NAMESPACE_STD