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