]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/log.h
rename fobr95.{cpp,h} files to foobar.{cpp,h}
[wxWidgets.git] / include / wx / log.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/log.h
3// Purpose: Assorted wxLogXXX functions, and wxLog (sink for logs)
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_LOG_H_
13#define _WX_LOG_H_
14
15#include "wx/defs.h"
16
17#if wxUSE_THREADS
18 class WXDLLIMPEXP_FWD_BASE wxCriticalSection;
19#endif
20
21// ----------------------------------------------------------------------------
22// common constants for use in wxUSE_LOG/!wxUSE_LOG
23// ----------------------------------------------------------------------------
24
25// the trace masks have been superceded by symbolic trace constants, they're
26// for compatibility only andwill be removed soon - do NOT use them
27
28// meaning of different bits of the trace mask (which allows selectively
29// enable/disable some trace messages)
30#define wxTraceMemAlloc 0x0001 // trace memory allocation (new/delete)
31#define wxTraceMessages 0x0002 // trace window messages/X callbacks
32#define wxTraceResAlloc 0x0004 // trace GDI resource allocation
33#define wxTraceRefCount 0x0008 // trace various ref counting operations
34
35#ifdef __WXMSW__
36 #define wxTraceOleCalls 0x0100 // OLE interface calls
37#endif
38
39// ----------------------------------------------------------------------------
40// types
41// ----------------------------------------------------------------------------
42
43// NB: these types are needed even if wxUSE_LOG == 0
44typedef unsigned long wxTraceMask;
45typedef unsigned long wxLogLevel;
46
47// ----------------------------------------------------------------------------
48// headers
49// ----------------------------------------------------------------------------
50
51#include "wx/string.h"
52#include "wx/strvararg.h"
53
54#if wxUSE_LOG
55
56#include "wx/arrstr.h"
57
58#ifndef __WXPALMOS5__
59#ifndef __WXWINCE__
60 #include <time.h> // for time_t
61#endif
62#endif // ! __WXPALMOS5__
63
64#include "wx/dynarray.h"
65
66#ifndef wxUSE_LOG_DEBUG
67# ifdef __WXDEBUG__
68# define wxUSE_LOG_DEBUG 1
69# else // !__WXDEBUG__
70# define wxUSE_LOG_DEBUG 0
71# endif
72#endif
73
74// ----------------------------------------------------------------------------
75// forward declarations
76// ----------------------------------------------------------------------------
77
78#if wxUSE_GUI
79 class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
80 class WXDLLIMPEXP_FWD_CORE wxLogFrame;
81 class WXDLLIMPEXP_FWD_CORE wxFrame;
82 class WXDLLIMPEXP_FWD_CORE wxWindow;
83#endif // wxUSE_GUI
84
85// ----------------------------------------------------------------------------
86// constants
87// ----------------------------------------------------------------------------
88
89// different standard log levels (you may also define your own)
90enum wxLogLevelValues
91{
92 wxLOG_FatalError, // program can't continue, abort immediately
93 wxLOG_Error, // a serious error, user must be informed about it
94 wxLOG_Warning, // user is normally informed about it but may be ignored
95 wxLOG_Message, // normal message (i.e. normal output of a non GUI app)
96 wxLOG_Status, // informational: might go to the status line of GUI app
97 wxLOG_Info, // informational message (a.k.a. 'Verbose')
98 wxLOG_Debug, // never shown to the user, disabled in release mode
99 wxLOG_Trace, // trace messages are also only enabled in debug mode
100 wxLOG_Progress, // used for progress indicator (not yet)
101 wxLOG_User = 100, // user defined levels start here
102 wxLOG_Max = 10000
103};
104
105// symbolic trace masks - wxLogTrace("foo", "some trace message...") will be
106// discarded unless the string "foo" has been added to the list of allowed
107// ones with AddTraceMask()
108
109#define wxTRACE_MemAlloc wxT("memalloc") // trace memory allocation (new/delete)
110#define wxTRACE_Messages wxT("messages") // trace window messages/X callbacks
111#define wxTRACE_ResAlloc wxT("resalloc") // trace GDI resource allocation
112#define wxTRACE_RefCount wxT("refcount") // trace various ref counting operations
113
114#ifdef __WXMSW__
115 #define wxTRACE_OleCalls wxT("ole") // OLE interface calls
116#endif
117
118#include "wx/iosfwrap.h"
119
120// ----------------------------------------------------------------------------
121// derive from this class to redirect (or suppress, or ...) log messages
122// normally, only a single instance of this class exists but it's not enforced
123// ----------------------------------------------------------------------------
124
125class WXDLLIMPEXP_BASE wxLog
126{
127public:
128 // ctor
129 wxLog(){}
130
131 // these functions allow to completely disable all log messages
132
133 // is logging disabled now?
134 static bool IsEnabled() { return ms_doLog; }
135
136 // change the flag state, return the previous one
137 static bool EnableLogging(bool doIt = true)
138 { bool doLogOld = ms_doLog; ms_doLog = doIt; return doLogOld; }
139
140 // static sink function - see DoLog() for function to overload in the
141 // derived classes
142 static void OnLog(wxLogLevel level, const wxString& szString, time_t t);
143
144 // message buffering
145
146 // flush shows all messages if they're not logged immediately (FILE
147 // and iostream logs don't need it, but wxGuiLog does to avoid showing
148 // 17 modal dialogs one after another)
149 virtual void Flush();
150
151 // flush the active target if any
152 static void FlushActive()
153 {
154 if ( !ms_suspendCount )
155 {
156 wxLog *log = GetActiveTarget();
157 if ( log )
158 log->Flush();
159 }
160 }
161
162 // only one sink is active at each moment
163 // get current log target, will call wxApp::CreateLogTarget() to
164 // create one if none exists
165 static wxLog *GetActiveTarget();
166
167 // change log target, pLogger may be NULL
168 static wxLog *SetActiveTarget(wxLog *pLogger);
169
170 // suspend the message flushing of the main target until the next call
171 // to Resume() - this is mainly for internal use (to prevent wxYield()
172 // from flashing the messages)
173 static void Suspend() { ms_suspendCount++; }
174
175 // must be called for each Suspend()!
176 static void Resume() { ms_suspendCount--; }
177
178 // functions controlling the default wxLog behaviour
179 // verbose mode is activated by standard command-line '-verbose'
180 // option
181 static void SetVerbose(bool bVerbose = true) { ms_bVerbose = bVerbose; }
182
183 // Set log level. Log messages with level > logLevel will not be logged.
184 static void SetLogLevel(wxLogLevel logLevel) { ms_logLevel = logLevel; }
185
186 // should GetActiveTarget() try to create a new log object if the
187 // current is NULL?
188 static void DontCreateOnDemand();
189
190 // Make GetActiveTarget() create a new log object again.
191 static void DoCreateOnDemand();
192
193 // log the count of repeating messages instead of logging the messages
194 // multiple times
195 static void SetRepetitionCounting(bool bRepetCounting = true)
196 { ms_bRepetCounting = bRepetCounting; }
197
198 // gets duplicate counting status
199 static bool GetRepetitionCounting() { return ms_bRepetCounting; }
200
201 // trace mask (see wxTraceXXX constants for details)
202 static void SetTraceMask(wxTraceMask ulMask) { ms_ulTraceMask = ulMask; }
203
204 // add string trace mask
205 static void AddTraceMask(const wxString& str);
206
207 // add string trace mask
208 static void RemoveTraceMask(const wxString& str);
209
210 // remove all string trace masks
211 static void ClearTraceMasks();
212
213 // get string trace masks: note that this is MT-unsafe if other threads can
214 // call AddTraceMask() concurrently
215 static const wxArrayString& GetTraceMasks() { return ms_aTraceMasks; }
216
217 // sets the time stamp string format: this is used as strftime() format
218 // string for the log targets which add time stamps to the messages; set
219 // it to empty string to disable time stamping completely.
220 static void SetTimestamp(const wxString& ts) { ms_timestamp = ts; }
221
222 // disable time stamping of log messages
223 static void DisableTimestamp() { SetTimestamp(wxEmptyString); }
224
225
226 // accessors
227
228 // gets the verbose status
229 static bool GetVerbose() { return ms_bVerbose; }
230
231 // get trace mask
232 static wxTraceMask GetTraceMask() { return ms_ulTraceMask; }
233
234 // is this trace mask in the list?
235 static bool IsAllowedTraceMask(const wxString& mask);
236
237 // return the current loglevel limit
238 static wxLogLevel GetLogLevel() { return ms_logLevel; }
239
240 // get the current timestamp format string (may be NULL)
241 static const wxString& GetTimestamp() { return ms_timestamp; }
242
243
244 // helpers
245
246 // put the time stamp into the string if ms_timestamp != NULL (don't
247 // change it otherwise)
248 static void TimeStamp(wxString *str);
249
250 // make dtor virtual for all derived classes
251 virtual ~wxLog();
252
253
254 // this method exists for backwards compatibility only, don't use
255 bool HasPendingMessages() const { return true; }
256
257#if WXWIN_COMPATIBILITY_2_6
258 // this function doesn't do anything any more, don't call it
259 wxDEPRECATED( static wxChar *SetLogBuffer(wxChar *buf, size_t size = 0) );
260#endif
261
262protected:
263 // the logging functions that can be overriden
264
265 // default DoLog() prepends the time stamp and a prefix corresponding
266 // to the message to szString and then passes it to DoLogString()
267 virtual void DoLog(wxLogLevel level, const wxString& szString, time_t t);
268#if WXWIN_COMPATIBILITY_2_8
269 // these shouldn't be used by new code
270 wxDEPRECATED_BUT_USED_INTERNALLY(
271 virtual void DoLog(wxLogLevel level, const char *szString, time_t t)
272 );
273
274 wxDEPRECATED_BUT_USED_INTERNALLY(
275 virtual void DoLog(wxLogLevel level, const wchar_t *wzString, time_t t)
276 );
277#endif // WXWIN_COMPATIBILITY_2_8
278
279 void LogString(const wxString& szString, time_t t)
280 { DoLogString(szString, t); }
281
282 // default DoLogString does nothing but is not pure virtual because if
283 // you override DoLog() you might not need it at all
284 virtual void DoLogString(const wxString& szString, time_t t);
285#if WXWIN_COMPATIBILITY_2_8
286 // these shouldn't be used by new code
287 virtual void DoLogString(const char *WXUNUSED(szString),
288 time_t WXUNUSED(t)) {}
289 virtual void DoLogString(const wchar_t *WXUNUSED(szString),
290 time_t WXUNUSED(t)) {}
291#endif // WXWIN_COMPATIBILITY_2_8
292
293 // this macro should be used in the derived classes to avoid warnings about
294 // hiding the other DoLog() overloads when overriding DoLog(wxString) --
295 // but don't use it with MSVC which doesn't give this warning but does give
296 // warning when a deprecated function is overridden
297#if WXWIN_COMPATIBILITY_2_8 && !defined(__VISUALC__)
298 #define wxSUPPRESS_DOLOG_HIDE_WARNING() \
299 virtual void DoLog(wxLogLevel, const char *, time_t) { } \
300 virtual void DoLog(wxLogLevel, const wchar_t *, time_t) { }
301
302 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING() \
303 virtual void DoLogString(const char *, time_t) { } \
304 virtual void DoLogString(const wchar_t *, time_t) { }
305#else
306 #define wxSUPPRESS_DOLOG_HIDE_WARNING()
307 #define wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
308#endif
309
310 // log a message indicating the number of times the previous message was
311 // repeated if ms_prevCounter > 0, does nothing otherwise; return the old
312 // value of ms_prevCounter
313 unsigned LogLastRepeatIfNeeded();
314
315private:
316 // implement of LogLastRepeatIfNeeded(): it assumes that the
317 // caller had already locked ms_prevCS
318 unsigned LogLastRepeatIfNeededUnlocked();
319
320 // static variables
321 // ----------------
322
323 // if true, don't log the same message multiple times, only log it once
324 // with the number of times it was repeated
325 static bool ms_bRepetCounting;
326
327#if wxUSE_THREADS
328 static wxCriticalSection ms_prevCS; // protects the ms_prev values below
329#endif
330 static wxString ms_prevString; // previous message that was logged
331 static unsigned ms_prevCounter; // how many times it was repeated
332 static time_t ms_prevTimeStamp;// timestamp of the previous message
333 static wxLogLevel ms_prevLevel; // level of the previous message
334
335 static wxLog *ms_pLogger; // currently active log sink
336 static bool ms_doLog; // false => all logging disabled
337 static bool ms_bAutoCreate; // create new log targets on demand?
338 static bool ms_bVerbose; // false => ignore LogInfo messages
339
340 static wxLogLevel ms_logLevel; // limit logging to levels <= ms_logLevel
341
342 static size_t ms_suspendCount; // if positive, logs are not flushed
343
344 // format string for strftime(), if NULL, time stamping log messages is
345 // disabled
346 static wxString ms_timestamp;
347
348#if wxUSE_THREADS
349 static wxCriticalSection ms_traceCS; // protects ms_aTraceMasks
350#endif
351 static wxTraceMask ms_ulTraceMask; // controls wxLogTrace behaviour
352 static wxArrayString ms_aTraceMasks; // more powerful filter for wxLogTrace
353};
354
355// ----------------------------------------------------------------------------
356// "trivial" derivations of wxLog
357// ----------------------------------------------------------------------------
358
359// log everything to a buffer
360class WXDLLIMPEXP_BASE wxLogBuffer : public wxLog
361{
362public:
363 wxLogBuffer() { }
364
365 // get the string contents with all messages logged
366 const wxString& GetBuffer() const { return m_str; }
367
368 // show the buffer contents to the user in the best possible way (this uses
369 // wxMessageOutputMessageBox) and clear it
370 virtual void Flush();
371
372protected:
373 virtual void DoLog(wxLogLevel level, const wxString& szString, time_t t);
374 virtual void DoLogString(const wxString& szString, time_t t);
375
376 wxSUPPRESS_DOLOG_HIDE_WARNING()
377 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
378
379private:
380 wxString m_str;
381
382 DECLARE_NO_COPY_CLASS(wxLogBuffer)
383};
384
385
386// log everything to a "FILE *", stderr by default
387class WXDLLIMPEXP_BASE wxLogStderr : public wxLog
388{
389public:
390 // redirect log output to a FILE
391 wxLogStderr(FILE *fp = (FILE *) NULL);
392
393protected:
394 // implement sink function
395 virtual void DoLogString(const wxString& szString, time_t t);
396
397 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
398
399 FILE *m_fp;
400
401 DECLARE_NO_COPY_CLASS(wxLogStderr)
402};
403
404#if wxUSE_STD_IOSTREAM
405
406// log everything to an "ostream", cerr by default
407class WXDLLIMPEXP_BASE wxLogStream : public wxLog
408{
409public:
410 // redirect log output to an ostream
411 wxLogStream(wxSTD ostream *ostr = (wxSTD ostream *) NULL);
412
413protected:
414 // implement sink function
415 virtual void DoLogString(const wxString& szString, time_t t);
416
417 wxSUPPRESS_DOLOGSTRING_HIDE_WARNING()
418
419 // using ptr here to avoid including <iostream.h> from this file
420 wxSTD ostream *m_ostr;
421};
422
423#endif // wxUSE_STD_IOSTREAM
424
425// ----------------------------------------------------------------------------
426// /dev/null log target: suppress logging until this object goes out of scope
427// ----------------------------------------------------------------------------
428
429// example of usage:
430/*
431 void Foo()
432 {
433 wxFile file;
434
435 // wxFile.Open() normally complains if file can't be opened, we don't
436 // want it
437 wxLogNull logNo;
438
439 if ( !file.Open("bar") )
440 ... process error ourselves ...
441
442 // ~wxLogNull called, old log sink restored
443 }
444 */
445class WXDLLIMPEXP_BASE wxLogNull
446{
447public:
448 wxLogNull() : m_flagOld(wxLog::EnableLogging(false)) { }
449 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld); }
450
451private:
452 bool m_flagOld; // the previous value of the wxLog::ms_doLog
453};
454
455// ----------------------------------------------------------------------------
456// chaining log target: installs itself as a log target and passes all
457// messages to the real log target given to it in the ctor but also forwards
458// them to the previously active one
459//
460// note that you don't have to call SetActiveTarget() with this class, it
461// does it itself in its ctor
462// ----------------------------------------------------------------------------
463
464class WXDLLIMPEXP_BASE wxLogChain : public wxLog
465{
466public:
467 wxLogChain(wxLog *logger);
468 virtual ~wxLogChain();
469
470 // change the new log target
471 void SetLog(wxLog *logger);
472
473 // this can be used to temporarily disable (and then reenable) passing
474 // messages to the old logger (by default we do pass them)
475 void PassMessages(bool bDoPass) { m_bPassMessages = bDoPass; }
476
477 // are we passing the messages to the previous log target?
478 bool IsPassingMessages() const { return m_bPassMessages; }
479
480 // return the previous log target (may be NULL)
481 wxLog *GetOldLog() const { return m_logOld; }
482
483 // override base class version to flush the old logger as well
484 virtual void Flush();
485
486 // call to avoid destroying the old log target
487 void DetachOldLog() { m_logOld = NULL; }
488
489protected:
490 // pass the chain to the old logger if needed
491 virtual void DoLog(wxLogLevel level, const wxString& szString, time_t t);
492
493 wxSUPPRESS_DOLOG_HIDE_WARNING()
494
495private:
496 // the current log target
497 wxLog *m_logNew;
498
499 // the previous log target
500 wxLog *m_logOld;
501
502 // do we pass the messages to the old logger?
503 bool m_bPassMessages;
504
505 DECLARE_NO_COPY_CLASS(wxLogChain)
506};
507
508// a chain log target which uses itself as the new logger
509
510#define wxLogPassThrough wxLogInterposer
511
512class WXDLLIMPEXP_BASE wxLogInterposer : public wxLogChain
513{
514public:
515 wxLogInterposer();
516
517private:
518 DECLARE_NO_COPY_CLASS(wxLogInterposer)
519};
520
521// a temporary interposer which doesn't destroy the old log target
522// (calls DetachOldLog)
523
524class WXDLLIMPEXP_BASE wxLogInterposerTemp : public wxLogChain
525{
526public:
527 wxLogInterposerTemp();
528
529private:
530 DECLARE_NO_COPY_CLASS(wxLogInterposerTemp)
531};
532
533#if wxUSE_GUI
534 // include GUI log targets:
535 #include "wx/generic/logg.h"
536#endif // wxUSE_GUI
537
538// ============================================================================
539// global functions
540// ============================================================================
541
542// ----------------------------------------------------------------------------
543// Log functions should be used by application instead of stdio, iostream &c
544// for log messages for easy redirection
545// ----------------------------------------------------------------------------
546
547// ----------------------------------------------------------------------------
548// get error code/error message from system in a portable way
549// ----------------------------------------------------------------------------
550
551// return the last system error code
552WXDLLIMPEXP_BASE unsigned long wxSysErrorCode();
553
554// return the error message for given (or last if 0) error code
555WXDLLIMPEXP_BASE const wxChar* wxSysErrorMsg(unsigned long nErrCode = 0);
556
557// ----------------------------------------------------------------------------
558// define wxLog<level>
559// ----------------------------------------------------------------------------
560
561#define DECLARE_LOG_FUNCTION(level) \
562 extern void WXDLLIMPEXP_BASE \
563 wxDoLog##level##Wchar(const wxChar *format, ...); \
564 extern void WXDLLIMPEXP_BASE \
565 wxDoLog##level##Utf8(const char *format, ...); \
566 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
567 1, (const wxFormatString&), \
568 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
569 DECLARE_LOG_FUNCTION_WATCOM(level) \
570 extern void WXDLLIMPEXP_BASE wxVLog##level(const wxString& format, \
571 va_list argptr)
572
573#ifdef __WATCOMC__
574 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
575 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
576 // something too big for Borland C++ to handle
577 #define DECLARE_LOG_FUNCTION_WATCOM(level) \
578 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
579 1, (const wxString&), \
580 (wxFormatString(f1))) \
581 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
582 1, (const wxCStrData&), \
583 (wxFormatString(f1))) \
584 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
585 1, (const char*), \
586 (wxFormatString(f1))) \
587 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
588 1, (const wchar_t*), \
589 (wxFormatString(f1)))
590#else
591 #define DECLARE_LOG_FUNCTION_WATCOM(level)
592#endif
593
594
595#define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
596 extern void expdecl wxDoLog##level##Wchar(argclass arg, \
597 const wxChar *format, ...); \
598 extern void expdecl wxDoLog##level##Utf8(argclass arg, \
599 const char *format, ...); \
600 WX_DEFINE_VARARG_FUNC_VOID(wxLog##level, \
601 2, (argclass, const wxFormatString&), \
602 wxDoLog##level##Wchar, wxDoLog##level##Utf8) \
603 DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
604 extern void expdecl wxVLog##level(argclass arg, \
605 const wxString& format, \
606 va_list argptr)
607
608#ifdef __WATCOMC__
609 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351;
610 // can't use WX_WATCOM_ONLY_CODE here because the macro would expand to
611 // something too big for Borland C++ to handle
612 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl) \
613 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
614 2, (argclass, const wxString&), \
615 (f1, wxFormatString(f2))) \
616 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
617 2, (argclass, const wxCStrData&), \
618 (f1, wxFormatString(f2))) \
619 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
620 2, (argclass, const char*), \
621 (f1, wxFormatString(f2))) \
622 WX_VARARG_WATCOM_WORKAROUND(void, wxLog##level, \
623 2, (argclass, const wchar_t*), \
624 (f1, wxFormatString(f2)))
625#else
626 #define DECLARE_LOG_FUNCTION2_EXP_WATCOM(level, argclass, arg, expdecl)
627#endif
628
629
630#else // !wxUSE_LOG
631
632#ifdef __WATCOMC__
633 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
634 #define WX_WATCOM_ONLY_CODE( x ) x
635#else
636 #define WX_WATCOM_ONLY_CODE( x )
637#endif
638
639#if defined(__WATCOMC__) || defined(__MINGW32__)
640 // Mingw has similar problem with wxLogSysError:
641 #define WX_WATCOM_OR_MINGW_ONLY_CODE( x ) x
642#else
643 #define WX_WATCOM_OR_MINGW_ONLY_CODE( x )
644#endif
645
646// log functions do nothing at all
647#define DECLARE_LOG_FUNCTION(level) \
648 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxString&)) \
649 WX_WATCOM_ONLY_CODE( \
650 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const char*)) \
651 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wchar_t*)) \
652 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 1, (const wxCStrData&)) \
653 ) \
654 inline void wxVLog##level(const wxString& WXUNUSED(format), \
655 va_list WXUNUSED(argptr)) { } \
656
657#define DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, expdecl) \
658 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxString&)) \
659 WX_WATCOM_OR_MINGW_ONLY_CODE( \
660 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const char*)) \
661 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wchar_t*)) \
662 WX_DEFINE_VARARG_FUNC_NOP(wxLog##level, 2, (argclass, const wxCStrData&)) \
663 ) \
664 inline void wxVLog##level(argclass WXUNUSED(arg), \
665 const wxString& WXUNUSED(format), \
666 va_list WXUNUSED(argptr)) {}
667
668// Empty Class to fake wxLogNull
669class WXDLLIMPEXP_BASE wxLogNull
670{
671public:
672 wxLogNull() { }
673};
674
675// Dummy macros to replace some functions.
676#define wxSysErrorCode() (unsigned long)0
677#define wxSysErrorMsg( X ) (const wxChar*)NULL
678
679// Fake symbolic trace masks... for those that are used frequently
680#define wxTRACE_OleCalls wxEmptyString // OLE interface calls
681
682#endif // wxUSE_LOG/!wxUSE_LOG
683
684#define DECLARE_LOG_FUNCTION2(level, argclass, arg) \
685 DECLARE_LOG_FUNCTION2_EXP(level, argclass, arg, WXDLLIMPEXP_BASE)
686
687// VC6 produces a warning if we a macro expanding to nothing to
688// DECLARE_LOG_FUNCTION2:
689#if defined(__VISUALC__) && __VISUALC__ < 1300
690 // "not enough actual parameters for macro 'DECLARE_LOG_FUNCTION2_EXP'"
691 #pragma warning(disable:4003)
692#endif
693
694// a generic function for all levels (level is passes as parameter)
695DECLARE_LOG_FUNCTION2(Generic, wxLogLevel, level);
696
697// one function per each level
698DECLARE_LOG_FUNCTION(FatalError);
699DECLARE_LOG_FUNCTION(Error);
700DECLARE_LOG_FUNCTION(Warning);
701DECLARE_LOG_FUNCTION(Message);
702DECLARE_LOG_FUNCTION(Info);
703DECLARE_LOG_FUNCTION(Verbose);
704
705// this function sends the log message to the status line of the top level
706// application frame, if any
707DECLARE_LOG_FUNCTION(Status);
708
709#if wxUSE_GUI
710 // this one is the same as previous except that it allows to explicitly
711 class WXDLLIMPEXP_FWD_CORE wxFrame;
712 // specify the frame to which the output should go
713 DECLARE_LOG_FUNCTION2_EXP(Status, wxFrame *, pFrame, WXDLLIMPEXP_CORE);
714#endif // wxUSE_GUI
715
716// additional one: as wxLogError, but also logs last system call error code
717// and the corresponding error message if available
718DECLARE_LOG_FUNCTION(SysError);
719
720// and another one which also takes the error code (for those broken APIs
721// that don't set the errno (like registry APIs in Win32))
722DECLARE_LOG_FUNCTION2(SysError, long, lErrCode);
723#ifdef __WATCOMC__
724// workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
725DECLARE_LOG_FUNCTION2(SysError, unsigned long, lErrCode);
726#endif
727
728// debug functions do nothing in release mode
729#if wxUSE_LOG && wxUSE_LOG_DEBUG
730 DECLARE_LOG_FUNCTION(Debug);
731
732 // there is no more unconditional LogTrace: it is not different from
733 // LogDebug and it creates overload ambiguities
734 //DECLARE_LOG_FUNCTION(Trace);
735
736 // this version only logs the message if the mask had been added to the
737 // list of masks with AddTraceMask()
738 DECLARE_LOG_FUNCTION2(Trace, const wxString&, mask);
739#ifdef __WATCOMC__
740 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
741 DECLARE_LOG_FUNCTION2(Trace, const char*, mask);
742 DECLARE_LOG_FUNCTION2(Trace, const wchar_t*, mask);
743#endif
744
745 // and this one does nothing if all of level bits are not set in
746 // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of
747 // string identifiers
748 DECLARE_LOG_FUNCTION2(Trace, wxTraceMask, mask);
749#ifdef __WATCOMC__
750 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
751 DECLARE_LOG_FUNCTION2(Trace, int, mask);
752#endif
753#else //!debug || !wxUSE_LOG
754 // these functions do nothing in release builds, but don't define them as
755 // nothing as it could result in different code structure in debug and
756 // release and this could result in trouble when these macros are used
757 // inside if/else
758 //
759 // note that making wxVLogDebug/Trace() themselves (empty inline) functions
760 // is a bad idea as some compilers are stupid enough to not inline even
761 // empty functions if their parameters are complicated enough, but by
762 // defining them as an empty inline function we ensure that even dumbest
763 // compilers optimise them away
764 inline void wxLogNop() { }
765
766 #define wxVLogDebug(fmt, valist) wxLogNop()
767 #define wxVLogTrace(mask, fmt, valist) wxLogNop()
768
769 #ifdef HAVE_VARIADIC_MACROS
770 // unlike the inline functions below, this completely removes the
771 // wxLogXXX calls from the object file:
772 #define wxLogDebug(fmt, ...) wxLogNop()
773 #define wxLogTrace(mask, fmt, ...) wxLogNop()
774 #else // !HAVE_VARIADIC_MACROS
775 //inline void wxLogDebug(const wxString& fmt, ...) {}
776 WX_DEFINE_VARARG_FUNC_NOP(wxLogDebug, 1, (const wxString&))
777 //inline void wxLogTrace(wxTraceMask, const wxString& fmt, ...) {}
778 //inline void wxLogTrace(const wxString&, const wxString& fmt, ...) {}
779 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (wxTraceMask, const wxString&))
780 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (const wxString&, const wxString&))
781 #ifdef __WATCOMC__
782 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
783 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (const char*, const char*))
784 WX_DEFINE_VARARG_FUNC_NOP(wxLogTrace, 2, (const wchar_t*, const wchar_t*))
785 #endif
786 #endif // HAVE_VARIADIC_MACROS/!HAVE_VARIADIC_MACROS
787#endif // debug/!debug
788
789#if defined(__VISUALC__) && __VISUALC__ < 1300
790 #pragma warning(default:4003)
791#endif
792
793// wxLogFatalError helper: show the (fatal) error to the user in a safe way,
794// i.e. without using wxMessageBox() for example because it could crash
795void WXDLLIMPEXP_BASE
796wxSafeShowMessage(const wxString& title, const wxString& text);
797
798// ----------------------------------------------------------------------------
799// debug only logging functions: use them with API name and error code
800// ----------------------------------------------------------------------------
801
802#ifdef __WXDEBUG__
803 // make life easier for people using VC++ IDE: clicking on the message
804 // will take us immediately to the place of the failed API
805#ifdef __VISUALC__
806 #define wxLogApiError(api, rc) \
807 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
808 __FILE__, __LINE__, api, \
809 (long)rc, wxSysErrorMsg(rc))
810#else // !VC++
811 #define wxLogApiError(api, rc) \
812 wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \
813 wxT("error 0x%08lx (%s)."), \
814 __FILE__, __LINE__, api, \
815 (long)rc, wxSysErrorMsg(rc))
816#endif // VC++/!VC++
817
818 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
819
820#else //!debug
821 #define wxLogApiError(api, err) wxLogNop()
822 #define wxLogLastError(api) wxLogNop()
823#endif //debug/!debug
824
825// wxCocoa has additiional trace masks
826#if defined(__WXCOCOA__)
827#include "wx/cocoa/log.h"
828#endif
829
830#ifdef WX_WATCOM_ONLY_CODE
831 #undef WX_WATCOM_ONLY_CODE
832#endif
833
834#endif // _WX_LOG_H_
835