sl@0
|
1 |
/*
|
sl@0
|
2 |
* © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (c) 1999
|
sl@0
|
5 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
6 |
*
|
sl@0
|
7 |
* Copyright (c) 1999
|
sl@0
|
8 |
* Boris Fomitchev
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
11 |
* or implied. Any use is at your own risk.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
14 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
15 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
16 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
17 |
* modified is included with the above copyright notice.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
# include "stlport_prefix.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <istream>
|
sl@0
|
23 |
// #include <stl/_istream.h>
|
sl@0
|
24 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
25 |
# include "libstdcppwsd.h"
|
sl@0
|
26 |
# endif
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <stl/_fstream.h>
|
sl@0
|
29 |
#include <stdio_streambuf>
|
sl@0
|
30 |
#include "aligned_buffer.h"
|
sl@0
|
31 |
|
sl@0
|
32 |
// boris : note this is repeated in <iostream>
|
sl@0
|
33 |
#ifndef _STLP_USE_NAMESPACES
|
sl@0
|
34 |
// in case of SGI iostreams, we have to rename our streams not to clash with those
|
sl@0
|
35 |
// provided in native lib
|
sl@0
|
36 |
# define cin _STLP_cin
|
sl@0
|
37 |
# define cout _STLP_cout
|
sl@0
|
38 |
# define cerr _STLP_cerr
|
sl@0
|
39 |
# define clog _STLP_clog
|
sl@0
|
40 |
#endif
|
sl@0
|
41 |
|
sl@0
|
42 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
43 |
|
sl@0
|
44 |
#if defined (__BORLANDC__) && ! defined (_STLP_USE_GLIBC)
|
sl@0
|
45 |
using _STLP_VENDOR_CSTD::_streams;
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
|
sl@0
|
48 |
// This file handles iostream initialization. It is inherently
|
sl@0
|
49 |
// nonportable, since the C++ language definition provides no mechanism
|
sl@0
|
50 |
// for controlling order of initialization of nonlocal objects.
|
sl@0
|
51 |
// Initialization has three parts, which must be performed in the following
|
sl@0
|
52 |
// order:
|
sl@0
|
53 |
// (1) Initialize the locale system
|
sl@0
|
54 |
// (2) Call the constructors for the eight global stream objects.
|
sl@0
|
55 |
// (3) Create streambufs for the global stream objects, and initialize
|
sl@0
|
56 |
// the stream objects by calling the init() member function.
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
#if defined (_STLP_MSVC) || defined(__MWERKS__) || defined (__ICL) || defined (__ISCPP__) || defined (__SYMBIAN32__)
|
sl@0
|
60 |
// Definitions of the eight global I/O objects that are declared in
|
sl@0
|
61 |
// <iostream>. For VC++ we use the init_seg pragma to put the global I/O
|
sl@0
|
62 |
// objects into an intitialization segement that will not
|
sl@0
|
63 |
// be executed. We then explicitly invoke the constructors
|
sl@0
|
64 |
// with placement new in ios_base::_S_initialize()
|
sl@0
|
65 |
|
sl@0
|
66 |
#if defined(__MWERKS__)
|
sl@0
|
67 |
# pragma suppress_init_code on
|
sl@0
|
68 |
#else
|
sl@0
|
69 |
# pragma init_seg("STLPORT_NO_INIT")
|
sl@0
|
70 |
#endif
|
sl@0
|
71 |
|
sl@0
|
72 |
# if !defined(__LIBSTD_CPP_SYMBIAN32_WSD__) && !defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
73 |
_STLP_EXP_DECLSPEC istream cin(0);
|
sl@0
|
74 |
_STLP_EXP_DECLSPEC ostream cout(0);
|
sl@0
|
75 |
_STLP_EXP_DECLSPEC ostream cerr(0);
|
sl@0
|
76 |
_STLP_EXP_DECLSPEC ostream clog(0);
|
sl@0
|
77 |
|
sl@0
|
78 |
#ifndef _STLP_NO_WCHAR_T
|
sl@0
|
79 |
_STLP_EXP_DECLSPEC wistream wcin(0);
|
sl@0
|
80 |
_STLP_EXP_DECLSPEC wostream wcout(0);
|
sl@0
|
81 |
_STLP_EXP_DECLSPEC wostream wcerr(0);
|
sl@0
|
82 |
_STLP_EXP_DECLSPEC wostream wclog(0);
|
sl@0
|
83 |
#endif
|
sl@0
|
84 |
# endif
|
sl@0
|
85 |
|
sl@0
|
86 |
_STLP_EXP_DECLSPEC ostream& GetCErrStream()
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return *getCErrStream();
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
_STLP_EXP_DECLSPEC ostream& GetCoutStream()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
return *getCoutStream();
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
_STLP_EXP_DECLSPEC ostream& GetClogStream()
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return *getClogStream();
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
_STLP_EXP_DECLSPEC istream& GetCinStream()
|
sl@0
|
102 |
{
|
sl@0
|
103 |
return *getCinStream();
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
#ifndef _STLP_NO_WCHAR_T
|
sl@0
|
107 |
_STLP_EXP_DECLSPEC wostream& GetWCErrStream()
|
sl@0
|
108 |
{
|
sl@0
|
109 |
return *getWCErrStream();
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
_STLP_EXP_DECLSPEC wostream& GetWCoutStream()
|
sl@0
|
113 |
{
|
sl@0
|
114 |
return *getWCoutStream();
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
_STLP_EXP_DECLSPEC wostream& GetWClogStream()
|
sl@0
|
118 |
{
|
sl@0
|
119 |
return *getWClogStream();
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
_STLP_EXP_DECLSPEC wistream& GetWCinStream()
|
sl@0
|
123 |
{
|
sl@0
|
124 |
return *getWCinStream();
|
sl@0
|
125 |
}
|
sl@0
|
126 |
#endif //_STLP_NO_WCHAR_T
|
sl@0
|
127 |
|
sl@0
|
128 |
#if defined(__MWERKS__)
|
sl@0
|
129 |
# pragma suppress_init_code off
|
sl@0
|
130 |
#endif
|
sl@0
|
131 |
|
sl@0
|
132 |
#else
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
// Definitions of the eight global I/O objects that are declared in
|
sl@0
|
136 |
// <iostream>. Disgusting hack: we deliberately define them with the
|
sl@0
|
137 |
// wrong types so that the constructors don't get run automatically.
|
sl@0
|
138 |
// We need special tricks to make sure that these objects are struct-
|
sl@0
|
139 |
// aligned rather than byte-aligned.
|
sl@0
|
140 |
|
sl@0
|
141 |
// This is not portable. Declaring a variable with different types in
|
sl@0
|
142 |
// two translations units is "undefined", according to the C++ standard.
|
sl@0
|
143 |
// Most compilers, however, silently accept this instead of diagnosing
|
sl@0
|
144 |
// it as an error.
|
sl@0
|
145 |
|
sl@0
|
146 |
#ifndef __DMC__
|
sl@0
|
147 |
_Stl_aligned_buffer<istream> cin;
|
sl@0
|
148 |
_Stl_aligned_buffer<ostream> cout;
|
sl@0
|
149 |
_Stl_aligned_buffer<ostream> cerr;
|
sl@0
|
150 |
_Stl_aligned_buffer<ostream> clog;
|
sl@0
|
151 |
#else
|
sl@0
|
152 |
_Stl_aligned_buffer<istream> cin;
|
sl@0
|
153 |
_Stl_aligned_buffer<ostream> cout;
|
sl@0
|
154 |
_Stl_aligned_buffer<ostream> cerr;
|
sl@0
|
155 |
_Stl_aligned_buffer<ostream> clog;
|
sl@0
|
156 |
|
sl@0
|
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")
|
sl@0
|
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")
|
sl@0
|
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")
|
sl@0
|
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")
|
sl@0
|
161 |
#endif
|
sl@0
|
162 |
|
sl@0
|
163 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
164 |
|
sl@0
|
165 |
#ifndef __DMC__
|
sl@0
|
166 |
_Stl_aligned_buffer<wistream> wcin;
|
sl@0
|
167 |
_Stl_aligned_buffer<wostream> wcout;
|
sl@0
|
168 |
_Stl_aligned_buffer<wostream> wcerr;
|
sl@0
|
169 |
_Stl_aligned_buffer<wostream> wclog;
|
sl@0
|
170 |
#else
|
sl@0
|
171 |
_Stl_aligned_buffer<wistream> wcin;
|
sl@0
|
172 |
_Stl_aligned_buffer<wostream> wcout;
|
sl@0
|
173 |
_Stl_aligned_buffer<wostream> wcerr;
|
sl@0
|
174 |
_Stl_aligned_buffer<wostream> wclog;
|
sl@0
|
175 |
|
sl@0
|
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")
|
sl@0
|
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")
|
sl@0
|
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")
|
sl@0
|
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")
|
sl@0
|
180 |
#endif
|
sl@0
|
181 |
# endif
|
sl@0
|
182 |
|
sl@0
|
183 |
#endif /* STL_MSVC || __MWERKS__ */
|
sl@0
|
184 |
|
sl@0
|
185 |
// Member functions from class ios_base and ios_base::Init
|
sl@0
|
186 |
|
sl@0
|
187 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
188 |
void ios_base_Init_S_count_init()
|
sl@0
|
189 |
{
|
sl@0
|
190 |
get_ios_base_Init_S_count() = 0;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
void ios_base_S_was_synced_init()
|
sl@0
|
193 |
{
|
sl@0
|
194 |
get_ios_base_S_was_synced() = true;
|
sl@0
|
195 |
}
|
sl@0
|
196 |
# else
|
sl@0
|
197 |
long ios_base::Init::_S_count = 0;
|
sl@0
|
198 |
// by default, those are synced
|
sl@0
|
199 |
bool ios_base::_S_was_synced = true;
|
sl@0
|
200 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
201 |
|
sl@0
|
202 |
|
sl@0
|
203 |
_STLP_DECLSPEC extern void LibStdCppInit();
|
sl@0
|
204 |
|
sl@0
|
205 |
|
sl@0
|
206 |
void CallIosInit()
|
sl@0
|
207 |
{
|
sl@0
|
208 |
ios_base::_S_initialize();
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
|
sl@0
|
212 |
_STLP_EXP_DECLSPEC ios_base::Init::Init() {
|
sl@0
|
213 |
// if (_S_count == 0)
|
sl@0
|
214 |
//ios_base::_S_initialize();
|
sl@0
|
215 |
LibStdCppInit();
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
_STLP_EXP_DECLSPEC ios_base::Init::~Init() {
|
sl@0
|
219 |
// if (_S_count > 0)
|
sl@0
|
220 |
ios_base::_S_uninitialize();
|
sl@0
|
221 |
}
|
sl@0
|
222 |
|
sl@0
|
223 |
|
sl@0
|
224 |
filebuf*
|
sl@0
|
225 |
_Stl_create_filebuf(FILE* f, ios_base::openmode mode )
|
sl@0
|
226 |
{
|
sl@0
|
227 |
basic_filebuf<char, char_traits<char> >* result;
|
sl@0
|
228 |
|
sl@0
|
229 |
result = new basic_filebuf<char, char_traits<char> >();
|
sl@0
|
230 |
|
sl@0
|
231 |
_STLP_TRY {
|
sl@0
|
232 |
result->_M_open(_FILE_fd(f), mode);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
_STLP_CATCH_ALL {}
|
sl@0
|
235 |
|
sl@0
|
236 |
if (!result->is_open()) {
|
sl@0
|
237 |
delete result;
|
sl@0
|
238 |
result = 0;
|
sl@0
|
239 |
}
|
sl@0
|
240 |
return result;
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
244 |
|
sl@0
|
245 |
wfilebuf*
|
sl@0
|
246 |
_Stl_create_wfilebuf(FILE* f, ios_base::openmode mode )
|
sl@0
|
247 |
{
|
sl@0
|
248 |
basic_filebuf<wchar_t, char_traits<wchar_t> >* result;
|
sl@0
|
249 |
|
sl@0
|
250 |
result = new basic_filebuf<wchar_t, char_traits<wchar_t> >();
|
sl@0
|
251 |
|
sl@0
|
252 |
_STLP_TRY {
|
sl@0
|
253 |
result->_M_open(_FILE_fd(f), mode);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
_STLP_CATCH_ALL {}
|
sl@0
|
256 |
|
sl@0
|
257 |
if (!result->is_open()) {
|
sl@0
|
258 |
delete result;
|
sl@0
|
259 |
result = 0;
|
sl@0
|
260 |
}
|
sl@0
|
261 |
return result;
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
# endif
|
sl@0
|
265 |
|
sl@0
|
266 |
void _STLP_CALL ios_base::_S_initialize()
|
sl@0
|
267 |
{
|
sl@0
|
268 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
269 |
if (get_ios_base_Init_S_count()++ > 0)
|
sl@0
|
270 |
return ;
|
sl@0
|
271 |
# else
|
sl@0
|
272 |
if (ios_base::Init::_S_count++ > 0)
|
sl@0
|
273 |
return ;
|
sl@0
|
274 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
275 |
|
sl@0
|
276 |
# if !defined(_STLP_HAS_NO_NAMESPACES) && !defined(_STLP_WINCE)
|
sl@0
|
277 |
using _SgI::stdio_istreambuf;
|
sl@0
|
278 |
using _SgI::stdio_ostreambuf;
|
sl@0
|
279 |
# endif
|
sl@0
|
280 |
_STLP_TRY {
|
sl@0
|
281 |
// Run constructors for the four narrow stream objects.
|
sl@0
|
282 |
// check with locale system
|
sl@0
|
283 |
// if (_Loc_init::_S_count == 0) {
|
sl@0
|
284 |
locale::_S_initialize();
|
sl@0
|
285 |
// }
|
sl@0
|
286 |
#if !defined(_STLP_WINCE)
|
sl@0
|
287 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
288 |
istream* ptr_cin = new((void*)&GetCinStream()) istream(0);
|
sl@0
|
289 |
ostream* ptr_cout = new((void*)&GetCoutStream()) ostream(0);
|
sl@0
|
290 |
ostream* ptr_cerr = new((void*)&GetCErrStream()) ostream(0);
|
sl@0
|
291 |
ostream* ptr_clog = new((void*)&GetClogStream()) ostream(0);
|
sl@0
|
292 |
# else
|
sl@0
|
293 |
istream* ptr_cin = new((void*)&cin) istream(0);
|
sl@0
|
294 |
ostream* ptr_cout = new((void*)&cout) ostream(0);
|
sl@0
|
295 |
ostream* ptr_cerr = new((void*)&cerr) ostream(0);
|
sl@0
|
296 |
ostream* ptr_clog = new((void*)&clog) ostream(0);
|
sl@0
|
297 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
298 |
// Initialize the four narrow stream objects.
|
sl@0
|
299 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
300 |
if (get_ios_base_S_was_synced()) {
|
sl@0
|
301 |
# else
|
sl@0
|
302 |
if (_S_was_synced) {
|
sl@0
|
303 |
# endif
|
sl@0
|
304 |
ptr_cin->init(new stdio_istreambuf(stdin));
|
sl@0
|
305 |
ptr_cout->init(new stdio_ostreambuf(stdout));
|
sl@0
|
306 |
ptr_cerr->init(new stdio_ostreambuf(stderr));
|
sl@0
|
307 |
ptr_clog->init(new stdio_ostreambuf(stderr));
|
sl@0
|
308 |
} else {
|
sl@0
|
309 |
ptr_cin->init(_Stl_create_filebuf(stdin, ios_base::in));
|
sl@0
|
310 |
ptr_cin->init(_Stl_create_filebuf(stdout, ios_base::out));
|
sl@0
|
311 |
ptr_cin->init(_Stl_create_filebuf(stderr, ios_base::out));
|
sl@0
|
312 |
ptr_cin->init(_Stl_create_filebuf(stderr, ios_base::out));
|
sl@0
|
313 |
}
|
sl@0
|
314 |
ptr_cin->tie(ptr_cout);
|
sl@0
|
315 |
ptr_cerr->setf(ios_base::unitbuf);
|
sl@0
|
316 |
|
sl@0
|
317 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
318 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
319 |
// Run constructors for the four wide stream objects.
|
sl@0
|
320 |
wistream* ptr_wcin = new(&GetWCinStream()) wistream(0);
|
sl@0
|
321 |
wostream* ptr_wcout = new(&GetWCoutStream()) wostream(0);
|
sl@0
|
322 |
wostream* ptr_wcerr = new(&GetWCErrStream()) wostream(0);
|
sl@0
|
323 |
wostream* ptr_wclog = new(&GetWClogStream()) wostream(0);
|
sl@0
|
324 |
# else
|
sl@0
|
325 |
// Run constructors for the four wide stream objects.
|
sl@0
|
326 |
wistream* ptr_wcin = new(&wcin) wistream(0);
|
sl@0
|
327 |
wostream* ptr_wcout = new(&wcout) wostream(0);
|
sl@0
|
328 |
wostream* ptr_wcerr = new(&wcerr) wostream(0);
|
sl@0
|
329 |
wostream* ptr_wclog = new(&wclog) wostream(0);
|
sl@0
|
330 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
331 |
|
sl@0
|
332 |
wfilebuf* win = _Stl_create_wfilebuf(stdin, ios_base::in);
|
sl@0
|
333 |
wfilebuf* wout = _Stl_create_wfilebuf(stdout, ios_base::out);;
|
sl@0
|
334 |
wfilebuf* werr = _Stl_create_wfilebuf(stderr, ios_base::out);
|
sl@0
|
335 |
wfilebuf* wlog = _Stl_create_wfilebuf(stderr, ios_base::out);
|
sl@0
|
336 |
|
sl@0
|
337 |
ptr_wcin->init(win);
|
sl@0
|
338 |
ptr_wcout->init(wout);
|
sl@0
|
339 |
ptr_wcerr->init(werr);
|
sl@0
|
340 |
ptr_wclog->init(wlog);
|
sl@0
|
341 |
|
sl@0
|
342 |
ptr_wcin->tie(ptr_wcout);
|
sl@0
|
343 |
ptr_wcerr->setf(ios_base::unitbuf);
|
sl@0
|
344 |
|
sl@0
|
345 |
# endif /* _STLP_NO_WCHAR_T */
|
sl@0
|
346 |
#endif /* _STLP_WINCE */
|
sl@0
|
347 |
|
sl@0
|
348 |
// ++ios_base::Init::_S_count;
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
_STLP_CATCH_ALL {}
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
void _STLP_CALL ios_base::_S_uninitialize()
|
sl@0
|
355 |
{
|
sl@0
|
356 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
357 |
if (--get_ios_base_Init_S_count() != 0)
|
sl@0
|
358 |
return ;
|
sl@0
|
359 |
# else
|
sl@0
|
360 |
if (--ios_base::Init::_S_count != 0)
|
sl@0
|
361 |
return ;
|
sl@0
|
362 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
363 |
|
sl@0
|
364 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
365 |
// Note that destroying output streambufs flushes the buffers.
|
sl@0
|
366 |
istream* ptr_cin = __REINTERPRET_CAST(istream*,&GetCinStream());
|
sl@0
|
367 |
ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&GetCoutStream());
|
sl@0
|
368 |
ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&GetCErrStream());
|
sl@0
|
369 |
ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&GetClogStream());
|
sl@0
|
370 |
|
sl@0
|
371 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
372 |
wistream* ptr_wcin = __REINTERPRET_CAST(wistream*,&GetWCinStream());
|
sl@0
|
373 |
wostream* ptr_wcout = __REINTERPRET_CAST(wostream*,&GetWCoutStream());
|
sl@0
|
374 |
wostream* ptr_wcerr = __REINTERPRET_CAST(wostream*,&GetWCErrStream());
|
sl@0
|
375 |
wostream* ptr_wclog = __REINTERPRET_CAST(wostream*,&GetWClogStream());
|
sl@0
|
376 |
# endif //_STLP_NO_WCHAR_T
|
sl@0
|
377 |
# else
|
sl@0
|
378 |
// Note that destroying output streambufs flushes the buffers.
|
sl@0
|
379 |
istream* ptr_cin = __REINTERPRET_CAST(istream*,&cin);
|
sl@0
|
380 |
ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&cout);
|
sl@0
|
381 |
ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&cerr);
|
sl@0
|
382 |
ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&clog);
|
sl@0
|
383 |
|
sl@0
|
384 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
385 |
wistream* ptr_wcin = __REINTERPRET_CAST(wistream*,&wcin);
|
sl@0
|
386 |
wostream* ptr_wcout = __REINTERPRET_CAST(wostream*,&wcout);
|
sl@0
|
387 |
wostream* ptr_wcerr = __REINTERPRET_CAST(wostream*,&wcerr);
|
sl@0
|
388 |
wostream* ptr_wclog = __REINTERPRET_CAST(wostream*,&wclog);
|
sl@0
|
389 |
# endif
|
sl@0
|
390 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
391 |
|
sl@0
|
392 |
|
sl@0
|
393 |
// we don't want any exceptions being thrown here
|
sl@0
|
394 |
ptr_cin->exceptions(0);
|
sl@0
|
395 |
ptr_cout->exceptions(0);
|
sl@0
|
396 |
ptr_cerr->exceptions(0);
|
sl@0
|
397 |
ptr_clog->exceptions(0);
|
sl@0
|
398 |
|
sl@0
|
399 |
delete ptr_cin->rdbuf(0);
|
sl@0
|
400 |
delete ptr_cout->rdbuf(0);
|
sl@0
|
401 |
delete ptr_cerr->rdbuf(0);
|
sl@0
|
402 |
delete ptr_clog->rdbuf(0);
|
sl@0
|
403 |
|
sl@0
|
404 |
_Destroy(ptr_cin);
|
sl@0
|
405 |
_Destroy(ptr_cout);
|
sl@0
|
406 |
_Destroy(ptr_cerr);
|
sl@0
|
407 |
_Destroy(ptr_clog);
|
sl@0
|
408 |
|
sl@0
|
409 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
410 |
// we don't want any exceptions being thrown here
|
sl@0
|
411 |
ptr_wcin->exceptions(0);
|
sl@0
|
412 |
ptr_wcout->exceptions(0);
|
sl@0
|
413 |
ptr_wcerr->exceptions(0);
|
sl@0
|
414 |
ptr_wclog->exceptions(0);
|
sl@0
|
415 |
|
sl@0
|
416 |
delete ptr_wcin->rdbuf(0);
|
sl@0
|
417 |
delete ptr_wcout->rdbuf(0);
|
sl@0
|
418 |
delete ptr_wcerr->rdbuf(0);
|
sl@0
|
419 |
delete ptr_wclog->rdbuf(0);
|
sl@0
|
420 |
|
sl@0
|
421 |
_Destroy(ptr_wcin);
|
sl@0
|
422 |
_Destroy(ptr_wcout);
|
sl@0
|
423 |
_Destroy(ptr_wcerr);
|
sl@0
|
424 |
_Destroy(ptr_wclog);
|
sl@0
|
425 |
|
sl@0
|
426 |
# endif
|
sl@0
|
427 |
|
sl@0
|
428 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
429 |
if (get_ios_base_Loc_init_S_count() > 0) {
|
sl@0
|
430 |
# else
|
sl@0
|
431 |
if (_Loc_init::_S_count > 0) {
|
sl@0
|
432 |
# endif // __LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
433 |
locale::_S_uninitialize();
|
sl@0
|
434 |
}
|
sl@0
|
435 |
|
sl@0
|
436 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
437 |
--get_ios_base_Init_S_count();
|
sl@0
|
438 |
# else
|
sl@0
|
439 |
--ios_base::Init::_S_count;
|
sl@0
|
440 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
441 |
|
sl@0
|
442 |
}
|
sl@0
|
443 |
|
sl@0
|
444 |
|
sl@0
|
445 |
_STLP_EXP_DECLSPEC bool _STLP_CALL ios_base::sync_with_stdio(bool sync) {
|
sl@0
|
446 |
#if !defined(STLP_WINCE)
|
sl@0
|
447 |
# ifndef _STLP_HAS_NO_NAMESPACES
|
sl@0
|
448 |
using _SgI::stdio_istreambuf;
|
sl@0
|
449 |
using _SgI::stdio_ostreambuf;
|
sl@0
|
450 |
# endif
|
sl@0
|
451 |
|
sl@0
|
452 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
453 |
bool was_synced = get_ios_base_S_was_synced();
|
sl@0
|
454 |
# else
|
sl@0
|
455 |
bool was_synced = _S_was_synced;
|
sl@0
|
456 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
457 |
|
sl@0
|
458 |
// if by any chance we got there before std streams initialization,
|
sl@0
|
459 |
// just set the sync flag and exit
|
sl@0
|
460 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
461 |
if (get_ios_base_Init_S_count() == 0) {
|
sl@0
|
462 |
get_ios_base_S_was_synced() = sync;
|
sl@0
|
463 |
# else
|
sl@0
|
464 |
if (Init::_S_count == 0) {
|
sl@0
|
465 |
_S_was_synced = sync;
|
sl@0
|
466 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
467 |
return was_synced;
|
sl@0
|
468 |
}
|
sl@0
|
469 |
|
sl@0
|
470 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
471 |
istream* ptr_cin = __REINTERPRET_CAST(istream*,&GetCinStream());
|
sl@0
|
472 |
ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&GetCoutStream());
|
sl@0
|
473 |
ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&GetCErrStream());
|
sl@0
|
474 |
ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&GetClogStream());
|
sl@0
|
475 |
# else
|
sl@0
|
476 |
istream* ptr_cin = __REINTERPRET_CAST(istream*,&cin);
|
sl@0
|
477 |
ostream* ptr_cout = __REINTERPRET_CAST(ostream*,&cout);
|
sl@0
|
478 |
ostream* ptr_cerr = __REINTERPRET_CAST(ostream*,&cerr);
|
sl@0
|
479 |
ostream* ptr_clog = __REINTERPRET_CAST(ostream*,&clog);
|
sl@0
|
480 |
# endif //__LIBSTD_CPP_SYMBIAN32_WSD__
|
sl@0
|
481 |
|
sl@0
|
482 |
streambuf* old_cin = ptr_cin->rdbuf();
|
sl@0
|
483 |
streambuf* old_cout = ptr_cout->rdbuf();
|
sl@0
|
484 |
streambuf* old_cerr = ptr_cerr->rdbuf();
|
sl@0
|
485 |
streambuf* old_clog = ptr_clog->rdbuf();
|
sl@0
|
486 |
|
sl@0
|
487 |
streambuf* new_cin = 0;
|
sl@0
|
488 |
streambuf* new_cout = 0;
|
sl@0
|
489 |
streambuf* new_cerr = 0;
|
sl@0
|
490 |
streambuf* new_clog = 0;
|
sl@0
|
491 |
|
sl@0
|
492 |
_STLP_TRY {
|
sl@0
|
493 |
if (sync && !was_synced) {
|
sl@0
|
494 |
new_cin = new stdio_istreambuf(stdin);
|
sl@0
|
495 |
new_cout = new stdio_ostreambuf(stdout);
|
sl@0
|
496 |
new_cerr = new stdio_ostreambuf(stderr);
|
sl@0
|
497 |
new_clog = new stdio_ostreambuf(stderr);
|
sl@0
|
498 |
}
|
sl@0
|
499 |
else if (!sync && was_synced) {
|
sl@0
|
500 |
new_cin = _Stl_create_filebuf(stdin, ios_base::in);
|
sl@0
|
501 |
new_cout = _Stl_create_filebuf(stdout, ios_base::out);
|
sl@0
|
502 |
new_cerr = _Stl_create_filebuf(stderr, ios_base::out);
|
sl@0
|
503 |
new_clog = _Stl_create_filebuf(stderr, ios_base::out);
|
sl@0
|
504 |
}
|
sl@0
|
505 |
}
|
sl@0
|
506 |
_STLP_CATCH_ALL {}
|
sl@0
|
507 |
|
sl@0
|
508 |
if (new_cin && new_cout && new_cerr && new_clog) {
|
sl@0
|
509 |
ptr_cin->rdbuf(new_cin);
|
sl@0
|
510 |
ptr_cout->rdbuf(new_cout);
|
sl@0
|
511 |
ptr_cerr->rdbuf(new_cerr);
|
sl@0
|
512 |
ptr_clog->rdbuf(new_clog);
|
sl@0
|
513 |
|
sl@0
|
514 |
delete old_cin;
|
sl@0
|
515 |
delete old_cout;
|
sl@0
|
516 |
delete old_cerr;
|
sl@0
|
517 |
delete old_clog;
|
sl@0
|
518 |
}
|
sl@0
|
519 |
else {
|
sl@0
|
520 |
delete new_cin;
|
sl@0
|
521 |
delete new_cout;
|
sl@0
|
522 |
delete new_cerr;
|
sl@0
|
523 |
delete new_clog;
|
sl@0
|
524 |
}
|
sl@0
|
525 |
|
sl@0
|
526 |
return was_synced;
|
sl@0
|
527 |
#else
|
sl@0
|
528 |
return false;
|
sl@0
|
529 |
#endif /* _STLP_WINCE */
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
_STLP_END_NAMESPACE
|
sl@0
|
533 |
|
sl@0
|
534 |
// Local Variables:
|
sl@0
|
535 |
// mode:C++
|
sl@0
|
536 |
// End:
|