]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ca28fb7 | 2 | // Name: wx/log.h |
c801d85f KB |
3 | // Purpose: Assorted wxLogXXX functions, and wxLog (sink for logs) |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 29/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
886dd7d2 VZ |
12 | #ifndef _WX_LOG_H_ |
13 | #define _WX_LOG_H_ | |
c801d85f | 14 | |
df5168c4 | 15 | #include "wx/defs.h" |
38830220 | 16 | |
0b4f47a3 DS |
17 | // ---------------------------------------------------------------------------- |
18 | // common constants for use in wxUSE_LOG/!wxUSE_LOG | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
21 | // the trace masks have been superceded by symbolic trace constants, they're | |
22 | // for compatibility only andwill be removed soon - do NOT use them | |
23 | ||
24 | // meaning of different bits of the trace mask (which allows selectively | |
25 | // enable/disable some trace messages) | |
26 | #define wxTraceMemAlloc 0x0001 // trace memory allocation (new/delete) | |
27 | #define wxTraceMessages 0x0002 // trace window messages/X callbacks | |
28 | #define wxTraceResAlloc 0x0004 // trace GDI resource allocation | |
29 | #define wxTraceRefCount 0x0008 // trace various ref counting operations | |
30 | ||
31 | #ifdef __WXMSW__ | |
32 | #define wxTraceOleCalls 0x0100 // OLE interface calls | |
33 | #endif | |
34 | ||
546db2a8 VZ |
35 | // ---------------------------------------------------------------------------- |
36 | // types | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
1782be31 | 39 | // NB: these types are needed even if wxUSE_LOG == 0 |
546db2a8 VZ |
40 | typedef unsigned long wxTraceMask; |
41 | typedef unsigned long wxLogLevel; | |
42 | ||
43 | // ---------------------------------------------------------------------------- | |
44 | // headers | |
45 | // ---------------------------------------------------------------------------- | |
46 | ||
b6e4e44a | 47 | #include "wx/string.h" |
c9f78968 | 48 | #include "wx/strvararg.h" |
b6e4e44a | 49 | |
1782be31 VZ |
50 | #if wxUSE_LOG |
51 | ||
1782be31 VZ |
52 | #include "wx/arrstr.h" |
53 | ||
0e0126c2 | 54 | #ifndef __WXWINCE__ |
1782be31 | 55 | #include <time.h> // for time_t |
0e0126c2 | 56 | #endif |
c30aaf75 VZ |
57 | |
58 | #include "wx/dynarray.h" | |
d6b9496a | 59 | |
edc73852 RD |
60 | #ifndef wxUSE_LOG_DEBUG |
61 | # ifdef __WXDEBUG__ | |
62 | # define wxUSE_LOG_DEBUG 1 | |
63 | # else // !__WXDEBUG__ | |
64 | # define wxUSE_LOG_DEBUG 0 | |
65 | # endif | |
66 | #endif | |
67 | ||
1782be31 VZ |
68 | // ---------------------------------------------------------------------------- |
69 | // forward declarations | |
70 | // ---------------------------------------------------------------------------- | |
71 | ||
72 | #if wxUSE_GUI | |
73 | class WXDLLIMPEXP_CORE wxTextCtrl; | |
74 | class WXDLLIMPEXP_CORE wxLogFrame; | |
75 | class WXDLLIMPEXP_CORE wxFrame; | |
55c9a186 | 76 | class WXDLLIMPEXP_CORE wxWindow; |
1782be31 VZ |
77 | #endif // wxUSE_GUI |
78 | ||
9ef3052c VZ |
79 | // ---------------------------------------------------------------------------- |
80 | // constants | |
81 | // ---------------------------------------------------------------------------- | |
82 | ||
83 | // different standard log levels (you may also define your own) | |
90adbcca | 84 | enum wxLogLevelValues |
9ef3052c | 85 | { |
d6b9496a VZ |
86 | wxLOG_FatalError, // program can't continue, abort immediately |
87 | wxLOG_Error, // a serious error, user must be informed about it | |
88 | wxLOG_Warning, // user is normally informed about it but may be ignored | |
89 | wxLOG_Message, // normal message (i.e. normal output of a non GUI app) | |
d6b9496a | 90 | wxLOG_Status, // informational: might go to the status line of GUI app |
edc73852 | 91 | wxLOG_Info, // informational message (a.k.a. 'Verbose') |
d6b9496a VZ |
92 | wxLOG_Debug, // never shown to the user, disabled in release mode |
93 | wxLOG_Trace, // trace messages are also only enabled in debug mode | |
94 | wxLOG_Progress, // used for progress indicator (not yet) | |
edc73852 | 95 | wxLOG_User = 100, // user defined levels start here |
65ca8c0b | 96 | wxLOG_Max = 10000 |
9ef3052c VZ |
97 | }; |
98 | ||
d6b9496a VZ |
99 | // symbolic trace masks - wxLogTrace("foo", "some trace message...") will be |
100 | // discarded unless the string "foo" has been added to the list of allowed | |
101 | // ones with AddTraceMask() | |
102 | ||
08298395 OK |
103 | #define wxTRACE_MemAlloc wxT("memalloc") // trace memory allocation (new/delete) |
104 | #define wxTRACE_Messages wxT("messages") // trace window messages/X callbacks | |
105 | #define wxTRACE_ResAlloc wxT("resalloc") // trace GDI resource allocation | |
106 | #define wxTRACE_RefCount wxT("refcount") // trace various ref counting operations | |
d6b9496a VZ |
107 | |
108 | #ifdef __WXMSW__ | |
08298395 | 109 | #define wxTRACE_OleCalls wxT("ole") // OLE interface calls |
d6b9496a VZ |
110 | #endif |
111 | ||
65f19af1 | 112 | #include "wx/iosfwrap.h" |
470b7da3 | 113 | |
c801d85f KB |
114 | // ---------------------------------------------------------------------------- |
115 | // derive from this class to redirect (or suppress, or ...) log messages | |
116 | // normally, only a single instance of this class exists but it's not enforced | |
c801d85f | 117 | // ---------------------------------------------------------------------------- |
d6b9496a | 118 | |
bddd7a8d | 119 | class WXDLLIMPEXP_BASE wxLog |
c801d85f KB |
120 | { |
121 | public: | |
d6b9496a | 122 | // ctor |
6fb99eb3 | 123 | wxLog(){} |
d6b9496a VZ |
124 | |
125 | // these functions allow to completely disable all log messages | |
d1b20379 DS |
126 | |
127 | // is logging disabled now? | |
d6b9496a | 128 | static bool IsEnabled() { return ms_doLog; } |
d1b20379 DS |
129 | |
130 | // change the flag state, return the previous one | |
131 | static bool EnableLogging(bool doIt = true) | |
2e7f3845 | 132 | { bool doLogOld = ms_doLog; ms_doLog = doIt; return doLogOld; } |
d6b9496a VZ |
133 | |
134 | // static sink function - see DoLog() for function to overload in the | |
135 | // derived classes | |
f9837791 | 136 | static void OnLog(wxLogLevel level, const wxChar *szString, time_t t); |
d6b9496a VZ |
137 | |
138 | // message buffering | |
d1b20379 DS |
139 | |
140 | // flush shows all messages if they're not logged immediately (FILE | |
141 | // and iostream logs don't need it, but wxGuiLog does to avoid showing | |
142 | // 17 modal dialogs one after another) | |
d6b9496a | 143 | virtual void Flush(); |
d6b9496a | 144 | |
d1b20379 | 145 | // flush the active target if any |
bbfa0322 VZ |
146 | static void FlushActive() |
147 | { | |
2ed3265e VZ |
148 | if ( !ms_suspendCount ) |
149 | { | |
150 | wxLog *log = GetActiveTarget(); | |
1ec5cbf3 | 151 | if ( log ) |
2ed3265e VZ |
152 | log->Flush(); |
153 | } | |
bbfa0322 | 154 | } |
1ec5cbf3 VZ |
155 | |
156 | // only one sink is active at each moment | |
d1b20379 DS |
157 | // get current log target, will call wxApp::CreateLogTarget() to |
158 | // create one if none exists | |
d6b9496a | 159 | static wxLog *GetActiveTarget(); |
d1b20379 DS |
160 | |
161 | // change log target, pLogger may be NULL | |
d6b9496a VZ |
162 | static wxLog *SetActiveTarget(wxLog *pLogger); |
163 | ||
d1b20379 DS |
164 | // suspend the message flushing of the main target until the next call |
165 | // to Resume() - this is mainly for internal use (to prevent wxYield() | |
166 | // from flashing the messages) | |
2ed3265e | 167 | static void Suspend() { ms_suspendCount++; } |
d1b20379 DS |
168 | |
169 | // must be called for each Suspend()! | |
2ed3265e VZ |
170 | static void Resume() { ms_suspendCount--; } |
171 | ||
d6b9496a | 172 | // functions controlling the default wxLog behaviour |
d1b20379 DS |
173 | // verbose mode is activated by standard command-line '-verbose' |
174 | // option | |
175 | static void SetVerbose(bool bVerbose = true) { ms_bVerbose = bVerbose; } | |
edc73852 | 176 | |
d1b20379 | 177 | // Set log level. Log messages with level > logLevel will not be logged. |
edc73852 RD |
178 | static void SetLogLevel(wxLogLevel logLevel) { ms_logLevel = logLevel; } |
179 | ||
d1b20379 DS |
180 | // should GetActiveTarget() try to create a new log object if the |
181 | // current is NULL? | |
36bd6902 | 182 | static void DontCreateOnDemand(); |
d6b9496a | 183 | |
e94cd97d DE |
184 | // Make GetActiveTarget() create a new log object again. |
185 | static void DoCreateOnDemand(); | |
186 | ||
f9837791 VZ |
187 | // log the count of repeating messages instead of logging the messages |
188 | // multiple times | |
189 | static void SetRepetitionCounting(bool bRepetCounting = true) | |
2e7f3845 | 190 | { ms_bRepetCounting = bRepetCounting; } |
f9837791 VZ |
191 | |
192 | // gets duplicate counting status | |
193 | static bool GetRepetitionCounting() { return ms_bRepetCounting; } | |
194 | ||
d1b20379 | 195 | // trace mask (see wxTraceXXX constants for details) |
d6b9496a | 196 | static void SetTraceMask(wxTraceMask ulMask) { ms_ulTraceMask = ulMask; } |
d1b20379 DS |
197 | |
198 | // add string trace mask | |
df5168c4 | 199 | static void AddTraceMask(const wxString& str) |
2e7f3845 | 200 | { ms_aTraceMasks.push_back(str); } |
d1b20379 DS |
201 | |
202 | // add string trace mask | |
d6b9496a | 203 | static void RemoveTraceMask(const wxString& str); |
d1b20379 DS |
204 | |
205 | // remove all string trace masks | |
36bd6902 | 206 | static void ClearTraceMasks(); |
d1b20379 DS |
207 | |
208 | // get string trace masks | |
0e080be6 | 209 | static const wxArrayString &GetTraceMasks() { return ms_aTraceMasks; } |
d6b9496a | 210 | |
d1b20379 DS |
211 | // sets the timestamp string: this is used as strftime() format string |
212 | // for the log targets which add time stamps to the messages - set it | |
213 | // to NULL to disable time stamping completely. | |
d2e1ef19 VZ |
214 | static void SetTimestamp(const wxChar *ts) { ms_timestamp = ts; } |
215 | ||
edc73852 | 216 | |
d6b9496a | 217 | // accessors |
d1b20379 DS |
218 | |
219 | // gets the verbose status | |
fd7718b2 | 220 | static bool GetVerbose() { return ms_bVerbose; } |
d1b20379 DS |
221 | |
222 | // get trace mask | |
d6b9496a | 223 | static wxTraceMask GetTraceMask() { return ms_ulTraceMask; } |
d1b20379 DS |
224 | |
225 | // is this trace mask in the list? | |
df5168c4 | 226 | static bool IsAllowedTraceMask(const wxChar *mask); |
d1b20379 DS |
227 | |
228 | // return the current loglevel limit | |
edc73852 | 229 | static wxLogLevel GetLogLevel() { return ms_logLevel; } |
d6b9496a | 230 | |
d1b20379 | 231 | // get the current timestamp format string (may be NULL) |
d2e1ef19 VZ |
232 | static const wxChar *GetTimestamp() { return ms_timestamp; } |
233 | ||
edc73852 | 234 | |
d2e1ef19 | 235 | // helpers |
d1b20379 DS |
236 | |
237 | // put the time stamp into the string if ms_timestamp != NULL (don't | |
238 | // change it otherwise) | |
d2e1ef19 VZ |
239 | static void TimeStamp(wxString *str); |
240 | ||
d6b9496a | 241 | // make dtor virtual for all derived classes |
f9837791 | 242 | virtual ~wxLog(); |
c801d85f | 243 | |
c801d85f | 244 | |
1ec5cbf3 | 245 | // this method exists for backwards compatibility only, don't use |
d1b20379 | 246 | bool HasPendingMessages() const { return true; } |
1ec5cbf3 | 247 | |
2e7f3845 VZ |
248 | #if WXWIN_COMPATIBILITY_2_6 |
249 | // this function doesn't do anything any more, don't call it | |
250 | wxDEPRECATED( static wxChar *SetLogBuffer(wxChar *buf, size_t size = 0) ); | |
251 | #endif | |
252 | ||
1ec5cbf3 | 253 | protected: |
d6b9496a | 254 | // the logging functions that can be overriden |
d1b20379 DS |
255 | |
256 | // default DoLog() prepends the time stamp and a prefix corresponding | |
257 | // to the message to szString and then passes it to DoLogString() | |
9e3d3318 | 258 | virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t); |
d1b20379 DS |
259 | |
260 | // default DoLogString does nothing but is not pure virtual because if | |
261 | // you override DoLog() you might not need it at all | |
9e3d3318 | 262 | virtual void DoLogString(const wxChar *szString, time_t t); |
c801d85f | 263 | |
f9837791 VZ |
264 | // log a line containing the number of times the previous message was |
265 | // repeated | |
266 | // returns: the number | |
267 | static unsigned DoLogNumberOfRepeats(); | |
268 | ||
d6b9496a VZ |
269 | private: |
270 | // static variables | |
271 | // ---------------- | |
06db8ebd | 272 | |
f9837791 VZ |
273 | // traditional behaviour or counting repetitions |
274 | static bool ms_bRepetCounting; | |
275 | static wxString ms_prevString; // previous message that was logged | |
276 | // how many times the previous message was logged | |
277 | static unsigned ms_prevCounter; | |
278 | static time_t ms_prevTimeStamp;// timestamp of the previous message | |
279 | static wxLogLevel ms_prevLevel; // level of the previous message | |
280 | ||
d6b9496a | 281 | static wxLog *ms_pLogger; // currently active log sink |
d1b20379 | 282 | static bool ms_doLog; // false => all logging disabled |
d6b9496a | 283 | static bool ms_bAutoCreate; // create new log targets on demand? |
d1b20379 | 284 | static bool ms_bVerbose; // false => ignore LogInfo messages |
fe7b1156 | 285 | |
edc73852 RD |
286 | static wxLogLevel ms_logLevel; // limit logging to levels <= ms_logLevel |
287 | ||
2ed3265e VZ |
288 | static size_t ms_suspendCount; // if positive, logs are not flushed |
289 | ||
d2e1ef19 VZ |
290 | // format string for strftime(), if NULL, time stamping log messages is |
291 | // disabled | |
292 | static const wxChar *ms_timestamp; | |
293 | ||
d6b9496a VZ |
294 | static wxTraceMask ms_ulTraceMask; // controls wxLogTrace behaviour |
295 | static wxArrayString ms_aTraceMasks; // more powerful filter for wxLogTrace | |
c801d85f KB |
296 | }; |
297 | ||
298 | // ---------------------------------------------------------------------------- | |
299 | // "trivial" derivations of wxLog | |
300 | // ---------------------------------------------------------------------------- | |
301 | ||
d3fc1755 VZ |
302 | // log everything to a buffer |
303 | class WXDLLIMPEXP_BASE wxLogBuffer : public wxLog | |
304 | { | |
305 | public: | |
306 | wxLogBuffer() { } | |
307 | ||
308 | // get the string contents with all messages logged | |
309 | const wxString& GetBuffer() const { return m_str; } | |
310 | ||
311 | // show the buffer contents to the user in the best possible way (this uses | |
312 | // wxMessageOutputMessageBox) and clear it | |
313 | virtual void Flush(); | |
314 | ||
315 | protected: | |
83250f1a | 316 | virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t); |
d3fc1755 VZ |
317 | virtual void DoLogString(const wxChar *szString, time_t t); |
318 | ||
319 | private: | |
320 | wxString m_str; | |
321 | ||
322 | DECLARE_NO_COPY_CLASS(wxLogBuffer) | |
323 | }; | |
324 | ||
0f8218d7 | 325 | |
c801d85f | 326 | // log everything to a "FILE *", stderr by default |
bddd7a8d | 327 | class WXDLLIMPEXP_BASE wxLogStderr : public wxLog |
c801d85f KB |
328 | { |
329 | public: | |
d6b9496a VZ |
330 | // redirect log output to a FILE |
331 | wxLogStderr(FILE *fp = (FILE *) NULL); | |
c801d85f | 332 | |
03147cd0 | 333 | protected: |
d6b9496a | 334 | // implement sink function |
9e3d3318 | 335 | virtual void DoLogString(const wxChar *szString, time_t t); |
c801d85f | 336 | |
d6b9496a | 337 | FILE *m_fp; |
d3fc1755 VZ |
338 | |
339 | DECLARE_NO_COPY_CLASS(wxLogStderr) | |
c801d85f KB |
340 | }; |
341 | ||
4bf78aae | 342 | #if wxUSE_STD_IOSTREAM |
03147cd0 | 343 | |
c801d85f | 344 | // log everything to an "ostream", cerr by default |
bddd7a8d | 345 | class WXDLLIMPEXP_BASE wxLogStream : public wxLog |
c801d85f KB |
346 | { |
347 | public: | |
d6b9496a | 348 | // redirect log output to an ostream |
dd107c50 | 349 | wxLogStream(wxSTD ostream *ostr = (wxSTD ostream *) NULL); |
c801d85f KB |
350 | |
351 | protected: | |
d6b9496a | 352 | // implement sink function |
9e3d3318 | 353 | virtual void DoLogString(const wxChar *szString, time_t t); |
c801d85f | 354 | |
d6b9496a | 355 | // using ptr here to avoid including <iostream.h> from this file |
dd107c50 | 356 | wxSTD ostream *m_ostr; |
c801d85f | 357 | }; |
03147cd0 VZ |
358 | |
359 | #endif // wxUSE_STD_IOSTREAM | |
c801d85f | 360 | |
03147cd0 VZ |
361 | // ---------------------------------------------------------------------------- |
362 | // /dev/null log target: suppress logging until this object goes out of scope | |
363 | // ---------------------------------------------------------------------------- | |
364 | ||
365 | // example of usage: | |
366 | /* | |
367 | void Foo() | |
368 | { | |
369 | wxFile file; | |
370 | ||
371 | // wxFile.Open() normally complains if file can't be opened, we don't | |
372 | // want it | |
373 | wxLogNull logNo; | |
374 | ||
375 | if ( !file.Open("bar") ) | |
376 | ... process error ourselves ... | |
377 | ||
378 | // ~wxLogNull called, old log sink restored | |
379 | } | |
380 | */ | |
bddd7a8d | 381 | class WXDLLIMPEXP_BASE wxLogNull |
03147cd0 VZ |
382 | { |
383 | public: | |
d1b20379 | 384 | wxLogNull() : m_flagOld(wxLog::EnableLogging(false)) { } |
be52b341 | 385 | ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld); } |
03147cd0 VZ |
386 | |
387 | private: | |
388 | bool m_flagOld; // the previous value of the wxLog::ms_doLog | |
389 | }; | |
390 | ||
391 | // ---------------------------------------------------------------------------- | |
392 | // chaining log target: installs itself as a log target and passes all | |
393 | // messages to the real log target given to it in the ctor but also forwards | |
394 | // them to the previously active one | |
395 | // | |
396 | // note that you don't have to call SetActiveTarget() with this class, it | |
397 | // does it itself in its ctor | |
398 | // ---------------------------------------------------------------------------- | |
399 | ||
bddd7a8d | 400 | class WXDLLIMPEXP_BASE wxLogChain : public wxLog |
03147cd0 VZ |
401 | { |
402 | public: | |
403 | wxLogChain(wxLog *logger); | |
8b30a4e4 | 404 | virtual ~wxLogChain(); |
03147cd0 VZ |
405 | |
406 | // change the new log target | |
407 | void SetLog(wxLog *logger); | |
408 | ||
409 | // this can be used to temporarily disable (and then reenable) passing | |
410 | // messages to the old logger (by default we do pass them) | |
411 | void PassMessages(bool bDoPass) { m_bPassMessages = bDoPass; } | |
412 | ||
413 | // are we passing the messages to the previous log target? | |
414 | bool IsPassingMessages() const { return m_bPassMessages; } | |
415 | ||
416 | // return the previous log target (may be NULL) | |
417 | wxLog *GetOldLog() const { return m_logOld; } | |
418 | ||
419 | // override base class version to flush the old logger as well | |
420 | virtual void Flush(); | |
421 | ||
422 | protected: | |
423 | // pass the chain to the old logger if needed | |
424 | virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t); | |
425 | ||
426 | private: | |
427 | // the current log target | |
428 | wxLog *m_logNew; | |
429 | ||
430 | // the previous log target | |
431 | wxLog *m_logOld; | |
432 | ||
433 | // do we pass the messages to the old logger? | |
434 | bool m_bPassMessages; | |
22f3361e VZ |
435 | |
436 | DECLARE_NO_COPY_CLASS(wxLogChain) | |
03147cd0 VZ |
437 | }; |
438 | ||
439 | // a chain log target which uses itself as the new logger | |
bddd7a8d | 440 | class WXDLLIMPEXP_BASE wxLogPassThrough : public wxLogChain |
03147cd0 VZ |
441 | { |
442 | public: | |
93d4c1d0 | 443 | wxLogPassThrough(); |
fc7a2a60 VZ |
444 | |
445 | private: | |
446 | DECLARE_NO_COPY_CLASS(wxLogPassThrough) | |
03147cd0 VZ |
447 | }; |
448 | ||
8ca28fb7 | 449 | #if wxUSE_GUI |
7e8c564c VS |
450 | // include GUI log targets: |
451 | #include "wx/generic/logg.h" | |
e90c1d2a | 452 | #endif // wxUSE_GUI |
03f38c58 | 453 | |
c801d85f KB |
454 | // ============================================================================ |
455 | // global functions | |
456 | // ============================================================================ | |
457 | ||
458 | // ---------------------------------------------------------------------------- | |
459 | // Log functions should be used by application instead of stdio, iostream &c | |
460 | // for log messages for easy redirection | |
461 | // ---------------------------------------------------------------------------- | |
462 | ||
88ac883a VZ |
463 | // ---------------------------------------------------------------------------- |
464 | // get error code/error message from system in a portable way | |
465 | // ---------------------------------------------------------------------------- | |
466 | ||
467 | // return the last system error code | |
bddd7a8d | 468 | WXDLLIMPEXP_BASE unsigned long wxSysErrorCode(); |
c11d62a6 | 469 | |
88ac883a | 470 | // return the error message for given (or last if 0) error code |
bddd7a8d | 471 | WXDLLIMPEXP_BASE const wxChar* wxSysErrorMsg(unsigned long nErrCode = 0); |
88ac883a | 472 | |
c11d62a6 | 473 | // ---------------------------------------------------------------------------- |
c801d85f | 474 | // define wxLog<level> |
c11d62a6 | 475 | // ---------------------------------------------------------------------------- |
c801d85f | 476 | |
2523e9b7 | 477 | #define DECLARE_LOG_FUNCTION(level) \ |
81727065 | 478 | extern void WXDLLIMPEXP_BASE \ |
d1f6e2cf VS |
479 | wxDoLog##level##Wchar(const wxChar *format, ...); \ |
480 | extern void WXDLLIMPEXP_BASE \ | |
481 | wxDoLog##level##Utf8(const char *format, ...); \ | |
2523e9b7 | 482 | WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \ |
1528e0b8 | 483 | 1, (const wxFormatString&), \ |
d1f6e2cf | 484 | wxDoLog##level##Wchar, wxDoLog##level##Utf8) \ |
2523e9b7 VS |
485 | DECLARE_LOG_FUNCTION_WATCOM(level) \ |
486 | extern void WXDLLIMPEXP_BASE wxVLog##level(const wxString& format, \ | |
487 | va_list argptr) | |
488 | ||
489 | #ifdef __WATCOMC__ | |
490 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351; | |
491 | // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to | |
492 | // something too big for Borland C++ to handle | |
493 | #define DECLARE_LOG_FUNCTION_WATCOM(level) \ | |
59a14f69 VS |
494 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ |
495 | 1, (const wxString&), \ | |
496 | (wxFormatString(f1))) \ | |
497 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ | |
498 | 1, (const wxCStrData&), \ | |
499 | (wxFormatString(f1))) \ | |
500 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ | |
d1f6e2cf | 501 | 1, (const char*), \ |
59a14f69 VS |
502 | (wxFormatString(f1))) \ |
503 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ | |
d1f6e2cf | 504 | 1, (const wchar_t*), \ |
59a14f69 | 505 | (wxFormatString(f1))) |
2523e9b7 VS |
506 | #else |
507 | #define DECLARE_LOG_FUNCTION_WATCOM(level) | |
508 | #endif | |
509 | ||
c9f78968 | 510 | |
2523e9b7 | 511 | #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \ |
d1f6e2cf VS |
512 | extern void expdecl wxDoLog##level##Wchar(argclass arg, \ |
513 | const wxChar *format, ...); \ | |
514 | extern void expdecl wxDoLog##level##Utf8(argclass arg, \ | |
515 | const char *format, ...); \ | |
2523e9b7 | 516 | WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \ |
1528e0b8 | 517 | 2, (argclass, const wxFormatString&), \ |
d1f6e2cf | 518 | wxDoLog##level##Wchar, wxDoLog##level##Utf8) \ |
2523e9b7 | 519 | DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \ |
c9f78968 | 520 | extern void expdecl wxVLog##level(argclass arg, \ |
81727065 | 521 | const wxString& format, \ |
2523e9b7 VS |
522 | va_list argptr) |
523 | ||
524 | #ifdef __WATCOMC__ | |
525 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351; | |
526 | // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to | |
527 | // something too big for Borland C++ to handle | |
528 | #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \ | |
59a14f69 VS |
529 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ |
530 | 2, (argclass, const wxString&), \ | |
531 | (f1, wxFormatString(f2))) \ | |
532 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ | |
533 | 2, (argclass, const wxCStrData&), \ | |
534 | (f1, wxFormatString(f2))) \ | |
535 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ | |
2523e9b7 | 536 | 2, (argclass, const char*), \ |
59a14f69 VS |
537 | (f1, wxFormatString(f2))) \ |
538 | WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \ | |
2523e9b7 | 539 | 2, (argclass, const wchar_t*), \ |
59a14f69 | 540 | (f1, wxFormatString(f2))) |
2523e9b7 VS |
541 | #else |
542 | #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) | |
543 | #endif | |
544 | ||
c9f78968 | 545 | |
88ac883a VZ |
546 | #else // !wxUSE_LOG |
547 | ||
82e77a80 VS |
548 | #ifdef __WATCOMC__ |
549 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
550 | #define WX_WATCOM_ONLY_CODE( x ) x | |
551 | #else | |
552 | #define WX_WATCOM_ONLY_CODE( x ) | |
553 | #endif | |
554 | ||
88ac883a | 555 | // log functions do nothing at all |
2523e9b7 VS |
556 | #define DECLARE_LOG_FUNCTION(level) \ |
557 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxString&)) \ | |
558 | WX_WATCOM_ONLY_CODE( \ | |
559 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const char*)) \ | |
560 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wchar_t*)) \ | |
561 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxCStrData&)) \ | |
562 | ) \ | |
81727065 | 563 | inline void wxVLog##level(const wxString& WXUNUSED(format), \ |
59a14f69 | 564 | va_list WXUNUSED(argptr)) { } \ |
c9f78968 | 565 | |
2523e9b7 VS |
566 | #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \ |
567 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxString&)) \ | |
568 | WX_WATCOM_ONLY_CODE( \ | |
569 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const char*)) \ | |
570 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wchar_t*)) \ | |
571 | WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxCStrData&)) \ | |
572 | ) \ | |
c9f78968 | 573 | inline void wxVLog##level(argclass WXUNUSED(arg), \ |
59a14f69 VS |
574 | const wxString& WXUNUSED(format), \ |
575 | va_list WXUNUSED(argptr)) {} | |
2523e9b7 | 576 | |
e30285ab | 577 | // Empty Class to fake wxLogNull |
bddd7a8d | 578 | class WXDLLIMPEXP_BASE wxLogNull |
e30285ab VZ |
579 | { |
580 | public: | |
886dd7d2 | 581 | wxLogNull() { } |
e30285ab VZ |
582 | }; |
583 | ||
584 | // Dummy macros to replace some functions. | |
585 | #define wxSysErrorCode() (unsigned long)0 | |
586 | #define wxSysErrorMsg( X ) (const wxChar*)NULL | |
587 | ||
588 | // Fake symbolic trace masks... for those that are used frequently | |
fda7962d | 589 | #define wxTRACE_OleCalls wxEmptyString // OLE interface calls |
e30285ab | 590 | |
88ac883a | 591 | #endif // wxUSE_LOG/!wxUSE_LOG |
bdeb1f0d | 592 | |
33936026 WS |
593 | #define DECLARE_LOG_FUNCTION2(level, argclass, arg) \ |
594 | DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, WXDLLIMPEXP_BASE) | |
0b4f47a3 | 595 | |
463c2e5b | 596 | // VC6 produces a warning if we a macro expanding to nothing to |
2523e9b7 | 597 | // DECLARE_LOG_FUNCTION2: |
463c2e5b | 598 | #if defined(__VISUALC__) && __VISUALC__ < 1300 |
2523e9b7 | 599 | // "not enough actual parameters for macro 'DECLARE_LOG_FUNCTION2_EXP'" |
463c2e5b VS |
600 | #pragma warning(disable:4003) |
601 | #endif | |
c801d85f | 602 | |
88ac883a | 603 | // a generic function for all levels (level is passes as parameter) |
33936026 | 604 | DECLARE_LOG_FUNCTION2(Generic, wxLogLevel, level); |
c801d85f | 605 | |
88ac883a VZ |
606 | // one function per each level |
607 | DECLARE_LOG_FUNCTION(FatalError); | |
608 | DECLARE_LOG_FUNCTION(Error); | |
609 | DECLARE_LOG_FUNCTION(Warning); | |
610 | DECLARE_LOG_FUNCTION(Message); | |
611 | DECLARE_LOG_FUNCTION(Info); | |
612 | DECLARE_LOG_FUNCTION(Verbose); | |
470b7da3 | 613 | |
88ac883a VZ |
614 | // this function sends the log message to the status line of the top level |
615 | // application frame, if any | |
2523e9b7 | 616 | DECLARE_LOG_FUNCTION(Status); |
470b7da3 | 617 | |
886dd7d2 VZ |
618 | #if wxUSE_GUI |
619 | // this one is the same as previous except that it allows to explicitly | |
b76069e2 | 620 | class WXDLLEXPORT wxFrame; |
886dd7d2 | 621 | // specify the frame to which the output should go |
2523e9b7 | 622 | DECLARE_LOG_FUNCTION2_EXP(Status, wxFrame *, pFrame, WXDLLIMPEXP_CORE); |
886dd7d2 | 623 | #endif // wxUSE_GUI |
c801d85f | 624 | |
88ac883a VZ |
625 | // additional one: as wxLogError, but also logs last system call error code |
626 | // and the corresponding error message if available | |
2523e9b7 | 627 | DECLARE_LOG_FUNCTION(SysError); |
c801d85f | 628 | |
88ac883a VZ |
629 | // and another one which also takes the error code (for those broken APIs |
630 | // that don't set the errno (like registry APIs in Win32)) | |
2523e9b7 VS |
631 | DECLARE_LOG_FUNCTION2(SysError, long, lErrCode); |
632 | #ifdef __WATCOMC__ | |
633 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
634 | DECLARE_LOG_FUNCTION2(SysError, unsigned long, lErrCode); | |
635 | #endif | |
88ac883a VZ |
636 | |
637 | // debug functions do nothing in release mode | |
bdeb1f0d | 638 | #if wxUSE_LOG && wxUSE_LOG_DEBUG |
d6b9496a VZ |
639 | DECLARE_LOG_FUNCTION(Debug); |
640 | ||
b103e4f3 VZ |
641 | // there is no more unconditional LogTrace: it is not different from |
642 | // LogDebug and it creates overload ambiguities | |
643 | //DECLARE_LOG_FUNCTION(Trace); | |
d6b9496a | 644 | |
b103e4f3 VZ |
645 | // this version only logs the message if the mask had been added to the |
646 | // list of masks with AddTraceMask() | |
2523e9b7 VS |
647 | DECLARE_LOG_FUNCTION2(Trace, const wxString&, mask); |
648 | #ifdef __WATCOMC__ | |
649 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
650 | DECLARE_LOG_FUNCTION2(Trace, const char*, mask); | |
651 | DECLARE_LOG_FUNCTION2(Trace, const wchar_t*, mask); | |
652 | #endif | |
653 | ||
b103e4f3 VZ |
654 | // and this one does nothing if all of level bits are not set in |
655 | // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of | |
d6b9496a | 656 | // string identifiers |
2523e9b7 VS |
657 | DECLARE_LOG_FUNCTION2(Trace, wxTraceMask, mask); |
658 | #ifdef __WATCOMC__ | |
659 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
660 | DECLARE_LOG_FUNCTION2(Trace, int, mask); | |
661 | #endif | |
bdeb1f0d | 662 | #else //!debug || !wxUSE_LOG |
388a1f66 VZ |
663 | // these functions do nothing in release builds, but don't define them as |
664 | // nothing as it could result in different code structure in debug and | |
665 | // release and this could result in trouble when these macros are used | |
666 | // inside if/else | |
667 | // | |
668 | // note that making wxVLogDebug/Trace() themselves (empty inline) functions | |
669 | // is a bad idea as some compilers are stupid enough to not inline even | |
670 | // empty functions if their parameters are complicated enough, but by | |
671 | // defining them as an empty inline function we ensure that even dumbest | |
672 | // compilers optimise them away | |
673 | inline void wxLogNop() { } | |
674 | ||
675 | #define wxVLogDebug(fmt, valist) wxLogNop() | |
676 | #define wxVLogTrace(mask, fmt, valist) wxLogNop() | |
ca766534 VS |
677 | |
678 | #ifdef HAVE_VARIADIC_MACROS | |
388a1f66 VZ |
679 | // unlike the inline functions below, this completely removes the |
680 | // wxLogXXX calls from the object file: | |
681 | #define wxLogDebug(fmt, ...) wxLogNop() | |
682 | #define wxLogTrace(mask, fmt, ...) wxLogNop() | |
ca766534 | 683 | #else // !HAVE_VARIADIC_MACROS |
c9f78968 | 684 | //inline void wxLogDebug(const wxString& fmt, ...) {} |
44be939a | 685 | WX_DEFINE_VARARG_FUNC_NOP(wxLogDebug, 1, (const wxString&)) |
c9f78968 VS |
686 | //inline void wxLogTrace(wxTraceMask, const wxString& fmt, ...) {} |
687 | //inline void wxLogTrace(const wxString&, const wxString& fmt, ...) {} | |
44be939a VS |
688 | WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (wxTraceMask, const wxString&)) |
689 | WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (const wxString&, const wxString&)) | |
690 | #ifdef __WATCOMC__ | |
691 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
692 | WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (const char*, const char*)) | |
693 | WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (const wchar_t*, const wchar_t*)) | |
694 | #endif | |
ca766534 | 695 | #endif // HAVE_VARIADIC_MACROS/!HAVE_VARIADIC_MACROS |
88ac883a | 696 | #endif // debug/!debug |
c801d85f | 697 | |
463c2e5b VS |
698 | #if defined(__VISUALC__) && __VISUALC__ < 1300 |
699 | #pragma warning(default:4003) | |
700 | #endif | |
701 | ||
c11d62a6 VZ |
702 | // wxLogFatalError helper: show the (fatal) error to the user in a safe way, |
703 | // i.e. without using wxMessageBox() for example because it could crash | |
bddd7a8d | 704 | void WXDLLIMPEXP_BASE |
886dd7d2 | 705 | wxSafeShowMessage(const wxString& title, const wxString& text); |
c11d62a6 | 706 | |
88ac883a VZ |
707 | // ---------------------------------------------------------------------------- |
708 | // debug only logging functions: use them with API name and error code | |
709 | // ---------------------------------------------------------------------------- | |
c801d85f | 710 | |
e90babdf | 711 | #ifdef __WXDEBUG__ |
42e69d6b VZ |
712 | // make life easier for people using VC++ IDE: clicking on the message |
713 | // will take us immediately to the place of the failed API | |
714 | #ifdef __VISUALC__ | |
4b7f2165 VZ |
715 | #define wxLogApiError(api, rc) \ |
716 | wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \ | |
0accd1cf | 717 | __FILE__, __LINE__, api, \ |
8b94d999 | 718 | (long)rc, wxSysErrorMsg(rc)) |
42e69d6b | 719 | #else // !VC++ |
4b7f2165 | 720 | #define wxLogApiError(api, rc) \ |
18da7cf2 VZ |
721 | wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \ |
722 | wxT("error 0x%08lx (%s)."), \ | |
0accd1cf | 723 | __FILE__, __LINE__, api, \ |
8b94d999 | 724 | (long)rc, wxSysErrorMsg(rc)) |
42e69d6b VZ |
725 | #endif // VC++/!VC++ |
726 | ||
727 | #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode()) | |
728 | ||
c801d85f | 729 | #else //!debug |
388a1f66 VZ |
730 | #define wxLogApiError(api, err) wxLogNop() |
731 | #define wxLogLastError(api) wxLogNop() | |
c801d85f KB |
732 | #endif //debug/!debug |
733 | ||
a619fa3f DE |
734 | // wxCocoa has additiional trace masks |
735 | #if defined(__WXCOCOA__) | |
736 | #include "wx/cocoa/log.h" | |
737 | #endif | |
738 | ||
82e77a80 VS |
739 | #ifdef WX_WATCOM_ONLY_CODE |
740 | #undef WX_WATCOM_ONLY_CODE | |
741 | #endif | |
742 | ||
34138703 | 743 | #endif // _WX_LOG_H_ |
04662def | 744 |