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"
56 #include <time.h> // for time_t
58 #endif // ! __WXPALMOS5__
60 #include "wx/dynarray.h"
62 #ifndef wxUSE_LOG_DEBUG
64 # define wxUSE_LOG_DEBUG 1
65 # else // !__WXDEBUG__
66 # define wxUSE_LOG_DEBUG 0
70 // ----------------------------------------------------------------------------
71 // forward declarations
72 // ----------------------------------------------------------------------------
75 class WXDLLIMPEXP_FWD_CORE wxTextCtrl
;
76 class WXDLLIMPEXP_FWD_CORE wxLogFrame
;
77 class WXDLLIMPEXP_FWD_CORE wxFrame
;
78 class WXDLLIMPEXP_FWD_CORE wxWindow
;
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 // different standard log levels (you may also define your own)
88 wxLOG_FatalError
, // program can't continue, abort immediately
89 wxLOG_Error
, // a serious error, user must be informed about it
90 wxLOG_Warning
, // user is normally informed about it but may be ignored
91 wxLOG_Message
, // normal message (i.e. normal output of a non GUI app)
92 wxLOG_Status
, // informational: might go to the status line of GUI app
93 wxLOG_Info
, // informational message (a.k.a. 'Verbose')
94 wxLOG_Debug
, // never shown to the user, disabled in release mode
95 wxLOG_Trace
, // trace messages are also only enabled in debug mode
96 wxLOG_Progress
, // used for progress indicator (not yet)
97 wxLOG_User
= 100, // user defined levels start here
101 // symbolic trace masks - wxLogTrace("foo", "some trace message...") will be
102 // discarded unless the string "foo" has been added to the list of allowed
103 // ones with AddTraceMask()
105 #define wxTRACE_MemAlloc wxT("memalloc") // trace memory allocation (new/delete)
106 #define wxTRACE_Messages wxT("messages") // trace window messages/X callbacks
107 #define wxTRACE_ResAlloc wxT("resalloc") // trace GDI resource allocation
108 #define wxTRACE_RefCount wxT("refcount") // trace various ref counting operations
111 #define wxTRACE_OleCalls wxT("ole") // OLE interface calls
114 #include "wx/iosfwrap.h"
116 // ----------------------------------------------------------------------------
117 // derive from this class to redirect (or suppress, or ...) log messages
118 // normally, only a single instance of this class exists but it's not enforced
119 // ----------------------------------------------------------------------------
121 class WXDLLIMPEXP_BASE wxLog
127 // these functions allow to completely disable all log messages
129 // is logging disabled now?
130 static bool IsEnabled() { return ms_doLog
; }
132 // change the flag state, return the previous one
133 static bool EnableLogging(bool doIt
= true)
134 { bool doLogOld
= ms_doLog
; ms_doLog
= doIt
; return doLogOld
; }
136 // static sink function - see DoLog() for function to overload in the
138 static void OnLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
142 // flush shows all messages if they're not logged immediately (FILE
143 // and iostream logs don't need it, but wxGuiLog does to avoid showing
144 // 17 modal dialogs one after another)
145 virtual void Flush();
147 // flush the active target if any
148 static void FlushActive()
150 if ( !ms_suspendCount
)
152 wxLog
*log
= GetActiveTarget();
158 // only one sink is active at each moment
159 // get current log target, will call wxApp::CreateLogTarget() to
160 // create one if none exists
161 static wxLog
*GetActiveTarget();
163 // change log target, pLogger may be NULL
164 static wxLog
*SetActiveTarget(wxLog
*pLogger
);
166 // suspend the message flushing of the main target until the next call
167 // to Resume() - this is mainly for internal use (to prevent wxYield()
168 // from flashing the messages)
169 static void Suspend() { ms_suspendCount
++; }
171 // must be called for each Suspend()!
172 static void Resume() { ms_suspendCount
--; }
174 // functions controlling the default wxLog behaviour
175 // verbose mode is activated by standard command-line '-verbose'
177 static void SetVerbose(bool bVerbose
= true) { ms_bVerbose
= bVerbose
; }
179 // Set log level. Log messages with level > logLevel will not be logged.
180 static void SetLogLevel(wxLogLevel logLevel
) { ms_logLevel
= logLevel
; }
182 // should GetActiveTarget() try to create a new log object if the
184 static void DontCreateOnDemand();
186 // Make GetActiveTarget() create a new log object again.
187 static void DoCreateOnDemand();
189 // log the count of repeating messages instead of logging the messages
191 static void SetRepetitionCounting(bool bRepetCounting
= true)
192 { ms_bRepetCounting
= bRepetCounting
; }
194 // gets duplicate counting status
195 static bool GetRepetitionCounting() { return ms_bRepetCounting
; }
197 // trace mask (see wxTraceXXX constants for details)
198 static void SetTraceMask(wxTraceMask ulMask
) { ms_ulTraceMask
= ulMask
; }
200 // add string trace mask
201 static void AddTraceMask(const wxString
& str
);
203 // add string trace mask
204 static void RemoveTraceMask(const wxString
& str
);
206 // remove all string trace masks
207 static void ClearTraceMasks();
209 // get string trace masks: note that this is MT-unsafe if other threads can
210 // call AddTraceMask() concurrently
211 static const wxArrayString
& GetTraceMasks() { return ms_aTraceMasks
; }
213 // sets the time stamp string format: this is used as strftime() format
214 // string for the log targets which add time stamps to the messages; set
215 // it to empty string to disable time stamping completely.
216 static void SetTimestamp(const wxString
& ts
) { ms_timestamp
= ts
; }
218 // disable time stamping of log messages
219 static void DisableTimestamp() { SetTimestamp(wxEmptyString
); }
224 // gets the verbose status
225 static bool GetVerbose() { return ms_bVerbose
; }
228 static wxTraceMask
GetTraceMask() { return ms_ulTraceMask
; }
230 // is this trace mask in the list?
231 static bool IsAllowedTraceMask(const wxString
& mask
);
233 // return the current loglevel limit
234 static wxLogLevel
GetLogLevel() { return ms_logLevel
; }
236 // get the current timestamp format string (may be NULL)
237 static const wxString
& GetTimestamp() { return ms_timestamp
; }
242 // put the time stamp into the string if ms_timestamp != NULL (don't
243 // change it otherwise)
244 static void TimeStamp(wxString
*str
);
246 // this method should only be called from derived classes DoLog()
247 // implementations and shouldn't be called directly, use logging functions
249 void Log(wxLogLevel level
, const wxString
& msg
, time_t t
)
251 DoLog(level
, msg
, t
);
254 // make dtor virtual for all derived classes
258 // this method exists for backwards compatibility only, don't use
259 bool HasPendingMessages() const { return true; }
261 #if WXWIN_COMPATIBILITY_2_6
262 // this function doesn't do anything any more, don't call it
263 wxDEPRECATED( static wxChar
*SetLogBuffer(wxChar
*buf
, size_t size
= 0) );
267 // the logging functions that can be overridden
269 // default DoLog() prepends the time stamp and a prefix corresponding
270 // to the message to szString and then passes it to DoLogString()
271 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
272 #if WXWIN_COMPATIBILITY_2_8
273 // these shouldn't be used by new code
274 wxDEPRECATED_BUT_USED_INTERNALLY(
275 virtual void DoLog(wxLogLevel level
, const char *szString
, time_t t
)
278 wxDEPRECATED_BUT_USED_INTERNALLY(
279 virtual void DoLog(wxLogLevel level
, const wchar_t *wzString
, time_t t
)
281 #endif // WXWIN_COMPATIBILITY_2_8
283 void LogString(const wxString
& szString
, time_t t
)
284 { DoLogString(szString
, t
); }
286 // default DoLogString does nothing but is not pure virtual because if
287 // you override DoLog() you might not need it at all
288 virtual void DoLogString(const wxString
& szString
, time_t t
);
289 #if WXWIN_COMPATIBILITY_2_8
290 // these shouldn't be used by new code
291 virtual void DoLogString(const char *WXUNUSED(szString
),
292 time_t WXUNUSED(t
)) {}
293 virtual void DoLogString(const wchar_t *WXUNUSED(szString
),
294 time_t WXUNUSED(t
)) {}
295 #endif // WXWIN_COMPATIBILITY_2_8
297 // this macro should be used in the derived classes to avoid warnings about
298 // hiding the other DoLog() overloads when overriding DoLog(wxString) --
299 // but don't use it with MSVC which doesn't give this warning but does give
300 // warning when a deprecated function is overridden
301 #if WXWIN_COMPATIBILITY_2_8 && !defined(__VISUALC__)
302 #define wxSUPPRESS_DOLOG_HIDE_WARNING() \
303 virtual void DoLog(wxLogLevel, const char *, time_t) { } \
304 virtual void DoLog(wxLogLevel, const wchar_t *, time_t) { }
306 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING() \
307 virtual void DoLogString(const char *, time_t) { } \
308 virtual void DoLogString(const wchar_t *, time_t) { }
310 #define wxSUPPRESS_DOLOG_HIDE_WARNING()
311 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
314 // log a message indicating the number of times the previous message was
315 // repeated if ms_prevCounter > 0, does nothing otherwise; return the old
316 // value of ms_prevCounter
317 unsigned LogLastRepeatIfNeeded();
320 // implement of LogLastRepeatIfNeeded(): it assumes that the
321 // caller had already locked ms_prevCS
322 unsigned LogLastRepeatIfNeededUnlocked();
327 // if true, don't log the same message multiple times, only log it once
328 // with the number of times it was repeated
329 static bool ms_bRepetCounting
;
331 static wxString ms_prevString
; // previous message that was logged
332 static unsigned ms_prevCounter
; // how many times it was repeated
333 static time_t ms_prevTimeStamp
;// timestamp of the previous message
334 static wxLogLevel ms_prevLevel
; // level of the previous message
336 static wxLog
*ms_pLogger
; // currently active log sink
337 static bool ms_doLog
; // false => all logging disabled
338 static bool ms_bAutoCreate
; // create new log targets on demand?
339 static bool ms_bVerbose
; // false => ignore LogInfo messages
341 static wxLogLevel ms_logLevel
; // limit logging to levels <= ms_logLevel
343 static size_t ms_suspendCount
; // if positive, logs are not flushed
345 // format string for strftime(), if NULL, time stamping log messages is
347 static wxString ms_timestamp
;
349 static wxTraceMask ms_ulTraceMask
; // controls wxLogTrace behaviour
350 static wxArrayString ms_aTraceMasks
; // more powerful filter for wxLogTrace
353 // ----------------------------------------------------------------------------
354 // "trivial" derivations of wxLog
355 // ----------------------------------------------------------------------------
357 // log everything to a buffer
358 class WXDLLIMPEXP_BASE wxLogBuffer
: public wxLog
363 // get the string contents with all messages logged
364 const wxString
& GetBuffer() const { return m_str
; }
366 // show the buffer contents to the user in the best possible way (this uses
367 // wxMessageOutputMessageBox) and clear it
368 virtual void Flush();
371 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
372 virtual void DoLogString(const wxString
& szString
, time_t t
);
374 wxSUPPRESS_DOLOG_HIDE_WARNING()
375 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
380 wxDECLARE_NO_COPY_CLASS(wxLogBuffer
);
384 // log everything to a "FILE *", stderr by default
385 class WXDLLIMPEXP_BASE wxLogStderr
: public wxLog
388 // redirect log output to a FILE
389 wxLogStderr(FILE *fp
= NULL
);
392 // implement sink function
393 virtual void DoLogString(const wxString
& szString
, time_t t
);
395 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
399 wxDECLARE_NO_COPY_CLASS(wxLogStderr
);
402 #if wxUSE_STD_IOSTREAM
404 // log everything to an "ostream", cerr by default
405 class WXDLLIMPEXP_BASE wxLogStream
: public wxLog
408 // redirect log output to an ostream
409 wxLogStream(wxSTD ostream
*ostr
= (wxSTD ostream
*) NULL
);
412 // implement sink function
413 virtual void DoLogString(const wxString
& szString
, time_t t
);
415 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
417 // using ptr here to avoid including <iostream.h> from this file
418 wxSTD ostream
*m_ostr
;
421 #endif // wxUSE_STD_IOSTREAM
423 // ----------------------------------------------------------------------------
424 // /dev/null log target: suppress logging until this object goes out of scope
425 // ----------------------------------------------------------------------------
433 // wxFile.Open() normally complains if file can't be opened, we don't
437 if ( !file.Open("bar") )
438 ... process error ourselves ...
440 // ~wxLogNull called, old log sink restored
443 class WXDLLIMPEXP_BASE wxLogNull
446 wxLogNull() : m_flagOld(wxLog::EnableLogging(false)) { }
447 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld
); }
450 bool m_flagOld
; // the previous value of the wxLog::ms_doLog
453 // ----------------------------------------------------------------------------
454 // chaining log target: installs itself as a log target and passes all
455 // messages to the real log target given to it in the ctor but also forwards
456 // them to the previously active one
458 // note that you don't have to call SetActiveTarget() with this class, it
459 // does it itself in its ctor
460 // ----------------------------------------------------------------------------
462 class WXDLLIMPEXP_BASE wxLogChain
: public wxLog
465 wxLogChain(wxLog
*logger
);
466 virtual ~wxLogChain();
468 // change the new log target
469 void SetLog(wxLog
*logger
);
471 // this can be used to temporarily disable (and then reenable) passing
472 // messages to the old logger (by default we do pass them)
473 void PassMessages(bool bDoPass
) { m_bPassMessages
= bDoPass
; }
475 // are we passing the messages to the previous log target?
476 bool IsPassingMessages() const { return m_bPassMessages
; }
478 // return the previous log target (may be NULL)
479 wxLog
*GetOldLog() const { return m_logOld
; }
481 // override base class version to flush the old logger as well
482 virtual void Flush();
484 // call to avoid destroying the old log target
485 void DetachOldLog() { m_logOld
= NULL
; }
488 // pass the chain to the old logger if needed
489 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
491 wxSUPPRESS_DOLOG_HIDE_WARNING()
494 // the current log target
497 // the previous log target
500 // do we pass the messages to the old logger?
501 bool m_bPassMessages
;
503 wxDECLARE_NO_COPY_CLASS(wxLogChain
);
506 // a chain log target which uses itself as the new logger
508 #define wxLogPassThrough wxLogInterposer
510 class WXDLLIMPEXP_BASE wxLogInterposer
: public wxLogChain
516 wxDECLARE_NO_COPY_CLASS(wxLogInterposer
);
519 // a temporary interposer which doesn't destroy the old log target
520 // (calls DetachOldLog)
522 class WXDLLIMPEXP_BASE wxLogInterposerTemp
: public wxLogChain
525 wxLogInterposerTemp();
528 wxDECLARE_NO_COPY_CLASS(wxLogInterposerTemp
);
532 // include GUI log targets:
533 #include "wx/generic/logg.h"
536 // ============================================================================
538 // ============================================================================
540 // ----------------------------------------------------------------------------
541 // Log functions should be used by application instead of stdio, iostream &c
542 // for log messages for easy redirection
543 // ----------------------------------------------------------------------------
545 // ----------------------------------------------------------------------------
546 // get error code/error message from system in a portable way
547 // ----------------------------------------------------------------------------
549 // return the last system error code
550 WXDLLIMPEXP_BASE
unsigned long wxSysErrorCode();
552 // return the error message for given (or last if 0) error code
553 WXDLLIMPEXP_BASE
const wxChar
* wxSysErrorMsg(unsigned long nErrCode
= 0);
555 // ----------------------------------------------------------------------------
556 // define wxLog<level>
557 // ----------------------------------------------------------------------------
559 #define DECLARE_LOG_FUNCTION(level) \
560 extern void WXDLLIMPEXP_BASE \
561 wxDoLog##level##Wchar(const wxChar *format, ...); \
562 extern void WXDLLIMPEXP_BASE \
563 wxDoLog##level##Utf8(const char *format, ...); \
564 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
565 1, (const wxFormatString&), \
566 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
567 DECLARE_LOG_FUNCTION_WATCOM(level) \
568 extern void WXDLLIMPEXP_BASE wxVLog##level(const wxString& format, \
572 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
573 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
574 // something too big for Borland C++ to handle
575 #define DECLARE_LOG_FUNCTION_WATCOM(level) \
576 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
577 1, (const wxString&), \
578 (wxFormatString(f1))) \
579 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
580 1, (const wxCStrData&), \
581 (wxFormatString(f1))) \
582 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
584 (wxFormatString(f1))) \
585 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
586 1, (const wchar_t*), \
587 (wxFormatString(f1)))
589 #define DECLARE_LOG_FUNCTION_WATCOM(level)
593 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
594 extern void expdecl wxDoLog##level##Wchar(argclass arg, \
595 const wxChar *format, ...); \
596 extern void expdecl wxDoLog##level##Utf8(argclass arg, \
597 const char *format, ...); \
598 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
599 2, (argclass, const wxFormatString&), \
600 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
601 DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
602 extern void expdecl wxVLog##level(argclass arg, \
603 const wxString& format, \
607 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
608 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
609 // something too big for Borland C++ to handle
610 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
611 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
612 2, (argclass, const wxString&), \
613 (f1, wxFormatString(f2))) \
614 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
615 2, (argclass, const wxCStrData&), \
616 (f1, wxFormatString(f2))) \
617 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
618 2, (argclass, const char*), \
619 (f1, wxFormatString(f2))) \
620 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
621 2, (argclass, const wchar_t*), \
622 (f1, wxFormatString(f2)))
624 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl)
631 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
632 #define WX_WATCOM_ONLY_CODE( x ) x
634 #define WX_WATCOM_ONLY_CODE( x )
637 #if defined(__WATCOMC__) || defined(__MINGW32__)
638 // Mingw has similar problem with wxLogSysError:
639 #define WX_WATCOM_OR_MINGW_ONLY_CODE( x ) x
641 #define WX_WATCOM_OR_MINGW_ONLY_CODE( x )
644 // log functions do nothing at all
645 #define DECLARE_LOG_FUNCTION(level) \
646 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxString&)) \
647 WX_WATCOM_ONLY_CODE( \
648 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const char*)) \
649 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wchar_t*)) \
650 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxCStrData&)) \
652 inline void wxVLog##level(const wxString& WXUNUSED(format), \
653 va_list WXUNUSED(argptr)) { } \
655 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
656 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxString&)) \
657 WX_WATCOM_OR_MINGW_ONLY_CODE( \
658 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const char*)) \
659 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wchar_t*)) \
660 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxCStrData&)) \
662 inline void wxVLog##level(argclass WXUNUSED(arg), \
663 const wxString& WXUNUSED(format), \
664 va_list WXUNUSED(argptr)) {}
666 // Empty Class to fake wxLogNull
667 class WXDLLIMPEXP_BASE wxLogNull
673 // Dummy macros to replace some functions.
674 #define wxSysErrorCode() (unsigned long)0
675 #define wxSysErrorMsg( X ) (const wxChar*)NULL
677 // Fake symbolic trace masks... for those that are used frequently
678 #define wxTRACE_OleCalls wxEmptyString // OLE interface calls
680 #endif // wxUSE_LOG/!wxUSE_LOG
682 #define DECLARE_LOG_FUNCTION2(level, argclass, arg) \
683 DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, WXDLLIMPEXP_BASE)
685 // VC6 produces a warning if we a macro expanding to nothing to
686 // DECLARE_LOG_FUNCTION2:
687 #if defined(__VISUALC__) && __VISUALC__ < 1300
688 // "not enough actual parameters for macro 'DECLARE_LOG_FUNCTION2_EXP'"
689 #pragma warning(disable:4003)
692 // a generic function for all levels (level is passes as parameter)
693 DECLARE_LOG_FUNCTION2(Generic
, wxLogLevel
, level
);
695 // one function per each level
696 DECLARE_LOG_FUNCTION(FatalError
);
697 DECLARE_LOG_FUNCTION(Error
);
698 DECLARE_LOG_FUNCTION(Warning
);
699 DECLARE_LOG_FUNCTION(Message
);
700 DECLARE_LOG_FUNCTION(Info
);
701 DECLARE_LOG_FUNCTION(Verbose
);
703 // this function sends the log message to the status line of the top level
704 // application frame, if any
705 DECLARE_LOG_FUNCTION(Status
);
708 // this one is the same as previous except that it allows to explicitly
709 class WXDLLIMPEXP_FWD_CORE wxFrame
;
710 // specify the frame to which the output should go
711 DECLARE_LOG_FUNCTION2_EXP(Status
, wxFrame
*, pFrame
, WXDLLIMPEXP_CORE
);
714 // additional one: as wxLogError, but also logs last system call error code
715 // and the corresponding error message if available
716 DECLARE_LOG_FUNCTION(SysError
);
718 // and another one which also takes the error code (for those broken APIs
719 // that don't set the errno (like registry APIs in Win32))
720 DECLARE_LOG_FUNCTION2(SysError
, long, lErrCode
);
722 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
723 DECLARE_LOG_FUNCTION2(SysError
, unsigned long, lErrCode
);
726 // debug functions do nothing in release mode
727 #if wxUSE_LOG && wxUSE_LOG_DEBUG
728 DECLARE_LOG_FUNCTION(Debug
);
730 // there is no more unconditional LogTrace: it is not different from
731 // LogDebug and it creates overload ambiguities
732 //DECLARE_LOG_FUNCTION(Trace);
734 // this version only logs the message if the mask had been added to the
735 // list of masks with AddTraceMask()
736 DECLARE_LOG_FUNCTION2(Trace
, const wxString
&, mask
);
738 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
739 DECLARE_LOG_FUNCTION2(Trace
, const char*, mask
);
740 DECLARE_LOG_FUNCTION2(Trace
, const wchar_t*, mask
);
743 // and this one does nothing if all of level bits are not set in
744 // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of
745 // string identifiers
746 DECLARE_LOG_FUNCTION2(Trace
, wxTraceMask
, mask
);
748 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
749 DECLARE_LOG_FUNCTION2(Trace
, int, mask
);
751 #else //!debug || !wxUSE_LOG
752 // these functions do nothing in release builds, but don't define them as
753 // nothing as it could result in different code structure in debug and
754 // release and this could result in trouble when these macros are used
757 // note that making wxVLogDebug/Trace() themselves (empty inline) functions
758 // is a bad idea as some compilers are stupid enough to not inline even
759 // empty functions if their parameters are complicated enough, but by
760 // defining them as an empty inline function we ensure that even dumbest
761 // compilers optimise them away
763 // but Borland gives "W8019: Code has no effect" for wxLogNop() so we need
764 // to define it differently for it to avoid these warnings (same problem as
765 // with wxUnusedVar())
766 #define wxLogNop() { }
768 inline void wxLogNop() { }
771 #define wxVLogDebug(fmt, valist) wxLogNop()
772 #define wxVLogTrace(mask, fmt, valist) wxLogNop()
774 #ifdef HAVE_VARIADIC_MACROS
775 // unlike the inline functions below, this completely removes the
776 // wxLogXXX calls from the object file:
777 #define wxLogDebug(fmt, ...) wxLogNop()
778 #define wxLogTrace(mask, fmt, ...) wxLogNop()
779 #else // !HAVE_VARIADIC_MACROS
780 //inline void wxLogDebug(const wxString& fmt, ...) {}
781 WX_DEFINE_VARARG_FUNC_NOP(wxLogDebug
, 1, (const wxString
&))
782 //inline void wxLogTrace(wxTraceMask, const wxString& fmt, ...) {}
783 //inline void wxLogTrace(const wxString&, const wxString& fmt, ...) {}
784 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (wxTraceMask
, const wxString
&))
785 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wxString
&, const wxString
&))
787 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
788 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const char*, const char*))
789 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wchar_t*, const wchar_t*))
791 #endif // HAVE_VARIADIC_MACROS/!HAVE_VARIADIC_MACROS
792 #endif // debug/!debug
794 #if defined(__VISUALC__) && __VISUALC__ < 1300
795 #pragma warning(default:4003)
798 // wxLogFatalError helper: show the (fatal) error to the user in a safe way,
799 // i.e. without using wxMessageBox() for example because it could crash
800 void WXDLLIMPEXP_BASE
801 wxSafeShowMessage(const wxString
& title
, const wxString
& text
);
803 // ----------------------------------------------------------------------------
804 // debug only logging functions: use them with API name and error code
805 // ----------------------------------------------------------------------------
808 // make life easier for people using VC++ IDE: clicking on the message
809 // will take us immediately to the place of the failed API
811 #define wxLogApiError(api, rc) \
812 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
813 __FILE__, __LINE__, api, \
814 (long)rc, wxSysErrorMsg(rc))
816 #define wxLogApiError(api, rc) \
817 wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \
818 wxT("error 0x%08lx (%s)."), \
819 __FILE__, __LINE__, api, \
820 (long)rc, wxSysErrorMsg(rc))
823 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
826 #define wxLogApiError(api, err) wxLogNop()
827 #define wxLogLastError(api) wxLogNop()
828 #endif //debug/!debug
830 // wxCocoa has additiional trace masks
831 #if defined(__WXCOCOA__)
832 #include "wx/cocoa/log.h"
835 #ifdef WX_WATCOM_ONLY_CODE
836 #undef WX_WATCOM_ONLY_CODE