1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/base/appbase.cpp
3 // Purpose: implements wxAppConsole 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 // License: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
35 #include "wx/apptrait.h"
36 #include "wx/cmdline.h"
37 #include "wx/confbase.h"
38 #include "wx/filename.h"
39 #include "wx/msgout.h"
40 #include "wx/tokenzr.h"
42 #if !defined(__WXMSW__) || defined(__WXMICROWIN__)
43 #include <signal.h> // for SIGTRAP used by wxTrap()
46 #if defined(__WXMSW__)
47 #include "wx/msw/wrapwin.h" // includes windows.h for MessageBox()
51 #include "wx/fontmap.h"
52 #endif // wxUSE_FONTMAP
54 #if defined(__DARWIN__) && defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
55 // For MacTypes.h for Debugger function
56 #include <CoreFoundation/CFBase.h>
59 #if defined(__WXMAC__)
60 // VZ: MacTypes.h is enough under Mac OS X (where I could test it) but
61 // I don't know which headers are needed under earlier systems so
62 // include everything when in doubt
66 #include "wx/mac/private.h" // includes mac headers
72 #include "wx/stackwalk.h"
74 #include "wx/msw/debughlp.h"
76 #endif // wxUSE_STACKWALKER
79 // ----------------------------------------------------------------------------
80 // private functions prototypes
81 // ----------------------------------------------------------------------------
84 // really just show the assert dialog
85 static bool DoShowAssertDialog(const wxString
& msg
);
87 // prepare for showing the assert dialog, use the given traits or
88 // DoShowAssertDialog() as last fallback to really show it
90 void ShowAssertDialog(const wxChar
*szFile
,
94 wxAppTraits
*traits
= NULL
);
96 // turn on the trace masks specified in the env variable WXTRACE
97 static void LINKAGEMODE
SetTraceMasks();
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 wxAppConsole
*wxAppConsole::ms_appInstance
= NULL
;
106 wxAppInitializerFunction
wxAppConsole::ms_appInitFn
= NULL
;
108 // ============================================================================
109 // wxAppConsole implementation
110 // ============================================================================
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 wxAppConsole::wxAppConsole()
120 ms_appInstance
= this;
125 // In unicode mode the SetTraceMasks call can cause an apptraits to be
126 // created, but since we are still in the constructor the wrong kind will
127 // be created for GUI apps. Destroy it so it can be created again later.
134 wxAppConsole::~wxAppConsole()
139 // ----------------------------------------------------------------------------
140 // initilization/cleanup
141 // ----------------------------------------------------------------------------
143 bool wxAppConsole::Initialize(int& argc
, wxChar
**argv
)
145 // remember the command line arguments
150 if ( m_appName
.empty() && argv
)
152 // the application name is, by default, the name of its executable file
153 wxFileName::SplitPath(argv
[0], NULL
, &m_appName
, NULL
);
160 void wxAppConsole::CleanUp()
164 // ----------------------------------------------------------------------------
166 // ----------------------------------------------------------------------------
168 bool wxAppConsole::OnInit()
170 #if wxUSE_CMDLINE_PARSER
171 wxCmdLineParser
parser(argc
, argv
);
173 OnInitCmdLine(parser
);
176 switch ( parser
.Parse(false /* don't show usage */) )
179 cont
= OnCmdLineHelp(parser
);
183 cont
= OnCmdLineParsed(parser
);
187 cont
= OnCmdLineError(parser
);
193 #endif // wxUSE_CMDLINE_PARSER
198 int wxAppConsole::OnExit()
201 // delete the config object if any (don't use Get() here, but Set()
202 // because Get() could create a new config object)
203 delete wxConfigBase::Set((wxConfigBase
*) NULL
);
204 #endif // wxUSE_CONFIG
206 // use Set(NULL) and not Get() to avoid creating a message output object on
207 // demand when we just want to delete it
208 delete wxMessageOutput::Set(NULL
);
213 void wxAppConsole::Exit()
218 // ----------------------------------------------------------------------------
220 // ----------------------------------------------------------------------------
222 wxAppTraits
*wxAppConsole::CreateTraits()
224 return new wxConsoleAppTraits
;
227 wxAppTraits
*wxAppConsole::GetTraits()
229 // FIXME-MT: protect this with a CS?
232 m_traits
= CreateTraits();
234 wxASSERT_MSG( m_traits
, _T("wxApp::CreateTraits() failed?") );
240 // we must implement CreateXXX() in wxApp itself for backwards compatibility
241 #if WXWIN_COMPATIBILITY_2_4
245 wxLog
*wxAppConsole::CreateLogTarget()
247 wxAppTraits
*traits
= GetTraits();
248 return traits
? traits
->CreateLogTarget() : NULL
;
253 wxMessageOutput
*wxAppConsole::CreateMessageOutput()
255 wxAppTraits
*traits
= GetTraits();
256 return traits
? traits
->CreateMessageOutput() : NULL
;
259 #endif // WXWIN_COMPATIBILITY_2_4
261 // ----------------------------------------------------------------------------
263 // ----------------------------------------------------------------------------
265 void wxAppConsole::ProcessPendingEvents()
268 if ( !wxPendingEventsLocker
)
272 // ensure that we're the only thread to modify the pending events list
273 wxENTER_CRIT_SECT( *wxPendingEventsLocker
);
275 if ( !wxPendingEvents
)
277 wxLEAVE_CRIT_SECT( *wxPendingEventsLocker
);
281 // iterate until the list becomes empty
282 wxList::compatibility_iterator node
= wxPendingEvents
->GetFirst();
285 wxEvtHandler
*handler
= (wxEvtHandler
*)node
->GetData();
286 wxPendingEvents
->Erase(node
);
288 // In ProcessPendingEvents(), new handlers might be add
289 // and we can safely leave the critical section here.
290 wxLEAVE_CRIT_SECT( *wxPendingEventsLocker
);
292 handler
->ProcessPendingEvents();
294 wxENTER_CRIT_SECT( *wxPendingEventsLocker
);
296 node
= wxPendingEvents
->GetFirst();
299 wxLEAVE_CRIT_SECT( *wxPendingEventsLocker
);
302 int wxAppConsole::FilterEvent(wxEvent
& WXUNUSED(event
))
304 // process the events normally by default
308 // ----------------------------------------------------------------------------
309 // exception handling
310 // ----------------------------------------------------------------------------
315 wxAppConsole::HandleEvent(wxEvtHandler
*handler
,
316 wxEventFunction func
,
317 wxEvent
& event
) const
319 // by default, call wxApp::OnExceptionInMainLoop if an exception occurs
322 handler
->DoHandleEvent(func
, event
);
326 wxConstCast(this, wxAppConsole
)->OnExceptionInMainLoop();
331 wxAppConsole::OnExceptionInMainLoop()
335 // some compilers are too stupid to know that we never return after throw
336 #if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200)
341 #endif // wxUSE_EXCEPTIONS
343 // ----------------------------------------------------------------------------
345 // ----------------------------------------------------------------------------
347 #if wxUSE_CMDLINE_PARSER
349 #define OPTION_VERBOSE _T("verbose")
351 void wxAppConsole::OnInitCmdLine(wxCmdLineParser
& parser
)
353 // the standard command line options
354 static const wxCmdLineEntryDesc cmdLineDesc
[] =
360 gettext_noop("show this help message"),
362 wxCMD_LINE_OPTION_HELP
370 gettext_noop("generate verbose log messages"),
387 parser
.SetDesc(cmdLineDesc
);
390 bool wxAppConsole::OnCmdLineParsed(wxCmdLineParser
& parser
)
393 if ( parser
.Found(OPTION_VERBOSE
) )
395 wxLog::SetVerbose(true);
404 bool wxAppConsole::OnCmdLineHelp(wxCmdLineParser
& parser
)
411 bool wxAppConsole::OnCmdLineError(wxCmdLineParser
& parser
)
418 #endif // wxUSE_CMDLINE_PARSER
420 // ----------------------------------------------------------------------------
422 // ----------------------------------------------------------------------------
425 bool wxAppConsole::CheckBuildOptions(const char *optionsSignature
,
426 const char *componentName
)
428 #if 0 // can't use wxLogTrace, not up and running yet
429 printf("checking build options object '%s' (ptr %p) in '%s'\n",
430 optionsSignature
, optionsSignature
, componentName
);
433 if ( strcmp(optionsSignature
, WX_BUILD_OPTIONS_SIGNATURE
) != 0 )
435 wxString lib
= wxString::FromAscii(WX_BUILD_OPTIONS_SIGNATURE
);
436 wxString prog
= wxString::FromAscii(optionsSignature
);
437 wxString progName
= wxString::FromAscii(componentName
);
440 msg
.Printf(_T("Mismatch between the program and library build versions detected.\nThe library used %s,\nand %s used %s."),
441 lib
.c_str(), progName
.c_str(), prog
.c_str());
443 wxLogFatalError(msg
.c_str());
445 // normally wxLogFatalError doesn't return
455 void wxAppConsole::OnAssert(const wxChar
*file
,
460 ShowAssertDialog(file
, line
, cond
, msg
, GetTraits());
463 #endif // __WXDEBUG__
465 #if WXWIN_COMPATIBILITY_2_4
467 bool wxAppConsole::CheckBuildOptions(const wxBuildOptions
& buildOptions
)
469 return CheckBuildOptions(buildOptions
.m_signature
, "your program");
474 // ============================================================================
475 // other classes implementations
476 // ============================================================================
478 // ----------------------------------------------------------------------------
479 // wxConsoleAppTraitsBase
480 // ----------------------------------------------------------------------------
484 wxLog
*wxConsoleAppTraitsBase::CreateLogTarget()
486 return new wxLogStderr
;
491 wxMessageOutput
*wxConsoleAppTraitsBase::CreateMessageOutput()
493 return new wxMessageOutputStderr
;
498 wxFontMapper
*wxConsoleAppTraitsBase::CreateFontMapper()
500 return (wxFontMapper
*)new wxFontMapperBase
;
503 #endif // wxUSE_FONTMAP
505 wxRendererNative
*wxConsoleAppTraitsBase::CreateRenderer()
507 // console applications don't use renderers
512 bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString
& msg
)
514 return wxAppTraitsBase::ShowAssertDialog(msg
);
518 bool wxConsoleAppTraitsBase::HasStderr()
520 // console applications always have stderr, even under Mac/Windows
524 void wxConsoleAppTraitsBase::ScheduleForDestroy(wxObject
*object
)
529 void wxConsoleAppTraitsBase::RemoveFromPendingDelete(wxObject
* WXUNUSED(object
))
535 GSocketGUIFunctionsTable
* wxConsoleAppTraitsBase::GetSocketGUIFunctionsTable()
541 // ----------------------------------------------------------------------------
543 // ----------------------------------------------------------------------------
547 bool wxAppTraitsBase::ShowAssertDialog(const wxString
& msg
)
549 return DoShowAssertDialog(msg
);
552 #endif // __WXDEBUG__
554 // ============================================================================
555 // global functions implementation
556 // ============================================================================
566 // what else can we do?
575 wxTheApp
->WakeUpIdle();
577 //else: do nothing, what can we do?
583 bool wxAssertIsEqual(int x
, int y
)
588 // break into the debugger
591 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
593 #elif defined(__WXMAC__) && !defined(__DARWIN__)
599 #elif defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
601 #elif defined(__UNIX__)
608 void wxAssert(int cond
,
609 const wxChar
*szFile
,
611 const wxChar
*szCond
,
615 wxOnAssert(szFile
, nLine
, szCond
, szMsg
);
618 // this function is called when an assert fails
619 void wxOnAssert(const wxChar
*szFile
,
621 const wxChar
*szCond
,
625 static bool s_bInAssert
= false;
629 // He-e-e-e-elp!! we're trapped in endless loop
641 // by default, show the assert dialog box -- we can't customize this
643 ShowAssertDialog(szFile
, nLine
, szCond
, szMsg
);
647 // let the app process it as it wants
648 wxTheApp
->OnAssert(szFile
, nLine
, szCond
, szMsg
);
654 #endif // __WXDEBUG__
656 // ============================================================================
657 // private functions implementation
658 // ============================================================================
662 static void LINKAGEMODE
SetTraceMasks()
666 if ( wxGetEnv(wxT("WXTRACE"), &mask
) )
668 wxStringTokenizer
tkn(mask
, wxT(",;:"));
669 while ( tkn
.HasMoreTokens() )
670 wxLog::AddTraceMask(tkn
.GetNextToken());
675 bool DoShowAssertDialog(const wxString
& msg
)
677 // under MSW we can show the dialog even in the console mode
678 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
679 wxString
msgDlg(msg
);
681 // this message is intentionally not translated -- it is for
683 msgDlg
+= wxT("\nDo you want to stop the program?\n")
684 wxT("You can also choose [Cancel] to suppress ")
685 wxT("further warnings.");
687 switch ( ::MessageBox(NULL
, msgDlg
, _T("wxWidgets Debug Alert"),
688 MB_YESNOCANCEL
| MB_ICONSTOP
) )
698 //case IDNO: nothing to do
701 wxFprintf(stderr
, wxT("%s\n"), msg
.c_str());
704 // TODO: ask the user to enter "Y" or "N" on the console?
706 #endif // __WXMSW__/!__WXMSW__
708 // continue with the asserts
712 #if wxUSE_STACKWALKER
713 static wxString
GetAssertStackTrace()
718 // check that we can get the stack trace before trying to do it
719 if ( !wxDbgHelpDLL::Init() )
723 class StackDump
: public wxStackWalker
728 const wxString
& GetStackTrace() const { return m_stackTrace
; }
731 virtual void OnStackFrame(const wxStackFrame
& frame
)
733 m_stackTrace
<< wxString::Format(_T("[%02d] "), frame
.GetLevel());
735 wxString name
= frame
.GetName();
738 m_stackTrace
<< wxString::Format(_T("%-40s"), name
.c_str());
742 m_stackTrace
<< wxString::Format
745 (unsigned long)frame
.GetAddress()
749 if ( frame
.HasSourceLocation() )
751 m_stackTrace
<< _T('\t')
752 << frame
.GetFileName()
757 m_stackTrace
<< _T('\n');
761 wxString m_stackTrace
;
765 dump
.Walk(5); // don't show OnAssert() call itself
766 stackTrace
= dump
.GetStackTrace();
768 // don't show more than maxLines or we could get a dialog too tall to be
769 // shown on screen: 20 should be ok everywhere as even with 15 pixel high
770 // characters it is still only 300 pixels...
771 static const int maxLines
= 20;
772 const int count
= stackTrace
.Freq(wxT('\n'));
773 for ( int i
= 0; i
< count
- maxLines
; i
++ )
774 stackTrace
= stackTrace
.BeforeLast(wxT('\n'));
778 #endif // wxUSE_STACKWALKER
780 // show the assert modal dialog
782 void ShowAssertDialog(const wxChar
*szFile
,
784 const wxChar
*szCond
,
788 // this variable can be set to true to suppress "assert failure" messages
789 static bool s_bNoAsserts
= false;
794 // make life easier for people using VC++ IDE by using this format: like
795 // this, clicking on the message will take us immediately to the place of
797 msg
.Printf(wxT("%s(%d): assert \"%s\" failed"), szFile
, nLine
, szCond
);
801 msg
<< _T(": ") << szMsg
;
803 else // no message given
808 #if wxUSE_STACKWALKER
809 const wxString stackTrace
= GetAssertStackTrace();
810 if ( !stackTrace
.empty() )
812 msg
<< _T("\n\nCall stack:\n") << stackTrace
;
814 #endif // wxUSE_STACKWALKER
817 // if we are not in the main thread, output the assert directly and trap
818 // since dialogs cannot be displayed
819 if ( !wxThread::IsMain() )
821 msg
+= wxT(" [in child thread]");
823 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
825 OutputDebugString(msg
);
828 wxFprintf(stderr
, wxT("%s\n"), msg
.c_str());
831 // He-e-e-e-elp!! we're asserting in a child thread
835 #endif // wxUSE_THREADS
839 // send it to the normal log destination
840 wxLogDebug(_T("%s"), msg
.c_str());
844 // delegate showing assert dialog (if possible) to that class
845 s_bNoAsserts
= traits
->ShowAssertDialog(msg
);
847 else // no traits object
849 // fall back to the function of last resort
850 s_bNoAsserts
= DoShowAssertDialog(msg
);
855 #endif // __WXDEBUG__