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
)) {}
284 // log a line containing the number of times the previous message was
286 // returns: the number
287 static unsigned DoLogNumberOfRepeats();
293 // traditional behaviour or counting repetitions
294 static bool ms_bRepetCounting
;
295 static wxString ms_prevString
; // previous message that was logged
296 // how many times the previous message was logged
297 static unsigned ms_prevCounter
;
298 static time_t ms_prevTimeStamp
;// timestamp of the previous message
299 static wxLogLevel ms_prevLevel
; // level of the previous message
301 static wxLog
*ms_pLogger
; // currently active log sink
302 static bool ms_doLog
; // false => all logging disabled
303 static bool ms_bAutoCreate
; // create new log targets on demand?
304 static bool ms_bVerbose
; // false => ignore LogInfo messages
306 static wxLogLevel ms_logLevel
; // limit logging to levels <= ms_logLevel
308 static size_t ms_suspendCount
; // if positive, logs are not flushed
310 // format string for strftime(), if NULL, time stamping log messages is
312 static wxString ms_timestamp
;
314 static wxTraceMask ms_ulTraceMask
; // controls wxLogTrace behaviour
315 static wxArrayString ms_aTraceMasks
; // more powerful filter for wxLogTrace
318 // ----------------------------------------------------------------------------
319 // "trivial" derivations of wxLog
320 // ----------------------------------------------------------------------------
322 // log everything to a buffer
323 class WXDLLIMPEXP_BASE wxLogBuffer
: public wxLog
328 // get the string contents with all messages logged
329 const wxString
& GetBuffer() const { return m_str
; }
331 // show the buffer contents to the user in the best possible way (this uses
332 // wxMessageOutputMessageBox) and clear it
333 virtual void Flush();
336 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
337 virtual void DoLogString(const wxString
& szString
, time_t t
);
342 DECLARE_NO_COPY_CLASS(wxLogBuffer
)
346 // log everything to a "FILE *", stderr by default
347 class WXDLLIMPEXP_BASE wxLogStderr
: public wxLog
350 // redirect log output to a FILE
351 wxLogStderr(FILE *fp
= (FILE *) NULL
);
354 // implement sink function
355 virtual void DoLogString(const wxString
& szString
, time_t t
);
359 DECLARE_NO_COPY_CLASS(wxLogStderr
)
362 #if wxUSE_STD_IOSTREAM
364 // log everything to an "ostream", cerr by default
365 class WXDLLIMPEXP_BASE wxLogStream
: public wxLog
368 // redirect log output to an ostream
369 wxLogStream(wxSTD ostream
*ostr
= (wxSTD ostream
*) NULL
);
372 // implement sink function
373 virtual void DoLogString(const wxString
& szString
, time_t t
);
375 // using ptr here to avoid including <iostream.h> from this file
376 wxSTD ostream
*m_ostr
;
379 #endif // wxUSE_STD_IOSTREAM
381 // ----------------------------------------------------------------------------
382 // /dev/null log target: suppress logging until this object goes out of scope
383 // ----------------------------------------------------------------------------
391 // wxFile.Open() normally complains if file can't be opened, we don't
395 if ( !file.Open("bar") )
396 ... process error ourselves ...
398 // ~wxLogNull called, old log sink restored
401 class WXDLLIMPEXP_BASE wxLogNull
404 wxLogNull() : m_flagOld(wxLog::EnableLogging(false)) { }
405 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld
); }
408 bool m_flagOld
; // the previous value of the wxLog::ms_doLog
411 // ----------------------------------------------------------------------------
412 // chaining log target: installs itself as a log target and passes all
413 // messages to the real log target given to it in the ctor but also forwards
414 // them to the previously active one
416 // note that you don't have to call SetActiveTarget() with this class, it
417 // does it itself in its ctor
418 // ----------------------------------------------------------------------------
420 class WXDLLIMPEXP_BASE wxLogChain
: public wxLog
423 wxLogChain(wxLog
*logger
);
424 virtual ~wxLogChain();
426 // change the new log target
427 void SetLog(wxLog
*logger
);
429 // this can be used to temporarily disable (and then reenable) passing
430 // messages to the old logger (by default we do pass them)
431 void PassMessages(bool bDoPass
) { m_bPassMessages
= bDoPass
; }
433 // are we passing the messages to the previous log target?
434 bool IsPassingMessages() const { return m_bPassMessages
; }
436 // return the previous log target (may be NULL)
437 wxLog
*GetOldLog() const { return m_logOld
; }
439 // override base class version to flush the old logger as well
440 virtual void Flush();
442 // call to avoid destroying the old log target
443 void DetachOldLog() { m_logOld
= NULL
; }
446 // pass the chain to the old logger if needed
447 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
450 // the current log target
453 // the previous log target
456 // do we pass the messages to the old logger?
457 bool m_bPassMessages
;
459 DECLARE_NO_COPY_CLASS(wxLogChain
)
462 // a chain log target which uses itself as the new logger
464 #define wxLogPassThrough wxLogInterposer
466 class WXDLLIMPEXP_BASE wxLogInterposer
: public wxLogChain
472 DECLARE_NO_COPY_CLASS(wxLogInterposer
)
475 // a temporary interposer which doesn't destroy the old log target
476 // (calls DetachOldLog)
478 class WXDLLIMPEXP_BASE wxLogInterposerTemp
: public wxLogChain
481 wxLogInterposerTemp();
484 DECLARE_NO_COPY_CLASS(wxLogInterposerTemp
)
488 // include GUI log targets:
489 #include "wx/generic/logg.h"
492 // ============================================================================
494 // ============================================================================
496 // ----------------------------------------------------------------------------
497 // Log functions should be used by application instead of stdio, iostream &c
498 // for log messages for easy redirection
499 // ----------------------------------------------------------------------------
501 // ----------------------------------------------------------------------------
502 // get error code/error message from system in a portable way
503 // ----------------------------------------------------------------------------
505 // return the last system error code
506 WXDLLIMPEXP_BASE
unsigned long wxSysErrorCode();
508 // return the error message for given (or last if 0) error code
509 WXDLLIMPEXP_BASE
const wxChar
* wxSysErrorMsg(unsigned long nErrCode
= 0);
511 // ----------------------------------------------------------------------------
512 // define wxLog<level>
513 // ----------------------------------------------------------------------------
515 #define DECLARE_LOG_FUNCTION(level) \
516 extern void WXDLLIMPEXP_BASE \
517 wxDoLog##level##Wchar(const wxChar *format, ...); \
518 extern void WXDLLIMPEXP_BASE \
519 wxDoLog##level##Utf8(const char *format, ...); \
520 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
521 1, (const wxFormatString&), \
522 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
523 DECLARE_LOG_FUNCTION_WATCOM(level) \
524 extern void WXDLLIMPEXP_BASE wxVLog##level(const wxString& format, \
528 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
529 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
530 // something too big for Borland C++ to handle
531 #define DECLARE_LOG_FUNCTION_WATCOM(level) \
532 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
533 1, (const wxString&), \
534 (wxFormatString(f1))) \
535 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
536 1, (const wxCStrData&), \
537 (wxFormatString(f1))) \
538 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
540 (wxFormatString(f1))) \
541 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
542 1, (const wchar_t*), \
543 (wxFormatString(f1)))
545 #define DECLARE_LOG_FUNCTION_WATCOM(level)
549 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
550 extern void expdecl wxDoLog##level##Wchar(argclass arg, \
551 const wxChar *format, ...); \
552 extern void expdecl wxDoLog##level##Utf8(argclass arg, \
553 const char *format, ...); \
554 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
555 2, (argclass, const wxFormatString&), \
556 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
557 DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
558 extern void expdecl wxVLog##level(argclass arg, \
559 const wxString& format, \
563 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
564 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
565 // something too big for Borland C++ to handle
566 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
567 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
568 2, (argclass, const wxString&), \
569 (f1, wxFormatString(f2))) \
570 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
571 2, (argclass, const wxCStrData&), \
572 (f1, wxFormatString(f2))) \
573 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
574 2, (argclass, const char*), \
575 (f1, wxFormatString(f2))) \
576 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
577 2, (argclass, const wchar_t*), \
578 (f1, wxFormatString(f2)))
580 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl)
587 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
588 #define WX_WATCOM_ONLY_CODE( x ) x
590 #define WX_WATCOM_ONLY_CODE( x )
593 // log functions do nothing at all
594 #define DECLARE_LOG_FUNCTION(level) \
595 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxString&)) \
596 WX_WATCOM_ONLY_CODE( \
597 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const char*)) \
598 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wchar_t*)) \
599 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxCStrData&)) \
601 inline void wxVLog##level(const wxString& WXUNUSED(format), \
602 va_list WXUNUSED(argptr)) { } \
604 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
605 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxString&)) \
606 WX_WATCOM_ONLY_CODE( \
607 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const char*)) \
608 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wchar_t*)) \
609 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxCStrData&)) \
611 inline void wxVLog##level(argclass WXUNUSED(arg), \
612 const wxString& WXUNUSED(format), \
613 va_list WXUNUSED(argptr)) {}
615 // Empty Class to fake wxLogNull
616 class WXDLLIMPEXP_BASE wxLogNull
622 // Dummy macros to replace some functions.
623 #define wxSysErrorCode() (unsigned long)0
624 #define wxSysErrorMsg( X ) (const wxChar*)NULL
626 // Fake symbolic trace masks... for those that are used frequently
627 #define wxTRACE_OleCalls wxEmptyString // OLE interface calls
629 #endif // wxUSE_LOG/!wxUSE_LOG
631 #define DECLARE_LOG_FUNCTION2(level, argclass, arg) \
632 DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, WXDLLIMPEXP_BASE)
634 // VC6 produces a warning if we a macro expanding to nothing to
635 // DECLARE_LOG_FUNCTION2:
636 #if defined(__VISUALC__) && __VISUALC__ < 1300
637 // "not enough actual parameters for macro 'DECLARE_LOG_FUNCTION2_EXP'"
638 #pragma warning(disable:4003)
641 // a generic function for all levels (level is passes as parameter)
642 DECLARE_LOG_FUNCTION2(Generic
, wxLogLevel
, level
);
644 // one function per each level
645 DECLARE_LOG_FUNCTION(FatalError
);
646 DECLARE_LOG_FUNCTION(Error
);
647 DECLARE_LOG_FUNCTION(Warning
);
648 DECLARE_LOG_FUNCTION(Message
);
649 DECLARE_LOG_FUNCTION(Info
);
650 DECLARE_LOG_FUNCTION(Verbose
);
652 // this function sends the log message to the status line of the top level
653 // application frame, if any
654 DECLARE_LOG_FUNCTION(Status
);
657 // this one is the same as previous except that it allows to explicitly
658 class WXDLLEXPORT wxFrame
;
659 // specify the frame to which the output should go
660 DECLARE_LOG_FUNCTION2_EXP(Status
, wxFrame
*, pFrame
, WXDLLIMPEXP_CORE
);
663 // additional one: as wxLogError, but also logs last system call error code
664 // and the corresponding error message if available
665 DECLARE_LOG_FUNCTION(SysError
);
667 // and another one which also takes the error code (for those broken APIs
668 // that don't set the errno (like registry APIs in Win32))
669 DECLARE_LOG_FUNCTION2(SysError
, long, lErrCode
);
671 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
672 DECLARE_LOG_FUNCTION2(SysError
, unsigned long, lErrCode
);
675 // debug functions do nothing in release mode
676 #if wxUSE_LOG && wxUSE_LOG_DEBUG
677 DECLARE_LOG_FUNCTION(Debug
);
679 // there is no more unconditional LogTrace: it is not different from
680 // LogDebug and it creates overload ambiguities
681 //DECLARE_LOG_FUNCTION(Trace);
683 // this version only logs the message if the mask had been added to the
684 // list of masks with AddTraceMask()
685 DECLARE_LOG_FUNCTION2(Trace
, const wxString
&, mask
);
687 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
688 DECLARE_LOG_FUNCTION2(Trace
, const char*, mask
);
689 DECLARE_LOG_FUNCTION2(Trace
, const wchar_t*, mask
);
692 // and this one does nothing if all of level bits are not set in
693 // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of
694 // string identifiers
695 DECLARE_LOG_FUNCTION2(Trace
, wxTraceMask
, mask
);
697 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
698 DECLARE_LOG_FUNCTION2(Trace
, int, mask
);
700 #else //!debug || !wxUSE_LOG
701 // these functions do nothing in release builds, but don't define them as
702 // nothing as it could result in different code structure in debug and
703 // release and this could result in trouble when these macros are used
706 // note that making wxVLogDebug/Trace() themselves (empty inline) functions
707 // is a bad idea as some compilers are stupid enough to not inline even
708 // empty functions if their parameters are complicated enough, but by
709 // defining them as an empty inline function we ensure that even dumbest
710 // compilers optimise them away
711 inline void wxLogNop() { }
713 #define wxVLogDebug(fmt, valist) wxLogNop()
714 #define wxVLogTrace(mask, fmt, valist) wxLogNop()
716 #ifdef HAVE_VARIADIC_MACROS
717 // unlike the inline functions below, this completely removes the
718 // wxLogXXX calls from the object file:
719 #define wxLogDebug(fmt, ...) wxLogNop()
720 #define wxLogTrace(mask, fmt, ...) wxLogNop()
721 #else // !HAVE_VARIADIC_MACROS
722 //inline void wxLogDebug(const wxString& fmt, ...) {}
723 WX_DEFINE_VARARG_FUNC_NOP(wxLogDebug
, 1, (const wxString
&))
724 //inline void wxLogTrace(wxTraceMask, const wxString& fmt, ...) {}
725 //inline void wxLogTrace(const wxString&, const wxString& fmt, ...) {}
726 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (wxTraceMask
, const wxString
&))
727 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wxString
&, const wxString
&))
729 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
730 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const char*, const char*))
731 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wchar_t*, const wchar_t*))
733 #endif // HAVE_VARIADIC_MACROS/!HAVE_VARIADIC_MACROS
734 #endif // debug/!debug
736 #if defined(__VISUALC__) && __VISUALC__ < 1300
737 #pragma warning(default:4003)
740 // wxLogFatalError helper: show the (fatal) error to the user in a safe way,
741 // i.e. without using wxMessageBox() for example because it could crash
742 void WXDLLIMPEXP_BASE
743 wxSafeShowMessage(const wxString
& title
, const wxString
& text
);
745 // ----------------------------------------------------------------------------
746 // debug only logging functions: use them with API name and error code
747 // ----------------------------------------------------------------------------
750 // make life easier for people using VC++ IDE: clicking on the message
751 // will take us immediately to the place of the failed API
753 #define wxLogApiError(api, rc) \
754 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
755 __FILE__, __LINE__, api, \
756 (long)rc, wxSysErrorMsg(rc))
758 #define wxLogApiError(api, rc) \
759 wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \
760 wxT("error 0x%08lx (%s)."), \
761 __FILE__, __LINE__, api, \
762 (long)rc, wxSysErrorMsg(rc))
765 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
768 #define wxLogApiError(api, err) wxLogNop()
769 #define wxLogLastError(api) wxLogNop()
770 #endif //debug/!debug
772 // wxCocoa has additiional trace masks
773 #if defined(__WXCOCOA__)
774 #include "wx/cocoa/log.h"
777 #ifdef WX_WATCOM_ONLY_CODE
778 #undef WX_WATCOM_ONLY_CODE