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
57 #include "wx/msw/wince/time.h"
60 #if defined(__WINDOWS__)
61 #include "wx/msw/private.h" // includes windows.h
64 // ----------------------------------------------------------------------------
65 // non member functions
66 // ----------------------------------------------------------------------------
68 // define this to enable wrapping of log messages
69 //#define LOG_PRETTY_WRAP
71 #ifdef LOG_PRETTY_WRAP
72 static void wxLogWrap(FILE *f
, const char *pszPrefix
, const char *psz
);
75 // ============================================================================
77 // ============================================================================
79 // ----------------------------------------------------------------------------
80 // implementation of Log functions
82 // NB: unfortunately we need all these distinct functions, we can't make them
83 // macros and not all compilers inline vararg functions.
84 // ----------------------------------------------------------------------------
86 // generic log function
87 void wxVLogGeneric(wxLogLevel level
, const wxString
& format
, va_list argptr
)
89 if ( wxLog::IsEnabled() ) {
90 wxLog::OnLog(level
, wxString::FormatV(format
, argptr
), time(NULL
));
94 #if !wxUSE_UTF8_LOCALE_ONLY
95 void wxDoLogGenericWchar(wxLogLevel level
, const wxChar
*format
, ...)
98 va_start(argptr
, format
);
99 wxVLogGeneric(level
, format
, argptr
);
102 #endif // wxUSE_UTF8_LOCALE_ONLY
104 #if wxUSE_UNICODE_UTF8
105 void wxDoLogGenericUtf8(wxLogLevel level
, const char *format
, ...)
108 va_start(argptr
, format
);
109 wxVLogGeneric(level
, format
, argptr
);
112 #endif // wxUSE_UNICODE_UTF8
114 #if !wxUSE_UTF8_LOCALE_ONLY
115 #define IMPLEMENT_LOG_FUNCTION_WCHAR(level) \
116 void wxDoLog##level##Wchar(const wxChar *format, ...) \
119 va_start(argptr, format); \
120 wxVLog##level(format, argptr); \
124 #define IMPLEMENT_LOG_FUNCTION_WCHAR(level)
127 #if wxUSE_UNICODE_UTF8
128 #define IMPLEMENT_LOG_FUNCTION_UTF8(level) \
129 void wxDoLog##level##Utf8(const char *format, ...) \
132 va_start(argptr, format); \
133 wxVLog##level(format, argptr); \
137 #define IMPLEMENT_LOG_FUNCTION_UTF8(level)
140 #define IMPLEMENT_LOG_FUNCTION(level) \
141 void wxVLog##level(const wxString& format, va_list argptr) \
143 if ( wxLog::IsEnabled() ) { \
144 wxLog::OnLog(wxLOG_##level, \
145 wxString::FormatV(format, argptr), time(NULL)); \
148 IMPLEMENT_LOG_FUNCTION_WCHAR(level) \
149 IMPLEMENT_LOG_FUNCTION_UTF8(level)
151 IMPLEMENT_LOG_FUNCTION(Error
)
152 IMPLEMENT_LOG_FUNCTION(Warning
)
153 IMPLEMENT_LOG_FUNCTION(Message
)
154 IMPLEMENT_LOG_FUNCTION(Info
)
155 IMPLEMENT_LOG_FUNCTION(Status
)
157 void wxSafeShowMessage(const wxString
& title
, const wxString
& text
)
160 ::MessageBox(NULL
, text
.wx_str(), title
.wx_str(), MB_OK
| MB_ICONSTOP
);
162 wxFprintf(stderr
, _T("%s: %s\n"), title
.c_str(), text
.c_str());
167 // fatal errors can't be suppressed nor handled by the custom log target and
168 // always terminate the program
169 void wxVLogFatalError(const wxString
& format
, va_list argptr
)
171 wxSafeShowMessage(_T("Fatal Error"), wxString::FormatV(format
, argptr
));
180 #if !wxUSE_UTF8_LOCALE_ONLY
181 void wxDoLogFatalErrorWchar(const wxChar
*format
, ...)
184 va_start(argptr
, format
);
185 wxVLogFatalError(format
, argptr
);
187 // some compilers warn about unreachable code and it shouldn't matter
188 // for the others anyhow...
191 #endif // wxUSE_UTF8_LOCALE_ONLY
193 #if wxUSE_UNICODE_UTF8
194 void wxDoLogFatalErrorUtf8(const char *format
, ...)
197 va_start(argptr
, format
);
198 wxVLogFatalError(format
, argptr
);
200 // some compilers warn about unreachable code and it shouldn't matter
201 // for the others anyhow...
204 #endif // wxUSE_UNICODE_UTF8
206 // same as info, but only if 'verbose' mode is on
207 void wxVLogVerbose(const wxString
& format
, va_list argptr
)
209 if ( wxLog::IsEnabled() ) {
210 if ( wxLog::GetActiveTarget() != NULL
&& wxLog::GetVerbose() ) {
211 wxLog::OnLog(wxLOG_Info
,
212 wxString::FormatV(format
, argptr
), time(NULL
));
217 #if !wxUSE_UTF8_LOCALE_ONLY
218 void wxDoLogVerboseWchar(const wxChar
*format
, ...)
221 va_start(argptr
, format
);
222 wxVLogVerbose(format
, argptr
);
225 #endif // !wxUSE_UTF8_LOCALE_ONLY
227 #if wxUSE_UNICODE_UTF8
228 void wxDoLogVerboseUtf8(const char *format
, ...)
231 va_start(argptr
, format
);
232 wxVLogVerbose(format
, argptr
);
235 #endif // wxUSE_UNICODE_UTF8
240 #if !wxUSE_UTF8_LOCALE_ONLY
241 #define IMPLEMENT_LOG_DEBUG_FUNCTION_WCHAR(level) \
242 void wxDoLog##level##Wchar(const wxChar *format, ...) \
245 va_start(argptr, format); \
246 wxVLog##level(format, argptr); \
250 #define IMPLEMENT_LOG_DEBUG_FUNCTION_WCHAR(level)
253 #if wxUSE_UNICODE_UTF8
254 #define IMPLEMENT_LOG_DEBUG_FUNCTION_UTF8(level) \
255 void wxDoLog##level##Utf8(const char *format, ...) \
258 va_start(argptr, format); \
259 wxVLog##level(format, argptr); \
263 #define IMPLEMENT_LOG_DEBUG_FUNCTION_UTF8(level)
266 #define IMPLEMENT_LOG_DEBUG_FUNCTION(level) \
267 void wxVLog##level(const wxString& format, va_list argptr) \
269 if ( wxLog::IsEnabled() ) { \
270 wxLog::OnLog(wxLOG_##level, \
271 wxString::FormatV(format, argptr), time(NULL)); \
274 IMPLEMENT_LOG_DEBUG_FUNCTION_WCHAR(level) \
275 IMPLEMENT_LOG_DEBUG_FUNCTION_UTF8(level)
278 void wxVLogTrace(const wxString
& mask
, const wxString
& format
, va_list argptr
)
280 if ( wxLog::IsEnabled() && wxLog::IsAllowedTraceMask(mask
) ) {
282 msg
<< _T("(") << mask
<< _T(") ") << wxString::FormatV(format
, argptr
);
284 wxLog::OnLog(wxLOG_Trace
, msg
, time(NULL
));
288 #if !wxUSE_UTF8_LOCALE_ONLY
289 void wxDoLogTraceWchar(const wxString
& mask
, const wxChar
*format
, ...)
292 va_start(argptr
, format
);
293 wxVLogTrace(mask
, format
, argptr
);
296 #endif // !wxUSE_UTF8_LOCALE_ONLY
298 #if wxUSE_UNICODE_UTF8
299 void wxDoLogTraceUtf8(const wxString
& mask
, const char *format
, ...)
302 va_start(argptr
, format
);
303 wxVLogTrace(mask
, format
, argptr
);
306 #endif // wxUSE_UNICODE_UTF8
308 void wxVLogTrace(wxTraceMask mask
, const wxString
& format
, va_list argptr
)
310 // we check that all of mask bits are set in the current mask, so
311 // that wxLogTrace(wxTraceRefCount | wxTraceOle) will only do something
312 // if both bits are set.
313 if ( wxLog::IsEnabled() && ((wxLog::GetTraceMask() & mask
) == mask
) ) {
314 wxLog::OnLog(wxLOG_Trace
, wxString::FormatV(format
, argptr
), time(NULL
));
318 #if !wxUSE_UTF8_LOCALE_ONLY
319 void wxDoLogTraceWchar(wxTraceMask mask
, const wxChar
*format
, ...)
322 va_start(argptr
, format
);
323 wxVLogTrace(mask
, format
, argptr
);
326 #endif // !wxUSE_UTF8_LOCALE_ONLY
328 #if wxUSE_UNICODE_UTF8
329 void wxDoLogTraceUtf8(wxTraceMask mask
, const char *format
, ...)
332 va_start(argptr
, format
);
333 wxVLogTrace(mask
, format
, argptr
);
336 #endif // wxUSE_UNICODE_UTF8
339 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
340 void wxDoLogTraceWchar(int mask
, const wxChar
*format
, ...)
343 va_start(argptr
, format
);
344 wxVLogTrace(mask
, format
, argptr
);
348 void wxDoLogTraceWchar(const char *mask
, const wxChar
*format
, ...)
351 va_start(argptr
, format
);
352 wxVLogTrace(mask
, format
, argptr
);
356 void wxDoLogTraceWchar(const wchar_t *mask
, const wxChar
*format
, ...)
359 va_start(argptr
, format
);
360 wxVLogTrace(mask
, format
, argptr
);
364 void wxVLogTrace(int mask
, const wxString
& format
, va_list argptr
)
365 { wxVLogTrace((wxTraceMask
)mask
, format
, argptr
); }
366 void wxVLogTrace(const char *mask
, const wxString
& format
, va_list argptr
)
367 { wxVLogTrace(wxString(mask
), format
, argptr
); }
368 void wxVLogTrace(const wchar_t *mask
, const wxString
& format
, va_list argptr
)
369 { wxVLogTrace(wxString(mask
), format
, argptr
); }
370 #endif // __WATCOMC__
373 #define IMPLEMENT_LOG_DEBUG_FUNCTION(level)
376 IMPLEMENT_LOG_DEBUG_FUNCTION(Debug
)
377 IMPLEMENT_LOG_DEBUG_FUNCTION(Trace
)
379 // wxLogSysError: one uses the last error code, for other you must give it
382 // return the system error message description
383 static inline wxString
wxLogSysErrorHelper(long err
)
385 return wxString::Format(_(" (error %ld: %s)"), err
, wxSysErrorMsg(err
));
388 void WXDLLEXPORT
wxVLogSysError(const wxString
& format
, va_list argptr
)
390 wxVLogSysError(wxSysErrorCode(), format
, argptr
);
393 #if !wxUSE_UTF8_LOCALE_ONLY
394 void WXDLLEXPORT
wxDoLogSysErrorWchar(const wxChar
*format
, ...)
397 va_start(argptr
, format
);
398 wxVLogSysError(format
, argptr
);
401 #endif // !wxUSE_UTF8_LOCALE_ONLY
403 #if wxUSE_UNICODE_UTF8
404 void WXDLLEXPORT
wxDoLogSysErrorUtf8(const char *format
, ...)
407 va_start(argptr
, format
);
408 wxVLogSysError(format
, argptr
);
411 #endif // wxUSE_UNICODE_UTF8
413 void WXDLLEXPORT
wxVLogSysError(long err
, const wxString
& format
, va_list argptr
)
415 if ( wxLog::IsEnabled() ) {
416 wxLog::OnLog(wxLOG_Error
,
417 wxString::FormatV(format
, argptr
) + wxLogSysErrorHelper(err
),
422 #if !wxUSE_UTF8_LOCALE_ONLY
423 void WXDLLEXPORT
wxDoLogSysErrorWchar(long lErrCode
, const wxChar
*format
, ...)
426 va_start(argptr
, format
);
427 wxVLogSysError(lErrCode
, format
, argptr
);
430 #endif // !wxUSE_UTF8_LOCALE_ONLY
432 #if wxUSE_UNICODE_UTF8
433 void WXDLLEXPORT
wxDoLogSysErrorUtf8(long lErrCode
, const char *format
, ...)
436 va_start(argptr
, format
);
437 wxVLogSysError(lErrCode
, format
, argptr
);
440 #endif // wxUSE_UNICODE_UTF8
443 // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
444 void WXDLLEXPORT
wxDoLogSysErrorWchar(unsigned long lErrCode
, const wxChar
*format
, ...)
447 va_start(argptr
, format
);
448 wxVLogSysError(lErrCode
, format
, argptr
);
452 void WXDLLEXPORT
wxVLogSysError(unsigned long err
, const wxString
& format
, va_list argptr
)
453 { wxVLogSysError((long)err
, format
, argptr
); }
454 #endif // __WATCOMC__
456 // ----------------------------------------------------------------------------
457 // wxLog class implementation
458 // ----------------------------------------------------------------------------
460 unsigned wxLog::LogLastRepetitionCountIfNeeded()
462 wxCRIT_SECT_LOCKER(lock
, ms_prevCS
);
464 const unsigned count
= ms_prevCounter
;
466 if ( ms_prevCounter
)
470 msg
.Printf(wxPLURAL("The previous message repeated once.",
471 "The previous message repeated %lu times.",
475 msg
.Printf(wxT("The previous message was repeated %lu times."),
479 ms_prevString
.clear();
480 DoLog(ms_prevLevel
, msg
, ms_prevTimeStamp
);
488 LogLastRepetitionCountIfNeeded();
492 void wxLog::OnLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
494 if ( IsEnabled() && ms_logLevel
>= level
)
496 wxLog
*pLogger
= GetActiveTarget();
499 if ( GetRepetitionCounting() )
501 wxCRIT_SECT_LOCKER(lock
, ms_prevCS
);
503 if ( szString
== ms_prevString
)
507 // nothing else to do, in particular, don't log the
512 pLogger
->LogLastRepetitionCountIfNeeded();
514 // reset repetition counter for a new message
515 ms_prevString
= szString
;
516 ms_prevLevel
= level
;
517 ms_prevTimeStamp
= t
;
520 pLogger
->DoLog(level
, szString
, t
);
525 // deprecated function
526 #if WXWIN_COMPATIBILITY_2_6
528 wxChar
*wxLog::SetLogBuffer(wxChar
* WXUNUSED(buf
), size_t WXUNUSED(size
))
533 #endif // WXWIN_COMPATIBILITY_2_6
535 #if WXWIN_COMPATIBILITY_2_8
537 void wxLog::DoLog(wxLogLevel
WXUNUSED(level
),
538 const char *WXUNUSED(szString
),
543 void wxLog::DoLog(wxLogLevel
WXUNUSED(level
),
544 const wchar_t *WXUNUSED(wzString
),
549 #endif // WXWIN_COMPATIBILITY_2_8
551 wxLog
*wxLog::GetActiveTarget()
553 if ( ms_bAutoCreate
&& ms_pLogger
== NULL
) {
554 // prevent infinite recursion if someone calls wxLogXXX() from
555 // wxApp::CreateLogTarget()
556 static bool s_bInGetActiveTarget
= false;
557 if ( !s_bInGetActiveTarget
) {
558 s_bInGetActiveTarget
= true;
560 // ask the application to create a log target for us
561 if ( wxTheApp
!= NULL
)
562 ms_pLogger
= wxTheApp
->GetTraits()->CreateLogTarget();
564 ms_pLogger
= new wxLogStderr
;
566 s_bInGetActiveTarget
= false;
568 // do nothing if it fails - what can we do?
575 wxLog
*wxLog::SetActiveTarget(wxLog
*pLogger
)
577 if ( ms_pLogger
!= NULL
) {
578 // flush the old messages before changing because otherwise they might
579 // get lost later if this target is not restored
583 wxLog
*pOldLogger
= ms_pLogger
;
584 ms_pLogger
= pLogger
;
589 void wxLog::DontCreateOnDemand()
591 ms_bAutoCreate
= false;
593 // this is usually called at the end of the program and we assume that it
594 // is *always* called at the end - so we free memory here to avoid false
595 // memory leak reports from wxWin memory tracking code
599 void wxLog::DoCreateOnDemand()
601 ms_bAutoCreate
= true;
604 void wxLog::RemoveTraceMask(const wxString
& str
)
606 int index
= ms_aTraceMasks
.Index(str
);
607 if ( index
!= wxNOT_FOUND
)
608 ms_aTraceMasks
.RemoveAt((size_t)index
);
611 void wxLog::ClearTraceMasks()
613 ms_aTraceMasks
.Clear();
616 void wxLog::TimeStamp(wxString
*str
)
619 if ( !ms_timestamp
.empty() )
623 (void)time(&timeNow
);
626 wxStrftime(buf
, WXSIZEOF(buf
),
627 ms_timestamp
, wxLocaltime_r(&timeNow
, &tm
));
630 *str
<< buf
<< wxT(": ");
632 #endif // wxUSE_DATETIME
635 void wxLog::DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
637 #if WXWIN_COMPATIBILITY_2_8
638 // DoLog() signature changed since 2.8, so we call the old versions here
639 // so that existing custom log classes still work:
640 DoLog(level
, (const char*)szString
.mb_str(), t
);
641 DoLog(level
, (const wchar_t*)szString
.wc_str(), t
);
645 case wxLOG_FatalError
:
646 LogString(_("Fatal error: ") + szString
, t
);
647 LogString(_("Program aborted."), t
);
657 LogString(_("Error: ") + szString
, t
);
661 LogString(_("Warning: ") + szString
, t
);
668 default: // log unknown log levels too
669 LogString(szString
, t
);
676 wxString msg
= level
== wxLOG_Trace
? wxT("Trace: ")
686 void wxLog::DoLogString(const wxString
& szString
, time_t t
)
688 #if WXWIN_COMPATIBILITY_2_8
689 // DoLogString() signature changed since 2.8, so we call the old versions
690 // here so that existing custom log classes still work; unfortunately this
691 // also means that we can't have the wxFAIL_MSG below in compat mode
692 DoLogString((const char*)szString
.mb_str(), t
);
693 DoLogString((const wchar_t*)szString
.wc_str(), t
);
695 wxFAIL_MSG(wxT("DoLogString must be overriden if it's called."));
696 wxUnusedVar(szString
);
703 // nothing to do here
706 /*static*/ bool wxLog::IsAllowedTraceMask(const wxString
& mask
)
708 for ( wxArrayString::iterator it
= ms_aTraceMasks
.begin(),
709 en
= ms_aTraceMasks
.end();
716 // ----------------------------------------------------------------------------
717 // wxLogBuffer implementation
718 // ----------------------------------------------------------------------------
720 void wxLogBuffer::Flush()
722 if ( !m_str
.empty() )
724 wxMessageOutputBest out
;
725 out
.Printf(_T("%s"), m_str
.c_str());
730 void wxLogBuffer::DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
737 // don't put debug messages in the buffer, we don't want to show
738 // them to the user in a msg box, log them immediately
744 wxMessageOutputDebug dbgout
;
745 dbgout
.Printf(_T("%s\n"), str
.c_str());
747 #endif // __WXDEBUG__
751 wxLog::DoLog(level
, szString
, t
);
755 void wxLogBuffer::DoLogString(const wxString
& szString
, time_t WXUNUSED(t
))
757 m_str
<< szString
<< _T("\n");
760 // ----------------------------------------------------------------------------
761 // wxLogStderr class implementation
762 // ----------------------------------------------------------------------------
764 wxLogStderr::wxLogStderr(FILE *fp
)
772 void wxLogStderr::DoLogString(const wxString
& szString
, time_t WXUNUSED(t
))
779 wxFputc(_T('\n'), m_fp
);
782 // under GUI systems such as Windows or Mac, programs usually don't have
783 // stderr at all, so show the messages also somewhere else, typically in
784 // the debugger window so that they go at least somewhere instead of being
786 if ( m_fp
== stderr
)
788 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
789 if ( traits
&& !traits
->HasStderr() )
791 wxMessageOutputDebug dbgout
;
792 dbgout
.Printf(_T("%s\n"), str
.c_str());
797 // ----------------------------------------------------------------------------
798 // wxLogStream implementation
799 // ----------------------------------------------------------------------------
801 #if wxUSE_STD_IOSTREAM
802 #include "wx/ioswrap.h"
803 wxLogStream::wxLogStream(wxSTD ostream
*ostr
)
806 m_ostr
= &wxSTD cerr
;
811 void wxLogStream::DoLogString(const wxString
& szString
, time_t WXUNUSED(t
))
815 (*m_ostr
) << stamp
<< szString
<< wxSTD endl
;
817 #endif // wxUSE_STD_IOSTREAM
819 // ----------------------------------------------------------------------------
821 // ----------------------------------------------------------------------------
823 wxLogChain::wxLogChain(wxLog
*logger
)
825 m_bPassMessages
= true;
828 m_logOld
= wxLog::SetActiveTarget(this);
831 wxLogChain::~wxLogChain()
835 if ( m_logNew
!= this )
839 void wxLogChain::SetLog(wxLog
*logger
)
841 if ( m_logNew
!= this )
847 void wxLogChain::Flush()
852 // be careful to avoid infinite recursion
853 if ( m_logNew
&& m_logNew
!= this )
857 void wxLogChain::DoLog(wxLogLevel level
, const wxString
& szString
, time_t t
)
859 // let the previous logger show it
860 if ( m_logOld
&& IsPassingMessages() )
862 // bogus cast just to access protected DoLog
863 ((wxLogChain
*)m_logOld
)->DoLog(level
, szString
, t
);
866 if ( m_logNew
&& m_logNew
!= this )
869 ((wxLogChain
*)m_logNew
)->DoLog(level
, szString
, t
);
874 // "'this' : used in base member initializer list" - so what?
875 #pragma warning(disable:4355)
878 // ----------------------------------------------------------------------------
880 // ----------------------------------------------------------------------------
882 wxLogInterposer::wxLogInterposer()
887 // ----------------------------------------------------------------------------
888 // wxLogInterposerTemp
889 // ----------------------------------------------------------------------------
891 wxLogInterposerTemp::wxLogInterposerTemp()
898 #pragma warning(default:4355)
901 // ============================================================================
902 // Global functions/variables
903 // ============================================================================
905 // ----------------------------------------------------------------------------
907 // ----------------------------------------------------------------------------
910 wxCriticalSection
wxLog::ms_prevCS
;
911 #endif // wxUSE_THREADS
912 bool wxLog::ms_bRepetCounting
= false;
913 wxString
wxLog::ms_prevString
;
914 unsigned int wxLog::ms_prevCounter
= 0;
915 time_t wxLog::ms_prevTimeStamp
= 0;
916 wxLogLevel
wxLog::ms_prevLevel
;
918 wxLog
*wxLog::ms_pLogger
= (wxLog
*)NULL
;
919 bool wxLog::ms_doLog
= true;
920 bool wxLog::ms_bAutoCreate
= true;
921 bool wxLog::ms_bVerbose
= false;
923 wxLogLevel
wxLog::ms_logLevel
= wxLOG_Max
; // log everything by default
925 size_t wxLog::ms_suspendCount
= 0;
927 wxString
wxLog::ms_timestamp(wxT("%X")); // time only, no date
929 wxTraceMask
wxLog::ms_ulTraceMask
= (wxTraceMask
)0;
930 wxArrayString
wxLog::ms_aTraceMasks
;
932 // ----------------------------------------------------------------------------
933 // stdout error logging helper
934 // ----------------------------------------------------------------------------
936 // helper function: wraps the message and justifies it under given position
937 // (looks more pretty on the terminal). Also adds newline at the end.
939 // TODO this is now disabled until I find a portable way of determining the
940 // terminal window size (ok, I found it but does anybody really cares?)
941 #ifdef LOG_PRETTY_WRAP
942 static void wxLogWrap(FILE *f
, const char *pszPrefix
, const char *psz
)
944 size_t nMax
= 80; // FIXME
945 size_t nStart
= strlen(pszPrefix
);
949 while ( *psz
!= '\0' ) {
950 for ( n
= nStart
; (n
< nMax
) && (*psz
!= '\0'); n
++ )
954 if ( *psz
!= '\0' ) {
956 for ( n
= 0; n
< nStart
; n
++ )
959 // as we wrapped, squeeze all white space
960 while ( isspace(*psz
) )
967 #endif //LOG_PRETTY_WRAP
969 // ----------------------------------------------------------------------------
970 // error code/error message retrieval functions
971 // ----------------------------------------------------------------------------
973 // get error code from syste
974 unsigned long wxSysErrorCode()
976 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
977 return ::GetLastError();
983 // get error message from system
984 const wxChar
*wxSysErrorMsg(unsigned long nErrCode
)
987 nErrCode
= wxSysErrorCode();
989 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
990 static wxChar s_szBuf
[1024];
992 // get error message from system
996 FORMAT_MESSAGE_ALLOCATE_BUFFER
| FORMAT_MESSAGE_FROM_SYSTEM
,
999 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
1005 // if this happens, something is seriously wrong, so don't use _() here
1007 wxSprintf(s_szBuf
, _T("unknown error %lx"), nErrCode
);
1012 // copy it to our buffer and free memory
1013 // Crashes on SmartPhone (FIXME)
1014 #if !defined(__SMARTPHONE__) /* of WinCE */
1017 wxStrncpy(s_szBuf
, (const wxChar
*)lpMsgBuf
, WXSIZEOF(s_szBuf
) - 1);
1018 s_szBuf
[WXSIZEOF(s_szBuf
) - 1] = wxT('\0');
1020 LocalFree(lpMsgBuf
);
1022 // returned string is capitalized and ended with '\r\n' - bad
1023 s_szBuf
[0] = (wxChar
)wxTolower(s_szBuf
[0]);
1024 size_t len
= wxStrlen(s_szBuf
);
1027 if ( s_szBuf
[len
- 2] == wxT('\r') )
1028 s_szBuf
[len
- 2] = wxT('\0');
1032 #endif // !__SMARTPHONE__
1034 s_szBuf
[0] = wxT('\0');
1040 static wchar_t s_wzBuf
[1024];
1041 wxConvCurrent
->MB2WC(s_wzBuf
, strerror((int)nErrCode
),
1042 WXSIZEOF(s_wzBuf
) - 1);
1045 return strerror((int)nErrCode
);
1047 #endif // __WXMSW__/!__WXMSW__