0031501: Foundation Classes, Message_Printer - remove theToPutEndl argument
[occt.git] / src / Message / Message_Messenger.hxx
CommitLineData
42cf5bc1 1// Created on: 2007-06-28
2// Created by: OCC Team
3// Copyright (c) 2007-2014 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _Message_Messenger_HeaderFile
17#define _Message_Messenger_HeaderFile
18
983fd6c0 19#include <Message_Gravity.hxx>
42cf5bc1 20#include <Message_SequenceOfPrinters.hxx>
23fe70ec 21
983fd6c0 22#include <TCollection_HAsciiString.hxx>
23#include <TCollection_HExtendedString.hxx>
24
42cf5bc1 25class Message_Printer;
42cf5bc1 26
9fd2d2c3 27// resolve name collisions with WinAPI headers
28#ifdef AddPrinter
29 #undef AddPrinter
30#endif
42cf5bc1 31
32class Message_Messenger;
25e59720 33DEFINE_STANDARD_HANDLE(Message_Messenger, Standard_Transient)
42cf5bc1 34
35//! Messenger is API class providing general-purpose interface for
36//! libraries that may issue text messages without knowledge
37//! of how these messages will be further processed.
38//!
39//! The messenger contains a sequence of "printers" which can be
40//! customized by the application, and dispatches every received
41//! message to all the printers.
42//!
23fe70ec 43//! For convenience, a set of methods Send...() returning a string
44//! stream buffer is defined for use of stream-like syntax with operator <<
45//!
46//! Example:
47//! ~~~~~
48//! Messenger->SendFail() << " Unknown fail at line " << aLineNo << " in file " << aFile;
49//! ~~~~~
50//!
51//! The message is sent to messenger on destruction of the stream buffer,
52//! call to Flush(), or passing manipulator std::ends, std::endl, or std::flush.
53//! Empty messages are not sent except if manipulator is used.
25e59720 54class Message_Messenger : public Standard_Transient
42cf5bc1 55{
983fd6c0 56 DEFINE_STANDARD_RTTIEXT(Message_Messenger, Standard_Transient)
23fe70ec 57public:
58 //! Auxiliary class wrapping std::stringstream thus allowing constructing
59 //! message via stream interface, and putting result into its creator
60 //! Message_Messenger within destructor.
61 //!
62 //! It is intended to be used either as temporary object or as local
63 //! variable, note that content will be lost if it is copied.
64 class StreamBuffer
65 {
66 public:
67
68 //! Destructor flushing constructed message.
69 ~StreamBuffer() { Flush(); }
70
71 //! Flush collected string to messenger
72 void Flush(Standard_Boolean doForce = Standard_False)
73 {
74 myStream.flush();
75 if (doForce || myStream.rdbuf()->in_avail() > 0)
76 {
0ebe5b0a 77 if (myMessenger)
78 {
79 myMessenger->Send(myStream.str().c_str(), myGravity);
80 }
23fe70ec 81 myStream.str(std::string()); // empty the buffer for possible reuse
82 }
83 }
84
85 //! Formal copy constructor.
86 //!
87 //! Since buffer is intended for use as temporary object or local
88 //! variable, copy (or move) is needed only formally to be able to
89 //! return the new instance from relevant creation method.
90 //! In practice it should never be called because modern compilers
91 //! create such instances in place.
92 //! However note that if this constructor is called, the buffer
93 //! content (string) will not be copied (move is not supported for
94 //! std::stringstream class on old compilers such as gcc 4.4, msvc 9).
95 StreamBuffer (const StreamBuffer& theOther)
96 : myMessenger(theOther.myMessenger), myGravity(theOther.myGravity)
97 {
98 }
99
100 //! Wrapper for operator << of the stream
101 template <typename T>
102 StreamBuffer& operator << (const T& theArg)
103 {
104 myStream << theArg;
105 return *this;
106 }
107
108 //! Operator << for manipulators of ostream (ends, endl, flush),
109 //! flushes the buffer (sends the message)
110 StreamBuffer& operator << (std::ostream& (*)(std::ostream&))
111 {
112 Flush(Standard_True);
113 return *this;
114 }
115
116 //! Access to the stream object
117 Standard_SStream& Stream () { return myStream; }
118
0ebe5b0a 119 //! Cast to OStream&
120 operator Standard_OStream& () { return myStream; }
121
122 //! Access to the messenger
123 Message_Messenger* Messenger () { return myMessenger; }
124
23fe70ec 125 private:
126 friend class Message_Messenger;
127
128 //! Main constructor creating temporary buffer.
129 //! Accessible only to Messenger class.
130 StreamBuffer (Message_Messenger* theMessenger, Message_Gravity theGravity)
131 : myMessenger (theMessenger),
132 myGravity (theGravity)
133 {}
134
135 private:
136 Message_Messenger* myMessenger; // don't make a Handle since this object should be created on stack
137 Message_Gravity myGravity;
138 Standard_SStream myStream;
139 };
140
42cf5bc1 141public:
142
04232180 143 //! Empty constructor; initializes by single printer directed to std::cout.
42cf5bc1 144 //! Note: the default messenger is not empty but directed to cout
145 //! in order to protect against possibility to forget defining printers.
146 //! If printing to cout is not needed, clear messenger by GetPrinters().Clear()
147 Standard_EXPORT Message_Messenger();
148
149 //! Create messenger with single printer
150 Standard_EXPORT Message_Messenger(const Handle(Message_Printer)& thePrinter);
151
152 //! Add a printer to the messenger.
153 //! The printer will be added only if it is not yet in the list.
154 //! Returns True if printer has been added.
155 Standard_EXPORT Standard_Boolean AddPrinter (const Handle(Message_Printer)& thePrinter);
156
157 //! Removes specified printer from the messenger.
158 //! Returns True if this printer has been found in the list
159 //! and removed.
160 Standard_EXPORT Standard_Boolean RemovePrinter (const Handle(Message_Printer)& thePrinter);
161
162 //! Removes printers of specified type (including derived classes)
163 //! from the messenger.
164 //! Returns number of removed printers.
165 Standard_EXPORT Standard_Integer RemovePrinters (const Handle(Standard_Type)& theType);
166
167 //! Returns current sequence of printers
983fd6c0 168 const Message_SequenceOfPrinters& Printers() const { return myPrinters; }
169
42cf5bc1 170 //! Returns sequence of printers
171 //! The sequence can be modified.
983fd6c0 172 Message_SequenceOfPrinters& ChangePrinters() { return myPrinters; }
173
42cf5bc1 174 //! Dispatch a message to all the printers in the list.
175 //! Three versions of string representations are accepted for
176 //! convenience, by default all are converted to ExtendedString.
23fe70ec 177 Standard_EXPORT void Send (const Standard_CString theString,
fa8a4628 178 const Message_Gravity theGravity = Message_Warning) const;
42cf5bc1 179
180 //! See above
23fe70ec 181 Standard_EXPORT void Send (const TCollection_AsciiString& theString,
fa8a4628 182 const Message_Gravity theGravity = Message_Warning) const;
42cf5bc1 183
184 //! See above
23fe70ec 185 Standard_EXPORT void Send (const TCollection_ExtendedString& theString,
fa8a4628 186 const Message_Gravity theGravity = Message_Warning) const;
23fe70ec 187
188 //! Create string buffer for message of specified type
189 StreamBuffer Send (Message_Gravity theGravity) { return StreamBuffer (this, theGravity); }
190
191 //! Create string buffer for sending Fail message
192 StreamBuffer SendFail () { return Send (Message_Fail); }
193
194 //! Create string buffer for sending Alarm message
195 StreamBuffer SendAlarm () { return Send (Message_Alarm); }
196
197 //! Create string buffer for sending Warning message
198 StreamBuffer SendWarning () { return Send (Message_Warning); }
199
200 //! Create string buffer for sending Info message
201 StreamBuffer SendInfo () { return Send (Message_Info); }
202
203 //! Create string buffer for sending Trace message
204 StreamBuffer SendTrace () { return Send (Message_Trace); }
205
206 //! Short-cut to Send (theMessage, Message_Fail)
207 void SendFail (const TCollection_AsciiString& theMessage) { Send (theMessage, Message_Fail); }
208
209 //! Short-cut to Send (theMessage, Message_Alarm)
210 void SendAlarm (const TCollection_AsciiString& theMessage) { Send (theMessage, Message_Alarm); }
211
212 //! Short-cut to Send (theMessage, Message_Warning)
213 void SendWarning (const TCollection_AsciiString& theMessage) { Send (theMessage, Message_Warning); }
214
215 //! Short-cut to Send (theMessage, Message_Info)
216 void SendInfo (const TCollection_AsciiString& theMessage) { Send (theMessage, Message_Info); }
217
218 //! Short-cut to Send (theMessage, Message_Trace)
219 void SendTrace (const TCollection_AsciiString& theMessage) { Send (theMessage, Message_Trace); }
42cf5bc1 220
42cf5bc1 221private:
222
42cf5bc1 223 Message_SequenceOfPrinters myPrinters;
224
42cf5bc1 225};
226
42cf5bc1 227#endif // _Message_Messenger_HeaderFile