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