1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Assorted wxLogXXX functions, and wxLog (sink for logs)
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 // ----------------------------------------------------------------------------
18 // common constants for use in wxUSE_LOG/!wxUSE_LOG
19 // ----------------------------------------------------------------------------
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
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
32 #define wxTraceOleCalls 0x0100 // OLE interface calls
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
39 // NB: these types are needed even if wxUSE_LOG == 0
40 typedef unsigned long wxTraceMask
;
41 typedef unsigned long wxLogLevel
;
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 #include "wx/string.h"
48 #include "wx/strvararg.h"
52 #include "wx/arrstr.h"
55 #include <time.h> // for time_t
58 #include "wx/dynarray.h"
60 #ifndef wxUSE_LOG_DEBUG
62 # define wxUSE_LOG_DEBUG 1
63 # else // !__WXDEBUG__
64 # define wxUSE_LOG_DEBUG 0
68 // ----------------------------------------------------------------------------
69 // forward declarations
70 // ----------------------------------------------------------------------------
73 class WXDLLIMPEXP_CORE wxTextCtrl
;
74 class WXDLLIMPEXP_CORE wxLogFrame
;
75 class WXDLLIMPEXP_CORE wxFrame
;
76 class WXDLLIMPEXP_CORE wxWindow
;
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
83 // different standard log levels (you may also define your own)
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)
90 wxLOG_Status
, // informational: might go to the status line of GUI app
91 wxLOG_Info
, // informational message (a.k.a. 'Verbose')
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)
95 wxLOG_User
= 100, // user defined levels start here
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()
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
109 #define wxTRACE_OleCalls wxT("ole") // OLE interface calls
112 #include "wx/iosfwrap.h"
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
117 // ----------------------------------------------------------------------------
119 class WXDLLIMPEXP_BASE wxLog
125 // these functions allow to completely disable all log messages
127 // is logging disabled now?
128 static bool IsEnabled() { return ms_doLog
; }
130 // change the flag state, return the previous one
131 static bool EnableLogging(bool doIt
= true)
132 { bool doLogOld
= ms_doLog
; ms_doLog
= doIt
; return doLogOld
; }
134 // static sink function - see DoLog() for function to overload in the
136 static void OnLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
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)
143 virtual void Flush();
145 // flush the active target if any
146 static void FlushActive()
148 if ( !ms_suspendCount
)
150 wxLog
*log
= GetActiveTarget();
156 // only one sink is active at each moment
157 // get current log target, will call wxApp::CreateLogTarget() to
158 // create one if none exists
159 static wxLog
*GetActiveTarget();
161 // change log target, pLogger may be NULL
162 static wxLog
*SetActiveTarget(wxLog
*pLogger
);
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)
167 static void Suspend() { ms_suspendCount
++; }
169 // must be called for each Suspend()!
170 static void Resume() { ms_suspendCount
--; }
172 // functions controlling the default wxLog behaviour
173 // verbose mode is activated by standard command-line '-verbose'
175 static void SetVerbose(bool bVerbose
= true) { ms_bVerbose
= bVerbose
; }
177 // Set log level. Log messages with level > logLevel will not be logged.
178 static void SetLogLevel(wxLogLevel logLevel
) { ms_logLevel
= logLevel
; }
180 // should GetActiveTarget() try to create a new log object if the
182 static void DontCreateOnDemand();
184 // Make GetActiveTarget() create a new log object again.
185 static void DoCreateOnDemand();
187 // log the count of repeating messages instead of logging the messages
189 static void SetRepetitionCounting(bool bRepetCounting
= true)
190 { ms_bRepetCounting
= bRepetCounting
; }
192 // gets duplicate counting status
193 static bool GetRepetitionCounting() { return ms_bRepetCounting
; }
195 // trace mask (see wxTraceXXX constants for details)
196 static void SetTraceMask(wxTraceMask ulMask
) { ms_ulTraceMask
= ulMask
; }
198 // add string trace mask
199 static void AddTraceMask(const wxString
& str
)
200 { ms_aTraceMasks
.push_back(str
); }
202 // add string trace mask
203 static void RemoveTraceMask(const wxString
& str
);
205 // remove all string trace masks
206 static void ClearTraceMasks();
208 // get string trace masks
209 static const wxArrayString
&GetTraceMasks() { return ms_aTraceMasks
; }
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.
214 static void SetTimestamp(const wxString
& ts
) { ms_timestamp
= ts
; }
219 // gets the verbose status
220 static bool GetVerbose() { return ms_bVerbose
; }
223 static wxTraceMask
GetTraceMask() { return ms_ulTraceMask
; }
225 // is this trace mask in the list?
226 static bool IsAllowedTraceMask(const wxString
& mask
);
228 // return the current loglevel limit
229 static wxLogLevel
GetLogLevel() { return ms_logLevel
; }
231 // get the current timestamp format string (may be NULL)
232 static const wxString
& GetTimestamp() { return ms_timestamp
; }
237 // put the time stamp into the string if ms_timestamp != NULL (don't
238 // change it otherwise)
239 static void TimeStamp(wxString
*str
);
241 // make dtor virtual for all derived classes
245 // this method exists for backwards compatibility only, don't use
246 bool HasPendingMessages() const { return true; }
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) );
254 // the logging functions that can be overriden
256 // default DoLog() prepends the time stamp and a prefix corresponding
257 // to the message to szString and then passes it to DoLogString()
258 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
259 #if WXWIN_COMPATIBILITY_2_8
260 // these shouldn't be used by new code
261 wxDEPRECATED_BUT_USED_INTERNALLY(
262 virtual void DoLog(wxLogLevel level
, const char *szString
, time_t t
)
265 wxDEPRECATED_BUT_USED_INTERNALLY(
266 virtual void DoLog(wxLogLevel level
, const wchar_t *wzString
, time_t t
)
268 #endif // WXWIN_COMPATIBILITY_2_8
270 void LogString(const wxString
& szString
, time_t t
)
271 { DoLogString(szString
, t
); }
273 // default DoLogString does nothing but is not pure virtual because if
274 // you override DoLog() you might not need it at all
275 virtual void DoLogString(const wxString
& szString
, time_t t
);
276 #if WXWIN_COMPATIBILITY_2_8
277 // these shouldn't be used by new code
278 virtual void DoLogString(const char *WXUNUSED(szString
),
279 time_t WXUNUSED(t
)) {}
280 virtual void DoLogString(const wchar_t *WXUNUSED(szString
),
281 time_t WXUNUSED(t
)) {}
282 #endif // WXWIN_COMPATIBILITY_2_8
284 // this macro should be used in the derived classes to avoid warnings about
285 // hiding the other DoLog() overloads when overriding DoLog(wxString) --
286 // but don't use it with MSVC which doesn't give this warning but does give
287 // warning when a deprecated function is overridden
288 #if WXWIN_COMPATIBILITY_2_8 && !defined(__VISUALC__)
289 #define wxSUPPRESS_DOLOG_HIDE_WARNING() \
290 virtual void DoLog(wxLogLevel, const char *, time_t) { } \
291 virtual void DoLog(wxLogLevel, const wchar_t *, time_t) { }
293 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING() \
294 virtual void DoLogString(const char *, time_t) { } \
295 virtual void DoLogString(const wchar_t *, time_t) { }
297 #define wxSUPPRESS_DOLOG_HIDE_WARNING()
298 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
301 // log a line containing the number of times the previous message was
303 // returns: the number
304 static unsigned DoLogNumberOfRepeats();
310 // traditional behaviour or counting repetitions
311 static bool ms_bRepetCounting
;
312 static wxString ms_prevString
; // previous message that was logged
313 // how many times the previous message was logged
314 static unsigned ms_prevCounter
;
315 static time_t ms_prevTimeStamp
;// timestamp of the previous message
316 static wxLogLevel ms_prevLevel
; // level of the previous message
318 static wxLog
*ms_pLogger
; // currently active log sink
319 static bool ms_doLog
; // false => all logging disabled
320 static bool ms_bAutoCreate
; // create new log targets on demand?
321 static bool ms_bVerbose
; // false => ignore LogInfo messages
323 static wxLogLevel ms_logLevel
; // limit logging to levels <= ms_logLevel
325 static size_t ms_suspendCount
; // if positive, logs are not flushed
327 // format string for strftime(), if NULL, time stamping log messages is
329 static wxString ms_timestamp
;
331 static wxTraceMask ms_ulTraceMask
; // controls wxLogTrace behaviour
332 static wxArrayString ms_aTraceMasks
; // more powerful filter for wxLogTrace
335 // ----------------------------------------------------------------------------
336 // "trivial" derivations of wxLog
337 // ----------------------------------------------------------------------------
339 // log everything to a buffer
340 class WXDLLIMPEXP_BASE wxLogBuffer
: public wxLog
345 // get the string contents with all messages logged
346 const wxString
& GetBuffer() const { return m_str
; }
348 // show the buffer contents to the user in the best possible way (this uses
349 // wxMessageOutputMessageBox) and clear it
350 virtual void Flush();
353 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
354 virtual void DoLogString(const wxString
& szString
, time_t t
);
356 wxSUPPRESS_DOLOG_HIDE_WARNING()
357 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
362 DECLARE_NO_COPY_CLASS(wxLogBuffer
)
366 // log everything to a "FILE *", stderr by default
367 class WXDLLIMPEXP_BASE wxLogStderr
: public wxLog
370 // redirect log output to a FILE
371 wxLogStderr(FILE *fp
= (FILE *) NULL
);
374 // implement sink function
375 virtual void DoLogString(const wxString
& szString
, time_t t
);
377 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
381 DECLARE_NO_COPY_CLASS(wxLogStderr
)
384 #if wxUSE_STD_IOSTREAM
386 // log everything to an "ostream", cerr by default
387 class WXDLLIMPEXP_BASE wxLogStream
: public wxLog
390 // redirect log output to an ostream
391 wxLogStream(wxSTD ostream
*ostr
= (wxSTD ostream
*) NULL
);
394 // implement sink function
395 virtual void DoLogString(const wxString
& szString
, time_t t
);
397 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
399 // using ptr here to avoid including <iostream.h> from this file
400 wxSTD ostream
*m_ostr
;
403 #endif // wxUSE_STD_IOSTREAM
405 // ----------------------------------------------------------------------------
406 // /dev/null log target: suppress logging until this object goes out of scope
407 // ----------------------------------------------------------------------------
415 // wxFile.Open() normally complains if file can't be opened, we don't
419 if ( !file.Open("bar") )
420 ... process error ourselves ...
422 // ~wxLogNull called, old log sink restored
425 class WXDLLIMPEXP_BASE wxLogNull
428 wxLogNull() : m_flagOld(wxLog::EnableLogging(false)) { }
429 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld
); }
432 bool m_flagOld
; // the previous value of the wxLog::ms_doLog
435 // ----------------------------------------------------------------------------
436 // chaining log target: installs itself as a log target and passes all
437 // messages to the real log target given to it in the ctor but also forwards
438 // them to the previously active one
440 // note that you don't have to call SetActiveTarget() with this class, it
441 // does it itself in its ctor
442 // ----------------------------------------------------------------------------
444 class WXDLLIMPEXP_BASE wxLogChain
: public wxLog
447 wxLogChain(wxLog
*logger
);
448 virtual ~wxLogChain();
450 // change the new log target
451 void SetLog(wxLog
*logger
);
453 // this can be used to temporarily disable (and then reenable) passing
454 // messages to the old logger (by default we do pass them)
455 void PassMessages(bool bDoPass
) { m_bPassMessages
= bDoPass
; }
457 // are we passing the messages to the previous log target?
458 bool IsPassingMessages() const { return m_bPassMessages
; }
460 // return the previous log target (may be NULL)
461 wxLog
*GetOldLog() const { return m_logOld
; }
463 // override base class version to flush the old logger as well
464 virtual void Flush();
466 // call to avoid destroying the old log target
467 void DetachOldLog() { m_logOld
= NULL
; }
470 // pass the chain to the old logger if needed
471 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
473 wxSUPPRESS_DOLOG_HIDE_WARNING()
476 // the current log target
479 // the previous log target
482 // do we pass the messages to the old logger?
483 bool m_bPassMessages
;
485 DECLARE_NO_COPY_CLASS(wxLogChain
)
488 // a chain log target which uses itself as the new logger
490 #define wxLogPassThrough wxLogInterposer
492 class WXDLLIMPEXP_BASE wxLogInterposer
: public wxLogChain
498 DECLARE_NO_COPY_CLASS(wxLogInterposer
)
501 // a temporary interposer which doesn't destroy the old log target
502 // (calls DetachOldLog)
504 class WXDLLIMPEXP_BASE wxLogInterposerTemp
: public wxLogChain
507 wxLogInterposerTemp();
510 DECLARE_NO_COPY_CLASS(wxLogInterposerTemp
)
514 // include GUI log targets:
515 #include "wx/generic/logg.h"
518 // ============================================================================
520 // ============================================================================
522 // ----------------------------------------------------------------------------
523 // Log functions should be used by application instead of stdio, iostream &c
524 // for log messages for easy redirection
525 // ----------------------------------------------------------------------------
527 // ----------------------------------------------------------------------------
528 // get error code/error message from system in a portable way
529 // ----------------------------------------------------------------------------
531 // return the last system error code
532 WXDLLIMPEXP_BASE
unsigned long wxSysErrorCode();
534 // return the error message for given (or last if 0) error code
535 WXDLLIMPEXP_BASE
const wxChar
* wxSysErrorMsg(unsigned long nErrCode
= 0);
537 // ----------------------------------------------------------------------------
538 // define wxLog<level>
539 // ----------------------------------------------------------------------------
541 #define DECLARE_LOG_FUNCTION(level) \
542 extern void WXDLLIMPEXP_BASE \
543 wxDoLog##level##Wchar(const wxChar *format, ...); \
544 extern void WXDLLIMPEXP_BASE \
545 wxDoLog##level##Utf8(const char *format, ...); \
546 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
547 1, (const wxFormatString&), \
548 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
549 DECLARE_LOG_FUNCTION_WATCOM(level) \
550 extern void WXDLLIMPEXP_BASE wxVLog##level(const wxString& format, \
554 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
555 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
556 // something too big for Borland C++ to handle
557 #define DECLARE_LOG_FUNCTION_WATCOM(level) \
558 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
559 1, (const wxString&), \
560 (wxFormatString(f1))) \
561 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
562 1, (const wxCStrData&), \
563 (wxFormatString(f1))) \
564 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
566 (wxFormatString(f1))) \
567 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
568 1, (const wchar_t*), \
569 (wxFormatString(f1)))
571 #define DECLARE_LOG_FUNCTION_WATCOM(level)
575 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
576 extern void expdecl wxDoLog##level##Wchar(argclass arg, \
577 const wxChar *format, ...); \
578 extern void expdecl wxDoLog##level##Utf8(argclass arg, \
579 const char *format, ...); \
580 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
581 2, (argclass, const wxFormatString&), \
582 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
583 DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
584 extern void expdecl wxVLog##level(argclass arg, \
585 const wxString& format, \
589 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
590 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
591 // something too big for Borland C++ to handle
592 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
593 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
594 2, (argclass, const wxString&), \
595 (f1, wxFormatString(f2))) \
596 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
597 2, (argclass, const wxCStrData&), \
598 (f1, wxFormatString(f2))) \
599 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
600 2, (argclass, const char*), \
601 (f1, wxFormatString(f2))) \
602 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
603 2, (argclass, const wchar_t*), \
604 (f1, wxFormatString(f2)))
606 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl)
613 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
614 #define WX_WATCOM_ONLY_CODE( x ) x
616 #define WX_WATCOM_ONLY_CODE( x )
619 // log functions do nothing at all
620 #define DECLARE_LOG_FUNCTION(level) \
621 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxString&)) \
622 WX_WATCOM_ONLY_CODE( \
623 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const char*)) \
624 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wchar_t*)) \
625 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxCStrData&)) \
627 inline void wxVLog##level(const wxString& WXUNUSED(format), \
628 va_list WXUNUSED(argptr)) { } \
630 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
631 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxString&)) \
632 WX_WATCOM_ONLY_CODE( \
633 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const char*)) \
634 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wchar_t*)) \
635 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxCStrData&)) \
637 inline void wxVLog##level(argclass WXUNUSED(arg), \
638 const wxString& WXUNUSED(format), \
639 va_list WXUNUSED(argptr)) {}
641 // Empty Class to fake wxLogNull
642 class WXDLLIMPEXP_BASE wxLogNull
648 // Dummy macros to replace some functions.
649 #define wxSysErrorCode() (unsigned long)0
650 #define wxSysErrorMsg( X ) (const wxChar*)NULL
652 // Fake symbolic trace masks... for those that are used frequently
653 #define wxTRACE_OleCalls wxEmptyString // OLE interface calls
655 #endif // wxUSE_LOG/!wxUSE_LOG
657 #define DECLARE_LOG_FUNCTION2(level, argclass, arg) \
658 DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, WXDLLIMPEXP_BASE)
660 // VC6 produces a warning if we a macro expanding to nothing to
661 // DECLARE_LOG_FUNCTION2:
662 #if defined(__VISUALC__) && __VISUALC__ < 1300
663 // "not enough actual parameters for macro 'DECLARE_LOG_FUNCTION2_EXP'"
664 #pragma warning(disable:4003)
667 // a generic function for all levels (level is passes as parameter)
668 DECLARE_LOG_FUNCTION2(Generic
, wxLogLevel
, level
);
670 // one function per each level
671 DECLARE_LOG_FUNCTION(FatalError
);
672 DECLARE_LOG_FUNCTION(Error
);
673 DECLARE_LOG_FUNCTION(Warning
);
674 DECLARE_LOG_FUNCTION(Message
);
675 DECLARE_LOG_FUNCTION(Info
);
676 DECLARE_LOG_FUNCTION(Verbose
);
678 // this function sends the log message to the status line of the top level
679 // application frame, if any
680 DECLARE_LOG_FUNCTION(Status
);
683 // this one is the same as previous except that it allows to explicitly
684 class WXDLLEXPORT wxFrame
;
685 // specify the frame to which the output should go
686 DECLARE_LOG_FUNCTION2_EXP(Status
, wxFrame
*, pFrame
, WXDLLIMPEXP_CORE
);
689 // additional one: as wxLogError, but also logs last system call error code
690 // and the corresponding error message if available
691 DECLARE_LOG_FUNCTION(SysError
);
693 // and another one which also takes the error code (for those broken APIs
694 // that don't set the errno (like registry APIs in Win32))
695 DECLARE_LOG_FUNCTION2(SysError
, long, lErrCode
);
697 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
698 DECLARE_LOG_FUNCTION2(SysError
, unsigned long, lErrCode
);
701 // debug functions do nothing in release mode
702 #if wxUSE_LOG && wxUSE_LOG_DEBUG
703 DECLARE_LOG_FUNCTION(Debug
);
705 // there is no more unconditional LogTrace: it is not different from
706 // LogDebug and it creates overload ambiguities
707 //DECLARE_LOG_FUNCTION(Trace);
709 // this version only logs the message if the mask had been added to the
710 // list of masks with AddTraceMask()
711 DECLARE_LOG_FUNCTION2(Trace
, const wxString
&, mask
);
713 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
714 DECLARE_LOG_FUNCTION2(Trace
, const char*, mask
);
715 DECLARE_LOG_FUNCTION2(Trace
, const wchar_t*, mask
);
718 // and this one does nothing if all of level bits are not set in
719 // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of
720 // string identifiers
721 DECLARE_LOG_FUNCTION2(Trace
, wxTraceMask
, mask
);
723 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
724 DECLARE_LOG_FUNCTION2(Trace
, int, mask
);
726 #else //!debug || !wxUSE_LOG
727 // these functions do nothing in release builds, but don't define them as
728 // nothing as it could result in different code structure in debug and
729 // release and this could result in trouble when these macros are used
732 // note that making wxVLogDebug/Trace() themselves (empty inline) functions
733 // is a bad idea as some compilers are stupid enough to not inline even
734 // empty functions if their parameters are complicated enough, but by
735 // defining them as an empty inline function we ensure that even dumbest
736 // compilers optimise them away
737 inline void wxLogNop() { }
739 #define wxVLogDebug(fmt, valist) wxLogNop()
740 #define wxVLogTrace(mask, fmt, valist) wxLogNop()
742 #ifdef HAVE_VARIADIC_MACROS
743 // unlike the inline functions below, this completely removes the
744 // wxLogXXX calls from the object file:
745 #define wxLogDebug(fmt, ...) wxLogNop()
746 #define wxLogTrace(mask, fmt, ...) wxLogNop()
747 #else // !HAVE_VARIADIC_MACROS
748 //inline void wxLogDebug(const wxString& fmt, ...) {}
749 WX_DEFINE_VARARG_FUNC_NOP(wxLogDebug
, 1, (const wxString
&))
750 //inline void wxLogTrace(wxTraceMask, const wxString& fmt, ...) {}
751 //inline void wxLogTrace(const wxString&, const wxString& fmt, ...) {}
752 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (wxTraceMask
, const wxString
&))
753 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wxString
&, const wxString
&))
755 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
756 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const char*, const char*))
757 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wchar_t*, const wchar_t*))
759 #endif // HAVE_VARIADIC_MACROS/!HAVE_VARIADIC_MACROS
760 #endif // debug/!debug
762 #if defined(__VISUALC__) && __VISUALC__ < 1300
763 #pragma warning(default:4003)
766 // wxLogFatalError helper: show the (fatal) error to the user in a safe way,
767 // i.e. without using wxMessageBox() for example because it could crash
768 void WXDLLIMPEXP_BASE
769 wxSafeShowMessage(const wxString
& title
, const wxString
& text
);
771 // ----------------------------------------------------------------------------
772 // debug only logging functions: use them with API name and error code
773 // ----------------------------------------------------------------------------
776 // make life easier for people using VC++ IDE: clicking on the message
777 // will take us immediately to the place of the failed API
779 #define wxLogApiError(api, rc) \
780 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
781 __FILE__, __LINE__, api, \
782 (long)rc, wxSysErrorMsg(rc))
784 #define wxLogApiError(api, rc) \
785 wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \
786 wxT("error 0x%08lx (%s)."), \
787 __FILE__, __LINE__, api, \
788 (long)rc, wxSysErrorMsg(rc))
791 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
794 #define wxLogApiError(api, err) wxLogNop()
795 #define wxLogLastError(api) wxLogNop()
796 #endif //debug/!debug
798 // wxCocoa has additiional trace masks
799 #if defined(__WXCOCOA__)
800 #include "wx/cocoa/log.h"
803 #ifdef WX_WATCOM_ONLY_CODE
804 #undef WX_WATCOM_ONLY_CODE