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
66 #undef wxLOG_COMPONENT
67 const char *wxLOG_COMPONENT
= "";
71 // define static functions providing access to the critical sections we use
72 // instead of just using static critical section variables as log functions may
73 // be used during static initialization and while this is certainly not
74 // advisable it's still better to not crash (as we'd do if we used a yet
75 // uninitialized critical section) if it happens
77 static inline wxCriticalSection
& GetTraceMaskCS()
79 static wxCriticalSection s_csTrace
;
84 static inline wxCriticalSection
& GetPreviousLogCS()
86 static wxCriticalSection s_csPrev
;
91 static inline wxCriticalSection
& GetLevelsCS()
93 static wxCriticalSection s_csLevels
;
98 #endif // wxUSE_THREADS
100 // ----------------------------------------------------------------------------
101 // non member functions
102 // ----------------------------------------------------------------------------
104 // define this to enable wrapping of log messages
105 //#define LOG_PRETTY_WRAP
107 #ifdef LOG_PRETTY_WRAP
108 static void wxLogWrap(FILE *f
, const char *pszPrefix
, const char *psz
);
111 // ----------------------------------------------------------------------------
113 // ----------------------------------------------------------------------------
118 // this struct is used to store information about the previous log message used
119 // by OnLog() to (optionally) avoid logging multiple copies of the same message
120 struct PreviousLogInfo
128 // previous message itself
134 // other information about it
135 wxLogRecordInfo info
;
137 // the number of times it was already repeated
138 unsigned numRepeated
;
141 PreviousLogInfo gs_prevLog
;
144 // map containing all components for which log level was explicitly set
146 // NB: all accesses to it must be protected by GetLevelsCS() critical section
147 wxStringToNumHashMap gs_componentLevels
;
149 } // anonymous namespace
151 // ============================================================================
153 // ============================================================================
155 // ----------------------------------------------------------------------------
156 // helper global functions
157 // ----------------------------------------------------------------------------
159 void wxSafeShowMessage(const wxString
& title
, const wxString
& text
)
162 ::MessageBox(NULL
, text
.t_str(), title
.t_str(), MB_OK
| MB_ICONSTOP
);
164 wxFprintf(stderr
, wxS("%s: %s\n"), title
.c_str(), text
.c_str());
169 // ----------------------------------------------------------------------------
170 // wxLog class implementation
171 // ----------------------------------------------------------------------------
173 unsigned wxLog::LogLastRepeatIfNeeded()
175 wxCRIT_SECT_LOCKER(lock
, GetPreviousLogCS());
177 return LogLastRepeatIfNeededUnlocked();
180 unsigned wxLog::LogLastRepeatIfNeededUnlocked()
182 const unsigned count
= gs_prevLog
.numRepeated
;
184 if ( gs_prevLog
.numRepeated
)
188 msg
.Printf(wxPLURAL("The previous message repeated once.",
189 "The previous message repeated %lu times.",
190 gs_prevLog
.numRepeated
),
191 gs_prevLog
.numRepeated
);
193 msg
.Printf(wxS("The previous message was repeated %lu times."),
194 gs_prevLog
.numRepeated
);
196 gs_prevLog
.numRepeated
= 0;
197 gs_prevLog
.msg
.clear();
198 DoLogRecord(gs_prevLog
.level
, msg
, gs_prevLog
.info
);
206 // Flush() must be called before destroying the object as otherwise some
207 // messages could be lost
208 if ( gs_prevLog
.numRepeated
)
210 wxMessageOutputDebug().Printf
212 wxS("Last repeated message (\"%s\", %lu times) wasn't output"),
214 gs_prevLog
.numRepeated
219 // ----------------------------------------------------------------------------
220 // wxLog logging functions
221 // ----------------------------------------------------------------------------
225 wxLog::OnLog(wxLogLevel level
, const wxString
& msg
, time_t t
)
227 wxLogRecordInfo info
;
230 info
.threadId
= wxThread::GetCurrentId();
231 #endif // wxUSE_THREADS
233 OnLog(level
, msg
, info
);
238 wxLog::OnLog(wxLogLevel level
,
240 const wxLogRecordInfo
& info
)
242 // fatal errors can't be suppressed nor handled by the custom log target
243 // and always terminate the program
244 if ( level
== wxLOG_FatalError
)
246 wxSafeShowMessage(wxS("Fatal Error"), msg
);
255 wxLog
*pLogger
= GetActiveTarget();
259 if ( GetRepetitionCounting() )
261 wxCRIT_SECT_LOCKER(lock
, GetPreviousLogCS());
263 if ( msg
== gs_prevLog
.msg
)
265 gs_prevLog
.numRepeated
++;
267 // nothing else to do, in particular, don't log the
272 pLogger
->LogLastRepeatIfNeededUnlocked();
274 // reset repetition counter for a new message
275 gs_prevLog
.msg
= msg
;
276 gs_prevLog
.level
= level
;
277 gs_prevLog
.info
= info
;
280 // handle extra data which may be passed to us by wxLogXXX()
281 wxString prefix
, suffix
;
283 if ( info
.GetNumValue(wxLOG_KEY_SYS_ERROR_CODE
, &num
) )
285 long err
= static_cast<long>(num
);
287 err
= wxSysErrorCode();
289 suffix
.Printf(_(" (error %ld: %s)"), err
, wxSysErrorMsg(err
));
294 if ( level
== wxLOG_Trace
&& info
.GetStrValue(wxLOG_KEY_TRACE_MASK
, &str
) )
296 prefix
= "(" + str
+ ") ";
298 #endif // wxUSE_LOG_TRACE
300 pLogger
->DoLogRecord(level
, prefix
+ msg
+ suffix
, info
);
303 void wxLog::DoLogRecord(wxLogLevel level
,
305 const wxLogRecordInfo
& info
)
307 #if WXWIN_COMPATIBILITY_2_8
308 // call the old DoLog() to ensure that existing custom log classes still
311 // as the user code could have defined it as either taking "const char *"
312 // (in ANSI build) or "const wxChar *" (in ANSI/Unicode), we have no choice
313 // but to call both of them
314 DoLog(level
, (const char*)msg
.mb_str(), info
.timestamp
);
315 DoLog(level
, (const wchar_t*)msg
.wc_str(), info
.timestamp
);
316 #endif // WXWIN_COMPATIBILITY_2_8
319 // TODO: it would be better to extract message formatting in a separate
320 // wxLogFormatter class but for now we hard code formatting here
324 // don't time stamp debug messages under MSW as debug viewers usually
325 // already have an option to do it
327 if ( level
!= wxLOG_Debug
&& level
!= wxLOG_Trace
)
331 // TODO: use the other wxLogRecordInfo fields
336 prefix
+= _("Error: ");
340 prefix
+= _("Warning: ");
343 // don't prepend "debug/trace" prefix under MSW as it goes to the debug
344 // window anyhow and so can't be confused with something else
347 // this prefix (as well as the one below) is intentionally not
348 // translated as nobody translates debug messages anyhow
358 DoLogTextAtLevel(level
, prefix
+ msg
);
361 void wxLog::DoLogTextAtLevel(wxLogLevel level
, const wxString
& msg
)
363 // we know about debug messages (because using wxMessageOutputDebug is the
364 // right thing to do in 99% of all cases and also for compatibility) but
365 // anything else needs to be handled in the derived class
366 if ( level
== wxLOG_Debug
|| level
== wxLOG_Trace
)
368 wxMessageOutputDebug().Output(msg
+ wxS('\n'));
376 void wxLog::DoLogText(const wxString
& WXUNUSED(msg
))
378 // in 2.8-compatible build the derived class might override DoLog() or
379 // DoLogString() instead so we can't have this assert there
380 #if !WXWIN_COMPATIBILITY_2_8
381 wxFAIL_MSG( "must be overridden if it is called" );
382 #endif // WXWIN_COMPATIBILITY_2_8
385 #if WXWIN_COMPATIBILITY_2_8
387 void wxLog::DoLog(wxLogLevel
WXUNUSED(level
), const char *szString
, time_t t
)
389 DoLogString(szString
, t
);
392 void wxLog::DoLog(wxLogLevel
WXUNUSED(level
), const wchar_t *wzString
, time_t t
)
394 DoLogString(wzString
, t
);
397 #endif // WXWIN_COMPATIBILITY_2_8
399 // ----------------------------------------------------------------------------
400 // wxLog active target management
401 // ----------------------------------------------------------------------------
403 wxLog
*wxLog::GetActiveTarget()
405 if ( ms_bAutoCreate
&& ms_pLogger
== NULL
) {
406 // prevent infinite recursion if someone calls wxLogXXX() from
407 // wxApp::CreateLogTarget()
408 static bool s_bInGetActiveTarget
= false;
409 if ( !s_bInGetActiveTarget
) {
410 s_bInGetActiveTarget
= true;
412 // ask the application to create a log target for us
413 if ( wxTheApp
!= NULL
)
414 ms_pLogger
= wxTheApp
->GetTraits()->CreateLogTarget();
416 ms_pLogger
= new wxLogStderr
;
418 s_bInGetActiveTarget
= false;
420 // do nothing if it fails - what can we do?
427 wxLog
*wxLog::SetActiveTarget(wxLog
*pLogger
)
429 if ( ms_pLogger
!= NULL
) {
430 // flush the old messages before changing because otherwise they might
431 // get lost later if this target is not restored
435 wxLog
*pOldLogger
= ms_pLogger
;
436 ms_pLogger
= pLogger
;
441 void wxLog::DontCreateOnDemand()
443 ms_bAutoCreate
= false;
445 // this is usually called at the end of the program and we assume that it
446 // is *always* called at the end - so we free memory here to avoid false
447 // memory leak reports from wxWin memory tracking code
451 void wxLog::DoCreateOnDemand()
453 ms_bAutoCreate
= true;
456 // ----------------------------------------------------------------------------
457 // wxLog components levels
458 // ----------------------------------------------------------------------------
461 void wxLog::SetComponentLevel(const wxString
& component
, wxLogLevel level
)
463 if ( component
.empty() )
469 wxCRIT_SECT_LOCKER(lock
, GetLevelsCS());
471 gs_componentLevels
[component
] = level
;
476 wxLogLevel
wxLog::GetComponentLevel(wxString component
)
478 wxCRIT_SECT_LOCKER(lock
, GetLevelsCS());
480 while ( !component
.empty() )
482 wxStringToNumHashMap::const_iterator
483 it
= gs_componentLevels
.find(component
);
484 if ( it
!= gs_componentLevels
.end() )
485 return static_cast<wxLogLevel
>(it
->second
);
487 component
= component
.BeforeLast('/');
490 return GetLogLevel();
493 // ----------------------------------------------------------------------------
495 // ----------------------------------------------------------------------------
497 void wxLog::AddTraceMask(const wxString
& str
)
499 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
501 ms_aTraceMasks
.push_back(str
);
504 void wxLog::RemoveTraceMask(const wxString
& str
)
506 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
508 int index
= ms_aTraceMasks
.Index(str
);
509 if ( index
!= wxNOT_FOUND
)
510 ms_aTraceMasks
.RemoveAt((size_t)index
);
513 void wxLog::ClearTraceMasks()
515 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
517 ms_aTraceMasks
.Clear();
520 /*static*/ bool wxLog::IsAllowedTraceMask(const wxString
& mask
)
522 wxCRIT_SECT_LOCKER(lock
, GetTraceMaskCS());
524 for ( wxArrayString::iterator it
= ms_aTraceMasks
.begin(),
525 en
= ms_aTraceMasks
.end();
535 // ----------------------------------------------------------------------------
536 // wxLog miscellaneous other methods
537 // ----------------------------------------------------------------------------
539 void wxLog::TimeStamp(wxString
*str
)
542 if ( !ms_timestamp
.empty() )
546 (void)time(&timeNow
);
549 wxStrftime(buf
, WXSIZEOF(buf
),
550 ms_timestamp
, wxLocaltime_r(&timeNow
, &tm
));
553 *str
<< buf
<< wxS(": ");
555 #endif // wxUSE_DATETIME
560 LogLastRepeatIfNeeded();
563 // ----------------------------------------------------------------------------
564 // wxLogBuffer implementation
565 // ----------------------------------------------------------------------------
567 void wxLogBuffer::Flush()
569 if ( !m_str
.empty() )
571 wxMessageOutputBest out
;
572 out
.Printf(wxS("%s"), m_str
.c_str());
577 void wxLogBuffer::DoLogTextAtLevel(wxLogLevel level
, const wxString
& msg
)
579 // don't put debug messages in the buffer, we don't want to show
580 // them to the user in a msg box, log them immediately
585 wxLog::DoLogTextAtLevel(level
, msg
);
589 m_str
<< msg
<< wxS("\n");
593 // ----------------------------------------------------------------------------
594 // wxLogStderr class implementation
595 // ----------------------------------------------------------------------------
597 wxLogStderr::wxLogStderr(FILE *fp
)
605 void wxLogStderr::DoLogText(const wxString
& msg
)
607 wxFputs(msg
+ '\n', m_fp
);
610 // under GUI systems such as Windows or Mac, programs usually don't have
611 // stderr at all, so show the messages also somewhere else, typically in
612 // the debugger window so that they go at least somewhere instead of being
614 if ( m_fp
== stderr
)
616 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
617 if ( traits
&& !traits
->HasStderr() )
619 wxMessageOutputDebug().Output(msg
+ wxS('\n'));
624 // ----------------------------------------------------------------------------
625 // wxLogStream implementation
626 // ----------------------------------------------------------------------------
628 #if wxUSE_STD_IOSTREAM
629 #include "wx/ioswrap.h"
630 wxLogStream::wxLogStream(wxSTD ostream
*ostr
)
633 m_ostr
= &wxSTD cerr
;
638 void wxLogStream::DoLogText(const wxString
& msg
)
640 (*m_ostr
) << msg
<< wxSTD endl
;
642 #endif // wxUSE_STD_IOSTREAM
644 // ----------------------------------------------------------------------------
646 // ----------------------------------------------------------------------------
648 wxLogChain::wxLogChain(wxLog
*logger
)
650 m_bPassMessages
= true;
653 m_logOld
= wxLog::SetActiveTarget(this);
656 wxLogChain::~wxLogChain()
660 if ( m_logNew
!= this )
664 void wxLogChain::SetLog(wxLog
*logger
)
666 if ( m_logNew
!= this )
672 void wxLogChain::Flush()
677 // be careful to avoid infinite recursion
678 if ( m_logNew
&& m_logNew
!= this )
682 void wxLogChain::DoLogRecord(wxLogLevel level
,
684 const wxLogRecordInfo
& info
)
686 // let the previous logger show it
687 if ( m_logOld
&& IsPassingMessages() )
688 m_logOld
->LogRecord(level
, msg
, info
);
690 // and also send it to the new one
691 if ( m_logNew
&& m_logNew
!= this )
692 m_logNew
->LogRecord(level
, msg
, info
);
696 // "'this' : used in base member initializer list" - so what?
697 #pragma warning(disable:4355)
700 // ----------------------------------------------------------------------------
702 // ----------------------------------------------------------------------------
704 wxLogInterposer::wxLogInterposer()
709 // ----------------------------------------------------------------------------
710 // wxLogInterposerTemp
711 // ----------------------------------------------------------------------------
713 wxLogInterposerTemp::wxLogInterposerTemp()
720 #pragma warning(default:4355)
723 // ============================================================================
724 // Global functions/variables
725 // ============================================================================
727 // ----------------------------------------------------------------------------
729 // ----------------------------------------------------------------------------
731 bool wxLog::ms_bRepetCounting
= false;
733 wxLog
*wxLog::ms_pLogger
= NULL
;
734 bool wxLog::ms_doLog
= true;
735 bool wxLog::ms_bAutoCreate
= true;
736 bool wxLog::ms_bVerbose
= false;
738 wxLogLevel
wxLog::ms_logLevel
= wxLOG_Max
; // log everything by default
740 size_t wxLog::ms_suspendCount
= 0;
742 wxString
wxLog::ms_timestamp(wxS("%X")); // time only, no date
744 #if WXWIN_COMPATIBILITY_2_8
745 wxTraceMask
wxLog::ms_ulTraceMask
= (wxTraceMask
)0;
746 #endif // wxDEBUG_LEVEL
748 wxArrayString
wxLog::ms_aTraceMasks
;
750 // ----------------------------------------------------------------------------
751 // stdout error logging helper
752 // ----------------------------------------------------------------------------
754 // helper function: wraps the message and justifies it under given position
755 // (looks more pretty on the terminal). Also adds newline at the end.
757 // TODO this is now disabled until I find a portable way of determining the
758 // terminal window size (ok, I found it but does anybody really cares?)
759 #ifdef LOG_PRETTY_WRAP
760 static void wxLogWrap(FILE *f
, const char *pszPrefix
, const char *psz
)
762 size_t nMax
= 80; // FIXME
763 size_t nStart
= strlen(pszPrefix
);
767 while ( *psz
!= '\0' ) {
768 for ( n
= nStart
; (n
< nMax
) && (*psz
!= '\0'); n
++ )
772 if ( *psz
!= '\0' ) {
774 for ( n
= 0; n
< nStart
; n
++ )
777 // as we wrapped, squeeze all white space
778 while ( isspace(*psz
) )
785 #endif //LOG_PRETTY_WRAP
787 // ----------------------------------------------------------------------------
788 // error code/error message retrieval functions
789 // ----------------------------------------------------------------------------
791 // get error code from syste
792 unsigned long wxSysErrorCode()
794 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
795 return ::GetLastError();
801 // get error message from system
802 const wxChar
*wxSysErrorMsg(unsigned long nErrCode
)
805 nErrCode
= wxSysErrorCode();
807 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
808 static wxChar s_szBuf
[1024];
810 // get error message from system
814 FORMAT_MESSAGE_ALLOCATE_BUFFER
| FORMAT_MESSAGE_FROM_SYSTEM
,
817 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
823 // if this happens, something is seriously wrong, so don't use _() here
825 wxSprintf(s_szBuf
, wxS("unknown error %lx"), nErrCode
);
830 // copy it to our buffer and free memory
831 // Crashes on SmartPhone (FIXME)
832 #if !defined(__SMARTPHONE__) /* of WinCE */
835 wxStrlcpy(s_szBuf
, (const wxChar
*)lpMsgBuf
, WXSIZEOF(s_szBuf
));
839 // returned string is capitalized and ended with '\r\n' - bad
840 s_szBuf
[0] = (wxChar
)wxTolower(s_szBuf
[0]);
841 size_t len
= wxStrlen(s_szBuf
);
844 if ( s_szBuf
[len
- 2] == wxS('\r') )
845 s_szBuf
[len
- 2] = wxS('\0');
849 #endif // !__SMARTPHONE__
851 s_szBuf
[0] = wxS('\0');
857 static wchar_t s_wzBuf
[1024];
858 wxConvCurrent
->MB2WC(s_wzBuf
, strerror((int)nErrCode
),
859 WXSIZEOF(s_wzBuf
) - 1);
862 return strerror((int)nErrCode
);
864 #endif // __WXMSW__/!__WXMSW__