]> git.saurik.com Git - wxWidgets.git/blame - src/common/appbase.cpp
Use gdk_window_invalidate instead of gtk_widget_queue_draw as the latter doesn't...
[wxWidgets.git] / src / common / appbase.cpp
CommitLineData
e2478fde 1///////////////////////////////////////////////////////////////////////////////
8ecff181 2// Name: src/common/appbase.cpp
e0954e72 3// Purpose: implements wxAppConsoleBase class
e2478fde
VZ
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 19.06.2003 (extracted from common/appcmn.cpp)
7// RCS-ID: $Id$
8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
0a53b9b8 9// License: wxWindows license
e2478fde
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// for compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
57bd4c60
WS
28 #ifdef __WXMSW__
29 #include "wx/msw/wrapwin.h" // includes windows.h for MessageBox()
30 #endif
8ecff181 31 #include "wx/list.h"
8df6de97
VS
32 #include "wx/app.h"
33 #include "wx/intl.h"
86f8d1a8 34 #include "wx/log.h"
de6185e2 35 #include "wx/utils.h"
0cb7e05c 36 #include "wx/wxcrtvararg.h"
e2478fde
VZ
37#endif //WX_PRECOMP
38
39#include "wx/apptrait.h"
40#include "wx/cmdline.h"
41#include "wx/confbase.h"
b46b1d59 42#include "wx/evtloop.h"
ce39c39e 43#include "wx/filename.h"
e2478fde 44#include "wx/msgout.h"
664e1314 45#include "wx/scopedptr.h"
e2478fde 46#include "wx/tokenzr.h"
204abcd4 47#include "wx/thread.h"
e2478fde 48
1663c655
VZ
49#if wxUSE_EXCEPTIONS && wxUSE_STL
50 #include <exception>
51 #include <typeinfo>
52#endif
53
9b4da627 54#ifndef __WXPALMOS5__
e2478fde
VZ
55#if !defined(__WXMSW__) || defined(__WXMICROWIN__)
56 #include <signal.h> // for SIGTRAP used by wxTrap()
57#endif //Win/Unix
58
0e5ab030 59#include <locale.h>
9b4da627 60#endif // ! __WXPALMOS5__
0e5ab030 61
1c193821
JS
62#if wxUSE_FONTMAP
63 #include "wx/fontmap.h"
64#endif // wxUSE_FONTMAP
65
6c8f8d92 66#ifdef __WXDEBUG__
7b1c3469 67 #if wxUSE_STACKWALKER
6c8f8d92 68 #include "wx/stackwalk.h"
4a92d4bc
VZ
69 #ifdef __WXMSW__
70 #include "wx/msw/debughlp.h"
71 #endif
6c8f8d92 72 #endif // wxUSE_STACKWALKER
000eea7a
VZ
73
74 #include "wx/recguard.h"
6c8f8d92
VZ
75#endif // __WXDEBUG__
76
121aea46
MW
77// wxABI_VERSION can be defined when compiling applications but it should be
78// left undefined when compiling the library itself, it is then set to its
79// default value in version.h
80#if wxABI_VERSION != wxMAJOR_VERSION * 10000 + wxMINOR_VERSION * 100 + 99
81#error "wxABI_VERSION should not be defined when compiling the library"
82#endif
83
e2478fde
VZ
84// ----------------------------------------------------------------------------
85// private functions prototypes
86// ----------------------------------------------------------------------------
87
88#ifdef __WXDEBUG__
89 // really just show the assert dialog
90 static bool DoShowAssertDialog(const wxString& msg);
91
92 // prepare for showing the assert dialog, use the given traits or
93 // DoShowAssertDialog() as last fallback to really show it
94 static
0accd1cf 95 void ShowAssertDialog(const wxString& szFile,
e2478fde 96 int nLine,
0accd1cf
VS
97 const wxString& szFunc,
98 const wxString& szCond,
99 const wxString& szMsg,
e2478fde
VZ
100 wxAppTraits *traits = NULL);
101
102 // turn on the trace masks specified in the env variable WXTRACE
103 static void LINKAGEMODE SetTraceMasks();
104#endif // __WXDEBUG__
105
106// ----------------------------------------------------------------------------
107// global vars
108// ----------------------------------------------------------------------------
109
e0954e72 110wxAppConsole *wxAppConsoleBase::ms_appInstance = NULL;
e2478fde 111
e0954e72 112wxAppInitializerFunction wxAppConsoleBase::ms_appInitFn = NULL;
e2478fde 113
51fe4b60
VZ
114wxSocketManager *wxAppTraitsBase::ms_manager = NULL;
115
b46b1d59
VZ
116// ----------------------------------------------------------------------------
117// wxEventLoopPtr
118// ----------------------------------------------------------------------------
119
120// this defines wxEventLoopPtr
2ddff00c 121wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoopBase)
b46b1d59 122
e2478fde 123// ============================================================================
e0954e72 124// wxAppConsoleBase implementation
e2478fde
VZ
125// ============================================================================
126
127// ----------------------------------------------------------------------------
128// ctor/dtor
129// ----------------------------------------------------------------------------
130
e0954e72 131wxAppConsoleBase::wxAppConsoleBase()
e2478fde
VZ
132{
133 m_traits = NULL;
b46b1d59 134 m_mainLoop = NULL;
e2478fde 135
5c33522f 136 ms_appInstance = static_cast<wxAppConsole *>(this);
e2478fde
VZ
137
138#ifdef __WXDEBUG__
139 SetTraceMasks();
bc334f39
RD
140#if wxUSE_UNICODE
141 // In unicode mode the SetTraceMasks call can cause an apptraits to be
142 // created, but since we are still in the constructor the wrong kind will
143 // be created for GUI apps. Destroy it so it can be created again later.
144 delete m_traits;
145 m_traits = NULL;
146#endif
e2478fde
VZ
147#endif
148}
149
e0954e72 150wxAppConsoleBase::~wxAppConsoleBase()
e2478fde
VZ
151{
152 delete m_traits;
153}
154
94826170 155// ----------------------------------------------------------------------------
8b93348e 156// initialization/cleanup
94826170
VZ
157// ----------------------------------------------------------------------------
158
a7d980f6 159bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc), wxChar **argv)
94826170 160{
d774f916
VZ
161#if wxUSE_INTL
162 GetTraits()->SetLocale();
163#endif // wxUSE_INTL
164
4055ed82 165#ifndef __WXPALMOS__
a7d980f6 166 if ( m_appName.empty() && argv && argv[0] )
94826170
VZ
167 {
168 // the application name is, by default, the name of its executable file
94826170 169 wxFileName::SplitPath(argv[0], NULL, &m_appName, NULL);
94826170 170 }
d774f916 171#endif // !__WXPALMOS__
94826170
VZ
172
173 return true;
174}
175
e0954e72 176wxEventLoopBase *wxAppConsoleBase::CreateMainLoop()
b46b1d59
VZ
177{
178 return GetTraits()->CreateEventLoop();
179}
180
e0954e72 181void wxAppConsoleBase::CleanUp()
94826170 182{
aea33a3e
VZ
183 if ( m_mainLoop )
184 {
185 delete m_mainLoop;
186 m_mainLoop = NULL;
187 }
94826170
VZ
188}
189
e2478fde
VZ
190// ----------------------------------------------------------------------------
191// OnXXX() callbacks
192// ----------------------------------------------------------------------------
193
e0954e72 194bool wxAppConsoleBase::OnInit()
e2478fde
VZ
195{
196#if wxUSE_CMDLINE_PARSER
197 wxCmdLineParser parser(argc, argv);
198
199 OnInitCmdLine(parser);
200
201 bool cont;
4629016d 202 switch ( parser.Parse(false /* don't show usage */) )
e2478fde
VZ
203 {
204 case -1:
205 cont = OnCmdLineHelp(parser);
206 break;
207
208 case 0:
209 cont = OnCmdLineParsed(parser);
210 break;
211
212 default:
213 cont = OnCmdLineError(parser);
214 break;
215 }
216
217 if ( !cont )
4629016d 218 return false;
e2478fde
VZ
219#endif // wxUSE_CMDLINE_PARSER
220
4629016d 221 return true;
e2478fde
VZ
222}
223
e0954e72 224int wxAppConsoleBase::OnRun()
b46b1d59
VZ
225{
226 return MainLoop();
8ac09e52 227}
b46b1d59 228
e0954e72 229int wxAppConsoleBase::OnExit()
e2478fde
VZ
230{
231#if wxUSE_CONFIG
232 // delete the config object if any (don't use Get() here, but Set()
233 // because Get() could create a new config object)
d3b9f782 234 delete wxConfigBase::Set(NULL);
e2478fde
VZ
235#endif // wxUSE_CONFIG
236
e2478fde
VZ
237 return 0;
238}
239
e0954e72 240void wxAppConsoleBase::Exit()
e2478fde 241{
b46b1d59
VZ
242 if (m_mainLoop != NULL)
243 ExitMainLoop();
244 else
245 exit(-1);
e2478fde
VZ
246}
247
248// ----------------------------------------------------------------------------
249// traits stuff
250// ----------------------------------------------------------------------------
251
e0954e72 252wxAppTraits *wxAppConsoleBase::CreateTraits()
e2478fde 253{
7843d11b 254 return new wxConsoleAppTraits;
e2478fde
VZ
255}
256
e0954e72 257wxAppTraits *wxAppConsoleBase::GetTraits()
e2478fde
VZ
258{
259 // FIXME-MT: protect this with a CS?
260 if ( !m_traits )
261 {
262 m_traits = CreateTraits();
263
264 wxASSERT_MSG( m_traits, _T("wxApp::CreateTraits() failed?") );
265 }
266
267 return m_traits;
268}
269
96b2cbe8
VZ
270/* static */
271wxAppTraits *wxAppConsoleBase::GetTraitsIfExists()
272{
273 wxAppConsole * const app = GetInstance();
274 return app ? app->GetTraits() : NULL;
275}
276
e2478fde 277// ----------------------------------------------------------------------------
dde19c21 278// wxEventLoop redirection
e2478fde
VZ
279// ----------------------------------------------------------------------------
280
e0954e72 281int wxAppConsoleBase::MainLoop()
e2478fde 282{
2ddff00c 283 wxEventLoopBaseTiedPtr mainLoop(&m_mainLoop, CreateMainLoop());
b46b1d59
VZ
284
285 return m_mainLoop ? m_mainLoop->Run() : -1;
286}
287
e0954e72 288void wxAppConsoleBase::ExitMainLoop()
b46b1d59
VZ
289{
290 // we should exit from the main event loop, not just any currently active
291 // (e.g. modal dialog) event loop
292 if ( m_mainLoop && m_mainLoop->IsRunning() )
293 {
294 m_mainLoop->Exit(0);
295 }
296}
297
e0954e72 298bool wxAppConsoleBase::Pending()
b46b1d59
VZ
299{
300 // use the currently active message loop here, not m_mainLoop, because if
301 // we're showing a modal dialog (with its own event loop) currently the
302 // main event loop is not running anyhow
2ddff00c 303 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
b46b1d59
VZ
304
305 return loop && loop->Pending();
306}
307
e0954e72 308bool wxAppConsoleBase::Dispatch()
b46b1d59
VZ
309{
310 // see comment in Pending()
2ddff00c 311 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
b46b1d59
VZ
312
313 return loop && loop->Dispatch();
314}
8ecff181 315
e0954e72 316bool wxAppConsoleBase::HasPendingEvents() const
b46b1d59 317{
dde19c21 318 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
a1312bc8 319
dde19c21 320 return loop && loop->HasPendingEvents();
8ac09e52 321}
b46b1d59 322
d48b06bd
FM
323void wxAppConsoleBase::SuspendProcessingOfPendingEvents()
324{
dde19c21 325 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
d48b06bd 326
dde19c21 327 if (loop) loop->SuspendProcessingOfPendingEvents();
d48b06bd
FM
328}
329
dde19c21 330void wxAppConsoleBase::ResumeProcessingOfPendingEvents()
e0954e72 331{
dde19c21 332 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
e0954e72 333
dde19c21 334 if (loop) loop->ResumeProcessingOfPendingEvents();
e0954e72
VZ
335}
336
337void wxAppConsoleBase::ProcessPendingEvents()
b46b1d59 338{
dde19c21 339 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
e2478fde 340
dde19c21
FM
341 if (loop) loop->ProcessPendingEvents();
342}
d48b06bd 343
dde19c21
FM
344bool wxAppConsoleBase::Yield(bool onlyIfNeeded)
345{
346 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
d48b06bd 347
dde19c21 348 return loop && loop->Yield(onlyIfNeeded);
e2478fde
VZ
349}
350
e0954e72 351void wxAppConsoleBase::WakeUpIdle()
b46b1d59
VZ
352{
353 if ( m_mainLoop )
354 m_mainLoop->WakeUp();
355}
356
e0954e72 357bool wxAppConsoleBase::ProcessIdle()
b46b1d59 358{
dde19c21
FM
359 wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
360
361 return loop && loop->ProcessIdle();
362}
14eb37a0 363
dde19c21
FM
364// ----------------------------------------------------------------------------
365// events
366// ----------------------------------------------------------------------------
b46b1d59 367
dde19c21
FM
368/* static */
369bool wxAppConsoleBase::IsMainLoopRunning()
370{
371 const wxAppConsole * const app = GetInstance();
372
373 return app && app->m_mainLoop != NULL;
b46b1d59
VZ
374}
375
e0954e72 376int wxAppConsoleBase::FilterEvent(wxEvent& WXUNUSED(event))
e2478fde
VZ
377{
378 // process the events normally by default
379 return -1;
380}
381
78361a0e
VZ
382// ----------------------------------------------------------------------------
383// exception handling
384// ----------------------------------------------------------------------------
385
6f054ac5
VZ
386#if wxUSE_EXCEPTIONS
387
388void
e0954e72
VZ
389wxAppConsoleBase::HandleEvent(wxEvtHandler *handler,
390 wxEventFunction func,
391 wxEvent& event) const
6f054ac5 392{
96d38c7e
VS
393 // by default, simply call the handler
394 (handler->*func)(event);
6f054ac5
VZ
395}
396
3c778901
VZ
397void wxAppConsoleBase::CallEventHandler(wxEvtHandler *handler,
398 wxEventFunctor& functor,
399 wxEvent& event) const
400{
401 // If the functor holds a method then, for backward compatibility, call
402 // HandleEvent():
403 wxEventFunction eventFunction = functor.GetMethod();
404
405 if ( eventFunction )
406 HandleEvent(handler, eventFunction, event);
407 else
408 functor(handler, event);
409}
410
1663c655
VZ
411void wxAppConsoleBase::OnUnhandledException()
412{
413#ifdef __WXDEBUG__
414 // we're called from an exception handler so we can re-throw the exception
415 // to recover its type
416 wxString what;
417 try
418 {
419 throw;
420 }
421#if wxUSE_STL
422 catch ( std::exception& e )
423 {
424 what.Printf("std::exception of type \"%s\", what() = \"%s\"",
425 typeid(e).name(), e.what());
426 }
427#endif // wxUSE_STL
428 catch ( ... )
429 {
430 what = "unknown exception";
431 }
432
433 wxMessageOutputBest().Printf(
434 "*** Caught unhandled %s; terminating\n", what
435 );
436#endif // __WXDEBUG__
437}
438
b46b1d59
VZ
439// ----------------------------------------------------------------------------
440// exceptions support
441// ----------------------------------------------------------------------------
442
e0954e72 443bool wxAppConsoleBase::OnExceptionInMainLoop()
b46b1d59
VZ
444{
445 throw;
446
447 // some compilers are too stupid to know that we never return after throw
448#if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200)
449 return false;
450#endif
451}
452
6f054ac5
VZ
453#endif // wxUSE_EXCEPTIONS
454
e2478fde
VZ
455// ----------------------------------------------------------------------------
456// cmd line parsing
457// ----------------------------------------------------------------------------
458
459#if wxUSE_CMDLINE_PARSER
460
e6d4038a 461#define OPTION_VERBOSE "verbose"
e2478fde 462
e0954e72 463void wxAppConsoleBase::OnInitCmdLine(wxCmdLineParser& parser)
e2478fde
VZ
464{
465 // the standard command line options
466 static const wxCmdLineEntryDesc cmdLineDesc[] =
467 {
468 {
469 wxCMD_LINE_SWITCH,
e6d4038a
VZ
470 "h",
471 "help",
e2478fde
VZ
472 gettext_noop("show this help message"),
473 wxCMD_LINE_VAL_NONE,
474 wxCMD_LINE_OPTION_HELP
475 },
476
477#if wxUSE_LOG
478 {
479 wxCMD_LINE_SWITCH,
0d5ab92f 480 NULL,
e2478fde
VZ
481 OPTION_VERBOSE,
482 gettext_noop("generate verbose log messages"),
483 wxCMD_LINE_VAL_NONE,
484 0x0
485 },
486#endif // wxUSE_LOG
487
e2478fde 488 // terminator
0d5ab92f 489 wxCMD_LINE_DESC_END
e2478fde
VZ
490 };
491
492 parser.SetDesc(cmdLineDesc);
493}
494
e0954e72 495bool wxAppConsoleBase::OnCmdLineParsed(wxCmdLineParser& parser)
e2478fde
VZ
496{
497#if wxUSE_LOG
498 if ( parser.Found(OPTION_VERBOSE) )
499 {
fa0d3447 500 wxLog::SetVerbose(true);
e2478fde 501 }
fa0d3447
WS
502#else
503 wxUnusedVar(parser);
e2478fde
VZ
504#endif // wxUSE_LOG
505
fa0d3447 506 return true;
e2478fde
VZ
507}
508
e0954e72 509bool wxAppConsoleBase::OnCmdLineHelp(wxCmdLineParser& parser)
e2478fde
VZ
510{
511 parser.Usage();
512
4629016d 513 return false;
e2478fde
VZ
514}
515
e0954e72 516bool wxAppConsoleBase::OnCmdLineError(wxCmdLineParser& parser)
e2478fde
VZ
517{
518 parser.Usage();
519
4629016d 520 return false;
e2478fde
VZ
521}
522
523#endif // wxUSE_CMDLINE_PARSER
524
525// ----------------------------------------------------------------------------
526// debugging support
527// ----------------------------------------------------------------------------
528
529/* static */
e0954e72
VZ
530bool wxAppConsoleBase::CheckBuildOptions(const char *optionsSignature,
531 const char *componentName)
e2478fde 532{
2a7c7605
VS
533#if 0 // can't use wxLogTrace, not up and running yet
534 printf("checking build options object '%s' (ptr %p) in '%s'\n",
535 optionsSignature, optionsSignature, componentName);
e2478fde
VZ
536#endif
537
2a7c7605 538 if ( strcmp(optionsSignature, WX_BUILD_OPTIONS_SIGNATURE) != 0 )
e2478fde 539 {
2a7c7605
VS
540 wxString lib = wxString::FromAscii(WX_BUILD_OPTIONS_SIGNATURE);
541 wxString prog = wxString::FromAscii(optionsSignature);
542 wxString progName = wxString::FromAscii(componentName);
e2478fde 543 wxString msg;
2dbc444a 544
b880adec 545 msg.Printf(_T("Mismatch between the program and library build versions detected.\nThe library used %s,\nand %s used %s."),
2a7c7605 546 lib.c_str(), progName.c_str(), prog.c_str());
2dbc444a 547
095d49f2 548 wxLogFatalError(msg.c_str());
e2478fde
VZ
549
550 // normally wxLogFatalError doesn't return
4629016d 551 return false;
e2478fde 552 }
e2478fde 553
4629016d 554 return true;
e2478fde
VZ
555}
556
557#ifdef __WXDEBUG__
558
e0954e72
VZ
559void wxAppConsoleBase::OnAssertFailure(const wxChar *file,
560 int line,
561 const wxChar *func,
562 const wxChar *cond,
563 const wxChar *msg)
dfa0b52f
VZ
564{
565 ShowAssertDialog(file, line, func, cond, msg, GetTraits());
566}
567
e0954e72
VZ
568void wxAppConsoleBase::OnAssert(const wxChar *file,
569 int line,
570 const wxChar *cond,
571 const wxChar *msg)
e2478fde 572{
acc476c5 573 OnAssertFailure(file, line, NULL, cond, msg);
e2478fde
VZ
574}
575
576#endif // __WXDEBUG__
577
578// ============================================================================
579// other classes implementations
580// ============================================================================
581
582// ----------------------------------------------------------------------------
583// wxConsoleAppTraitsBase
584// ----------------------------------------------------------------------------
585
586#if wxUSE_LOG
587
588wxLog *wxConsoleAppTraitsBase::CreateLogTarget()
589{
590 return new wxLogStderr;
591}
592
593#endif // wxUSE_LOG
594
595wxMessageOutput *wxConsoleAppTraitsBase::CreateMessageOutput()
596{
597 return new wxMessageOutputStderr;
598}
599
600#if wxUSE_FONTMAP
601
602wxFontMapper *wxConsoleAppTraitsBase::CreateFontMapper()
603{
604 return (wxFontMapper *)new wxFontMapperBase;
605}
606
607#endif // wxUSE_FONTMAP
608
f0244295
VZ
609wxRendererNative *wxConsoleAppTraitsBase::CreateRenderer()
610{
611 // console applications don't use renderers
612 return NULL;
613}
614
8df6de97 615#ifdef __WXDEBUG__
e2478fde
VZ
616bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString& msg)
617{
618 return wxAppTraitsBase::ShowAssertDialog(msg);
619}
8df6de97 620#endif
e2478fde
VZ
621
622bool wxConsoleAppTraitsBase::HasStderr()
623{
624 // console applications always have stderr, even under Mac/Windows
625 return true;
626}
627
628void wxConsoleAppTraitsBase::ScheduleForDestroy(wxObject *object)
629{
630 delete object;
631}
632
633void wxConsoleAppTraitsBase::RemoveFromPendingDelete(wxObject * WXUNUSED(object))
634{
635 // nothing to do
636}
2dbc444a 637
e2478fde
VZ
638// ----------------------------------------------------------------------------
639// wxAppTraits
640// ----------------------------------------------------------------------------
641
6c4f5ea5 642#if wxUSE_INTL
d774f916
VZ
643void wxAppTraitsBase::SetLocale()
644{
d6f2a891 645 wxSetlocale(LC_ALL, "");
cb352236 646 wxUpdateLocaleIsUtf8();
d774f916 647}
6c4f5ea5 648#endif
d774f916 649
d254213e
PC
650#if wxUSE_THREADS
651void wxMutexGuiEnterImpl();
652void wxMutexGuiLeaveImpl();
653
654void wxAppTraitsBase::MutexGuiEnter()
655{
656 wxMutexGuiEnterImpl();
657}
658
659void wxAppTraitsBase::MutexGuiLeave()
660{
661 wxMutexGuiLeaveImpl();
662}
663
664void WXDLLIMPEXP_BASE wxMutexGuiEnter()
665{
96b2cbe8
VZ
666 wxAppTraits * const traits = wxAppConsoleBase::GetTraitsIfExists();
667 if ( traits )
668 traits->MutexGuiEnter();
d254213e
PC
669}
670
671void WXDLLIMPEXP_BASE wxMutexGuiLeave()
672{
96b2cbe8
VZ
673 wxAppTraits * const traits = wxAppConsoleBase::GetTraitsIfExists();
674 if ( traits )
675 traits->MutexGuiLeave();
d254213e
PC
676}
677#endif // wxUSE_THREADS
678
e2478fde
VZ
679#ifdef __WXDEBUG__
680
db9febdf 681bool wxAppTraitsBase::ShowAssertDialog(const wxString& msgOriginal)
e2478fde 682{
db9febdf
RR
683 wxString msg = msgOriginal;
684
685#if wxUSE_STACKWALKER
686#if !defined(__WXMSW__)
687 // on Unix stack frame generation may take some time, depending on the
688 // size of the executable mainly... warn the user that we are working
689 wxFprintf(stderr, wxT("[Debug] Generating a stack trace... please wait"));
690 fflush(stderr);
691#endif
692
693 const wxString stackTrace = GetAssertStackTrace();
694 if ( !stackTrace.empty() )
695 msg << _T("\n\nCall stack:\n") << stackTrace;
696#endif // wxUSE_STACKWALKER
697
e2478fde
VZ
698 return DoShowAssertDialog(msg);
699}
700
db9febdf
RR
701#if wxUSE_STACKWALKER
702wxString wxAppTraitsBase::GetAssertStackTrace()
703{
704 wxString stackTrace;
705
706 class StackDump : public wxStackWalker
707 {
708 public:
709 StackDump() { }
710
711 const wxString& GetStackTrace() const { return m_stackTrace; }
712
713 protected:
714 virtual void OnStackFrame(const wxStackFrame& frame)
715 {
716 m_stackTrace << wxString::Format
717 (
718 _T("[%02d] "),
719 wx_truncate_cast(int, frame.GetLevel())
720 );
721
722 wxString name = frame.GetName();
723 if ( !name.empty() )
724 {
725 m_stackTrace << wxString::Format(_T("%-40s"), name.c_str());
726 }
727 else
728 {
729 m_stackTrace << wxString::Format(_T("%p"), frame.GetAddress());
730 }
731
732 if ( frame.HasSourceLocation() )
733 {
734 m_stackTrace << _T('\t')
735 << frame.GetFileName()
736 << _T(':')
737 << frame.GetLine();
738 }
739
740 m_stackTrace << _T('\n');
741 }
742
743 private:
744 wxString m_stackTrace;
745 };
746
747 // don't show more than maxLines or we could get a dialog too tall to be
748 // shown on screen: 20 should be ok everywhere as even with 15 pixel high
749 // characters it is still only 300 pixels...
750 static const int maxLines = 20;
751
752 StackDump dump;
753 dump.Walk(2, maxLines); // don't show OnAssert() call itself
754 stackTrace = dump.GetStackTrace();
755
756 const int count = stackTrace.Freq(wxT('\n'));
757 for ( int i = 0; i < count - maxLines; i++ )
758 stackTrace = stackTrace.BeforeLast(wxT('\n'));
759
760 return stackTrace;
761}
762#endif // wxUSE_STACKWALKER
763
764
e2478fde
VZ
765#endif // __WXDEBUG__
766
e2478fde
VZ
767// ============================================================================
768// global functions implementation
769// ============================================================================
770
771void wxExit()
772{
773 if ( wxTheApp )
774 {
775 wxTheApp->Exit();
776 }
777 else
778 {
779 // what else can we do?
780 exit(-1);
781 }
782}
783
784void wxWakeUpIdle()
785{
786 if ( wxTheApp )
787 {
788 wxTheApp->WakeUpIdle();
789 }
790 //else: do nothing, what can we do?
791}
792
793#ifdef __WXDEBUG__
794
795// wxASSERT() helper
796bool wxAssertIsEqual(int x, int y)
797{
798 return x == y;
799}
800
801// break into the debugger
802void wxTrap()
803{
804#if defined(__WXMSW__) && !defined(__WXMICROWIN__)
805 DebugBreak();
f0756afe
DE
806#elif defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
807 Debugger();
e2478fde
VZ
808#elif defined(__UNIX__)
809 raise(SIGTRAP);
810#else
811 // TODO
812#endif // Win/Unix
813}
814
e2478fde 815// this function is called when an assert fails
0accd1cf
VS
816static void wxDoOnAssert(const wxString& szFile,
817 int nLine,
818 const wxString& szFunc,
819 const wxString& szCond,
820 const wxString& szMsg = wxEmptyString)
e2478fde
VZ
821{
822 // FIXME MT-unsafe
000eea7a 823 static int s_bInAssert = 0;
e2478fde 824
000eea7a
VZ
825 wxRecursionGuard guard(s_bInAssert);
826 if ( guard.IsInside() )
e2478fde 827 {
000eea7a 828 // can't use assert here to avoid infinite loops, so just trap
e2478fde
VZ
829 wxTrap();
830
e2478fde
VZ
831 return;
832 }
833
e2478fde
VZ
834 if ( !wxTheApp )
835 {
836 // by default, show the assert dialog box -- we can't customize this
837 // behaviour
0accd1cf 838 ShowAssertDialog(szFile, nLine, szFunc, szCond, szMsg);
e2478fde
VZ
839 }
840 else
841 {
842 // let the app process it as it wants
0accd1cf
VS
843 // FIXME-UTF8: use wc_str(), not c_str(), when ANSI build is removed
844 wxTheApp->OnAssertFailure(szFile.c_str(), nLine, szFunc.c_str(),
845 szCond.c_str(), szMsg.c_str());
e2478fde 846 }
e2478fde
VZ
847}
848
0accd1cf
VS
849void wxOnAssert(const wxString& szFile,
850 int nLine,
851 const wxString& szFunc,
852 const wxString& szCond,
853 const wxString& szMsg)
854{
855 wxDoOnAssert(szFile, nLine, szFunc, szCond, szMsg);
856}
857
858void wxOnAssert(const wxString& szFile,
859 int nLine,
860 const wxString& szFunc,
861 const wxString& szCond)
862{
863 wxDoOnAssert(szFile, nLine, szFunc, szCond);
864}
865
866void wxOnAssert(const wxChar *szFile,
867 int nLine,
868 const char *szFunc,
869 const wxChar *szCond,
870 const wxChar *szMsg)
871{
872 wxDoOnAssert(szFile, nLine, szFunc, szCond, szMsg);
873}
874
fbaf7d45
VS
875void wxOnAssert(const char *szFile,
876 int nLine,
877 const char *szFunc,
878 const char *szCond,
879 const wxString& szMsg)
880{
881 wxDoOnAssert(szFile, nLine, szFunc, szCond, szMsg);
882}
883
2b232d20
VZ
884void wxOnAssert(const char *szFile,
885 int nLine,
886 const char *szFunc,
887 const char *szCond,
888 const wxCStrData& msg)
889{
890 wxDoOnAssert(szFile, nLine, szFunc, szCond, msg);
891}
892
0accd1cf
VS
893#if wxUSE_UNICODE
894void wxOnAssert(const char *szFile,
895 int nLine,
896 const char *szFunc,
897 const char *szCond)
898{
899 wxDoOnAssert(szFile, nLine, szFunc, szCond);
900}
901
902void wxOnAssert(const char *szFile,
903 int nLine,
904 const char *szFunc,
905 const char *szCond,
906 const char *szMsg)
907{
908 wxDoOnAssert(szFile, nLine, szFunc, szCond, szMsg);
909}
910
911void wxOnAssert(const char *szFile,
912 int nLine,
913 const char *szFunc,
914 const char *szCond,
915 const wxChar *szMsg)
916{
917 wxDoOnAssert(szFile, nLine, szFunc, szCond, szMsg);
918}
919#endif // wxUSE_UNICODE
920
e2478fde
VZ
921#endif // __WXDEBUG__
922
923// ============================================================================
924// private functions implementation
925// ============================================================================
926
927#ifdef __WXDEBUG__
928
929static void LINKAGEMODE SetTraceMasks()
930{
931#if wxUSE_LOG
932 wxString mask;
933 if ( wxGetEnv(wxT("WXTRACE"), &mask) )
934 {
935 wxStringTokenizer tkn(mask, wxT(",;:"));
936 while ( tkn.HasMoreTokens() )
937 wxLog::AddTraceMask(tkn.GetNextToken());
938 }
939#endif // wxUSE_LOG
940}
941
6ef1b2a1 942static
e2478fde
VZ
943bool DoShowAssertDialog(const wxString& msg)
944{
945 // under MSW we can show the dialog even in the console mode
946#if defined(__WXMSW__) && !defined(__WXMICROWIN__)
947 wxString msgDlg(msg);
948
949 // this message is intentionally not translated -- it is for
950 // developpers only
951 msgDlg += wxT("\nDo you want to stop the program?\n")
952 wxT("You can also choose [Cancel] to suppress ")
953 wxT("further warnings.");
954
e0a050e3 955 switch ( ::MessageBox(NULL, msgDlg.wx_str(), _T("wxWidgets Debug Alert"),
e2478fde
VZ
956 MB_YESNOCANCEL | MB_ICONSTOP ) )
957 {
958 case IDYES:
959 wxTrap();
960 break;
961
962 case IDCANCEL:
963 // stop the asserts
964 return true;
965
966 //case IDNO: nothing to do
967 }
968#else // !__WXMSW__
969 wxFprintf(stderr, wxT("%s\n"), msg.c_str());
970 fflush(stderr);
971
972 // TODO: ask the user to enter "Y" or "N" on the console?
973 wxTrap();
974#endif // __WXMSW__/!__WXMSW__
975
976 // continue with the asserts
977 return false;
978}
979
4a92d4bc
VZ
980// show the assert modal dialog
981static
0accd1cf 982void ShowAssertDialog(const wxString& szFile,
4a92d4bc 983 int nLine,
0accd1cf
VS
984 const wxString& szFunc,
985 const wxString& szCond,
986 const wxString& szMsg,
4a92d4bc
VZ
987 wxAppTraits *traits)
988{
989 // this variable can be set to true to suppress "assert failure" messages
990 static bool s_bNoAsserts = false;
991
992 wxString msg;
993 msg.reserve(2048);
994
995 // make life easier for people using VC++ IDE by using this format: like
996 // this, clicking on the message will take us immediately to the place of
997 // the failed assert
998 msg.Printf(wxT("%s(%d): assert \"%s\" failed"), szFile, nLine, szCond);
999
dfa0b52f 1000 // add the function name, if any
0accd1cf 1001 if ( !szFunc.empty() )
dfa0b52f
VZ
1002 msg << _T(" in ") << szFunc << _T("()");
1003
1004 // and the message itself
0accd1cf 1005 if ( !szMsg.empty() )
2c9b3131 1006 {
4a92d4bc 1007 msg << _T(": ") << szMsg;
2c9b3131 1008 }
4a92d4bc
VZ
1009 else // no message given
1010 {
1011 msg << _T('.');
1012 }
1013
e2478fde
VZ
1014#if wxUSE_THREADS
1015 // if we are not in the main thread, output the assert directly and trap
1016 // since dialogs cannot be displayed
1017 if ( !wxThread::IsMain() )
1018 {
1019 msg += wxT(" [in child thread]");
1020
1021#if defined(__WXMSW__) && !defined(__WXMICROWIN__)
1022 msg << wxT("\r\n");
e0a050e3 1023 OutputDebugString(msg.wx_str());
e2478fde
VZ
1024#else
1025 // send to stderr
1026 wxFprintf(stderr, wxT("%s\n"), msg.c_str());
1027 fflush(stderr);
1028#endif
1029 // He-e-e-e-elp!! we're asserting in a child thread
1030 wxTrap();
1031 }
6c8f8d92 1032 else
e2478fde
VZ
1033#endif // wxUSE_THREADS
1034
1035 if ( !s_bNoAsserts )
1036 {
1037 // send it to the normal log destination
56fae7b8 1038 wxLogDebug(_T("%s"), msg.c_str());
e2478fde
VZ
1039
1040 if ( traits )
1041 {
1042 // delegate showing assert dialog (if possible) to that class
1043 s_bNoAsserts = traits->ShowAssertDialog(msg);
1044 }
1045 else // no traits object
1046 {
1047 // fall back to the function of last resort
1048 s_bNoAsserts = DoShowAssertDialog(msg);
1049 }
1050 }
1051}
1052
1053#endif // __WXDEBUG__