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