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