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