1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/log.cpp
3 // Purpose: Assorted wxLogXXX functions, and wxLog (sink for logs)
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
33 #include "wx/arrstr.h"
35 #include "wx/string.h"
39 #include "wx/apptrait.h"
40 #include "wx/datetime.h"
42 #include "wx/msgout.h"
43 #include "wx/textfile.h"
44 #include "wx/thread.h"
47 // other standard headers
58 #include "wx/msw/wince/time.h"
60 #endif /* ! __WXPALMOS5__ */
62 #if defined(__WINDOWS__)
63 #include "wx/msw/private.h" // includes windows.h
68 // define static functions providing access to the critical sections we use
69 // instead of just using static critical section variables as log functions may
70 // be used during static initialization and while this is certainly not
71 // advisable it's still better to not crash (as we'd do if we used a yet
72 // uninitialized critical section) if it happens
74 static inline wxCriticalSection
& GetTraceMaskCS()
76 static wxCriticalSection s_csTrace
;
81 static inline wxCriticalSection
& GetPreviousLogCS()
83 static wxCriticalSection s_csPrev
;
88 #endif // wxUSE_THREADS
90 // ----------------------------------------------------------------------------
91 // non member functions
92 // ----------------------------------------------------------------------------
94 // define this to enable wrapping of log messages
95 //#define LOG_PRETTY_WRAP
97 #ifdef LOG_PRETTY_WRAP
98 static void wxLogWrap(FILE *f
, const char *pszPrefix
, const char *psz
);
101 // ============================================================================
103 // ============================================================================
105 // ----------------------------------------------------------------------------
106 // implementation of Log functions
108 // NB: unfortunately we need all these distinct functions, we can't make them
109 // macros and not all compilers inline vararg functions.
110 // ----------------------------------------------------------------------------
112 // generic log function
113 void wxVLogGeneric(wxLogLevel level
, const wxString
& format
, va_list argptr
)
115 if ( wxLog::IsEnabled() ) {
116 wxLog::OnLog(level
, wxString::FormatV(format
, argptr
), time(NULL
));
120 #if !wxUSE_UTF8_LOCALE_ONLY
121 void wxDoLogGenericWchar(wxLogLevel level
, const wxChar
*format
, ...)
124 va_start(argptr
, format
);
125 wxVLogGeneric(level
, format
, argptr
);
128 #endif // wxUSE_UTF8_LOCALE_ONLY
130 #if wxUSE_UNICODE_UTF8
131 void wxDoLogGenericUtf8(wxLogLevel level
, const char *format
, ...)
134 va_start(argptr
, format
);
135 wxVLogGeneric(level
, format
, argptr
);
138 #endif // wxUSE_UNICODE_UTF8
140 #if !wxUSE_UTF8_LOCALE_ONLY
141 #define IMPLEMENT_LOG_FUNCTION_WCHAR(level) \
142 void wxDoLog##level##Wchar(const wxChar *format, ...) \
145 va_start(argptr, format); \
146 wxVLog##level(format, argptr); \
150 #define IMPLEMENT_LOG_FUNCTION_WCHAR(level)
153 #if wxUSE_UNICODE_UTF8
154 #define IMPLEMENT_LOG_FUNCTION_UTF8(level) \
155 void wxDoLog##level##Utf8(const char *format, ...) \
158 va_start(argptr, format); \
159 wxVLog##level(format, argptr); \
163 #define IMPLEMENT_LOG_FUNCTION_UTF8(level)
166 #define IMPLEMENT_LOG_FUNCTION(level) \
167 void wxVLog##level(const wxString& format, va_list argptr) \
169 if ( wxLog::IsEnabled() ) { \
170 wxLog::OnLog(wxLOG_##level, \
171 wxString::FormatV(format, argptr), time(NULL)); \
174 IMPLEMENT_LOG_FUNCTION_WCHAR(level) \
175 IMPLEMENT_LOG_FUNCTION_UTF8(level)
177 IMPLEMENT_LOG_FUNCTION(Error
)
178 IMPLEMENT_LOG_FUNCTION(Warning
)
179 IMPLEMENT_LOG_FUNCTION(Message
)
180 IMPLEMENT_LOG_FUNCTION(Info
)
181 IMPLEMENT_LOG_FUNCTION(Status
)
183 void wxSafeShowMessage(const wxString
& title
, const wxString
& text
)
186 ::MessageBox(NULL
, text
.t_str(), title
.t_str(), MB_OK
| MB_ICONSTOP
);
188 wxFprintf(stderr
, wxS("%s: %s\n"), title
.c_str(), text
.c_str());
193 // fatal errors can't be suppressed nor handled by the custom log target and
194 // always terminate the program
195 void wxVLogFatalError(const wxString
& format
, va_list argptr
)
197 wxSafeShowMessage(wxS("Fatal Error"), wxString::FormatV(format
, argptr
));
206 #if !wxUSE_UTF8_LOCALE_ONLY
207 void wxDoLogFatalErrorWchar(const wxChar
*format
, ...)
210 va_start(argptr
, format
);
211 wxVLogFatalError(format
, argptr
);
213 // some compilers warn about unreachable code and it shouldn't matter
214 // for the others anyhow...
217 #endif // wxUSE_UTF8_LOCALE_ONLY
219 #if wxUSE_UNICODE_UTF8
220 void wxDoLogFatalErrorUtf8(const char *format
, ...)
223 va_start(argptr
, format
);
224 wxVLogFatalError(format
, argptr
);
226 // some compilers warn about unreachable code and it shouldn't matter
227 // for the others anyhow...
230 #endif // wxUSE_UNICODE_UTF8
232 // same as info, but only if 'verbose' mode is on
233 void wxVLogVerbose(const wxString
& format
, va_list argptr
)
235 if ( wxLog::IsEnabled() ) {
236 if ( wxLog::GetActiveTarget() != NULL
&& wxLog::GetVerbose() ) {
237 wxLog::OnLog(wxLOG_Info
,
238 wxString::FormatV(format
, argptr
), time(NULL
));
243 #if !wxUSE_UTF8_LOCALE_ONLY
244 void wxDoLogVerboseWchar(const wxChar
*format
, ...)
247 va_start(argptr
, format
);
248 wxVLogVerbose(format
, argptr
);
251 #endif // !wxUSE_UTF8_LOCALE_ONLY
253 #if wxUSE_UNICODE_UTF8
254 void wxDoLogVerboseUtf8(const char *format
, ...)
257 va_start(argptr
, format
);
258 wxVLogVerbose(format
, argptr
);
261 #endif // wxUSE_UNICODE_UTF8
266 #if !wxUSE_UTF8_LOCALE_ONLY
267 #define IMPLEMENT_LOG_DEBUG_FUNCTION_WCHAR(level) \
268 void wxDoLog##level##Wchar(const wxChar *format, ...) \
271 va_start(argptr, format); \
272 wxVLog##level(format, argptr); \
276 #define IMPLEMENT_LOG_DEBUG_FUNCTION_WCHAR(level)
279 #if wxUSE_UNICODE_UTF8
280 #define IMPLEMENT_LOG_DEBUG_FUNCTION_UTF8(level) \
281 void wxDoLog##level##Utf8(const char *format, ...) \
284 va_start(argptr, format); \
285 wxVLog##level(format, argptr); \
289 #define IMPLEMENT_LOG_DEBUG_FUNCTION_UTF8(level)
292 #define IMPLEMENT_LOG_DEBUG_FUNCTION(level) \
293 void wxVLog##level(const wxString& format, va_list argptr) \
295 if ( wxLog::IsEnabled() ) { \
296 wxLog::OnLog(wxLOG_##level, \
297 wxString::FormatV(format, argptr), time(NULL)); \
300 IMPLEMENT_LOG_DEBUG_FUNCTION_WCHAR(level) \
301 IMPLEMENT_LOG_DEBUG_FUNCTION_UTF8(level)
304 void wxVLogTrace(const wxString
& mask
, const wxString
& format
, va_list argptr
)
306 if ( wxLog::IsEnabled() && wxLog::IsAllowedTraceMask(mask
) ) {
308 msg
<< wxS("(") << mask
<< wxS(") ") << wxString::FormatV(format
, argptr
);
310 wxLog::OnLog(wxLOG_Trace
, msg
, time(NULL
));
314 #if !wxUSE_UTF8_LOCALE_ONLY
315 void wxDoLogTraceWchar(const wxString
& mask
, const wxChar
*format
, ...)
318 va_start(argptr
, format
);
319 wxVLogTrace(mask
, format
, argptr
);
322 #endif // !wxUSE_UTF8_LOCALE_ONLY
324 #if wxUSE_UNICODE_UTF8
325 void wxDoLogTraceUtf8(const wxString
& mask
, const char *format
, ...)
328 va_start(argptr
, format
);
329 wxVLogTrace(mask
, format
, argptr
);
332 #endif // wxUSE_UNICODE_UTF8
334 // deprecated (but not declared as such because we don't want to complicate
335 // DECLARE_LOG_FUNCTION macros even more) overloads for wxTraceMask
336 #if WXWIN_COMPATIBILITY_2_8
337 void wxVLogTrace(wxTraceMask mask
, const wxString
& format
, va_list argptr
)
339 // we check that all of mask bits are set in the current mask, so
340 // that wxLogTrace(wxTraceRefCount | wxTraceOle) will only do something
341 // if both bits are set.
342 if ( wxLog::IsEnabled() && ((wxLog::GetTraceMask() & mask
) == mask
) ) {
343 wxLog::OnLog(wxLOG_Trace
, wxString::FormatV(format
, argptr
), time(NULL
));
347 #if !wxUSE_UTF8_LOCALE_ONLY
348 void wxDoLogTraceWchar(wxTraceMask mask
, const wxChar
*format
, ...)
351 va_start(argptr
, format
);
352 wxVLogTrace(mask
, format
, argptr
);
355 #endif // !wxUSE_UTF8_LOCALE_ONLY
357 #if wxUSE_UNICODE_UTF8
358 void wxDoLogTraceUtf8(wxTraceMask mask
, const char *format
, ...)
361 va_start(argptr
, format
);
362 wxVLogTrace(mask
, format
, argptr
);
365 #endif // wxUSE_UNICODE_UTF8
367 #endif // WXWIN_COMPATIBILITY_2_8
370 #if WXWIN_COMPATIBILITY_2_8
371 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
372 void wxDoLogTraceWchar(int mask
, const wxChar
*format
, ...)
375 va_start(argptr
, format
);
376 wxVLogTrace(mask
, format
, argptr
);
379 #endif // WXWIN_COMPATIBILITY_2_8
381 void wxDoLogTraceWchar(const char *mask
, const wxChar
*format
, ...)
384 va_start(argptr
, format
);
385 wxVLogTrace(mask
, format
, argptr
);
389 void wxDoLogTraceWchar(const wchar_t *mask
, const wxChar
*format
, ...)
392 va_start(argptr
, format
);
393 wxVLogTrace(mask
, format
, argptr
);
397 #if WXWIN_COMPATIBILITY_2_8
398 void wxVLogTrace(int mask
, const wxString
& format
, va_list argptr
)
399 { wxVLogTrace((wxTraceMask
)mask
, format
, argptr
); }
400 #endif // WXWIN_COMPATIBILITY_2_8
401 void wxVLogTrace(const char *mask
, const wxString
& format
, va_list argptr
)
402 { wxVLogTrace(wxString(mask
), format
, argptr
); }
403 void wxVLogTrace(const wchar_t *mask
, const wxString
& format
, va_list argptr
)
404 { wxVLogTrace(wxString(mask
), format
, argptr
); }
405 #endif // __WATCOMC__
408 #define IMPLEMENT_LOG_DEBUG_FUNCTION(level)
411 IMPLEMENT_LOG_DEBUG_FUNCTION(Debug
)
412 IMPLEMENT_LOG_DEBUG_FUNCTION(Trace
)
414 // wxLogSysError: one uses the last error code, for other you must give it
417 // return the system error message description
418 static inline wxString
wxLogSysErrorHelper(long err
)
420 return wxString::Format(_(" (error %ld: %s)"), err
, wxSysErrorMsg(err
));
423 void WXDLLIMPEXP_BASE
wxVLogSysError(const wxString
& format
, va_list argptr
)
425 wxVLogSysError(wxSysErrorCode(), format
, argptr
);
428 #if !wxUSE_UTF8_LOCALE_ONLY
429 void WXDLLIMPEXP_BASE
wxDoLogSysErrorWchar(const wxChar
*format
, ...)
432 va_start(argptr
, format
);
433 wxVLogSysError(format
, argptr
);
436 #endif // !wxUSE_UTF8_LOCALE_ONLY
438 #if wxUSE_UNICODE_UTF8
439 void WXDLLIMPEXP_BASE
wxDoLogSysErrorUtf8(const char *format
, ...)
442 va_start(argptr
, format
);
443 wxVLogSysError(format
, argptr
);
446 #endif // wxUSE_UNICODE_UTF8
448 void WXDLLIMPEXP_BASE
wxVLogSysError(long err
, const wxString
& format
, va_list argptr
)
450 if ( wxLog::IsEnabled() ) {
451 wxLog::OnLog(wxLOG_Error
,
452 wxString::FormatV(format
, argptr
) + wxLogSysErrorHelper(err
),
457 #if !wxUSE_UTF8_LOCALE_ONLY
458 void WXDLLIMPEXP_BASE
wxDoLogSysErrorWchar(long lErrCode
, const wxChar
*format
, ...)
461 va_start(argptr
, format
);
462 wxVLogSysError(lErrCode
, format
, argptr
);
465 #endif // !wxUSE_UTF8_LOCALE_ONLY
467 #if wxUSE_UNICODE_UTF8
468 void WXDLLIMPEXP_BASE
wxDoLogSysErrorUtf8(long lErrCode
, const char *format
, ...)
471 va_start(argptr
, format
);
472 wxVLogSysError(lErrCode
, format
, argptr
);
475 #endif // wxUSE_UNICODE_UTF8
478 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
479 void WXDLLIMPEXP_BASE
wxDoLogSysErrorWchar(unsigned long lErrCode
, const wxChar
*format
, ...)
482 va_start(argptr
, format
);
483 wxVLogSysError(lErrCode
, format
, argptr
);
487 void WXDLLIMPEXP_BASE
wxVLogSysError(unsigned long err
, const wxString
& format
, va_list argptr
)
488 { wxVLogSysError((long)err
, format
, argptr
); }
489 #endif // __WATCOMC__
491 // ----------------------------------------------------------------------------
492 // wxLog class implementation
493 // ----------------------------------------------------------------------------
495 unsigned wxLog::LogLastRepeatIfNeeded()
497 wxCRIT_SECT_LOCKER(lock
, GetPreviousLogCS());
499 return LogLastRepeatIfNeededUnlocked();
502 unsigned wxLog::LogLastRepeatIfNeededUnlocked()
504 const unsigned count
= ms_prevCounter
;
506 if ( ms_prevCounter
)
510 msg
.Printf(wxPLURAL("The previous message repeated once.",
511 "The previous message repeated %lu times.",
515 msg
.Printf(wxS("The previous message was repeated %lu times."),
519 ms_prevString
.clear();
520 DoLog(ms_prevLevel
, msg
, ms_prevTimeStamp
);
528 // Flush() must be called before destroying the object as otherwise some
529 // messages could be lost
530 if ( ms_prevCounter
)
532 wxMessageOutputDebug().Printf
534 wxS("Last repeated message (\"%s\", %lu times) wasn't output"),
542 void wxLog::OnLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
544 if ( IsEnabled() && ms_logLevel
>= level
)
546 wxLog
*pLogger
= GetActiveTarget();
549 if ( GetRepetitionCounting() )
551 wxCRIT_SECT_LOCKER(lock
, GetPreviousLogCS());
553 if ( szString
== ms_prevString
)
557 // nothing else to do, in particular, don't log the
562 pLogger
->LogLastRepeatIfNeededUnlocked();
564 // reset repetition counter for a new message
565 ms_prevString
= szString
;
566 ms_prevLevel
= level
;
567 ms_prevTimeStamp
= t
;
570 pLogger
->DoLog(level
, szString
, t
);
575 // deprecated function
576 #if WXWIN_COMPATIBILITY_2_6
578 wxChar
*wxLog::SetLogBuffer(wxChar
* WXUNUSED(buf
), size_t WXUNUSED(size
))
583 #endif // WXWIN_COMPATIBILITY_2_6
585 #if WXWIN_COMPATIBILITY_2_8
587 void wxLog::DoLog(wxLogLevel
WXUNUSED(level
),
588 const char *WXUNUSED(szString
),
593 void wxLog::DoLog(wxLogLevel
WXUNUSED(level
),
594 const wchar_t *WXUNUSED(wzString
),
599 #endif // WXWIN_COMPATIBILITY_2_8
601 wxLog
*wxLog::GetActiveTarget()
603 if ( ms_bAutoCreate
&& ms_pLogger
== NULL
) {
604 // prevent infinite recursion if someone calls wxLogXXX() from
605 // wxApp::CreateLogTarget()
606 static bool s_bInGetActiveTarget
= false;
607 if ( !s_bInGetActiveTarget
) {
608 s_bInGetActiveTarget
= true;
610 // ask the application to create a log target for us
611 if ( wxTheApp
!= NULL
)
612 ms_pLogger
= wxTheApp
->GetTraits()->CreateLogTarget();
614 ms_pLogger
= new wxLogStderr
;
616 s_bInGetActiveTarget
= false;
618 // do nothing if it fails - what can we do?
625 wxLog
*wxLog::SetActiveTarget(wxLog
*pLogger
)
627 if ( ms_pLogger
!= NULL
) {
628 // flush the old messages before changing because otherwise they might
629 // get lost later if this target is not restored
633 wxLog
*pOldLogger
= ms_pLogger
;
634 ms_pLogger
= pLogger
;
639 void wxLog::DontCreateOnDemand()
641 ms_bAutoCreate
= false;
643 // this is usually called at the end of the program and we assume that it
644 // is *always* called at the end - so we free memory here to avoid false
645 // memory leak reports from wxWin memory tracking code
649 void wxLog::DoCreateOnDemand()
651 ms_bAutoCreate
= true;
654 void wxLog::AddTraceMask(const wxString
& str
)
656 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
658 ms_aTraceMasks
.push_back(str
);
661 void wxLog::RemoveTraceMask(const wxString
& str
)
663 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
665 int index
= ms_aTraceMasks
.Index(str
);
666 if ( index
!= wxNOT_FOUND
)
667 ms_aTraceMasks
.RemoveAt((size_t)index
);
670 void wxLog::ClearTraceMasks()
672 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
674 ms_aTraceMasks
.Clear();
677 void wxLog::TimeStamp(wxString
*str
)
680 if ( !ms_timestamp
.empty() )
684 (void)time(&timeNow
);
687 wxStrftime(buf
, WXSIZEOF(buf
),
688 ms_timestamp
, wxLocaltime_r(&timeNow
, &tm
));
691 *str
<< buf
<< wxS(": ");
693 #endif // wxUSE_DATETIME
696 void wxLog::DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
698 #if WXWIN_COMPATIBILITY_2_8
699 // DoLog() signature changed since 2.8, so we call the old versions here
700 // so that existing custom log classes still work:
701 DoLog(level
, (const char*)szString
.mb_str(), t
);
702 DoLog(level
, (const wchar_t*)szString
.wc_str(), t
);
706 case wxLOG_FatalError
:
707 LogString(_("Fatal error: ") + szString
, t
);
708 LogString(_("Program aborted."), t
);
718 LogString(_("Error: ") + szString
, t
);
722 LogString(_("Warning: ") + szString
, t
);
729 default: // log unknown log levels too
730 LogString(szString
, t
);
737 wxString msg
= level
== wxLOG_Trace
? wxS("Trace: ")
747 void wxLog::DoLogString(const wxString
& szString
, time_t t
)
749 #if WXWIN_COMPATIBILITY_2_8
750 // DoLogString() signature changed since 2.8, so we call the old versions
751 // here so that existing custom log classes still work; unfortunately this
752 // also means that we can't have the wxFAIL_MSG below in compat mode
753 DoLogString((const char*)szString
.mb_str(), t
);
754 DoLogString((const wchar_t*)szString
.wc_str(), t
);
756 wxFAIL_MSG(wxS("DoLogString must be overriden if it's called."));
757 wxUnusedVar(szString
);
764 LogLastRepeatIfNeeded();
767 /*static*/ bool wxLog::IsAllowedTraceMask(const wxString
& mask
)
769 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
771 for ( wxArrayString::iterator it
= ms_aTraceMasks
.begin(),
772 en
= ms_aTraceMasks
.end();
782 // ----------------------------------------------------------------------------
783 // wxLogBuffer implementation
784 // ----------------------------------------------------------------------------
786 void wxLogBuffer::Flush()
788 if ( !m_str
.empty() )
790 wxMessageOutputBest out
;
791 out
.Printf(wxS("%s"), m_str
.c_str());
796 void wxLogBuffer::DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
803 // don't put debug messages in the buffer, we don't want to show
804 // them to the user in a msg box, log them immediately
810 wxMessageOutputDebug dbgout
;
811 dbgout
.Printf(wxS("%s\n"), str
.c_str());
813 #endif // __WXDEBUG__
817 wxLog::DoLog(level
, szString
, t
);
821 void wxLogBuffer::DoLogString(const wxString
& szString
, time_t WXUNUSED(t
))
823 m_str
<< szString
<< wxS("\n");
826 // ----------------------------------------------------------------------------
827 // wxLogStderr class implementation
828 // ----------------------------------------------------------------------------
830 wxLogStderr::wxLogStderr(FILE *fp
)
838 void wxLogStderr::DoLogString(const wxString
& szString
, time_t WXUNUSED(t
))
845 wxFputc(wxS('\n'), m_fp
);
848 // under GUI systems such as Windows or Mac, programs usually don't have
849 // stderr at all, so show the messages also somewhere else, typically in
850 // the debugger window so that they go at least somewhere instead of being
852 if ( m_fp
== stderr
)
854 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
855 if ( traits
&& !traits
->HasStderr() )
857 wxMessageOutputDebug dbgout
;
858 dbgout
.Printf(wxS("%s\n"), str
.c_str());
863 // ----------------------------------------------------------------------------
864 // wxLogStream implementation
865 // ----------------------------------------------------------------------------
867 #if wxUSE_STD_IOSTREAM
868 #include "wx/ioswrap.h"
869 wxLogStream::wxLogStream(wxSTD ostream
*ostr
)
872 m_ostr
= &wxSTD cerr
;
877 void wxLogStream::DoLogString(const wxString
& szString
, time_t WXUNUSED(t
))
881 (*m_ostr
) << stamp
<< szString
<< wxSTD endl
;
883 #endif // wxUSE_STD_IOSTREAM
885 // ----------------------------------------------------------------------------
887 // ----------------------------------------------------------------------------
889 wxLogChain::wxLogChain(wxLog
*logger
)
891 m_bPassMessages
= true;
894 m_logOld
= wxLog::SetActiveTarget(this);
897 wxLogChain::~wxLogChain()
901 if ( m_logNew
!= this )
905 void wxLogChain::SetLog(wxLog
*logger
)
907 if ( m_logNew
!= this )
913 void wxLogChain::Flush()
918 // be careful to avoid infinite recursion
919 if ( m_logNew
&& m_logNew
!= this )
923 void wxLogChain::DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
925 // let the previous logger show it
926 if ( m_logOld
&& IsPassingMessages() )
927 m_logOld
->Log(level
, szString
, t
);
929 // and also send it to the new one
930 if ( m_logNew
&& m_logNew
!= this )
931 m_logNew
->Log(level
, szString
, t
);
935 // "'this' : used in base member initializer list" - so what?
936 #pragma warning(disable:4355)
939 // ----------------------------------------------------------------------------
941 // ----------------------------------------------------------------------------
943 wxLogInterposer::wxLogInterposer()
948 // ----------------------------------------------------------------------------
949 // wxLogInterposerTemp
950 // ----------------------------------------------------------------------------
952 wxLogInterposerTemp::wxLogInterposerTemp()
959 #pragma warning(default:4355)
962 // ============================================================================
963 // Global functions/variables
964 // ============================================================================
966 // ----------------------------------------------------------------------------
968 // ----------------------------------------------------------------------------
970 bool wxLog::ms_bRepetCounting
= false;
971 wxString
wxLog::ms_prevString
;
972 unsigned int wxLog::ms_prevCounter
= 0;
973 time_t wxLog::ms_prevTimeStamp
= 0;
974 wxLogLevel
wxLog::ms_prevLevel
;
976 wxLog
*wxLog::ms_pLogger
= NULL
;
977 bool wxLog::ms_doLog
= true;
978 bool wxLog::ms_bAutoCreate
= true;
979 bool wxLog::ms_bVerbose
= false;
981 wxLogLevel
wxLog::ms_logLevel
= wxLOG_Max
; // log everything by default
983 size_t wxLog::ms_suspendCount
= 0;
985 wxString
wxLog::ms_timestamp(wxS("%X")); // time only, no date
987 #if WXWIN_COMPATIBILITY_2_8
988 wxTraceMask
wxLog::ms_ulTraceMask
= (wxTraceMask
)0;
989 #endif // wxDEBUG_LEVEL
991 wxArrayString
wxLog::ms_aTraceMasks
;
993 // ----------------------------------------------------------------------------
994 // stdout error logging helper
995 // ----------------------------------------------------------------------------
997 // helper function: wraps the message and justifies it under given position
998 // (looks more pretty on the terminal). Also adds newline at the end.
1000 // TODO this is now disabled until I find a portable way of determining the
1001 // terminal window size (ok, I found it but does anybody really cares?)
1002 #ifdef LOG_PRETTY_WRAP
1003 static void wxLogWrap(FILE *f
, const char *pszPrefix
, const char *psz
)
1005 size_t nMax
= 80; // FIXME
1006 size_t nStart
= strlen(pszPrefix
);
1007 fputs(pszPrefix
, f
);
1010 while ( *psz
!= '\0' ) {
1011 for ( n
= nStart
; (n
< nMax
) && (*psz
!= '\0'); n
++ )
1015 if ( *psz
!= '\0' ) {
1017 for ( n
= 0; n
< nStart
; n
++ )
1020 // as we wrapped, squeeze all white space
1021 while ( isspace(*psz
) )
1028 #endif //LOG_PRETTY_WRAP
1030 // ----------------------------------------------------------------------------
1031 // error code/error message retrieval functions
1032 // ----------------------------------------------------------------------------
1034 // get error code from syste
1035 unsigned long wxSysErrorCode()
1037 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
1038 return ::GetLastError();
1044 // get error message from system
1045 const wxChar
*wxSysErrorMsg(unsigned long nErrCode
)
1047 if ( nErrCode
== 0 )
1048 nErrCode
= wxSysErrorCode();
1050 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
1051 static wxChar s_szBuf
[1024];
1053 // get error message from system
1055 if ( ::FormatMessage
1057 FORMAT_MESSAGE_ALLOCATE_BUFFER
| FORMAT_MESSAGE_FROM_SYSTEM
,
1060 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
1066 // if this happens, something is seriously wrong, so don't use _() here
1068 wxSprintf(s_szBuf
, wxS("unknown error %lx"), nErrCode
);
1073 // copy it to our buffer and free memory
1074 // Crashes on SmartPhone (FIXME)
1075 #if !defined(__SMARTPHONE__) /* of WinCE */
1078 wxStrlcpy(s_szBuf
, (const wxChar
*)lpMsgBuf
, WXSIZEOF(s_szBuf
));
1080 LocalFree(lpMsgBuf
);
1082 // returned string is capitalized and ended with '\r\n' - bad
1083 s_szBuf
[0] = (wxChar
)wxTolower(s_szBuf
[0]);
1084 size_t len
= wxStrlen(s_szBuf
);
1087 if ( s_szBuf
[len
- 2] == wxS('\r') )
1088 s_szBuf
[len
- 2] = wxS('\0');
1092 #endif // !__SMARTPHONE__
1094 s_szBuf
[0] = wxS('\0');
1100 static wchar_t s_wzBuf
[1024];
1101 wxConvCurrent
->MB2WC(s_wzBuf
, strerror((int)nErrCode
),
1102 WXSIZEOF(s_wzBuf
) - 1);
1105 return strerror((int)nErrCode
);
1107 #endif // __WXMSW__/!__WXMSW__