]> git.saurik.com Git - wxWidgets.git/blame - src/common/log.cpp
Removed two more GUI lock-ups. This time when
[wxWidgets.git] / src / common / log.cpp
CommitLineData
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// ----------------------------------------------------------------------------
dd85fc6b 19
c801d85f
KB
20#ifdef __GNUG__
21 #pragma implementation "log.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31// wxWindows
32#ifndef WX_PRECOMP
e90c1d2a
VZ
33 #include "wx/string.h"
34 #include "wx/intl.h"
35 #include "wx/app.h"
36
37 #if wxUSE_GUI
38 #include "wx/window.h"
39 #ifdef __WXMSW__
40 #include "wx/msw/private.h"
41 #endif
42 #include "wx/msgdlg.h"
43 #endif
9ef3052c 44#endif //WX_PRECOMP
c801d85f 45
dbf3cd7a
RR
46#include "wx/file.h"
47#include "wx/textfile.h"
48#include "wx/utils.h"
a324a7bc 49#include "wx/wxchar.h"
dbf3cd7a 50#include "wx/log.h"
b568d04f 51#include "wx/thread.h"
c801d85f
KB
52
53// other standard headers
54#include <errno.h>
55#include <stdlib.h>
56#include <time.h>
57
2049ba38 58#ifdef __WXMSW__
b568d04f 59 #include "wx/msw/private.h" // includes windows.h for OutputDebugString
3078c3a6
VZ
60#else //Unix
61 #include <signal.h>
62#endif //Win/Unix
c801d85f
KB
63
64// ----------------------------------------------------------------------------
65// non member functions
66// ----------------------------------------------------------------------------
67
68// define this to enable wrapping of log messages
69//#define LOG_PRETTY_WRAP
70
9ef3052c 71#ifdef LOG_PRETTY_WRAP
c801d85f
KB
72 static void wxLogWrap(FILE *f, const char *pszPrefix, const char *psz);
73#endif
74
75// ============================================================================
76// implementation
77// ============================================================================
78
79// ----------------------------------------------------------------------------
b568d04f 80// globals
c801d85f
KB
81// ----------------------------------------------------------------------------
82
83// log functions can't allocate memory (LogError("out of memory...") should
84// work!), so we use a static buffer for all log messages
85#define LOG_BUFFER_SIZE (4096)
86
b568d04f 87// static buffer for error messages
50920146 88static wxChar s_szBuf[LOG_BUFFER_SIZE];
c801d85f 89
b568d04f
VZ
90#if wxUSE_THREADS
91
92// the critical section protecting the static buffer
93static wxCriticalSection gs_csLogBuf;
94
95#endif // wxUSE_THREADS
96
97// ----------------------------------------------------------------------------
98// implementation of Log functions
99//
100// NB: unfortunately we need all these distinct functions, we can't make them
101// macros and not all compilers inline vararg functions.
102// ----------------------------------------------------------------------------
103
c801d85f 104// generic log function
50920146 105void wxLogGeneric(wxLogLevel level, const wxChar *szFormat, ...)
c801d85f 106{
9ef3052c 107 if ( wxLog::GetActiveTarget() != NULL ) {
b568d04f
VZ
108 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
109
9ef3052c 110 va_list argptr;
7502ba29 111 va_start(argptr, szFormat);
378b05f7 112 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr);
9ef3052c
VZ
113 va_end(argptr);
114
0fb67cd1 115 wxLog::OnLog(level, s_szBuf, time(NULL));
9ef3052c 116 }
c801d85f
KB
117}
118
119#define IMPLEMENT_LOG_FUNCTION(level) \
50920146 120 void wxLog##level(const wxChar *szFormat, ...) \
c801d85f
KB
121 { \
122 if ( wxLog::GetActiveTarget() != NULL ) { \
b568d04f
VZ
123 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf); \
124 \
c801d85f 125 va_list argptr; \
7502ba29 126 va_start(argptr, szFormat); \
378b05f7 127 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr); \
c801d85f
KB
128 va_end(argptr); \
129 \
0fb67cd1 130 wxLog::OnLog(wxLOG_##level, s_szBuf, time(NULL)); \
c801d85f
KB
131 } \
132 }
133
134IMPLEMENT_LOG_FUNCTION(FatalError)
135IMPLEMENT_LOG_FUNCTION(Error)
136IMPLEMENT_LOG_FUNCTION(Warning)
137IMPLEMENT_LOG_FUNCTION(Message)
138IMPLEMENT_LOG_FUNCTION(Info)
139IMPLEMENT_LOG_FUNCTION(Status)
140
9ef3052c 141// same as info, but only if 'verbose' mode is on
50920146 142void wxLogVerbose(const wxChar *szFormat, ...)
9ef3052c
VZ
143{
144 wxLog *pLog = wxLog::GetActiveTarget();
145 if ( pLog != NULL && pLog->GetVerbose() ) {
b568d04f
VZ
146 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
147
9ef3052c 148 va_list argptr;
7502ba29 149 va_start(argptr, szFormat);
378b05f7 150 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr);
9ef3052c
VZ
151 va_end(argptr);
152
0fb67cd1 153 wxLog::OnLog(wxLOG_Info, s_szBuf, time(NULL));
9ef3052c
VZ
154 }
155}
156
157// debug functions
b2aef89b 158#ifdef __WXDEBUG__
9ef3052c 159#define IMPLEMENT_LOG_DEBUG_FUNCTION(level) \
50920146 160 void wxLog##level(const wxChar *szFormat, ...) \
c801d85f
KB
161 { \
162 if ( wxLog::GetActiveTarget() != NULL ) { \
b568d04f
VZ
163 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf); \
164 \
c801d85f
KB
165 va_list argptr; \
166 va_start(argptr, szFormat); \
378b05f7 167 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr); \
c801d85f
KB
168 va_end(argptr); \
169 \
0fb67cd1 170 wxLog::OnLog(wxLOG_##level, s_szBuf, time(NULL)); \
c801d85f
KB
171 } \
172 }
173
50920146 174 void wxLogTrace(const wxChar *mask, const wxChar *szFormat, ...)
0fb67cd1
VZ
175 {
176 wxLog *pLog = wxLog::GetActiveTarget();
177
178 if ( pLog != NULL && wxLog::IsAllowedTraceMask(mask) ) {
b568d04f
VZ
179 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
180
0fb67cd1
VZ
181 va_list argptr;
182 va_start(argptr, szFormat);
378b05f7 183 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr);
0fb67cd1
VZ
184 va_end(argptr);
185
186 wxLog::OnLog(wxLOG_Trace, s_szBuf, time(NULL));
187 }
188 }
189
50920146 190 void wxLogTrace(wxTraceMask mask, const wxChar *szFormat, ...)
9ef3052c
VZ
191 {
192 wxLog *pLog = wxLog::GetActiveTarget();
c801d85f 193
9ef3052c
VZ
194 // we check that all of mask bits are set in the current mask, so
195 // that wxLogTrace(wxTraceRefCount | wxTraceOle) will only do something
196 // if both bits are set.
d93f63db 197 if ( pLog != NULL && ((pLog->GetTraceMask() & mask) == mask) ) {
b568d04f
VZ
198 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
199
9ef3052c
VZ
200 va_list argptr;
201 va_start(argptr, szFormat);
378b05f7 202 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr);
9ef3052c
VZ
203 va_end(argptr);
204
0fb67cd1 205 wxLog::OnLog(wxLOG_Trace, s_szBuf, time(NULL));
9ef3052c
VZ
206 }
207 }
208
209#else // release
210 #define IMPLEMENT_LOG_DEBUG_FUNCTION(level)
211#endif
212
213IMPLEMENT_LOG_DEBUG_FUNCTION(Debug)
214IMPLEMENT_LOG_DEBUG_FUNCTION(Trace)
215
216// wxLogSysError: one uses the last error code, for other you must give it
217// explicitly
218
219// common part of both wxLogSysError
220void wxLogSysErrorHelper(long lErrCode)
c801d85f 221{
50920146 222 wxChar szErrMsg[LOG_BUFFER_SIZE / 2];
378b05f7
VZ
223 wxSnprintf(szErrMsg, WXSIZEOF(szErrMsg),
224 _(" (error %ld: %s)"), lErrCode, wxSysErrorMsg(lErrCode));
50920146 225 wxStrncat(s_szBuf, szErrMsg, WXSIZEOF(s_szBuf) - wxStrlen(s_szBuf));
c801d85f 226
0fb67cd1 227 wxLog::OnLog(wxLOG_Error, s_szBuf, time(NULL));
9ef3052c 228}
c801d85f 229
50920146 230void WXDLLEXPORT wxLogSysError(const wxChar *szFormat, ...)
9ef3052c 231{
b568d04f
VZ
232 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
233
0fb67cd1
VZ
234 va_list argptr;
235 va_start(argptr, szFormat);
378b05f7 236 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr);
0fb67cd1 237 va_end(argptr);
9ef3052c 238
0fb67cd1 239 wxLogSysErrorHelper(wxSysErrorCode());
c801d85f
KB
240}
241
50920146 242void WXDLLEXPORT wxLogSysError(long lErrCode, const wxChar *szFormat, ...)
c801d85f 243{
b568d04f
VZ
244 wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
245
0fb67cd1
VZ
246 va_list argptr;
247 va_start(argptr, szFormat);
378b05f7 248 wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr);
0fb67cd1 249 va_end(argptr);
c801d85f 250
0fb67cd1 251 wxLogSysErrorHelper(lErrCode);
c801d85f
KB
252}
253
254// ----------------------------------------------------------------------------
255// wxLog class implementation
256// ----------------------------------------------------------------------------
257
258wxLog::wxLog()
259{
0fb67cd1 260 m_bHasMessages = FALSE;
a2ace6ff 261
0fb67cd1 262 // enable verbose messages by default in the debug builds
a2ace6ff 263#ifdef __WXDEBUG__
0fb67cd1 264 m_bVerbose = TRUE;
a2ace6ff 265#else // release
0fb67cd1 266 m_bVerbose = FALSE;
a2ace6ff 267#endif // debug/release
c801d85f
KB
268}
269
9ec05cc9
VZ
270wxLog *wxLog::GetActiveTarget()
271{
0fb67cd1
VZ
272 if ( ms_bAutoCreate && ms_pLogger == NULL ) {
273 // prevent infinite recursion if someone calls wxLogXXX() from
274 // wxApp::CreateLogTarget()
275 static bool s_bInGetActiveTarget = FALSE;
276 if ( !s_bInGetActiveTarget ) {
277 s_bInGetActiveTarget = TRUE;
278
0fb67cd1
VZ
279 // ask the application to create a log target for us
280 if ( wxTheApp != NULL )
281 ms_pLogger = wxTheApp->CreateLogTarget();
282 else
283 ms_pLogger = new wxLogStderr;
0fb67cd1
VZ
284
285 s_bInGetActiveTarget = FALSE;
286
287 // do nothing if it fails - what can we do?
288 }
275bf4c1 289 }
c801d85f 290
0fb67cd1 291 return ms_pLogger;
c801d85f
KB
292}
293
c085e333 294wxLog *wxLog::SetActiveTarget(wxLog *pLogger)
9ec05cc9 295{
0fb67cd1
VZ
296 if ( ms_pLogger != NULL ) {
297 // flush the old messages before changing because otherwise they might
298 // get lost later if this target is not restored
299 ms_pLogger->Flush();
300 }
c801d85f 301
0fb67cd1
VZ
302 wxLog *pOldLogger = ms_pLogger;
303 ms_pLogger = pLogger;
c085e333 304
0fb67cd1 305 return pOldLogger;
c801d85f
KB
306}
307
0fb67cd1 308void wxLog::RemoveTraceMask(const wxString& str)
c801d85f 309{
0fb67cd1
VZ
310 int index = ms_aTraceMasks.Index(str);
311 if ( index != wxNOT_FOUND )
312 ms_aTraceMasks.Remove((size_t)index);
313}
c801d85f 314
d2e1ef19
VZ
315void wxLog::TimeStamp(wxString *str)
316{
317 if ( ms_timestamp )
318 {
319 wxChar buf[256];
320 time_t timeNow;
321 (void)time(&timeNow);
c49245f8 322 wxStrftime(buf, WXSIZEOF(buf), ms_timestamp, localtime(&timeNow));
d2e1ef19
VZ
323
324 str->Empty();
223d09f6 325 *str << buf << wxT(": ");
d2e1ef19
VZ
326 }
327}
328
50920146 329void wxLog::DoLog(wxLogLevel level, const wxChar *szString, time_t t)
0fb67cd1 330{
0fb67cd1
VZ
331 switch ( level ) {
332 case wxLOG_FatalError:
786855a1 333 DoLogString(wxString(_("Fatal error: ")) + szString, t);
0fb67cd1
VZ
334 DoLogString(_("Program aborted."), t);
335 Flush();
336 abort();
337 break;
338
339 case wxLOG_Error:
786855a1 340 DoLogString(wxString(_("Error: ")) + szString, t);
0fb67cd1
VZ
341 break;
342
343 case wxLOG_Warning:
786855a1 344 DoLogString(wxString(_("Warning: ")) + szString, t);
0fb67cd1
VZ
345 break;
346
347 case wxLOG_Info:
0fb67cd1 348 if ( GetVerbose() )
37278984 349 case wxLOG_Message:
87a1e308 350 case wxLOG_Status:
786855a1
VZ
351 default: // log unknown log levels too
352 DoLogString(szString, t);
0fb67cd1
VZ
353 break;
354
355 case wxLOG_Trace:
356 case wxLOG_Debug:
357#ifdef __WXDEBUG__
358 DoLogString(szString, t);
359#endif
0fb67cd1 360 break;
0fb67cd1 361 }
c801d85f
KB
362}
363
74e3313b 364void wxLog::DoLogString(const wxChar *WXUNUSED(szString), time_t WXUNUSED(t))
c801d85f 365{
223d09f6 366 wxFAIL_MSG(wxT("DoLogString must be overriden if it's called."));
c801d85f
KB
367}
368
369void wxLog::Flush()
370{
0fb67cd1 371 // do nothing
c801d85f
KB
372}
373
374// ----------------------------------------------------------------------------
375// wxLogStderr class implementation
376// ----------------------------------------------------------------------------
377
378wxLogStderr::wxLogStderr(FILE *fp)
379{
0fb67cd1
VZ
380 if ( fp == NULL )
381 m_fp = stderr;
382 else
383 m_fp = fp;
c801d85f
KB
384}
385
74e3313b 386void wxLogStderr::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
c801d85f 387{
d2e1ef19
VZ
388 wxString str;
389 TimeStamp(&str);
b568d04f 390 str << szString;
1e8a4bc2 391
50920146 392 fputs(str.mb_str(), m_fp);
b568d04f 393 fputc(_T('\n'), m_fp);
0fb67cd1 394 fflush(m_fp);
1e8a4bc2 395
378b05f7 396 // under Windows, programs usually don't have stderr at all, so show the
b568d04f
VZ
397 // messages also under debugger - unless it's a console program
398#if defined(__WXMSW__) && wxUSE_GUI
399 OutputDebugString(str + wxT("\r\n"));
1e8a4bc2 400#endif // MSW
c801d85f
KB
401}
402
403// ----------------------------------------------------------------------------
404// wxLogStream implementation
405// ----------------------------------------------------------------------------
406
4bf78aae 407#if wxUSE_STD_IOSTREAM
c801d85f
KB
408wxLogStream::wxLogStream(ostream *ostr)
409{
0fb67cd1
VZ
410 if ( ostr == NULL )
411 m_ostr = &cerr;
412 else
413 m_ostr = ostr;
c801d85f
KB
414}
415
74e3313b 416void wxLogStream::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
c801d85f 417{
e90c1d2a 418 (*m_ostr) << wxConvertWX2MB(szString) << endl;
c801d85f 419}
0fb67cd1 420#endif // wxUSE_STD_IOSTREAM
c801d85f 421
c801d85f
KB
422// ============================================================================
423// Global functions/variables
424// ============================================================================
425
426// ----------------------------------------------------------------------------
427// static variables
428// ----------------------------------------------------------------------------
0fb67cd1
VZ
429
430wxLog *wxLog::ms_pLogger = (wxLog *)NULL;
431bool wxLog::ms_doLog = TRUE;
432bool wxLog::ms_bAutoCreate = TRUE;
d2e1ef19 433
223d09f6 434const wxChar *wxLog::ms_timestamp = wxT("%X"); // time only, no date
d2e1ef19 435
0fb67cd1
VZ
436wxTraceMask wxLog::ms_ulTraceMask = (wxTraceMask)0;
437wxArrayString wxLog::ms_aTraceMasks;
c801d85f
KB
438
439// ----------------------------------------------------------------------------
440// stdout error logging helper
441// ----------------------------------------------------------------------------
442
443// helper function: wraps the message and justifies it under given position
444// (looks more pretty on the terminal). Also adds newline at the end.
445//
0fb67cd1
VZ
446// TODO this is now disabled until I find a portable way of determining the
447// terminal window size (ok, I found it but does anybody really cares?)
448#ifdef LOG_PRETTY_WRAP
c801d85f
KB
449static void wxLogWrap(FILE *f, const char *pszPrefix, const char *psz)
450{
0fb67cd1
VZ
451 size_t nMax = 80; // FIXME
452 size_t nStart = strlen(pszPrefix);
453 fputs(pszPrefix, f);
454
455 size_t n;
456 while ( *psz != '\0' ) {
457 for ( n = nStart; (n < nMax) && (*psz != '\0'); n++ )
458 putc(*psz++, f);
459
460 // wrapped?
461 if ( *psz != '\0' ) {
462 /*putc('\n', f);*/
463 for ( n = 0; n < nStart; n++ )
464 putc(' ', f);
465
466 // as we wrapped, squeeze all white space
467 while ( isspace(*psz) )
468 psz++;
469 }
c801d85f 470 }
c801d85f 471
0fb67cd1 472 putc('\n', f);
c801d85f
KB
473}
474#endif //LOG_PRETTY_WRAP
475
476// ----------------------------------------------------------------------------
477// error code/error message retrieval functions
478// ----------------------------------------------------------------------------
479
480// get error code from syste
481unsigned long wxSysErrorCode()
482{
0fb67cd1
VZ
483#ifdef __WXMSW__
484#ifdef __WIN32__
485 return ::GetLastError();
486#else //WIN16
487 // TODO what to do on Windows 3.1?
488 return 0;
489#endif //WIN16/32
490#else //Unix
c801d85f 491 return errno;
0fb67cd1 492#endif //Win/Unix
c801d85f
KB
493}
494
495// get error message from system
50920146 496const wxChar *wxSysErrorMsg(unsigned long nErrCode)
c801d85f 497{
0fb67cd1
VZ
498 if ( nErrCode == 0 )
499 nErrCode = wxSysErrorCode();
500
501#ifdef __WXMSW__
502#ifdef __WIN32__
50920146 503 static wxChar s_szBuf[LOG_BUFFER_SIZE / 2];
0fb67cd1
VZ
504
505 // get error message from system
506 LPVOID lpMsgBuf;
507 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
508 NULL, nErrCode,
509 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
510 (LPTSTR)&lpMsgBuf,
511 0, NULL);
512
513 // copy it to our buffer and free memory
50920146 514 wxStrncpy(s_szBuf, (const wxChar *)lpMsgBuf, WXSIZEOF(s_szBuf) - 1);
223d09f6 515 s_szBuf[WXSIZEOF(s_szBuf) - 1] = wxT('\0');
0fb67cd1
VZ
516 LocalFree(lpMsgBuf);
517
518 // returned string is capitalized and ended with '\r\n' - bad
50920146
OK
519 s_szBuf[0] = (wxChar)wxTolower(s_szBuf[0]);
520 size_t len = wxStrlen(s_szBuf);
0fb67cd1 521 if ( len > 0 ) {
9ef3052c 522 // truncate string
223d09f6
KB
523 if ( s_szBuf[len - 2] == wxT('\r') )
524 s_szBuf[len - 2] = wxT('\0');
0fb67cd1
VZ
525 }
526
527 return s_szBuf;
528#else //Win16
529 // TODO
530 return NULL;
531#endif // Win16/32
532#else // Unix
50920146
OK
533#if wxUSE_UNICODE
534 static wxChar s_szBuf[LOG_BUFFER_SIZE / 2];
dcf924a3 535 wxConvCurrent->MB2WC(s_szBuf, strerror(nErrCode), WXSIZEOF(s_szBuf) -1);
50920146
OK
536 return s_szBuf;
537#else
9ef3052c 538 return strerror(nErrCode);
50920146 539#endif
0fb67cd1 540#endif // Win/Unix
c801d85f
KB
541}
542
543// ----------------------------------------------------------------------------
544// debug helper
545// ----------------------------------------------------------------------------
546
b2aef89b 547#ifdef __WXDEBUG__
c801d85f 548
0fb67cd1 549// break into the debugger
7502ba29
VZ
550void Trap()
551{
0fb67cd1 552#ifdef __WXMSW__
7502ba29 553 DebugBreak();
0fb67cd1
VZ
554#elif defined(__WXMAC__)
555#if __powerc
17dff81c 556 Debugger();
0fb67cd1 557#else
17dff81c 558 SysBreak();
0fb67cd1
VZ
559#endif
560#elif defined(__UNIX__)
7502ba29 561 raise(SIGTRAP);
0fb67cd1
VZ
562#else
563 // TODO
564#endif // Win/Unix
7502ba29
VZ
565}
566
c801d85f 567// this function is called when an assert fails
6f9eb452 568void wxOnAssert(const wxChar *szFile, int nLine, const wxChar *szMsg)
c801d85f 569{
0fb67cd1
VZ
570 // this variable can be set to true to suppress "assert failure" messages
571 static bool s_bNoAsserts = FALSE;
572 static bool s_bInAssert = FALSE; // FIXME MT-unsafe
7502ba29 573
0fb67cd1
VZ
574 if ( s_bInAssert ) {
575 // He-e-e-e-elp!! we're trapped in endless loop
576 Trap();
c085e333 577
0fb67cd1 578 s_bInAssert = FALSE;
1e8a4bc2 579
0fb67cd1
VZ
580 return;
581 }
7502ba29 582
0fb67cd1 583 s_bInAssert = TRUE;
c801d85f 584
50920146 585 wxChar szBuf[LOG_BUFFER_SIZE];
c263077e 586
0fb67cd1
VZ
587 // make life easier for people using VC++ IDE: clicking on the message
588 // will take us immediately to the place of the failed assert
378b05f7 589 wxSnprintf(szBuf, WXSIZEOF(szBuf),
3f4a0c5b 590#ifdef __VISUALC__
378b05f7 591 wxT("%s(%d): assert failed"),
c263077e 592#else // !VC++
0fb67cd1 593 // make the error message more clear for all the others
378b05f7 594 wxT("Assert failed in file %s at line %d"),
c263077e 595#endif // VC/!VC
378b05f7 596 szFile, nLine);
c263077e 597
0fb67cd1 598 if ( szMsg != NULL ) {
223d09f6 599 wxStrcat(szBuf, wxT(": "));
50920146 600 wxStrcat(szBuf, szMsg);
0fb67cd1
VZ
601 }
602 else {
223d09f6 603 wxStrcat(szBuf, wxT("."));
0fb67cd1 604 }
c801d85f 605
0fb67cd1
VZ
606 if ( !s_bNoAsserts ) {
607 // send it to the normal log destination
608 wxLogDebug(szBuf);
7502ba29 609
b76b015e 610#if wxUSE_GUI || defined(__WXMSW__)
0fb67cd1
VZ
611 // this message is intentionally not translated - it is for
612 // developpers only
223d09f6 613 wxStrcat(szBuf, wxT("\nDo you want to stop the program?"
b76b015e
VZ
614 "\nYou can also choose [Cancel] to suppress "
615 "further warnings."));
0fb67cd1 616
b76b015e
VZ
617#if wxUSE_GUI
618 switch ( wxMessageBox(szBuf, "Debug",
619 wxYES_NO | wxCANCEL | wxICON_STOP ) ) {
0fb67cd1
VZ
620 case wxYES:
621 Trap();
622 break;
623
624 case wxCANCEL:
625 s_bNoAsserts = TRUE;
626 break;
627
b76b015e
VZ
628 //case wxNO: nothing to do
629 }
630#else // !GUI, but MSW
631 switch ( ::MessageBox(NULL, szBuf, "Debug",
632 MB_YESNOCANCEL | MB_ICONSTOP ) ) {
633 case IDYES:
634 Trap();
635 break;
636
637 case IDCANCEL:
638 s_bNoAsserts = TRUE;
639 break;
640
641 //case IDNO: nothing to do
0fb67cd1 642 }
b76b015e
VZ
643#endif // GUI or MSW
644
e90c1d2a
VZ
645#else // !GUI
646 Trap();
647#endif // GUI/!GUI
0fb67cd1
VZ
648 }
649
650 s_bInAssert = FALSE;
c801d85f
KB
651}
652
b2aef89b 653#endif //WXDEBUG
c801d85f 654