43template <
typename DestinationPolicy,
typename DefaultPolicy>
44class G4strstreambuf :
public std::basic_streambuf<char>
50 buffer =
new char[size + 1];
53 ~G4strstreambuf()
override
58 G4strstreambuf(
const G4strstreambuf&) =
delete;
59 G4strstreambuf& operator=(
const G4strstreambuf&) =
delete;
64 if (count >= size) result = sync();
66 buffer[count] = (char)c;
76 return ReceiveString();
80 virtual G4int underflow() {
return 0; }
83 void SetDestination(G4coutDestination* dest) { destination = dest; }
85 inline G4int ReceiveString()
87 G4String stringToSend(buffer);
88 if (destination !=
nullptr) {
89 return DestinationPolicy::PostMessage(destination, stringToSend);
91 return DefaultPolicy::PostMessage(stringToSend);
95 char* buffer =
nullptr;
98 G4coutDestination* destination =
nullptr;
104 static inline G4int PostMessage(G4coutDestination* d,
const G4String& s)
112 static inline G4int PostMessage(G4coutDestination* d,
const G4String& s)
120 static inline G4int PostMessage(G4coutDestination* d,
const G4String& s)
128 static inline G4int PostMessage(
const G4String& s)
130 std::cout << s << std::flush;
137 static inline G4int PostMessage(
const G4String& s)
139 std::cerr << s << std::flush;
144using G4debugstreambuf = G4strstreambuf<PostToG4debug, DefaultToCout>;
145using G4coutstreambuf = G4strstreambuf<PostToG4cout, DefaultToCout>;
146using G4cerrstreambuf = G4strstreambuf<PostToG4cerr, DefaultToCerr>;
149#ifdef G4MULTITHREADED
151G4debugstreambuf*& _G4debugbuf_p()
157G4coutstreambuf*& _G4coutbuf_p()
163G4cerrstreambuf*& _G4cerrbuf_p()
170std::ostream*& _G4debug_p()
176std::ostream*& _G4cout_p()
182std::ostream*& _G4cerr_p()
191 if (_G4debugbuf_p() ==
nullptr) {
192 _G4debugbuf_p() =
new G4debugstreambuf;
194 if (_G4coutbuf_p() ==
nullptr) {
195 _G4coutbuf_p() =
new G4coutstreambuf;
197 if (_G4cerrbuf_p() ==
nullptr) {
198 _G4cerrbuf_p() =
new G4cerrstreambuf;
202 if (_G4debug_p() == &std::cout || _G4debug_p() ==
nullptr) {
203 _G4debug_p() =
new std::ostream(_G4debugbuf_p());
205 if (_G4cout_p() == &std::cout || _G4cout_p() ==
nullptr) {
206 _G4cout_p() =
new std::ostream(_G4coutbuf_p());
208 if (_G4cerr_p() == &std::cerr || _G4cerr_p() ==
nullptr) {
209 _G4cerr_p() =
new std::ostream(_G4cerrbuf_p());
217 _G4debug_p()->flush();
218 _G4cout_p()->flush();
219 _G4cerr_p()->flush();
223 _G4debug_p() = &std::cout;
225 _G4cout_p() = &std::cout;
227 _G4cerr_p() = &std::cerr;
230 delete _G4debugbuf_p();
231 _G4debugbuf_p() =
nullptr;
232 delete _G4coutbuf_p();
233 _G4coutbuf_p() =
nullptr;
234 delete _G4cerrbuf_p();
235 _G4cerrbuf_p() =
nullptr;
238# define G4debugbuf (*_G4debugbuf_p())
239# define G4coutbuf (*_G4coutbuf_p())
240# define G4cerrbuf (*_G4cerrbuf_p())
265struct RAII_G4iosSystem {
269 ~RAII_G4iosSystem() {
276extern "C" RAII_G4iosSystem RAII_G4iosSystemObj;
G4debugstreambuf G4debugbuf
void G4iosSetDestination(G4coutDestination *sink)
G4coutstreambuf G4coutbuf
G4cerrstreambuf G4cerrbuf
void G4iosInitialization()
G4GLOB_DLL std::ostream G4debug
G4GLOB_DLL std::ostream G4cerr
G4GLOB_DLL std::ostream G4cout
void G4iosInitialization()
G4int ReceiveG4cout_(const G4String &msg)
G4int ReceiveG4debug_(const G4String &msg)
G4int ReceiveG4cerr_(const G4String &msg)
#define G4ThreadLocalStatic