]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: log.cpp | |
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 license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | #ifdef __GNUG__ | |
20 | #pragma implementation "log.h" | |
21 | #endif | |
22 | ||
23 | // For compilers that support precompilation, includes "wx.h". | |
24 | #include "wx/wxprec.h" | |
25 | ||
26 | #ifdef __BORLANDC__ | |
27 | #pragma hdrstop | |
28 | #endif | |
29 | ||
30 | // wxWindows | |
31 | #ifndef WX_PRECOMP | |
c801d85f | 32 | #include <wx/app.h> |
9ef3052c VZ |
33 | #include <wx/string.h> |
34 | #include <wx/intl.h> | |
cf4219e7 | 35 | #include <wx/menu.h> |
34138703 | 36 | #include <wx/frame.h> |
9ef3052c | 37 | |
c801d85f | 38 | #include <wx/generic/msgdlgg.h> |
9ef3052c VZ |
39 | #include <wx/filedlg.h> |
40 | #include <wx/textctrl.h> | |
41 | #endif //WX_PRECOMP | |
c801d85f | 42 | |
9ef3052c VZ |
43 | #include <wx/file.h> |
44 | #include <wx/textfile.h> | |
81d66cf3 | 45 | #include <wx/utils.h> |
c801d85f KB |
46 | #include <wx/log.h> |
47 | ||
48 | // other standard headers | |
49 | #include <errno.h> | |
50 | #include <stdlib.h> | |
51 | #include <time.h> | |
52 | ||
2049ba38 | 53 | #ifdef __WXMSW__ |
9ef3052c | 54 | #include <windows.h> |
3078c3a6 VZ |
55 | #else //Unix |
56 | #include <signal.h> | |
57 | #endif //Win/Unix | |
c801d85f KB |
58 | |
59 | // ---------------------------------------------------------------------------- | |
60 | // non member functions | |
61 | // ---------------------------------------------------------------------------- | |
62 | ||
63 | // define this to enable wrapping of log messages | |
64 | //#define LOG_PRETTY_WRAP | |
65 | ||
9ef3052c | 66 | #ifdef LOG_PRETTY_WRAP |
c801d85f KB |
67 | static void wxLogWrap(FILE *f, const char *pszPrefix, const char *psz); |
68 | #endif | |
69 | ||
470b7da3 VZ |
70 | // ---------------------------------------------------------------------------- |
71 | // global variables | |
72 | // ---------------------------------------------------------------------------- | |
73 | ||
74 | // we use a global variable to store the frame pointer for wxLogStatus - bad, | |
75 | // but it's he easiest way | |
76 | static wxFrame *gs_pFrame; | |
77 | ||
c801d85f KB |
78 | // ============================================================================ |
79 | // implementation | |
80 | // ============================================================================ | |
81 | ||
82 | // ---------------------------------------------------------------------------- | |
83 | // implementation of Log functions | |
84 | // | |
85 | // NB: unfortunately we need all these distinct functions, we can't make them | |
86 | // macros and not all compilers inline vararg functions. | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | // log functions can't allocate memory (LogError("out of memory...") should | |
90 | // work!), so we use a static buffer for all log messages | |
91 | #define LOG_BUFFER_SIZE (4096) | |
92 | ||
93 | // static buffer for error messages (@@@ MT-unsafe) | |
94 | static char s_szBuf[LOG_BUFFER_SIZE]; | |
95 | ||
96 | // generic log function | |
7502ba29 | 97 | void wxLogGeneric(wxLogLevel level, const char *szFormat, ...) |
c801d85f | 98 | { |
9ef3052c VZ |
99 | if ( wxLog::GetActiveTarget() != NULL ) { |
100 | va_list argptr; | |
7502ba29 VZ |
101 | va_start(argptr, szFormat); |
102 | vsprintf(s_szBuf, szFormat, argptr); | |
9ef3052c VZ |
103 | va_end(argptr); |
104 | ||
105 | wxLog::OnLog(level, s_szBuf); | |
106 | } | |
c801d85f KB |
107 | } |
108 | ||
109 | #define IMPLEMENT_LOG_FUNCTION(level) \ | |
7502ba29 | 110 | void wxLog##level(const char *szFormat, ...) \ |
c801d85f KB |
111 | { \ |
112 | if ( wxLog::GetActiveTarget() != NULL ) { \ | |
113 | va_list argptr; \ | |
7502ba29 VZ |
114 | va_start(argptr, szFormat); \ |
115 | vsprintf(s_szBuf, szFormat, argptr); \ | |
c801d85f KB |
116 | va_end(argptr); \ |
117 | \ | |
9ef3052c | 118 | wxLog::OnLog(wxLOG_##level, s_szBuf); \ |
c801d85f KB |
119 | } \ |
120 | } | |
121 | ||
122 | IMPLEMENT_LOG_FUNCTION(FatalError) | |
123 | IMPLEMENT_LOG_FUNCTION(Error) | |
124 | IMPLEMENT_LOG_FUNCTION(Warning) | |
125 | IMPLEMENT_LOG_FUNCTION(Message) | |
126 | IMPLEMENT_LOG_FUNCTION(Info) | |
127 | IMPLEMENT_LOG_FUNCTION(Status) | |
128 | ||
470b7da3 VZ |
129 | // accepts an additional argument which tells to which frame the output should |
130 | // be directed | |
131 | void wxLogStatus(wxFrame *pFrame, const char *szFormat, ...) | |
132 | { | |
133 | wxLog *pLog = wxLog::GetActiveTarget(); | |
134 | if ( pLog != NULL ) { | |
135 | va_list argptr; | |
136 | va_start(argptr, szFormat); | |
137 | vsprintf(s_szBuf, szFormat, argptr); | |
138 | va_end(argptr); | |
139 | ||
140 | wxASSERT( gs_pFrame == NULL ); // should be reset! | |
141 | gs_pFrame = pFrame; | |
142 | wxLog::OnLog(wxLOG_Status, s_szBuf); | |
143 | gs_pFrame = NULL; | |
144 | } | |
145 | } | |
146 | ||
9ef3052c | 147 | // same as info, but only if 'verbose' mode is on |
7502ba29 | 148 | void wxLogVerbose(const char *szFormat, ...) |
9ef3052c VZ |
149 | { |
150 | wxLog *pLog = wxLog::GetActiveTarget(); | |
151 | if ( pLog != NULL && pLog->GetVerbose() ) { | |
152 | va_list argptr; | |
7502ba29 VZ |
153 | va_start(argptr, szFormat); |
154 | vsprintf(s_szBuf, szFormat, argptr); | |
9ef3052c VZ |
155 | va_end(argptr); |
156 | ||
157 | wxLog::OnLog(wxLOG_Info, s_szBuf); | |
158 | } | |
159 | } | |
160 | ||
161 | // debug functions | |
b2aef89b | 162 | #ifdef __WXDEBUG__ |
9ef3052c | 163 | #define IMPLEMENT_LOG_DEBUG_FUNCTION(level) \ |
c801d85f KB |
164 | void wxLog##level(const char *szFormat, ...) \ |
165 | { \ | |
166 | if ( wxLog::GetActiveTarget() != NULL ) { \ | |
167 | va_list argptr; \ | |
168 | va_start(argptr, szFormat); \ | |
169 | vsprintf(s_szBuf, szFormat, argptr); \ | |
170 | va_end(argptr); \ | |
171 | \ | |
9ef3052c | 172 | wxLog::OnLog(wxLOG_##level, s_szBuf); \ |
c801d85f KB |
173 | } \ |
174 | } | |
175 | ||
9ef3052c VZ |
176 | void wxLogTrace(wxTraceMask mask, const char *szFormat, ...) |
177 | { | |
178 | wxLog *pLog = wxLog::GetActiveTarget(); | |
c801d85f | 179 | |
9ef3052c VZ |
180 | // we check that all of mask bits are set in the current mask, so |
181 | // that wxLogTrace(wxTraceRefCount | wxTraceOle) will only do something | |
182 | // if both bits are set. | |
d93f63db | 183 | if ( pLog != NULL && ((pLog->GetTraceMask() & mask) == mask) ) { |
9ef3052c VZ |
184 | va_list argptr; |
185 | va_start(argptr, szFormat); | |
186 | vsprintf(s_szBuf, szFormat, argptr); | |
187 | va_end(argptr); | |
188 | ||
189 | wxLog::OnLog(wxLOG_Trace, s_szBuf); | |
190 | } | |
191 | } | |
192 | ||
193 | #else // release | |
194 | #define IMPLEMENT_LOG_DEBUG_FUNCTION(level) | |
195 | #endif | |
196 | ||
197 | IMPLEMENT_LOG_DEBUG_FUNCTION(Debug) | |
198 | IMPLEMENT_LOG_DEBUG_FUNCTION(Trace) | |
199 | ||
200 | // wxLogSysError: one uses the last error code, for other you must give it | |
201 | // explicitly | |
202 | ||
203 | // common part of both wxLogSysError | |
204 | void wxLogSysErrorHelper(long lErrCode) | |
c801d85f | 205 | { |
9ef3052c VZ |
206 | char szErrMsg[LOG_BUFFER_SIZE / 2]; |
207 | sprintf(szErrMsg, _(" (error %ld: %s)"), lErrCode, wxSysErrorMsg(lErrCode)); | |
208 | strncat(s_szBuf, szErrMsg, WXSIZEOF(s_szBuf) - strlen(s_szBuf)); | |
c801d85f | 209 | |
9ef3052c VZ |
210 | wxLog::OnLog(wxLOG_Error, s_szBuf); |
211 | } | |
c801d85f | 212 | |
7502ba29 | 213 | void WXDLLEXPORT wxLogSysError(const char *szFormat, ...) |
9ef3052c VZ |
214 | { |
215 | va_list argptr; | |
7502ba29 VZ |
216 | va_start(argptr, szFormat); |
217 | vsprintf(s_szBuf, szFormat, argptr); | |
9ef3052c VZ |
218 | va_end(argptr); |
219 | ||
220 | wxLogSysErrorHelper(wxSysErrorCode()); | |
c801d85f KB |
221 | } |
222 | ||
7502ba29 | 223 | void WXDLLEXPORT wxLogSysError(long lErrCode, const char *szFormat, ...) |
c801d85f | 224 | { |
9ef3052c | 225 | va_list argptr; |
7502ba29 VZ |
226 | va_start(argptr, szFormat); |
227 | vsprintf(s_szBuf, szFormat, argptr); | |
9ef3052c | 228 | va_end(argptr); |
c801d85f | 229 | |
9ef3052c | 230 | wxLogSysErrorHelper(lErrCode); |
c801d85f KB |
231 | } |
232 | ||
233 | // ---------------------------------------------------------------------------- | |
234 | // wxLog class implementation | |
235 | // ---------------------------------------------------------------------------- | |
236 | ||
237 | wxLog::wxLog() | |
238 | { | |
239 | m_bHasMessages = FALSE; | |
9ef3052c VZ |
240 | m_bVerbose = FALSE; |
241 | m_szTimeFormat = "[%d/%b/%y %H:%M:%S] "; | |
c801d85f KB |
242 | } |
243 | ||
9ec05cc9 VZ |
244 | wxLog *wxLog::GetActiveTarget() |
245 | { | |
275bf4c1 | 246 | if ( ms_bAutoCreate && ms_pLogger == NULL ) { |
9ef3052c VZ |
247 | // prevent infinite recursion if someone calls wxLogXXX() from |
248 | // wxApp::CreateLogTarget() | |
275bf4c1 VZ |
249 | static bool s_bInGetActiveTarget = FALSE; |
250 | if ( !s_bInGetActiveTarget ) { | |
251 | s_bInGetActiveTarget = TRUE; | |
252 | ||
253 | #ifdef WX_TEST_MINIMAL | |
254 | ms_pLogger = new wxLogStderr; | |
255 | #else | |
256 | // ask the application to create a log target for us | |
a7489b36 VZ |
257 | if ( wxTheApp != NULL ) |
258 | ms_pLogger = wxTheApp->CreateLogTarget(); | |
275bf4c1 | 259 | #endif |
c801d85f | 260 | |
275bf4c1 VZ |
261 | // do nothing if it fails - what can we do? |
262 | } | |
c801d85f KB |
263 | } |
264 | ||
9ec05cc9 | 265 | return ms_pLogger; |
c801d85f KB |
266 | } |
267 | ||
268 | wxLog *wxLog::SetActiveTarget(wxLog *pLogger) | |
9ec05cc9 | 269 | { |
c801d85f KB |
270 | // flush the old messages before changing |
271 | if ( ms_pLogger != NULL ) | |
272 | ms_pLogger->Flush(); | |
273 | ||
9ec05cc9 VZ |
274 | wxLog *pOldLogger = ms_pLogger; |
275 | ms_pLogger = pLogger; | |
276 | return pOldLogger; | |
c801d85f KB |
277 | } |
278 | ||
fe7b1156 | 279 | wxString wxLog::TimeStamp() const |
c801d85f | 280 | { |
9ef3052c | 281 | wxString str; |
c801d85f | 282 | |
9ef3052c VZ |
283 | if ( !IsEmpty(m_szTimeFormat) ) { |
284 | char szBuf[128]; | |
285 | time_t timeNow; | |
286 | struct tm *ptmNow; | |
c801d85f | 287 | |
9ef3052c VZ |
288 | time(&timeNow); |
289 | ptmNow = localtime(&timeNow); | |
290 | ||
291 | strftime(szBuf, WXSIZEOF(szBuf), m_szTimeFormat, ptmNow); | |
292 | str = szBuf; | |
293 | } | |
c801d85f | 294 | |
fe7b1156 VZ |
295 | return str; |
296 | } | |
297 | ||
298 | void wxLog::DoLog(wxLogLevel level, const char *szString) | |
299 | { | |
300 | // prepend a timestamp if not disabled | |
301 | wxString str = TimeStamp(); | |
302 | ||
c801d85f | 303 | switch ( level ) { |
9ef3052c | 304 | case wxLOG_FatalError: |
c801d85f KB |
305 | DoLogString(str << _("Fatal error: ") << szString); |
306 | DoLogString(_("Program aborted.")); | |
307 | Flush(); | |
308 | abort(); | |
309 | break; | |
310 | ||
9ef3052c | 311 | case wxLOG_Error: |
c801d85f KB |
312 | DoLogString(str << _("Error: ") << szString); |
313 | break; | |
314 | ||
9ef3052c | 315 | case wxLOG_Warning: |
c801d85f KB |
316 | DoLogString(str << _("Warning: ") << szString); |
317 | break; | |
318 | ||
9ef3052c | 319 | case wxLOG_Info: |
c801d85f | 320 | if ( GetVerbose() ) |
9ef3052c | 321 | case wxLOG_Message: |
c801d85f KB |
322 | DoLogString(str + szString); |
323 | // fall through | |
324 | ||
9ef3052c | 325 | case wxLOG_Status: |
c801d85f KB |
326 | // nothing to do |
327 | break; | |
328 | ||
9ef3052c VZ |
329 | case wxLOG_Trace: |
330 | case wxLOG_Debug: | |
b2aef89b | 331 | #ifdef __WXDEBUG__ |
7502ba29 | 332 | DoLogString(str << (level == wxLOG_Trace ? _("Trace") : _("Debug")) |
c801d85f KB |
333 | << ": " << szString); |
334 | #endif | |
9ec05cc9 | 335 | |
c801d85f KB |
336 | break; |
337 | ||
338 | default: | |
1a5a8367 | 339 | wxFAIL_MSG(_("unknown log level in wxLog::DoLog")); |
c801d85f KB |
340 | } |
341 | } | |
342 | ||
46dc76ba | 343 | void wxLog::DoLogString(const char *WXUNUSED(szString)) |
c801d85f | 344 | { |
1a5a8367 | 345 | wxFAIL_MSG(_("DoLogString must be overrided if it's called.")); |
c801d85f KB |
346 | } |
347 | ||
348 | void wxLog::Flush() | |
349 | { | |
350 | // do nothing | |
351 | } | |
352 | ||
353 | // ---------------------------------------------------------------------------- | |
354 | // wxLogStderr class implementation | |
355 | // ---------------------------------------------------------------------------- | |
356 | ||
357 | wxLogStderr::wxLogStderr(FILE *fp) | |
358 | { | |
359 | if ( fp == NULL ) | |
360 | m_fp = stderr; | |
361 | else | |
362 | m_fp = fp; | |
363 | } | |
364 | ||
365 | void wxLogStderr::DoLogString(const char *szString) | |
366 | { | |
367 | fputs(szString, m_fp); | |
368 | fputc('\n', m_fp); | |
369 | fflush(m_fp); | |
370 | } | |
371 | ||
372 | // ---------------------------------------------------------------------------- | |
373 | // wxLogStream implementation | |
374 | // ---------------------------------------------------------------------------- | |
375 | ||
376 | wxLogStream::wxLogStream(ostream *ostr) | |
377 | { | |
378 | if ( ostr == NULL ) | |
379 | m_ostr = &cerr; | |
380 | else | |
381 | m_ostr = ostr; | |
382 | } | |
383 | ||
384 | void wxLogStream::DoLogString(const char *szString) | |
385 | { | |
386 | (*m_ostr) << szString << endl << flush; | |
387 | } | |
388 | ||
389 | // ---------------------------------------------------------------------------- | |
390 | // wxLogTextCtrl implementation | |
391 | // ---------------------------------------------------------------------------- | |
c801d85f | 392 | wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl *pTextCtrl) |
9ef3052c | 393 | // @@@ TODO: in wxGTK wxTextCtrl doesn't derive from streambuf |
5de76427 JS |
394 | |
395 | // Also, in DLL mode in wxMSW, can't use it. | |
396 | #if defined(NO_TEXT_WINDOW_STREAM) | |
397 | #else | |
c801d85f | 398 | : wxLogStream(new ostream(pTextCtrl)) |
5de76427 | 399 | #endif |
c801d85f KB |
400 | { |
401 | } | |
402 | ||
403 | wxLogTextCtrl::~wxLogTextCtrl() | |
404 | { | |
c5c16a30 | 405 | delete m_ostr; |
c801d85f | 406 | } |
c801d85f KB |
407 | |
408 | // ---------------------------------------------------------------------------- | |
409 | // wxLogGui implementation | |
410 | // ---------------------------------------------------------------------------- | |
411 | ||
412 | #ifndef WX_TEST_MINIMAL | |
413 | ||
414 | wxLogGui::wxLogGui() | |
415 | { | |
416 | m_bErrors = FALSE; | |
417 | } | |
418 | ||
419 | void wxLogGui::Flush() | |
420 | { | |
421 | if ( !m_bHasMessages ) | |
422 | return; | |
423 | ||
d553992a VZ |
424 | // do it right now to block any new calls to Flush() while we're here |
425 | m_bHasMessages = FALSE; | |
426 | ||
c801d85f | 427 | // @@@ ugly... |
9ec05cc9 | 428 | |
c801d85f KB |
429 | // concatenate all strings (but not too many to not overfill the msg box) |
430 | wxString str; | |
9ec05cc9 | 431 | uint nLines = 0, |
c801d85f KB |
432 | nMsgCount = m_aMessages.Count(); |
433 | ||
434 | // start from the most recent message | |
435 | for ( uint n = nMsgCount; n > 0; n-- ) { | |
436 | // for Windows strings longer than this value are wrapped (NT 4.0) | |
437 | const uint nMsgLineWidth = 156; | |
438 | ||
439 | nLines += (m_aMessages[n - 1].Len() + nMsgLineWidth - 1) / nMsgLineWidth; | |
440 | ||
441 | if ( nLines > 25 ) // don't put too many lines in message box | |
442 | break; | |
443 | ||
444 | str << m_aMessages[n - 1] << "\n"; | |
445 | } | |
446 | ||
447 | if ( m_bErrors ) { | |
448 | wxMessageBox(str, _("Error"), wxOK | wxICON_EXCLAMATION); | |
449 | } | |
450 | else { | |
451 | wxMessageBox(str, _("Information"), wxOK | wxICON_INFORMATION); | |
452 | } | |
453 | ||
454 | // no undisplayed messages whatsoever | |
c801d85f KB |
455 | m_bErrors = FALSE; |
456 | m_aMessages.Empty(); | |
457 | } | |
458 | ||
459 | // the default behaviour is to discard all informational messages if there | |
460 | // are any errors/warnings. | |
9ef3052c | 461 | void wxLogGui::DoLog(wxLogLevel level, const char *szString) |
c801d85f KB |
462 | { |
463 | switch ( level ) { | |
9ef3052c | 464 | case wxLOG_Info: |
c801d85f | 465 | if ( GetVerbose() ) |
9ef3052c | 466 | case wxLOG_Message: |
c801d85f KB |
467 | if ( !m_bErrors ) { |
468 | m_aMessages.Add(szString); | |
469 | m_bHasMessages = TRUE; | |
470 | } | |
471 | break; | |
472 | ||
9ef3052c | 473 | case wxLOG_Status: |
c801d85f KB |
474 | { |
475 | // find the top window and set it's status text if it has any | |
470b7da3 VZ |
476 | wxFrame *pFrame = gs_pFrame; |
477 | if ( pFrame == NULL ) { | |
478 | wxWindow *pWin = wxTheApp->GetTopWindow(); | |
479 | if ( pWin != NULL && pWin->IsKindOf(CLASSINFO(wxFrame)) ) { | |
480 | pFrame = (wxFrame *)pWin; | |
481 | } | |
c801d85f | 482 | } |
470b7da3 VZ |
483 | |
484 | if ( pFrame != NULL ) | |
485 | pFrame->SetStatusText(szString); | |
c801d85f KB |
486 | } |
487 | break; | |
488 | ||
9ef3052c VZ |
489 | case wxLOG_Trace: |
490 | case wxLOG_Debug: | |
b2aef89b | 491 | #ifdef __WXDEBUG__ |
fe7b1156 VZ |
492 | { |
493 | wxString strTime = TimeStamp(); | |
494 | ||
34138703 | 495 | #if defined(__WIN32__) && !defined(__WXSTUBS__) |
fe7b1156 VZ |
496 | // don't prepend debug/trace here: it goes to the debug window |
497 | // anyhow, but do put a timestamp | |
498 | OutputDebugString(strTime + szString + "\n\r"); | |
499 | #else //!WIN32 | |
500 | // send them to stderr | |
501 | fprintf(stderr, "%s %s: %s\n", | |
502 | strTime.c_str(), | |
503 | level == wxLOG_Trace ? _("Trace") : _("Debug"), | |
504 | szString); | |
505 | fflush(stderr); | |
506 | #endif // WIN32 | |
507 | } | |
c801d85f KB |
508 | #endif |
509 | break; | |
510 | ||
9ef3052c | 511 | case wxLOG_FatalError: |
c801d85f | 512 | // show this one immediately |
7502ba29 | 513 | wxMessageBox(szString, _("Fatal error"), wxICON_HAND); |
c801d85f KB |
514 | break; |
515 | ||
9ef3052c VZ |
516 | case wxLOG_Error: |
517 | case wxLOG_Warning: | |
c801d85f KB |
518 | // discard earlier informational messages if this is the 1st error |
519 | if ( !m_bErrors ) { | |
520 | m_aMessages.Empty(); | |
521 | m_bHasMessages = TRUE; | |
522 | m_bErrors = TRUE; | |
523 | } | |
524 | ||
525 | m_aMessages.Add(szString); | |
526 | break; | |
9ec05cc9 | 527 | |
c801d85f | 528 | default: |
1a5a8367 | 529 | wxFAIL_MSG(_("unknown log level in wxLogGui::DoLog")); |
c801d85f KB |
530 | } |
531 | } | |
532 | ||
9ef3052c | 533 | // ---------------------------------------------------------------------------- |
fe7b1156 | 534 | // wxLogWindow and wxLogFrame implementation |
9ef3052c VZ |
535 | // ---------------------------------------------------------------------------- |
536 | ||
537 | // log frame class | |
fe7b1156 | 538 | // --------------- |
9ef3052c VZ |
539 | class wxLogFrame : public wxFrame |
540 | { | |
541 | public: | |
fe7b1156 | 542 | // ctor & dtor |
470b7da3 | 543 | wxLogFrame(wxFrame *pParent, wxLogWindow *log, const char *szTitle); |
fe7b1156 | 544 | virtual ~wxLogFrame(); |
9ef3052c VZ |
545 | |
546 | // menu callbacks | |
547 | void OnClose(wxCommandEvent& event); | |
5260b1c5 | 548 | void OnCloseWindow(wxCloseEvent& event); |
9ef3052c VZ |
549 | void OnSave (wxCommandEvent& event); |
550 | void OnClear(wxCommandEvent& event); | |
551 | ||
fe7b1156 VZ |
552 | void OnIdle(wxIdleEvent&); |
553 | ||
9ef3052c VZ |
554 | // accessors |
555 | wxTextCtrl *TextCtrl() const { return m_pTextCtrl; } | |
556 | ||
557 | private: | |
558 | enum | |
559 | { | |
560 | Menu_Close = 100, | |
561 | Menu_Save, | |
562 | Menu_Clear | |
563 | }; | |
564 | ||
fe7b1156 VZ |
565 | // instead of closing just hide the window to be able to Show() it later |
566 | void DoClose() { Show(FALSE); } | |
567 | ||
568 | wxTextCtrl *m_pTextCtrl; | |
569 | wxLogWindow *m_log; | |
9ef3052c VZ |
570 | |
571 | DECLARE_EVENT_TABLE() | |
572 | }; | |
573 | ||
574 | BEGIN_EVENT_TABLE(wxLogFrame, wxFrame) | |
575 | // wxLogWindow menu events | |
576 | EVT_MENU(Menu_Close, wxLogFrame::OnClose) | |
577 | EVT_MENU(Menu_Save, wxLogFrame::OnSave) | |
578 | EVT_MENU(Menu_Clear, wxLogFrame::OnClear) | |
579 | ||
5260b1c5 | 580 | EVT_CLOSE(wxLogFrame::OnCloseWindow) |
9ec05cc9 | 581 | END_EVENT_TABLE() |
9ef3052c | 582 | |
470b7da3 VZ |
583 | wxLogFrame::wxLogFrame(wxFrame *pParent, wxLogWindow *log, const char *szTitle) |
584 | : wxFrame(pParent, -1, szTitle) | |
9ef3052c | 585 | { |
fe7b1156 | 586 | m_log = log; |
f42d2625 | 587 | |
9ef3052c | 588 | // @@ kludge: wxSIMPLE_BORDER is simply to prevent wxWindows from creating |
fe7b1156 | 589 | // a rich edit control instead of a normal one we want in wxMSW |
9ef3052c VZ |
590 | m_pTextCtrl = new wxTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, |
591 | wxDefaultSize, | |
470b7da3 | 592 | //wxSIMPLE_BORDER | |
9ef3052c VZ |
593 | wxTE_MULTILINE | |
594 | wxHSCROLL | | |
595 | wxTE_READONLY); | |
9ef3052c VZ |
596 | |
597 | // create menu | |
598 | wxMenuBar *pMenuBar = new wxMenuBar; | |
599 | wxMenu *pMenu = new wxMenu; | |
fe7b1156 VZ |
600 | pMenu->Append(Menu_Save, _("&Save..."), _("Save log contents to file")); |
601 | pMenu->Append(Menu_Clear, _("C&lear"), _("Clear the log contents")); | |
9ef3052c | 602 | pMenu->AppendSeparator(); |
fe7b1156 | 603 | pMenu->Append(Menu_Close, _("&Close"), _("Close this window")); |
1a5a8367 | 604 | pMenuBar->Append(pMenu, _("&Log")); |
9ef3052c VZ |
605 | SetMenuBar(pMenuBar); |
606 | ||
fe7b1156 VZ |
607 | // status bar for menu prompts |
608 | CreateStatusBar(); | |
609 | ||
610 | m_log->OnFrameCreate(this); | |
9ef3052c VZ |
611 | } |
612 | ||
46dc76ba | 613 | void wxLogFrame::OnClose(wxCommandEvent& WXUNUSED(event)) |
9ef3052c | 614 | { |
fe7b1156 | 615 | DoClose(); |
9ef3052c VZ |
616 | } |
617 | ||
46dc76ba | 618 | void wxLogFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) |
5260b1c5 | 619 | { |
fe7b1156 VZ |
620 | DoClose(); |
621 | } | |
622 | ||
46dc76ba | 623 | void wxLogFrame::OnSave(wxCommandEvent& WXUNUSED(event)) |
9ef3052c VZ |
624 | { |
625 | // get the file name | |
626 | // ----------------- | |
627 | const char *szFileName = wxSaveFileSelector("log", "txt", "log.txt"); | |
628 | if ( szFileName == NULL ) { | |
629 | // cancelled | |
630 | return; | |
631 | } | |
632 | ||
633 | // open file | |
634 | // --------- | |
635 | wxFile file; | |
46dc76ba | 636 | bool bOk = FALSE; |
9ef3052c | 637 | if ( wxFile::Exists(szFileName) ) { |
46dc76ba | 638 | bool bAppend = FALSE; |
9ef3052c VZ |
639 | wxString strMsg; |
640 | strMsg.Printf(_("Append log to file '%s' " | |
641 | "(choosing [No] will overwrite it)?"), szFileName); | |
1a5a8367 | 642 | switch ( wxMessageBox(strMsg, _("Question"), wxYES_NO | wxCANCEL) ) { |
9ef3052c VZ |
643 | case wxYES: |
644 | bAppend = TRUE; | |
645 | break; | |
646 | ||
647 | case wxNO: | |
648 | bAppend = FALSE; | |
649 | break; | |
650 | ||
651 | case wxCANCEL: | |
652 | return; | |
653 | ||
654 | default: | |
1a5a8367 | 655 | wxFAIL_MSG(_("invalid message box return value")); |
9ef3052c VZ |
656 | } |
657 | ||
658 | if ( bAppend ) { | |
659 | bOk = file.Open(szFileName, wxFile::write_append); | |
660 | } | |
661 | else { | |
662 | bOk = file.Create(szFileName, TRUE /* overwrite */); | |
663 | } | |
664 | } | |
665 | else { | |
666 | bOk = file.Create(szFileName); | |
667 | } | |
668 | ||
669 | // retrieve text and save it | |
670 | // ------------------------- | |
2049ba38 | 671 | #ifdef __WXGTK__ |
9ef3052c | 672 | // @@@@ TODO: no GetNumberOfLines and GetLineText in wxGTK yet |
1a5a8367 | 673 | wxLogError(_("Sorry, this function is not implemented under GTK")); |
f42d2625 | 674 | #else |
9ef3052c VZ |
675 | int nLines = m_pTextCtrl->GetNumberOfLines(); |
676 | for ( int nLine = 0; bOk && nLine < nLines; nLine++ ) { | |
677 | bOk = file.Write(m_pTextCtrl->GetLineText(nLine) + wxTextFile::GetEOL()); | |
678 | } | |
679 | #endif //GTK | |
9ec05cc9 | 680 | |
9ef3052c VZ |
681 | if ( bOk ) |
682 | bOk = file.Close(); | |
683 | ||
684 | if ( !bOk ) { | |
7502ba29 | 685 | wxLogError(_("Can't save log contents to file.")); |
9ef3052c VZ |
686 | return; |
687 | } | |
688 | } | |
689 | ||
46dc76ba | 690 | void wxLogFrame::OnClear(wxCommandEvent& WXUNUSED(event)) |
9ef3052c VZ |
691 | { |
692 | m_pTextCtrl->Clear(); | |
693 | } | |
694 | ||
fe7b1156 VZ |
695 | wxLogFrame::~wxLogFrame() |
696 | { | |
697 | m_log->OnFrameDelete(this); | |
698 | } | |
699 | ||
700 | // wxLogWindow | |
701 | // ----------- | |
470b7da3 VZ |
702 | wxLogWindow::wxLogWindow(wxFrame *pParent, |
703 | const char *szTitle, | |
704 | bool bShow, | |
705 | bool bDoPass) | |
9ef3052c | 706 | { |
a3622daa VZ |
707 | m_bPassMessages = bDoPass; |
708 | ||
470b7da3 | 709 | m_pLogFrame = new wxLogFrame(pParent, this, szTitle); |
a3622daa | 710 | m_pOldLog = wxLog::SetActiveTarget(this); |
9ec05cc9 | 711 | |
f42d2625 VZ |
712 | if ( bShow ) |
713 | m_pLogFrame->Show(TRUE); | |
9ef3052c VZ |
714 | } |
715 | ||
e51c4943 | 716 | void wxLogWindow::Show(bool bShow) |
9ef3052c VZ |
717 | { |
718 | m_pLogFrame->Show(bShow); | |
719 | } | |
720 | ||
fe7b1156 | 721 | void wxLogWindow::Flush() |
06db8ebd | 722 | { |
fe7b1156 VZ |
723 | if ( m_pOldLog != NULL ) |
724 | m_pOldLog->Flush(); | |
725 | ||
726 | m_bHasMessages = FALSE; | |
06db8ebd VZ |
727 | } |
728 | ||
9ef3052c VZ |
729 | void wxLogWindow::DoLog(wxLogLevel level, const char *szString) |
730 | { | |
731 | // first let the previous logger show it | |
a3622daa | 732 | if ( m_pOldLog != NULL && m_bPassMessages ) { |
9ec05cc9 | 733 | // @@@ why can't we access protected wxLog method from here (we derive |
9ef3052c VZ |
734 | // from wxLog)? gcc gives "DoLog is protected in this context", what |
735 | // does this mean? Anyhow, the cast is harmless and let's us do what | |
736 | // we want. | |
737 | ((wxLogWindow *)m_pOldLog)->DoLog(level, szString); | |
738 | } | |
9ec05cc9 | 739 | |
338c2a71 VZ |
740 | // don't put trace messages in the text window for 2 reasons: |
741 | // 1) there are too many of them | |
742 | // 2) they may provoke other trace messages thus sending a program into an | |
743 | // infinite loop | |
744 | if ( m_pLogFrame && level != wxLOG_Trace ) { | |
3b926128 VZ |
745 | // and this will format it nicely and call our DoLogString() |
746 | wxLog::DoLog(level, szString); | |
747 | } | |
fe7b1156 VZ |
748 | |
749 | m_bHasMessages = TRUE; | |
9ef3052c VZ |
750 | } |
751 | ||
752 | void wxLogWindow::DoLogString(const char *szString) | |
753 | { | |
754 | // put the text into our window | |
755 | wxTextCtrl *pText = m_pLogFrame->TextCtrl(); | |
756 | ||
757 | // remove selection (WriteText is in fact ReplaceSelection) | |
2049ba38 | 758 | #ifdef __WXMSW__ |
f42d2625 VZ |
759 | long nLen = pText->GetLastPosition(); |
760 | pText->SetSelection(nLen, nLen); | |
761 | #endif // Windows | |
9ef3052c VZ |
762 | |
763 | pText->WriteText(szString); | |
764 | pText->WriteText("\n"); // "\n" ok here (_not_ "\r\n") | |
765 | ||
766 | // ensure that the line can be seen | |
767 | // @@@ TODO | |
768 | } | |
769 | ||
fe7b1156 VZ |
770 | wxFrame *wxLogWindow::GetFrame() const |
771 | { | |
772 | return m_pLogFrame; | |
773 | } | |
774 | ||
775 | void wxLogWindow::OnFrameCreate(wxFrame *frame) | |
776 | { | |
777 | } | |
778 | ||
779 | void wxLogWindow::OnFrameDelete(wxFrame *frame) | |
780 | { | |
781 | m_pLogFrame = NULL; | |
782 | } | |
783 | ||
9ef3052c VZ |
784 | wxLogWindow::~wxLogWindow() |
785 | { | |
fe7b1156 VZ |
786 | // may be NULL if log frame already auto destroyed itself |
787 | delete m_pLogFrame; | |
9ef3052c VZ |
788 | } |
789 | ||
c801d85f KB |
790 | #endif //WX_TEST_MINIMAL |
791 | ||
792 | // ============================================================================ | |
793 | // Global functions/variables | |
794 | // ============================================================================ | |
795 | ||
796 | // ---------------------------------------------------------------------------- | |
797 | // static variables | |
798 | // ---------------------------------------------------------------------------- | |
799 | wxLog *wxLog::ms_pLogger = NULL; | |
275bf4c1 | 800 | bool wxLog::ms_bAutoCreate = TRUE; |
88f2aa37 | 801 | wxTraceMask wxLog::ms_ulTraceMask = (wxTraceMask)0; |
c801d85f KB |
802 | |
803 | // ---------------------------------------------------------------------------- | |
804 | // stdout error logging helper | |
805 | // ---------------------------------------------------------------------------- | |
806 | ||
807 | // helper function: wraps the message and justifies it under given position | |
808 | // (looks more pretty on the terminal). Also adds newline at the end. | |
809 | // | |
810 | // @@ this is now disabled until I find a portable way of determining the | |
9ef3052c | 811 | // terminal window size (ok, I found it but does anybody really cares?) |
c801d85f KB |
812 | #ifdef LOG_PRETTY_WRAP |
813 | static void wxLogWrap(FILE *f, const char *pszPrefix, const char *psz) | |
814 | { | |
815 | size_t nMax = 80; // @@@@ | |
816 | size_t nStart = strlen(pszPrefix); | |
817 | fputs(pszPrefix, f); | |
818 | ||
819 | size_t n; | |
820 | while ( *psz != '\0' ) { | |
821 | for ( n = nStart; (n < nMax) && (*psz != '\0'); n++ ) | |
822 | putc(*psz++, f); | |
823 | ||
824 | // wrapped? | |
825 | if ( *psz != '\0' ) { | |
826 | /*putc('\n', f);*/ | |
827 | for ( n = 0; n < nStart; n++ ) | |
828 | putc(' ', f); | |
829 | ||
830 | // as we wrapped, squeeze all white space | |
831 | while ( isspace(*psz) ) | |
832 | psz++; | |
833 | } | |
834 | } | |
835 | ||
836 | putc('\n', f); | |
837 | } | |
838 | #endif //LOG_PRETTY_WRAP | |
839 | ||
840 | // ---------------------------------------------------------------------------- | |
841 | // error code/error message retrieval functions | |
842 | // ---------------------------------------------------------------------------- | |
843 | ||
844 | // get error code from syste | |
845 | unsigned long wxSysErrorCode() | |
846 | { | |
2049ba38 | 847 | #ifdef __WXMSW__ |
c801d85f KB |
848 | #ifdef __WIN32__ |
849 | return ::GetLastError(); | |
850 | #else //WIN16 | |
851 | // @@@@ what to do on Windows 3.1? | |
852 | return 0; | |
853 | #endif //WIN16/32 | |
854 | #else //Unix | |
855 | return errno; | |
856 | #endif //Win/Unix | |
857 | } | |
858 | ||
859 | // get error message from system | |
860 | const char *wxSysErrorMsg(unsigned long nErrCode) | |
861 | { | |
862 | if ( nErrCode == 0 ) | |
863 | nErrCode = wxSysErrorCode(); | |
864 | ||
2049ba38 | 865 | #ifdef __WXMSW__ |
9ef3052c VZ |
866 | #ifdef __WIN32__ |
867 | static char s_szBuf[LOG_BUFFER_SIZE / 2]; | |
868 | ||
869 | // get error message from system | |
870 | LPVOID lpMsgBuf; | |
871 | FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, | |
9ec05cc9 | 872 | NULL, nErrCode, |
9ef3052c VZ |
873 | MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), |
874 | (LPTSTR)&lpMsgBuf, | |
875 | 0, NULL); | |
876 | ||
877 | // copy it to our buffer and free memory | |
878 | strncpy(s_szBuf, (const char *)lpMsgBuf, WXSIZEOF(s_szBuf) - 1); | |
879 | s_szBuf[WXSIZEOF(s_szBuf) - 1] = '\0'; | |
880 | LocalFree(lpMsgBuf); | |
881 | ||
882 | // returned string is capitalized and ended with '\r\n' - bad | |
81d66cf3 | 883 | s_szBuf[0] = (char)wxToLower(s_szBuf[0]); |
9ef3052c VZ |
884 | size_t len = strlen(s_szBuf); |
885 | if ( len > 0 ) { | |
886 | // truncate string | |
887 | if ( s_szBuf[len - 2] == '\r' ) | |
888 | s_szBuf[len - 2] = '\0'; | |
889 | } | |
c801d85f | 890 | |
9ef3052c VZ |
891 | return s_szBuf; |
892 | #else //Win16 | |
893 | // TODO @@@@ | |
894 | return NULL; | |
895 | #endif // Win16/32 | |
896 | #else // Unix | |
897 | return strerror(nErrCode); | |
898 | #endif // Win/Unix | |
c801d85f KB |
899 | } |
900 | ||
901 | // ---------------------------------------------------------------------------- | |
902 | // debug helper | |
903 | // ---------------------------------------------------------------------------- | |
904 | ||
b2aef89b | 905 | #ifdef __WXDEBUG__ |
c801d85f | 906 | |
7502ba29 VZ |
907 | void Trap() |
908 | { | |
909 | #ifdef __WXMSW__ | |
910 | DebugBreak(); | |
34138703 JS |
911 | #elif defined(__WXSTUBS__) |
912 | // TODO | |
7502ba29 VZ |
913 | #else // Unix |
914 | raise(SIGTRAP); | |
915 | #endif // Win/Unix | |
916 | } | |
917 | ||
c801d85f KB |
918 | // this function is called when an assert fails |
919 | void wxOnAssert(const char *szFile, int nLine, const char *szMsg) | |
920 | { | |
921 | // this variable can be set to true to suppress "assert failure" messages | |
7502ba29 VZ |
922 | static bool s_bNoAsserts = FALSE; |
923 | static bool s_bInAssert = FALSE; | |
924 | ||
925 | if ( s_bInAssert ) { | |
926 | // He-e-e-e-elp!! we're trapped in endless loop | |
927 | Trap(); | |
928 | } | |
929 | ||
930 | s_bInAssert = TRUE; | |
c801d85f KB |
931 | |
932 | char szBuf[LOG_BUFFER_SIZE]; | |
933 | sprintf(szBuf, _("Assert failed in file %s at line %d"), szFile, nLine); | |
934 | if ( szMsg != NULL ) { | |
935 | strcat(szBuf, ": "); | |
936 | strcat(szBuf, szMsg); | |
937 | } | |
938 | else { | |
939 | strcat(szBuf, "."); | |
940 | } | |
941 | ||
3078c3a6 | 942 | if ( !s_bNoAsserts ) { |
9ec05cc9 VZ |
943 | // send it to the normal log destination |
944 | wxLogDebug(szBuf); | |
945 | ||
3078c3a6 VZ |
946 | strcat(szBuf, _("\nDo you want to stop the program?" |
947 | "\nYou can also choose [Cancel] to suppress " | |
948 | "further warnings.")); | |
949 | ||
9fd239ad | 950 | switch ( wxMessageBox(szBuf, _("Debug"), |
3078c3a6 VZ |
951 | wxYES_NO | wxCANCEL | wxICON_STOP ) ) { |
952 | case wxYES: | |
7502ba29 | 953 | Trap(); |
3078c3a6 | 954 | break; |
c801d85f | 955 | |
3078c3a6 VZ |
956 | case wxCANCEL: |
957 | s_bNoAsserts = TRUE; | |
958 | break; | |
9ec05cc9 | 959 | |
3078c3a6 | 960 | //case wxNO: nothing to do |
c801d85f | 961 | } |
3078c3a6 | 962 | } |
7502ba29 VZ |
963 | |
964 | s_bInAssert = FALSE; | |
c801d85f KB |
965 | } |
966 | ||
b2aef89b | 967 | #endif //WXDEBUG |
c801d85f | 968 |