Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
5 * Silicon Graphics Computer Systems, Inc.
10 * This material is provided "as is", with absolutely no warranty expressed
11 * or implied. Any use is at your own risk.
13 * Permission to use or copy this software for any purpose is hereby granted
14 * without fee, provided the above notices are retained on all copies.
15 * Permission to modify the code and to distribute modified code is granted,
16 * provided the above notices are retained, and a notice that the code was
17 * modified is included with the above copyright notice.
20 # include "stlport_prefix.h"
23 // #include <stl/_istream.h>
24 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
25 # include "libstdcppwsd.h"
28 #include <stl/_fstream.h>
29 #include <stdio_streambuf>
30 #include "aligned_buffer.h"
32 // boris : note this is repeated in <iostream>
33 #ifndef _STLP_USE_NAMESPACES
34 // in case of SGI iostreams, we have to rename our streams not to clash with those
35 // provided in native lib
36 # define cin _STLP_cin
37 # define cout _STLP_cout
38 # define cerr _STLP_cerr
39 # define clog _STLP_clog
44 #if defined (__BORLANDC__) && ! defined (_STLP_USE_GLIBC)
45 using _STLP_VENDOR_CSTD::_streams;
48 // This file handles iostream initialization. It is inherently
49 // nonportable, since the C++ language definition provides no mechanism
50 // for controlling order of initialization of nonlocal objects.
51 // Initialization has three parts, which must be performed in the following
53 // (1) Initialize the locale system
54 // (2) Call the constructors for the eight global stream objects.
55 // (3) Create streambufs for the global stream objects, and initialize
56 // the stream objects by calling the init() member function.
59 #if defined (_STLP_MSVC) || defined(__MWERKS__) || defined (__ICL) || defined (__ISCPP__) || defined (__SYMBIAN32__)
60 // Definitions of the eight global I/O objects that are declared in
61 // <iostream>. For VC++ we use the init_seg pragma to put the global I/O
62 // objects into an intitialization segement that will not
63 // be executed. We then explicitly invoke the constructors
64 // with placement new in ios_base::_S_initialize()
66 #if defined(__MWERKS__)
67 # pragma suppress_init_code on
69 # pragma init_seg("STLPORT_NO_INIT")
72 # if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
73 _STLP_EXP_DECLSPEC istream cin(0);
74 _STLP_EXP_DECLSPEC ostream cout(0);
75 _STLP_EXP_DECLSPEC ostream cerr(0);
76 _STLP_EXP_DECLSPEC ostream clog(0);
78 #ifndef _STLP_NO_WCHAR_T
79 _STLP_EXP_DECLSPEC wistream wcin(0);
80 _STLP_EXP_DECLSPEC wostream wcout(0);
81 _STLP_EXP_DECLSPEC wostream wcerr(0);
82 _STLP_EXP_DECLSPEC wostream wclog(0);
86 _STLP_EXP_DECLSPEC ostream& GetCErrStream()
88 return *getCErrStream();
91 _STLP_EXP_DECLSPEC ostream& GetCoutStream()
93 return *getCoutStream();
96 _STLP_EXP_DECLSPEC ostream& GetClogStream()
98 return *getClogStream();
101 _STLP_EXP_DECLSPEC istream& GetCinStream()
103 return *getCinStream();
106 #ifndef _STLP_NO_WCHAR_T
107 _STLP_EXP_DECLSPEC wostream& GetWCErrStream()
109 return *getWCErrStream();
112 _STLP_EXP_DECLSPEC wostream& GetWCoutStream()
114 return *getWCoutStream();
117 _STLP_EXP_DECLSPEC wostream& GetWClogStream()
119 return *getWClogStream();
122 _STLP_EXP_DECLSPEC wistream& GetWCinStream()
124 return *getWCinStream();
126 #endif //_STLP_NO_WCHAR_T
128 #if defined(__MWERKS__)
129 # pragma suppress_init_code off
135 // Definitions of the eight global I/O objects that are declared in
136 // <iostream>. Disgusting hack: we deliberately define them with the
137 // wrong types so that the constructors don't get run automatically.
138 // We need special tricks to make sure that these objects are struct-
139 // aligned rather than byte-aligned.
141 // This is not portable. Declaring a variable with different types in
142 // two translations units is "undefined", according to the C++ standard.
143 // Most compilers, however, silently accept this instead of diagnosing
147 _Stl_aligned_buffer<istream> cin;
148 _Stl_aligned_buffer<ostream> cout;
149 _Stl_aligned_buffer<ostream> cerr;
150 _Stl_aligned_buffer<ostream> clog;
152 _Stl_aligned_buffer<istream> cin;
153 _Stl_aligned_buffer<ostream> cout;
154 _Stl_aligned_buffer<ostream> cerr;
155 _Stl_aligned_buffer<ostream> clog;
157 #pragma alias("?cin@std@@3V?$basic_istream@std@DV?$char_traits@std@D@1@@1@A", "?cin@std@@3T?$_Stl_aligned_buffer@std@V?$basic_istream@std@DV?$char_traits@std@D@1@@1@@1@A")
158 #pragma alias("?cout@std@@3V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@A", "?cout@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@@1@A")
159 #pragma alias("?cerr@std@@3V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@A", "?cerr@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@@1@A")
160 #pragma alias("?clog@std@@3V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@A", "?clog@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@DV?$char_traits@std@D@1@@1@@1@A")
163 # ifndef _STLP_NO_WCHAR_T
166 _Stl_aligned_buffer<wistream> wcin;
167 _Stl_aligned_buffer<wostream> wcout;
168 _Stl_aligned_buffer<wostream> wcerr;
169 _Stl_aligned_buffer<wostream> wclog;
171 _Stl_aligned_buffer<wistream> wcin;
172 _Stl_aligned_buffer<wostream> wcout;
173 _Stl_aligned_buffer<wostream> wcerr;
174 _Stl_aligned_buffer<wostream> wclog;
176 #pragma alias("?wcin@std@@3V?$basic_istream@std@_YV?$char_traits@std@_Y@1@@1@A", "?wcin@std@@3T?$_Stl_aligned_buffer@std@V?$basic_istream@std@_YV?$char_traits@std@_Y@1@@1@@1@A")
177 #pragma alias("?wcout@std@@3V?$basic_ostream@std@_YV?$char_traits@std@_Y@1@@1@A", "?wcout@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@_YV?$char_traits@std@_Y@1@@1@@1@A")
178 #pragma alias("?wcerr@std@@3V?$basic_ostream@std@_YV?$char_traits@std@_Y@1@@1@A", "?wcerr@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@_YV?$char_traits@std@_Y@1@@1@@1@A")
179 #pragma alias("?wclog@std@@3V?$basic_ostream@std@_YV?$char_traits@std@_Y@1@@1@A", "?wclog@std@@3T?$_Stl_aligned_buffer@std@V?$basic_ostream@std@_YV?$char_traits@std@_Y@1@@1@@1@A")
183 #endif /* STL_MSVC || __MWERKS__ */
185 // Member functions from class ios_base and ios_base::Init
187 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
188 void ios_base_Init_S_count_init()
190 get_ios_base_Init_S_count() = 0;
192 void ios_base_S_was_synced_init()
194 get_ios_base_S_was_synced() = true;
197 long ios_base::Init::_S_count = 0;
198 // by default, those are synced
199 bool ios_base::_S_was_synced = true;
200 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
203 _STLP_DECLSPEC extern void LibStdCppInit();
208 ios_base::_S_initialize();
212 _STLP_EXP_DECLSPEC ios_base::Init::Init() {
213 // if (_S_count == 0)
214 //ios_base::_S_initialize();
218 _STLP_EXP_DECLSPEC ios_base::Init::~Init() {
220 ios_base::_S_uninitialize();
225 _Stl_create_filebuf(FILE* f, ios_base::openmode mode )
227 basic_filebuf<char, char_traits<char> >* result;
229 result = new basic_filebuf<char, char_traits<char> >();
232 result->_M_open(_FILE_fd(f), mode);
236 if (!result->is_open()) {
243 # ifndef _STLP_NO_WCHAR_T
246 _Stl_create_wfilebuf(FILE* f, ios_base::openmode mode )
248 basic_filebuf<wchar_t, char_traits<wchar_t> >* result;
250 result = new basic_filebuf<wchar_t, char_traits<wchar_t> >();
253 result->_M_open(_FILE_fd(f), mode);
257 if (!result->is_open()) {
266 void _STLP_CALL ios_base::_S_initialize()
268 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
269 if (get_ios_base_Init_S_count()++ > 0)
272 if (ios_base::Init::_S_count++ > 0)
274 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
276 # if !defined(_STLP_HAS_NO_NAMESPACES) && !defined(_STLP_WINCE)
277 using _SgI::stdio_istreambuf;
278 using _SgI::stdio_ostreambuf;
281 // Run constructors for the four narrow stream objects.
282 // check with locale system
283 // if (_Loc_init::_S_count == 0) {
284 locale::_S_initialize();
286 #if !defined(_STLP_WINCE)
287 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
288 istream* ptr_cin = new((void*)&GetCinStream()) istream(0);
289 ostream* ptr_cout = new((void*)&GetCoutStream()) ostream(0);
290 ostream* ptr_cerr = new((void*)&GetCErrStream()) ostream(0);
291 ostream* ptr_clog = new((void*)&GetClogStream()) ostream(0);
293 istream* ptr_cin = new((void*)&cin) istream(0);
294 ostream* ptr_cout = new((void*)&cout) ostream(0);
295 ostream* ptr_cerr = new((void*)&cerr) ostream(0);
296 ostream* ptr_clog = new((void*)&clog) ostream(0);
297 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
298 // Initialize the four narrow stream objects.
299 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
300 if (get_ios_base_S_was_synced()) {
304 ptr_cin->init(new stdio_istreambuf(stdin));
305 ptr_cout->init(new stdio_ostreambuf(stdout));
306 ptr_cerr->init(new stdio_ostreambuf(stderr));
307 ptr_clog->init(new stdio_ostreambuf(stderr));
309 ptr_cin->init(_Stl_create_filebuf(stdin, ios_base::in));
310 ptr_cin->init(_Stl_create_filebuf(stdout, ios_base::out));
311 ptr_cin->init(_Stl_create_filebuf(stderr, ios_base::out));
312 ptr_cin->init(_Stl_create_filebuf(stderr, ios_base::out));
314 ptr_cin->tie(ptr_cout);
315 ptr_cerr->setf(ios_base::unitbuf);
317 # ifndef _STLP_NO_WCHAR_T
318 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
319 // Run constructors for the four wide stream objects.
320 wistream* ptr_wcin = new(&GetWCinStream()) wistream(0);
321 wostream* ptr_wcout = new(&GetWCoutStream()) wostream(0);
322 wostream* ptr_wcerr = new(&GetWCErrStream()) wostream(0);
323 wostream* ptr_wclog = new(&GetWClogStream()) wostream(0);
325 // Run constructors for the four wide stream objects.
326 wistream* ptr_wcin = new(&wcin) wistream(0);
327 wostream* ptr_wcout = new(&wcout) wostream(0);
328 wostream* ptr_wcerr = new(&wcerr) wostream(0);
329 wostream* ptr_wclog = new(&wclog) wostream(0);
330 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
332 wfilebuf* win = _Stl_create_wfilebuf(stdin, ios_base::in);
333 wfilebuf* wout = _Stl_create_wfilebuf(stdout, ios_base::out);;
334 wfilebuf* werr = _Stl_create_wfilebuf(stderr, ios_base::out);
335 wfilebuf* wlog = _Stl_create_wfilebuf(stderr, ios_base::out);
338 ptr_wcout->init(wout);
339 ptr_wcerr->init(werr);
340 ptr_wclog->init(wlog);
342 ptr_wcin->tie(ptr_wcout);
343 ptr_wcerr->setf(ios_base::unitbuf);
345 # endif /* _STLP_NO_WCHAR_T */
346 #endif /* _STLP_WINCE */
348 // ++ios_base::Init::_S_count;
354 void _STLP_CALL ios_base::_S_uninitialize()
356 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
357 if (--get_ios_base_Init_S_count() != 0)
360 if (--ios_base::Init::_S_count != 0)
362 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
364 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
365 // Note that destroying output streambufs flushes the buffers.
366 istream* ptr_cin = __REINTERPRET_CAST(istream*,&GetCinStream());
367 ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&GetCoutStream());
368 ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&GetCErrStream());
369 ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&GetClogStream());
371 # ifndef _STLP_NO_WCHAR_T
372 wistream* ptr_wcin = __REINTERPRET_CAST(wistream*,&GetWCinStream());
373 wostream* ptr_wcout = __REINTERPRET_CAST(wostream*,&GetWCoutStream());
374 wostream* ptr_wcerr = __REINTERPRET_CAST(wostream*,&GetWCErrStream());
375 wostream* ptr_wclog = __REINTERPRET_CAST(wostream*,&GetWClogStream());
376 # endif //_STLP_NO_WCHAR_T
378 // Note that destroying output streambufs flushes the buffers.
379 istream* ptr_cin = __REINTERPRET_CAST(istream*,&cin);
380 ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&cout);
381 ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&cerr);
382 ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&clog);
384 # ifndef _STLP_NO_WCHAR_T
385 wistream* ptr_wcin = __REINTERPRET_CAST(wistream*,&wcin);
386 wostream* ptr_wcout = __REINTERPRET_CAST(wostream*,&wcout);
387 wostream* ptr_wcerr = __REINTERPRET_CAST(wostream*,&wcerr);
388 wostream* ptr_wclog = __REINTERPRET_CAST(wostream*,&wclog);
390 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
393 // we don't want any exceptions being thrown here
394 ptr_cin->exceptions(0);
395 ptr_cout->exceptions(0);
396 ptr_cerr->exceptions(0);
397 ptr_clog->exceptions(0);
399 delete ptr_cin->rdbuf(0);
400 delete ptr_cout->rdbuf(0);
401 delete ptr_cerr->rdbuf(0);
402 delete ptr_clog->rdbuf(0);
409 # ifndef _STLP_NO_WCHAR_T
410 // we don't want any exceptions being thrown here
411 ptr_wcin->exceptions(0);
412 ptr_wcout->exceptions(0);
413 ptr_wcerr->exceptions(0);
414 ptr_wclog->exceptions(0);
416 delete ptr_wcin->rdbuf(0);
417 delete ptr_wcout->rdbuf(0);
418 delete ptr_wcerr->rdbuf(0);
419 delete ptr_wclog->rdbuf(0);
428 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
429 if (get_ios_base_Loc_init_S_count() > 0) {
431 if (_Loc_init::_S_count > 0) {
432 # endif // __LIBSTD_CPP_SYMBIAN32_WSD__
433 locale::_S_uninitialize();
436 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
437 --get_ios_base_Init_S_count();
439 --ios_base::Init::_S_count;
440 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
445 _STLP_EXP_DECLSPEC bool _STLP_CALL ios_base::sync_with_stdio(bool sync) {
446 #if !defined(STLP_WINCE)
447 # ifndef _STLP_HAS_NO_NAMESPACES
448 using _SgI::stdio_istreambuf;
449 using _SgI::stdio_ostreambuf;
452 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
453 bool was_synced = get_ios_base_S_was_synced();
455 bool was_synced = _S_was_synced;
456 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
458 // if by any chance we got there before std streams initialization,
459 // just set the sync flag and exit
460 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
461 if (get_ios_base_Init_S_count() == 0) {
462 get_ios_base_S_was_synced() = sync;
464 if (Init::_S_count == 0) {
465 _S_was_synced = sync;
466 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
470 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
471 istream* ptr_cin = __REINTERPRET_CAST(istream*,&GetCinStream());
472 ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&GetCoutStream());
473 ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&GetCErrStream());
474 ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&GetClogStream());
476 istream* ptr_cin = __REINTERPRET_CAST(istream*,&cin);
477 ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&cout);
478 ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&cerr);
479 ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&clog);
480 # endif //__LIBSTD_CPP_SYMBIAN32_WSD__
482 streambuf* old_cin = ptr_cin->rdbuf();
483 streambuf* old_cout = ptr_cout->rdbuf();
484 streambuf* old_cerr = ptr_cerr->rdbuf();
485 streambuf* old_clog = ptr_clog->rdbuf();
487 streambuf* new_cin = 0;
488 streambuf* new_cout = 0;
489 streambuf* new_cerr = 0;
490 streambuf* new_clog = 0;
493 if (sync && !was_synced) {
494 new_cin = new stdio_istreambuf(stdin);
495 new_cout = new stdio_ostreambuf(stdout);
496 new_cerr = new stdio_ostreambuf(stderr);
497 new_clog = new stdio_ostreambuf(stderr);
499 else if (!sync && was_synced) {
500 new_cin = _Stl_create_filebuf(stdin, ios_base::in);
501 new_cout = _Stl_create_filebuf(stdout, ios_base::out);
502 new_cerr = _Stl_create_filebuf(stderr, ios_base::out);
503 new_clog = _Stl_create_filebuf(stderr, ios_base::out);
508 if (new_cin && new_cout && new_cerr && new_clog) {
509 ptr_cin->rdbuf(new_cin);
510 ptr_cout->rdbuf(new_cout);
511 ptr_cerr->rdbuf(new_cerr);
512 ptr_clog->rdbuf(new_clog);
529 #endif /* _STLP_WINCE */