]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/c++98/ios_init.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / src / c++98 / ios_init.cc
CommitLineData
c755e77d
BK
1// Iostreams base classes -*- C++ -*-
2
8d9254fc 3// Copyright (C) 1997-2020 Free Software Foundation, Inc.
c755e77d
BK
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
c755e77d
BK
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
748086b7
JJ
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
c755e77d
BK
24
25//
26// ISO C++ 14882: 27.4 Iostreams base classes
27//
28
29#include <ios>
30#include <ostream>
31#include <istream>
32#include <fstream>
c755e77d
BK
33#include <ext/stdio_filebuf.h>
34#include <ext/stdio_sync_filebuf.h>
35
12ffa228 36namespace __gnu_internal _GLIBCXX_VISIBILITY(hidden)
c755e77d 37{
ff4cf05b
BK
38 using namespace __gnu_cxx;
39
07e4f10a 40 // Extern declarations for global objects in src/c++98/globals.cc.
c755e77d
BK
41 extern stdio_sync_filebuf<char> buf_cout_sync;
42 extern stdio_sync_filebuf<char> buf_cin_sync;
43 extern stdio_sync_filebuf<char> buf_cerr_sync;
44
45 extern stdio_filebuf<char> buf_cout;
46 extern stdio_filebuf<char> buf_cin;
47 extern stdio_filebuf<char> buf_cerr;
48
49#ifdef _GLIBCXX_USE_WCHAR_T
50 extern stdio_sync_filebuf<wchar_t> buf_wcout_sync;
51 extern stdio_sync_filebuf<wchar_t> buf_wcin_sync;
52 extern stdio_sync_filebuf<wchar_t> buf_wcerr_sync;
53
54 extern stdio_filebuf<wchar_t> buf_wcout;
55 extern stdio_filebuf<wchar_t> buf_wcin;
56 extern stdio_filebuf<wchar_t> buf_wcerr;
57#endif
ff4cf05b 58} // namespace __gnu_internal
c755e77d 59
12ffa228
BK
60namespace std _GLIBCXX_VISIBILITY(default)
61{
62_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 63
ff4cf05b 64 using namespace __gnu_internal;
f92ab29f 65
c755e77d
BK
66 extern istream cin;
67 extern ostream cout;
68 extern ostream cerr;
69 extern ostream clog;
70
71#ifdef _GLIBCXX_USE_WCHAR_T
72 extern wistream wcin;
73 extern wostream wcout;
74 extern wostream wcerr;
75 extern wostream wclog;
76#endif
77
78 ios_base::Init::Init()
79 {
b7ee72de 80 if (__gnu_cxx::__exchange_and_add_dispatch(&_S_refcount, 1) == 0)
c755e77d
BK
81 {
82 // Standard streams default to synced with "C" operations.
83 _S_synced_with_stdio = true;
84
85 new (&buf_cout_sync) stdio_sync_filebuf<char>(stdout);
86 new (&buf_cin_sync) stdio_sync_filebuf<char>(stdin);
87 new (&buf_cerr_sync) stdio_sync_filebuf<char>(stderr);
88
89 // The standard streams are constructed once only and never
90 // destroyed.
91 new (&cout) ostream(&buf_cout_sync);
92 new (&cin) istream(&buf_cin_sync);
93 new (&cerr) ostream(&buf_cerr_sync);
94 new (&clog) ostream(&buf_cerr_sync);
95 cin.tie(&cout);
af0b8d73 96 cerr.setf(ios_base::unitbuf);
634a11f7
PC
97 // _GLIBCXX_RESOLVE_LIB_DEFECTS
98 // 455. cerr::tie() and wcerr::tie() are overspecified.
99 cerr.tie(&cout);
100
c755e77d
BK
101#ifdef _GLIBCXX_USE_WCHAR_T
102 new (&buf_wcout_sync) stdio_sync_filebuf<wchar_t>(stdout);
103 new (&buf_wcin_sync) stdio_sync_filebuf<wchar_t>(stdin);
104 new (&buf_wcerr_sync) stdio_sync_filebuf<wchar_t>(stderr);
105
106 new (&wcout) wostream(&buf_wcout_sync);
107 new (&wcin) wistream(&buf_wcin_sync);
108 new (&wcerr) wostream(&buf_wcerr_sync);
109 new (&wclog) wostream(&buf_wcerr_sync);
110 wcin.tie(&wcout);
af0b8d73 111 wcerr.setf(ios_base::unitbuf);
f92ab29f 112 wcerr.tie(&wcout);
c755e77d 113#endif
f92ab29f 114
fa972243
BK
115 // NB: Have to set refcount above one, so that standard
116 // streams are not re-initialized with uses of ios_base::Init
117 // besides <iostream> static object, ie just using <ios> with
118 // ios_base::Init objects.
b7ee72de 119 __gnu_cxx::__atomic_add_dispatch(&_S_refcount, 1);
c755e77d 120 }
c755e77d
BK
121 }
122
123 ios_base::Init::~Init()
124 {
be335b18 125 // Be race-detector-friendly. For more info see bits/c++config.
8c61f400 126 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_S_refcount);
b7ee72de 127 if (__gnu_cxx::__exchange_and_add_dispatch(&_S_refcount, -1) == 2)
c755e77d 128 {
8c61f400 129 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_S_refcount);
c755e77d 130 // Catch any exceptions thrown by basic_ostream::flush()
bc2631e0 131 __try
f92ab29f 132 {
c755e77d
BK
133 // Flush standard output streams as required by 27.4.2.1.6
134 cout.flush();
135 cerr.flush();
136 clog.flush();
f92ab29f 137
c755e77d
BK
138#ifdef _GLIBCXX_USE_WCHAR_T
139 wcout.flush();
140 wcerr.flush();
f92ab29f 141 wclog.flush();
c755e77d
BK
142#endif
143 }
bc2631e0 144 __catch(...)
c755e77d
BK
145 { }
146 }
f92ab29f 147 }
c755e77d 148
f92ab29f 149 bool
c755e77d 150 ios_base::sync_with_stdio(bool __sync)
f92ab29f 151 {
c755e77d
BK
152 // _GLIBCXX_RESOLVE_LIB_DEFECTS
153 // 49. Underspecification of ios_base::sync_with_stdio
154 bool __ret = ios_base::Init::_S_synced_with_stdio;
155
156 // Turn off sync with C FILE* for cin, cout, cerr, clog iff
157 // currently synchronized.
158 if (!__sync && __ret)
159 {
48dd95f2
PC
160 // Make sure the standard streams are constructed.
161 ios_base::Init __init;
162
c755e77d
BK
163 ios_base::Init::_S_synced_with_stdio = __sync;
164
165 // Explicitly call dtors to free any memory that is
166 // dynamically allocated by filebuf ctor or member functions,
167 // but don't deallocate all memory by calling operator delete.
168 buf_cout_sync.~stdio_sync_filebuf<char>();
169 buf_cin_sync.~stdio_sync_filebuf<char>();
170 buf_cerr_sync.~stdio_sync_filebuf<char>();
171
172#ifdef _GLIBCXX_USE_WCHAR_T
173 buf_wcout_sync.~stdio_sync_filebuf<wchar_t>();
174 buf_wcin_sync.~stdio_sync_filebuf<wchar_t>();
175 buf_wcerr_sync.~stdio_sync_filebuf<wchar_t>();
176#endif
177
178 // Create stream buffers for the standard streams and use
179 // those buffers without destroying and recreating the
180 // streams.
181 new (&buf_cout) stdio_filebuf<char>(stdout, ios_base::out);
182 new (&buf_cin) stdio_filebuf<char>(stdin, ios_base::in);
183 new (&buf_cerr) stdio_filebuf<char>(stderr, ios_base::out);
184 cout.rdbuf(&buf_cout);
185 cin.rdbuf(&buf_cin);
186 cerr.rdbuf(&buf_cerr);
187 clog.rdbuf(&buf_cerr);
f92ab29f 188
c755e77d
BK
189#ifdef _GLIBCXX_USE_WCHAR_T
190 new (&buf_wcout) stdio_filebuf<wchar_t>(stdout, ios_base::out);
191 new (&buf_wcin) stdio_filebuf<wchar_t>(stdin, ios_base::in);
192 new (&buf_wcerr) stdio_filebuf<wchar_t>(stderr, ios_base::out);
193 wcout.rdbuf(&buf_wcout);
194 wcin.rdbuf(&buf_wcin);
195 wcerr.rdbuf(&buf_wcerr);
196 wclog.rdbuf(&buf_wcerr);
197#endif
198 }
f92ab29f 199 return __ret;
c755e77d 200 }
3cbc7af0 201
12ffa228
BK
202_GLIBCXX_END_NAMESPACE_VERSION
203} // namespace