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 // make dtor virtual for all derived classes
250 // this method exists for backwards compatibility only, don't use
251 bool HasPendingMessages() const { return true; }
253 #if WXWIN_COMPATIBILITY_2_6
254 // this function doesn't do anything any more, don't call it
255 wxDEPRECATED( static wxChar
*SetLogBuffer(wxChar
*buf
, size_t size
= 0) );
259 // the logging functions that can be overriden
261 // default DoLog() prepends the time stamp and a prefix corresponding
262 // to the message to szString and then passes it to DoLogString()
263 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
264 #if WXWIN_COMPATIBILITY_2_8
265 // these shouldn't be used by new code
266 wxDEPRECATED_BUT_USED_INTERNALLY(
267 virtual void DoLog(wxLogLevel level
, const char *szString
, time_t t
)
270 wxDEPRECATED_BUT_USED_INTERNALLY(
271 virtual void DoLog(wxLogLevel level
, const wchar_t *wzString
, time_t t
)
273 #endif // WXWIN_COMPATIBILITY_2_8
275 void LogString(const wxString
& szString
, time_t t
)
276 { DoLogString(szString
, t
); }
278 // default DoLogString does nothing but is not pure virtual because if
279 // you override DoLog() you might not need it at all
280 virtual void DoLogString(const wxString
& szString
, time_t t
);
281 #if WXWIN_COMPATIBILITY_2_8
282 // these shouldn't be used by new code
283 virtual void DoLogString(const char *WXUNUSED(szString
),
284 time_t WXUNUSED(t
)) {}
285 virtual void DoLogString(const wchar_t *WXUNUSED(szString
),
286 time_t WXUNUSED(t
)) {}
287 #endif // WXWIN_COMPATIBILITY_2_8
289 // this macro should be used in the derived classes to avoid warnings about
290 // hiding the other DoLog() overloads when overriding DoLog(wxString) --
291 // but don't use it with MSVC which doesn't give this warning but does give
292 // warning when a deprecated function is overridden
293 #if WXWIN_COMPATIBILITY_2_8 && !defined(__VISUALC__)
294 #define wxSUPPRESS_DOLOG_HIDE_WARNING() \
295 virtual void DoLog(wxLogLevel, const char *, time_t) { } \
296 virtual void DoLog(wxLogLevel, const wchar_t *, time_t) { }
298 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING() \
299 virtual void DoLogString(const char *, time_t) { } \
300 virtual void DoLogString(const wchar_t *, time_t) { }
302 #define wxSUPPRESS_DOLOG_HIDE_WARNING()
303 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
306 // log a message indicating the number of times the previous message was
307 // repeated if ms_prevCounter > 0, does nothing otherwise; return the old
308 // value of ms_prevCounter
309 unsigned LogLastRepeatIfNeeded();
312 // implement of LogLastRepeatIfNeeded(): it assumes that the
313 // caller had already locked ms_prevCS
314 unsigned LogLastRepeatIfNeededUnlocked();
319 // if true, don't log the same message multiple times, only log it once
320 // with the number of times it was repeated
321 static bool ms_bRepetCounting
;
323 static wxString ms_prevString
; // previous message that was logged
324 static unsigned ms_prevCounter
; // how many times it was repeated
325 static time_t ms_prevTimeStamp
;// timestamp of the previous message
326 static wxLogLevel ms_prevLevel
; // level of the previous message
328 static wxLog
*ms_pLogger
; // currently active log sink
329 static bool ms_doLog
; // false => all logging disabled
330 static bool ms_bAutoCreate
; // create new log targets on demand?
331 static bool ms_bVerbose
; // false => ignore LogInfo messages
333 static wxLogLevel ms_logLevel
; // limit logging to levels <= ms_logLevel
335 static size_t ms_suspendCount
; // if positive, logs are not flushed
337 // format string for strftime(), if NULL, time stamping log messages is
339 static wxString ms_timestamp
;
341 static wxTraceMask ms_ulTraceMask
; // controls wxLogTrace behaviour
342 static wxArrayString ms_aTraceMasks
; // more powerful filter for wxLogTrace
345 // ----------------------------------------------------------------------------
346 // "trivial" derivations of wxLog
347 // ----------------------------------------------------------------------------
349 // log everything to a buffer
350 class WXDLLIMPEXP_BASE wxLogBuffer
: public wxLog
355 // get the string contents with all messages logged
356 const wxString
& GetBuffer() const { return m_str
; }
358 // show the buffer contents to the user in the best possible way (this uses
359 // wxMessageOutputMessageBox) and clear it
360 virtual void Flush();
363 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
364 virtual void DoLogString(const wxString
& szString
, time_t t
);
366 wxSUPPRESS_DOLOG_HIDE_WARNING()
367 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
372 DECLARE_NO_COPY_CLASS(wxLogBuffer
)
376 // log everything to a "FILE *", stderr by default
377 class WXDLLIMPEXP_BASE wxLogStderr
: public wxLog
380 // redirect log output to a FILE
381 wxLogStderr(FILE *fp
= (FILE *) NULL
);
384 // implement sink function
385 virtual void DoLogString(const wxString
& szString
, time_t t
);
387 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
391 DECLARE_NO_COPY_CLASS(wxLogStderr
)
394 #if wxUSE_STD_IOSTREAM
396 // log everything to an "ostream", cerr by default
397 class WXDLLIMPEXP_BASE wxLogStream
: public wxLog
400 // redirect log output to an ostream
401 wxLogStream(wxSTD ostream
*ostr
= (wxSTD ostream
*) NULL
);
404 // implement sink function
405 virtual void DoLogString(const wxString
& szString
, time_t t
);
407 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
409 // using ptr here to avoid including <iostream.h> from this file
410 wxSTD ostream
*m_ostr
;
413 #endif // wxUSE_STD_IOSTREAM
415 // ----------------------------------------------------------------------------
416 // /dev/null log target: suppress logging until this object goes out of scope
417 // ----------------------------------------------------------------------------
425 // wxFile.Open() normally complains if file can't be opened, we don't
429 if ( !file.Open("bar") )
430 ... process error ourselves ...
432 // ~wxLogNull called, old log sink restored
435 class WXDLLIMPEXP_BASE wxLogNull
438 wxLogNull() : m_flagOld(wxLog::EnableLogging(false)) { }
439 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld
); }
442 bool m_flagOld
; // the previous value of the wxLog::ms_doLog
445 // ----------------------------------------------------------------------------
446 // chaining log target: installs itself as a log target and passes all
447 // messages to the real log target given to it in the ctor but also forwards
448 // them to the previously active one
450 // note that you don't have to call SetActiveTarget() with this class, it
451 // does it itself in its ctor
452 // ----------------------------------------------------------------------------
454 class WXDLLIMPEXP_BASE wxLogChain
: public wxLog
457 wxLogChain(wxLog
*logger
);
458 virtual ~wxLogChain();
460 // change the new log target
461 void SetLog(wxLog
*logger
);
463 // this can be used to temporarily disable (and then reenable) passing
464 // messages to the old logger (by default we do pass them)
465 void PassMessages(bool bDoPass
) { m_bPassMessages
= bDoPass
; }
467 // are we passing the messages to the previous log target?
468 bool IsPassingMessages() const { return m_bPassMessages
; }
470 // return the previous log target (may be NULL)
471 wxLog
*GetOldLog() const { return m_logOld
; }
473 // override base class version to flush the old logger as well
474 virtual void Flush();
476 // call to avoid destroying the old log target
477 void DetachOldLog() { m_logOld
= NULL
; }
480 // pass the chain to the old logger if needed
481 virtual void DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
);
483 wxSUPPRESS_DOLOG_HIDE_WARNING()
486 // the current log target
489 // the previous log target
492 // do we pass the messages to the old logger?
493 bool m_bPassMessages
;
495 DECLARE_NO_COPY_CLASS(wxLogChain
)
498 // a chain log target which uses itself as the new logger
500 #define wxLogPassThrough wxLogInterposer
502 class WXDLLIMPEXP_BASE wxLogInterposer
: public wxLogChain
508 DECLARE_NO_COPY_CLASS(wxLogInterposer
)
511 // a temporary interposer which doesn't destroy the old log target
512 // (calls DetachOldLog)
514 class WXDLLIMPEXP_BASE wxLogInterposerTemp
: public wxLogChain
517 wxLogInterposerTemp();
520 DECLARE_NO_COPY_CLASS(wxLogInterposerTemp
)
524 // include GUI log targets:
525 #include "wx/generic/logg.h"
528 // ============================================================================
530 // ============================================================================
532 // ----------------------------------------------------------------------------
533 // Log functions should be used by application instead of stdio, iostream &c
534 // for log messages for easy redirection
535 // ----------------------------------------------------------------------------
537 // ----------------------------------------------------------------------------
538 // get error code/error message from system in a portable way
539 // ----------------------------------------------------------------------------
541 // return the last system error code
542 WXDLLIMPEXP_BASE
unsigned long wxSysErrorCode();
544 // return the error message for given (or last if 0) error code
545 WXDLLIMPEXP_BASE
const wxChar
* wxSysErrorMsg(unsigned long nErrCode
= 0);
547 // ----------------------------------------------------------------------------
548 // define wxLog<level>
549 // ----------------------------------------------------------------------------
551 #define DECLARE_LOG_FUNCTION(level) \
552 extern void WXDLLIMPEXP_BASE \
553 wxDoLog##level##Wchar(const wxChar *format, ...); \
554 extern void WXDLLIMPEXP_BASE \
555 wxDoLog##level##Utf8(const char *format, ...); \
556 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
557 1, (const wxFormatString&), \
558 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
559 DECLARE_LOG_FUNCTION_WATCOM(level) \
560 extern void WXDLLIMPEXP_BASE wxVLog##level(const wxString& format, \
564 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
565 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
566 // something too big for Borland C++ to handle
567 #define DECLARE_LOG_FUNCTION_WATCOM(level) \
568 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
569 1, (const wxString&), \
570 (wxFormatString(f1))) \
571 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
572 1, (const wxCStrData&), \
573 (wxFormatString(f1))) \
574 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
576 (wxFormatString(f1))) \
577 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
578 1, (const wchar_t*), \
579 (wxFormatString(f1)))
581 #define DECLARE_LOG_FUNCTION_WATCOM(level)
585 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
586 extern void expdecl wxDoLog##level##Wchar(argclass arg, \
587 const wxChar *format, ...); \
588 extern void expdecl wxDoLog##level##Utf8(argclass arg, \
589 const char *format, ...); \
590 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
591 2, (argclass, const wxFormatString&), \
592 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
593 DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
594 extern void expdecl wxVLog##level(argclass arg, \
595 const wxString& format, \
599 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
600 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
601 // something too big for Borland C++ to handle
602 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
603 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
604 2, (argclass, const wxString&), \
605 (f1, wxFormatString(f2))) \
606 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
607 2, (argclass, const wxCStrData&), \
608 (f1, wxFormatString(f2))) \
609 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
610 2, (argclass, const char*), \
611 (f1, wxFormatString(f2))) \
612 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
613 2, (argclass, const wchar_t*), \
614 (f1, wxFormatString(f2)))
616 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl)
623 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
624 #define WX_WATCOM_ONLY_CODE( x ) x
626 #define WX_WATCOM_ONLY_CODE( x )
629 #if defined(__WATCOMC__) || defined(__MINGW32__)
630 // Mingw has similar problem with wxLogSysError:
631 #define WX_WATCOM_OR_MINGW_ONLY_CODE( x ) x
633 #define WX_WATCOM_OR_MINGW_ONLY_CODE( x )
636 // log functions do nothing at all
637 #define DECLARE_LOG_FUNCTION(level) \
638 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxString&)) \
639 WX_WATCOM_ONLY_CODE( \
640 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const char*)) \
641 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wchar_t*)) \
642 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxCStrData&)) \
644 inline void wxVLog##level(const wxString& WXUNUSED(format), \
645 va_list WXUNUSED(argptr)) { } \
647 #define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
648 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxString&)) \
649 WX_WATCOM_OR_MINGW_ONLY_CODE( \
650 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const char*)) \
651 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wchar_t*)) \
652 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxCStrData&)) \
654 inline void wxVLog##level(argclass WXUNUSED(arg), \
655 const wxString& WXUNUSED(format), \
656 va_list WXUNUSED(argptr)) {}
658 // Empty Class to fake wxLogNull
659 class WXDLLIMPEXP_BASE wxLogNull
665 // Dummy macros to replace some functions.
666 #define wxSysErrorCode() (unsigned long)0
667 #define wxSysErrorMsg( X ) (const wxChar*)NULL
669 // Fake symbolic trace masks... for those that are used frequently
670 #define wxTRACE_OleCalls wxEmptyString // OLE interface calls
672 #endif // wxUSE_LOG/!wxUSE_LOG
674 #define DECLARE_LOG_FUNCTION2(level, argclass, arg) \
675 DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, WXDLLIMPEXP_BASE)
677 // VC6 produces a warning if we a macro expanding to nothing to
678 // DECLARE_LOG_FUNCTION2:
679 #if defined(__VISUALC__) && __VISUALC__ < 1300
680 // "not enough actual parameters for macro 'DECLARE_LOG_FUNCTION2_EXP'"
681 #pragma warning(disable:4003)
684 // a generic function for all levels (level is passes as parameter)
685 DECLARE_LOG_FUNCTION2(Generic
, wxLogLevel
, level
);
687 // one function per each level
688 DECLARE_LOG_FUNCTION(FatalError
);
689 DECLARE_LOG_FUNCTION(Error
);
690 DECLARE_LOG_FUNCTION(Warning
);
691 DECLARE_LOG_FUNCTION(Message
);
692 DECLARE_LOG_FUNCTION(Info
);
693 DECLARE_LOG_FUNCTION(Verbose
);
695 // this function sends the log message to the status line of the top level
696 // application frame, if any
697 DECLARE_LOG_FUNCTION(Status
);
700 // this one is the same as previous except that it allows to explicitly
701 class WXDLLIMPEXP_FWD_CORE wxFrame
;
702 // specify the frame to which the output should go
703 DECLARE_LOG_FUNCTION2_EXP(Status
, wxFrame
*, pFrame
, WXDLLIMPEXP_CORE
);
706 // additional one: as wxLogError, but also logs last system call error code
707 // and the corresponding error message if available
708 DECLARE_LOG_FUNCTION(SysError
);
710 // and another one which also takes the error code (for those broken APIs
711 // that don't set the errno (like registry APIs in Win32))
712 DECLARE_LOG_FUNCTION2(SysError
, long, lErrCode
);
714 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
715 DECLARE_LOG_FUNCTION2(SysError
, unsigned long, lErrCode
);
718 // debug functions do nothing in release mode
719 #if wxUSE_LOG && wxUSE_LOG_DEBUG
720 DECLARE_LOG_FUNCTION(Debug
);
722 // there is no more unconditional LogTrace: it is not different from
723 // LogDebug and it creates overload ambiguities
724 //DECLARE_LOG_FUNCTION(Trace);
726 // this version only logs the message if the mask had been added to the
727 // list of masks with AddTraceMask()
728 DECLARE_LOG_FUNCTION2(Trace
, const wxString
&, mask
);
730 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
731 DECLARE_LOG_FUNCTION2(Trace
, const char*, mask
);
732 DECLARE_LOG_FUNCTION2(Trace
, const wchar_t*, mask
);
735 // and this one does nothing if all of level bits are not set in
736 // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of
737 // string identifiers
738 DECLARE_LOG_FUNCTION2(Trace
, wxTraceMask
, mask
);
740 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
741 DECLARE_LOG_FUNCTION2(Trace
, int, mask
);
743 #else //!debug || !wxUSE_LOG
744 // these functions do nothing in release builds, but don't define them as
745 // nothing as it could result in different code structure in debug and
746 // release and this could result in trouble when these macros are used
749 // note that making wxVLogDebug/Trace() themselves (empty inline) functions
750 // is a bad idea as some compilers are stupid enough to not inline even
751 // empty functions if their parameters are complicated enough, but by
752 // defining them as an empty inline function we ensure that even dumbest
753 // compilers optimise them away
754 inline void wxLogNop() { }
756 #define wxVLogDebug(fmt, valist) wxLogNop()
757 #define wxVLogTrace(mask, fmt, valist) wxLogNop()
759 #ifdef HAVE_VARIADIC_MACROS
760 // unlike the inline functions below, this completely removes the
761 // wxLogXXX calls from the object file:
762 #define wxLogDebug(fmt, ...) wxLogNop()
763 #define wxLogTrace(mask, fmt, ...) wxLogNop()
764 #else // !HAVE_VARIADIC_MACROS
765 //inline void wxLogDebug(const wxString& fmt, ...) {}
766 WX_DEFINE_VARARG_FUNC_NOP(wxLogDebug
, 1, (const wxString
&))
767 //inline void wxLogTrace(wxTraceMask, const wxString& fmt, ...) {}
768 //inline void wxLogTrace(const wxString&, const wxString& fmt, ...) {}
769 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (wxTraceMask
, const wxString
&))
770 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wxString
&, const wxString
&))
772 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
773 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const char*, const char*))
774 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace
, 2, (const wchar_t*, const wchar_t*))
776 #endif // HAVE_VARIADIC_MACROS/!HAVE_VARIADIC_MACROS
777 #endif // debug/!debug
779 #if defined(__VISUALC__) && __VISUALC__ < 1300
780 #pragma warning(default:4003)
783 // wxLogFatalError helper: show the (fatal) error to the user in a safe way,
784 // i.e. without using wxMessageBox() for example because it could crash
785 void WXDLLIMPEXP_BASE
786 wxSafeShowMessage(const wxString
& title
, const wxString
& text
);
788 // ----------------------------------------------------------------------------
789 // debug only logging functions: use them with API name and error code
790 // ----------------------------------------------------------------------------
793 // make life easier for people using VC++ IDE: clicking on the message
794 // will take us immediately to the place of the failed API
796 #define wxLogApiError(api, rc) \
797 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
798 __FILE__, __LINE__, api, \
799 (long)rc, wxSysErrorMsg(rc))
801 #define wxLogApiError(api, rc) \
802 wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \
803 wxT("error 0x%08lx (%s)."), \
804 __FILE__, __LINE__, api, \
805 (long)rc, wxSysErrorMsg(rc))
808 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
811 #define wxLogApiError(api, err) wxLogNop()
812 #define wxLogLastError(api) wxLogNop()
813 #endif //debug/!debug
815 // wxCocoa has additiional trace masks
816 #if defined(__WXCOCOA__)
817 #include "wx/cocoa/log.h"
820 #ifdef WX_WATCOM_ONLY_CODE
821 #undef WX_WATCOM_ONLY_CODE