1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/appbase.cpp
3 // Purpose: implements wxAppConsoleBase class
4 // Author: Vadim Zeitlin
6 // Created: 19.06.2003 (extracted from common/appcmn.cpp)
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/msw/wrapwin.h" // includes windows.h for MessageBox()
36 #include "wx/wxcrtvararg.h"
39 #include "wx/apptrait.h"
40 #include "wx/cmdline.h"
41 #include "wx/confbase.h"
42 #include "wx/evtloop.h"
43 #include "wx/filename.h"
44 #include "wx/msgout.h"
45 #include "wx/scopedptr.h"
46 #include "wx/sysopt.h"
47 #include "wx/tokenzr.h"
48 #include "wx/thread.h"
50 #if wxUSE_EXCEPTIONS && wxUSE_STL
56 #if !defined(__WXMSW__) || defined(__WXMICROWIN__)
57 #include <signal.h> // for SIGTRAP used by wxTrap()
61 #endif // ! __WXPALMOS5__
64 #include "wx/fontmap.h"
65 #endif // wxUSE_FONTMAP
69 #include "wx/stackwalk.h"
71 #include "wx/msw/debughlp.h"
73 #endif // wxUSE_STACKWALKER
75 #include "wx/recguard.h"
76 #endif // wxDEBUG_LEVEL
78 // wxABI_VERSION can be defined when compiling applications but it should be
79 // left undefined when compiling the library itself, it is then set to its
80 // default value in version.h
81 #if wxABI_VERSION != wxMAJOR_VERSION * 10000 + wxMINOR_VERSION * 100 + 99
82 #error "wxABI_VERSION should not be defined when compiling the library"
85 // ----------------------------------------------------------------------------
86 // private functions prototypes
87 // ----------------------------------------------------------------------------
90 // really just show the assert dialog
91 static bool DoShowAssertDialog(const wxString
& msg
);
93 // prepare for showing the assert dialog, use the given traits or
94 // DoShowAssertDialog() as last fallback to really show it
96 void ShowAssertDialog(const wxString
& file
,
101 wxAppTraits
*traits
= NULL
);
102 #endif // wxDEBUG_LEVEL
105 // turn on the trace masks specified in the env variable WXTRACE
106 static void LINKAGEMODE
SetTraceMasks();
107 #endif // __WXDEBUG__
109 // ----------------------------------------------------------------------------
111 // ----------------------------------------------------------------------------
113 wxAppConsole
*wxAppConsoleBase::ms_appInstance
= NULL
;
115 wxAppInitializerFunction
wxAppConsoleBase::ms_appInitFn
= NULL
;
117 wxSocketManager
*wxAppTraitsBase::ms_manager
= NULL
;
119 WXDLLIMPEXP_DATA_BASE(wxList
) wxPendingDelete
;
121 // ----------------------------------------------------------------------------
123 // ----------------------------------------------------------------------------
125 // this defines wxEventLoopPtr
126 wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoopBase
)
128 // ============================================================================
129 // wxAppConsoleBase implementation
130 // ============================================================================
132 // ----------------------------------------------------------------------------
134 // ----------------------------------------------------------------------------
136 wxAppConsoleBase::wxAppConsoleBase()
140 m_bDoPendingEventProcessing
= true;
142 ms_appInstance
= static_cast<wxAppConsole
*>(this);
147 // In unicode mode the SetTraceMasks call can cause an apptraits to be
148 // created, but since we are still in the constructor the wrong kind will
149 // be created for GUI apps. Destroy it so it can be created again later.
155 wxAppConsoleBase::~wxAppConsoleBase()
157 // we're being destroyed and using this object from now on may not work or
158 // even crash so don't leave dangling pointers to it
159 ms_appInstance
= NULL
;
164 // ----------------------------------------------------------------------------
165 // initialization/cleanup
166 // ----------------------------------------------------------------------------
168 bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc
), wxChar
**WXUNUSED(argv
))
171 GetTraits()->SetLocale();
177 wxString
wxAppConsoleBase::GetAppName() const
179 wxString name
= m_appName
;
185 // the application name is, by default, the name of its executable file
186 wxFileName::SplitPath(argv
[0], NULL
, &name
, NULL
);
189 #endif // !__WXPALMOS__
193 wxString
wxAppConsoleBase::GetAppDisplayName() const
195 // use the explicitly provided display name, if any
196 if ( !m_appDisplayName
.empty() )
197 return m_appDisplayName
;
199 // if the application name was explicitly set, use it as is as capitalizing
200 // it won't always produce good results
201 if ( !m_appName
.empty() )
204 // if neither is set, use the capitalized version of the program file as
205 // it's the most reasonable default
206 return GetAppName().Capitalize();
209 wxEventLoopBase
*wxAppConsoleBase::CreateMainLoop()
211 return GetTraits()->CreateEventLoop();
214 void wxAppConsoleBase::CleanUp()
216 wxDELETE(m_mainLoop
);
219 // ----------------------------------------------------------------------------
221 // ----------------------------------------------------------------------------
223 bool wxAppConsoleBase::OnInit()
225 #if wxUSE_CMDLINE_PARSER
226 wxCmdLineParser
parser(argc
, argv
);
228 OnInitCmdLine(parser
);
231 switch ( parser
.Parse(false /* don't show usage */) )
234 cont
= OnCmdLineHelp(parser
);
238 cont
= OnCmdLineParsed(parser
);
242 cont
= OnCmdLineError(parser
);
248 #endif // wxUSE_CMDLINE_PARSER
253 int wxAppConsoleBase::OnRun()
258 int wxAppConsoleBase::OnExit()
261 // delete the config object if any (don't use Get() here, but Set()
262 // because Get() could create a new config object)
263 delete wxConfigBase::Set(NULL
);
264 #endif // wxUSE_CONFIG
269 void wxAppConsoleBase::Exit()
271 if (m_mainLoop
!= NULL
)
277 // ----------------------------------------------------------------------------
279 // ----------------------------------------------------------------------------
281 wxAppTraits
*wxAppConsoleBase::CreateTraits()
283 return new wxConsoleAppTraits
;
286 wxAppTraits
*wxAppConsoleBase::GetTraits()
288 // FIXME-MT: protect this with a CS?
291 m_traits
= CreateTraits();
293 wxASSERT_MSG( m_traits
, wxT("wxApp::CreateTraits() failed?") );
300 wxAppTraits
*wxAppConsoleBase::GetTraitsIfExists()
302 wxAppConsole
* const app
= GetInstance();
303 return app
? app
->GetTraits() : NULL
;
306 // ----------------------------------------------------------------------------
307 // wxEventLoop redirection
308 // ----------------------------------------------------------------------------
310 int wxAppConsoleBase::MainLoop()
312 wxEventLoopBaseTiedPtr
mainLoop(&m_mainLoop
, CreateMainLoop());
314 return m_mainLoop
? m_mainLoop
->Run() : -1;
317 void wxAppConsoleBase::ExitMainLoop()
319 // we should exit from the main event loop, not just any currently active
320 // (e.g. modal dialog) event loop
321 if ( m_mainLoop
&& m_mainLoop
->IsRunning() )
327 bool wxAppConsoleBase::Pending()
329 // use the currently active message loop here, not m_mainLoop, because if
330 // we're showing a modal dialog (with its own event loop) currently the
331 // main event loop is not running anyhow
332 wxEventLoopBase
* const loop
= wxEventLoopBase::GetActive();
334 return loop
&& loop
->Pending();
337 bool wxAppConsoleBase::Dispatch()
339 // see comment in Pending()
340 wxEventLoopBase
* const loop
= wxEventLoopBase::GetActive();
342 return loop
&& loop
->Dispatch();
345 bool wxAppConsoleBase::Yield(bool onlyIfNeeded
)
347 wxEventLoopBase
* const loop
= wxEventLoopBase::GetActive();
349 return loop
&& loop
->Yield(onlyIfNeeded
);
352 void wxAppConsoleBase::WakeUpIdle()
354 wxEventLoopBase
* const loop
= wxEventLoopBase::GetActive();
360 bool wxAppConsoleBase::ProcessIdle()
362 // synthesize an idle event and check if more of them are needed
364 event
.SetEventObject(this);
368 // flush the logged messages if any (do this after processing the events
369 // which could have logged new messages)
370 wxLog::FlushActive();
373 return event
.MoreRequested();
376 bool wxAppConsoleBase::UsesEventLoop() const
378 // in console applications we don't know whether we're going to have an
379 // event loop so assume we won't -- unless we already have one running
380 return wxEventLoopBase::GetActive() != NULL
;
383 // ----------------------------------------------------------------------------
385 // ----------------------------------------------------------------------------
388 bool wxAppConsoleBase::IsMainLoopRunning()
390 const wxAppConsole
* const app
= GetInstance();
392 return app
&& app
->m_mainLoop
!= NULL
;
395 int wxAppConsoleBase::FilterEvent(wxEvent
& WXUNUSED(event
))
397 // process the events normally by default
401 void wxAppConsoleBase::DelayPendingEventHandler(wxEvtHandler
* toDelay
)
403 wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker
);
405 // move the handler from the list of handlers with processable pending events
406 // to the list of handlers with pending events which needs to be processed later
407 m_handlersWithPendingEvents
.Remove(toDelay
);
409 if (m_handlersWithPendingDelayedEvents
.Index(toDelay
) == wxNOT_FOUND
)
410 m_handlersWithPendingDelayedEvents
.Add(toDelay
);
412 wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker
);
415 void wxAppConsoleBase::RemovePendingEventHandler(wxEvtHandler
* toRemove
)
417 wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker
);
419 if (m_handlersWithPendingEvents
.Index(toRemove
) != wxNOT_FOUND
)
421 m_handlersWithPendingEvents
.Remove(toRemove
);
423 // check that the handler was present only once in the list
424 wxASSERT_MSG( m_handlersWithPendingEvents
.Index(toRemove
) == wxNOT_FOUND
,
425 "Handler occurs twice in the m_handlersWithPendingEvents list!" );
427 //else: it wasn't in this list at all, it's ok
429 if (m_handlersWithPendingDelayedEvents
.Index(toRemove
) != wxNOT_FOUND
)
431 m_handlersWithPendingDelayedEvents
.Remove(toRemove
);
433 // check that the handler was present only once in the list
434 wxASSERT_MSG( m_handlersWithPendingDelayedEvents
.Index(toRemove
) == wxNOT_FOUND
,
435 "Handler occurs twice in m_handlersWithPendingDelayedEvents list!" );
437 //else: it wasn't in this list at all, it's ok
439 wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker
);
442 void wxAppConsoleBase::AppendPendingEventHandler(wxEvtHandler
* toAppend
)
444 wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker
);
446 if ( m_handlersWithPendingEvents
.Index(toAppend
) == wxNOT_FOUND
)
447 m_handlersWithPendingEvents
.Add(toAppend
);
449 wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker
);
452 bool wxAppConsoleBase::HasPendingEvents() const
454 wxENTER_CRIT_SECT(const_cast<wxAppConsoleBase
*>(this)->m_handlersWithPendingEventsLocker
);
456 bool has
= !m_handlersWithPendingEvents
.IsEmpty();
458 wxLEAVE_CRIT_SECT(const_cast<wxAppConsoleBase
*>(this)->m_handlersWithPendingEventsLocker
);
463 void wxAppConsoleBase::SuspendProcessingOfPendingEvents()
465 m_bDoPendingEventProcessing
= false;
468 void wxAppConsoleBase::ResumeProcessingOfPendingEvents()
470 m_bDoPendingEventProcessing
= true;
473 void wxAppConsoleBase::ProcessPendingEvents()
475 if ( m_bDoPendingEventProcessing
)
477 wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker
);
479 wxCHECK_RET( m_handlersWithPendingDelayedEvents
.IsEmpty(),
480 "this helper list should be empty" );
482 // iterate until the list becomes empty: the handlers remove themselves
483 // from it when they don't have any more pending events
484 while (!m_handlersWithPendingEvents
.IsEmpty())
486 // In ProcessPendingEvents(), new handlers might be added
487 // and we can safely leave the critical section here.
488 wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker
);
490 // NOTE: we always call ProcessPendingEvents() on the first event handler
491 // with pending events because handlers auto-remove themselves
492 // from this list (see RemovePendingEventHandler) if they have no
493 // more pending events.
494 m_handlersWithPendingEvents
[0]->ProcessPendingEvents();
496 wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker
);
499 // now the wxHandlersWithPendingEvents is surely empty; however some event
500 // handlers may have moved themselves into wxHandlersWithPendingDelayedEvents
501 // because of a selective wxYield call in progress.
502 // Now we need to move them back to wxHandlersWithPendingEvents so the next
503 // call to this function has the chance of processing them:
504 if (!m_handlersWithPendingDelayedEvents
.IsEmpty())
506 WX_APPEND_ARRAY(m_handlersWithPendingEvents
, m_handlersWithPendingDelayedEvents
);
507 m_handlersWithPendingDelayedEvents
.Clear();
510 wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker
);
513 // Garbage collect all objects previously scheduled for destruction.
514 DeletePendingObjects();
517 void wxAppConsoleBase::DeletePendingEvents()
519 wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker
);
521 wxCHECK_RET( m_handlersWithPendingDelayedEvents
.IsEmpty(),
522 "this helper list should be empty" );
524 for (unsigned int i
=0; i
<m_handlersWithPendingEvents
.GetCount(); i
++)
525 m_handlersWithPendingEvents
[i
]->DeletePendingEvents();
527 m_handlersWithPendingEvents
.Clear();
529 wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker
);
532 // ----------------------------------------------------------------------------
533 // delayed objects destruction
534 // ----------------------------------------------------------------------------
536 bool wxAppConsoleBase::IsScheduledForDestruction(wxObject
*object
) const
538 return wxPendingDelete
.Member(object
);
541 void wxAppConsoleBase::ScheduleForDestruction(wxObject
*object
)
543 if ( !UsesEventLoop() )
545 // we won't be able to delete it later so do it right now
549 //else: we either already have or will soon start an event loop
551 if ( !wxPendingDelete
.Member(object
) )
552 wxPendingDelete
.Append(object
);
555 void wxAppConsoleBase::DeletePendingObjects()
557 wxList::compatibility_iterator node
= wxPendingDelete
.GetFirst();
560 wxObject
*obj
= node
->GetData();
562 // remove it from the list first so that if we get back here somehow
563 // during the object deletion (e.g. wxYield called from its dtor) we
564 // wouldn't try to delete it the second time
565 if ( wxPendingDelete
.Member(obj
) )
566 wxPendingDelete
.Erase(node
);
570 // Deleting one object may have deleted other pending
571 // objects, so start from beginning of list again.
572 node
= wxPendingDelete
.GetFirst();
576 // ----------------------------------------------------------------------------
577 // exception handling
578 // ----------------------------------------------------------------------------
583 wxAppConsoleBase::HandleEvent(wxEvtHandler
*handler
,
584 wxEventFunction func
,
585 wxEvent
& event
) const
587 // by default, simply call the handler
588 (handler
->*func
)(event
);
591 void wxAppConsoleBase::CallEventHandler(wxEvtHandler
*handler
,
592 wxEventFunctor
& functor
,
593 wxEvent
& event
) const
595 // If the functor holds a method then, for backward compatibility, call
597 wxEventFunction eventFunction
= functor
.GetEvtMethod();
600 HandleEvent(handler
, eventFunction
, event
);
602 functor(handler
, event
);
605 void wxAppConsoleBase::OnUnhandledException()
608 // we're called from an exception handler so we can re-throw the exception
609 // to recover its type
616 catch ( std::exception
& e
)
618 what
.Printf("std::exception of type \"%s\", what() = \"%s\"",
619 typeid(e
).name(), e
.what());
624 what
= "unknown exception";
627 wxMessageOutputBest().Printf(
628 "*** Caught unhandled %s; terminating\n", what
630 #endif // __WXDEBUG__
633 // ----------------------------------------------------------------------------
634 // exceptions support
635 // ----------------------------------------------------------------------------
637 bool wxAppConsoleBase::OnExceptionInMainLoop()
641 // some compilers are too stupid to know that we never return after throw
642 #if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200)
647 #endif // wxUSE_EXCEPTIONS
649 // ----------------------------------------------------------------------------
651 // ----------------------------------------------------------------------------
653 #if wxUSE_CMDLINE_PARSER
655 #define OPTION_VERBOSE "verbose"
657 void wxAppConsoleBase::OnInitCmdLine(wxCmdLineParser
& parser
)
659 // the standard command line options
660 static const wxCmdLineEntryDesc cmdLineDesc
[] =
666 gettext_noop("show this help message"),
668 wxCMD_LINE_OPTION_HELP
676 gettext_noop("generate verbose log messages"),
686 parser
.SetDesc(cmdLineDesc
);
689 bool wxAppConsoleBase::OnCmdLineParsed(wxCmdLineParser
& parser
)
692 if ( parser
.Found(OPTION_VERBOSE
) )
694 wxLog::SetVerbose(true);
703 bool wxAppConsoleBase::OnCmdLineHelp(wxCmdLineParser
& parser
)
710 bool wxAppConsoleBase::OnCmdLineError(wxCmdLineParser
& parser
)
717 #endif // wxUSE_CMDLINE_PARSER
719 // ----------------------------------------------------------------------------
721 // ----------------------------------------------------------------------------
724 bool wxAppConsoleBase::CheckBuildOptions(const char *optionsSignature
,
725 const char *componentName
)
727 #if 0 // can't use wxLogTrace, not up and running yet
728 printf("checking build options object '%s' (ptr %p) in '%s'\n",
729 optionsSignature
, optionsSignature
, componentName
);
732 if ( strcmp(optionsSignature
, WX_BUILD_OPTIONS_SIGNATURE
) != 0 )
734 wxString lib
= wxString::FromAscii(WX_BUILD_OPTIONS_SIGNATURE
);
735 wxString prog
= wxString::FromAscii(optionsSignature
);
736 wxString progName
= wxString::FromAscii(componentName
);
739 msg
.Printf(wxT("Mismatch between the program and library build versions detected.\nThe library used %s,\nand %s used %s."),
740 lib
.c_str(), progName
.c_str(), prog
.c_str());
742 wxLogFatalError(msg
.c_str());
744 // normally wxLogFatalError doesn't return
751 void wxAppConsoleBase::OnAssertFailure(const wxChar
*file
,
758 ShowAssertDialog(file
, line
, func
, cond
, msg
, GetTraits());
760 // this function is still present even in debug level 0 build for ABI
761 // compatibility reasons but is never called there and so can simply do
768 #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL
771 void wxAppConsoleBase::OnAssert(const wxChar
*file
,
776 OnAssertFailure(file
, line
, NULL
, cond
, msg
);
779 // ============================================================================
780 // other classes implementations
781 // ============================================================================
783 // ----------------------------------------------------------------------------
784 // wxConsoleAppTraitsBase
785 // ----------------------------------------------------------------------------
789 wxLog
*wxConsoleAppTraitsBase::CreateLogTarget()
791 return new wxLogStderr
;
796 wxMessageOutput
*wxConsoleAppTraitsBase::CreateMessageOutput()
798 return new wxMessageOutputStderr
;
803 wxFontMapper
*wxConsoleAppTraitsBase::CreateFontMapper()
805 return (wxFontMapper
*)new wxFontMapperBase
;
808 #endif // wxUSE_FONTMAP
810 wxRendererNative
*wxConsoleAppTraitsBase::CreateRenderer()
812 // console applications don't use renderers
816 bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString
& msg
)
818 return wxAppTraitsBase::ShowAssertDialog(msg
);
821 bool wxConsoleAppTraitsBase::HasStderr()
823 // console applications always have stderr, even under Mac/Windows
827 // ----------------------------------------------------------------------------
829 // ----------------------------------------------------------------------------
832 void wxAppTraitsBase::SetLocale()
834 wxSetlocale(LC_ALL
, "");
835 wxUpdateLocaleIsUtf8();
840 void wxMutexGuiEnterImpl();
841 void wxMutexGuiLeaveImpl();
843 void wxAppTraitsBase::MutexGuiEnter()
845 wxMutexGuiEnterImpl();
848 void wxAppTraitsBase::MutexGuiLeave()
850 wxMutexGuiLeaveImpl();
853 void WXDLLIMPEXP_BASE
wxMutexGuiEnter()
855 wxAppTraits
* const traits
= wxAppConsoleBase::GetTraitsIfExists();
857 traits
->MutexGuiEnter();
860 void WXDLLIMPEXP_BASE
wxMutexGuiLeave()
862 wxAppTraits
* const traits
= wxAppConsoleBase::GetTraitsIfExists();
864 traits
->MutexGuiLeave();
866 #endif // wxUSE_THREADS
868 bool wxAppTraitsBase::ShowAssertDialog(const wxString
& msgOriginal
)
873 #if wxUSE_STACKWALKER
874 const wxString stackTrace
= GetAssertStackTrace();
875 if ( !stackTrace
.empty() )
877 msg
<< wxT("\n\nCall stack:\n") << stackTrace
;
879 wxMessageOutputDebug().Output(msg
);
881 #endif // wxUSE_STACKWALKER
883 return DoShowAssertDialog(msgOriginal
+ msg
);
884 #else // !wxDEBUG_LEVEL
885 wxUnusedVar(msgOriginal
);
888 #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL
891 #if wxUSE_STACKWALKER
892 wxString
wxAppTraitsBase::GetAssertStackTrace()
896 #if !defined(__WXMSW__)
897 // on Unix stack frame generation may take some time, depending on the
898 // size of the executable mainly... warn the user that we are working
899 wxFprintf(stderr
, "Collecting stack trace information, please wait...");
906 class StackDump
: public wxStackWalker
911 const wxString
& GetStackTrace() const { return m_stackTrace
; }
914 virtual void OnStackFrame(const wxStackFrame
& frame
)
916 m_stackTrace
<< wxString::Format
919 wx_truncate_cast(int, frame
.GetLevel())
922 wxString name
= frame
.GetName();
925 m_stackTrace
<< wxString::Format(wxT("%-40s"), name
.c_str());
929 m_stackTrace
<< wxString::Format(wxT("%p"), frame
.GetAddress());
932 if ( frame
.HasSourceLocation() )
934 m_stackTrace
<< wxT('\t')
935 << frame
.GetFileName()
940 m_stackTrace
<< wxT('\n');
944 wxString m_stackTrace
;
947 // don't show more than maxLines or we could get a dialog too tall to be
948 // shown on screen: 20 should be ok everywhere as even with 15 pixel high
949 // characters it is still only 300 pixels...
950 static const int maxLines
= 20;
953 dump
.Walk(2, maxLines
); // don't show OnAssert() call itself
954 stackTrace
= dump
.GetStackTrace();
956 const int count
= stackTrace
.Freq(wxT('\n'));
957 for ( int i
= 0; i
< count
- maxLines
; i
++ )
958 stackTrace
= stackTrace
.BeforeLast(wxT('\n'));
961 #else // !wxDEBUG_LEVEL
962 // this function is still present for ABI-compatibility even in debug level
963 // 0 build but is not used there and so can simply do nothing
965 #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL
967 #endif // wxUSE_STACKWALKER
970 // ============================================================================
971 // global functions implementation
972 // ============================================================================
982 // what else can we do?
991 wxTheApp
->WakeUpIdle();
993 //else: do nothing, what can we do?
997 bool wxAssertIsEqual(int x
, int y
)
1004 // break into the debugger
1007 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
1009 #elif defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
1011 #elif defined(__UNIX__)
1018 // default assert handler
1020 wxDefaultAssertHandler(const wxString
& file
,
1022 const wxString
& func
,
1023 const wxString
& cond
,
1024 const wxString
& msg
)
1026 // If this option is set, we should abort immediately when assert happens.
1027 if ( wxSystemOptions::GetOptionInt("exit-on-assert") )
1031 static int s_bInAssert
= 0;
1033 wxRecursionGuard
guard(s_bInAssert
);
1034 if ( guard
.IsInside() )
1036 // can't use assert here to avoid infinite loops, so just trap
1044 // by default, show the assert dialog box -- we can't customize this
1046 ShowAssertDialog(file
, line
, func
, cond
, msg
);
1050 // let the app process it as it wants
1051 // FIXME-UTF8: use wc_str(), not c_str(), when ANSI build is removed
1052 wxTheApp
->OnAssertFailure(file
.c_str(), line
, func
.c_str(),
1053 cond
.c_str(), msg
.c_str());
1057 wxAssertHandler_t wxTheAssertHandler
= wxDefaultAssertHandler
;
1059 void wxSetDefaultAssertHandler()
1061 wxTheAssertHandler
= wxDefaultAssertHandler
;
1064 void wxOnAssert(const wxString
& file
,
1066 const wxString
& func
,
1067 const wxString
& cond
,
1068 const wxString
& msg
)
1070 wxTheAssertHandler(file
, line
, func
, cond
, msg
);
1073 void wxOnAssert(const wxString
& file
,
1075 const wxString
& func
,
1076 const wxString
& cond
)
1078 wxTheAssertHandler(file
, line
, func
, cond
, wxString());
1081 void wxOnAssert(const wxChar
*file
,
1087 // this is the backwards-compatible version (unless we don't use Unicode)
1088 // so it could be called directly from the user code and this might happen
1089 // even when wxTheAssertHandler is NULL
1091 if ( wxTheAssertHandler
)
1092 #endif // wxUSE_UNICODE
1093 wxTheAssertHandler(file
, line
, func
, cond
, msg
);
1096 void wxOnAssert(const char *file
,
1100 const wxString
& msg
)
1102 wxTheAssertHandler(file
, line
, func
, cond
, msg
);
1105 void wxOnAssert(const char *file
,
1109 const wxCStrData
& msg
)
1111 wxTheAssertHandler(file
, line
, func
, cond
, msg
);
1115 void wxOnAssert(const char *file
,
1120 wxTheAssertHandler(file
, line
, func
, cond
, wxString());
1123 void wxOnAssert(const char *file
,
1129 wxTheAssertHandler(file
, line
, func
, cond
, msg
);
1132 void wxOnAssert(const char *file
,
1138 wxTheAssertHandler(file
, line
, func
, cond
, msg
);
1140 #endif // wxUSE_UNICODE
1142 #endif // wxDEBUG_LEVEL
1144 // ============================================================================
1145 // private functions implementation
1146 // ============================================================================
1150 static void LINKAGEMODE
SetTraceMasks()
1154 if ( wxGetEnv(wxT("WXTRACE"), &mask
) )
1156 wxStringTokenizer
tkn(mask
, wxT(",;:"));
1157 while ( tkn
.HasMoreTokens() )
1158 wxLog::AddTraceMask(tkn
.GetNextToken());
1163 #endif // __WXDEBUG__
1168 bool DoShowAssertDialog(const wxString
& msg
)
1170 // under MSW we can show the dialog even in the console mode
1171 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
1172 wxString
msgDlg(msg
);
1174 // this message is intentionally not translated -- it is for developers
1175 // only -- and the less code we use here, less is the danger of recursively
1176 // asserting and dying
1177 msgDlg
+= wxT("\nDo you want to stop the program?\n")
1178 wxT("You can also choose [Cancel] to suppress ")
1179 wxT("further warnings.");
1181 switch ( ::MessageBox(NULL
, msgDlg
.wx_str(), wxT("wxWidgets Debug Alert"),
1182 MB_YESNOCANCEL
| MB_ICONSTOP
) )
1192 //case IDNO: nothing to do
1196 #endif // __WXMSW__/!__WXMSW__
1198 // continue with the asserts by default
1202 // show the standard assert dialog
1204 void ShowAssertDialog(const wxString
& file
,
1206 const wxString
& func
,
1207 const wxString
& cond
,
1208 const wxString
& msgUser
,
1209 wxAppTraits
*traits
)
1211 // this variable can be set to true to suppress "assert failure" messages
1212 static bool s_bNoAsserts
= false;
1217 // make life easier for people using VC++ IDE by using this format: like
1218 // this, clicking on the message will take us immediately to the place of
1219 // the failed assert
1220 msg
.Printf(wxT("%s(%d): assert \"%s\" failed"), file
, line
, cond
);
1222 // add the function name, if any
1223 if ( !func
.empty() )
1224 msg
<< wxT(" in ") << func
<< wxT("()");
1226 // and the message itself
1227 if ( !msgUser
.empty() )
1229 msg
<< wxT(": ") << msgUser
;
1231 else // no message given
1237 // if we are not in the main thread, output the assert directly and trap
1238 // since dialogs cannot be displayed
1239 if ( !wxThread::IsMain() )
1241 msg
+= wxString::Format(" [in thread %lx]", wxThread::GetCurrentId());
1243 #endif // wxUSE_THREADS
1245 // log the assert in any case
1246 wxMessageOutputDebug().Output(msg
);
1248 if ( !s_bNoAsserts
)
1252 // delegate showing assert dialog (if possible) to that class
1253 s_bNoAsserts
= traits
->ShowAssertDialog(msg
);
1255 else // no traits object
1257 // fall back to the function of last resort
1258 s_bNoAsserts
= DoShowAssertDialog(msg
);
1263 #endif // wxDEBUG_LEVEL