]>
Commit | Line | Data |
---|---|---|
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> | |
526954c5 | 9 | // Licence: wxWindows licence |
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" |
4d1ea475 | 46 | #include "wx/sysopt.h" |
e2478fde | 47 | #include "wx/tokenzr.h" |
204abcd4 | 48 | #include "wx/thread.h" |
e2478fde | 49 | |
1663c655 VZ |
50 | #if wxUSE_EXCEPTIONS && wxUSE_STL |
51 | #include <exception> | |
52 | #include <typeinfo> | |
53 | #endif | |
54 | ||
9b4da627 | 55 | #ifndef __WXPALMOS5__ |
e2478fde VZ |
56 | #if !defined(__WXMSW__) || defined(__WXMICROWIN__) |
57 | #include <signal.h> // for SIGTRAP used by wxTrap() | |
58 | #endif //Win/Unix | |
59 | ||
0e5ab030 | 60 | #include <locale.h> |
9b4da627 | 61 | #endif // ! __WXPALMOS5__ |
0e5ab030 | 62 | |
1c193821 JS |
63 | #if wxUSE_FONTMAP |
64 | #include "wx/fontmap.h" | |
65 | #endif // wxUSE_FONTMAP | |
66 | ||
657a8a35 | 67 | #if wxDEBUG_LEVEL |
7b1c3469 | 68 | #if wxUSE_STACKWALKER |
6c8f8d92 | 69 | #include "wx/stackwalk.h" |
4a92d4bc VZ |
70 | #ifdef __WXMSW__ |
71 | #include "wx/msw/debughlp.h" | |
72 | #endif | |
6c8f8d92 | 73 | #endif // wxUSE_STACKWALKER |
000eea7a VZ |
74 | |
75 | #include "wx/recguard.h" | |
657a8a35 | 76 | #endif // wxDEBUG_LEVEL |
6c8f8d92 | 77 | |
121aea46 MW |
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" | |
83 | #endif | |
84 | ||
e2478fde VZ |
85 | // ---------------------------------------------------------------------------- |
86 | // private functions prototypes | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
657a8a35 | 89 | #if wxDEBUG_LEVEL |
e2478fde VZ |
90 | // really just show the assert dialog |
91 | static bool DoShowAssertDialog(const wxString& msg); | |
92 | ||
93 | // prepare for showing the assert dialog, use the given traits or | |
94 | // DoShowAssertDialog() as last fallback to really show it | |
95 | static | |
657a8a35 VZ |
96 | void ShowAssertDialog(const wxString& file, |
97 | int line, | |
98 | const wxString& func, | |
99 | const wxString& cond, | |
100 | const wxString& msg, | |
e2478fde | 101 | wxAppTraits *traits = NULL); |
657a8a35 | 102 | #endif // wxDEBUG_LEVEL |
e2478fde | 103 | |
657a8a35 | 104 | #ifdef __WXDEBUG__ |
e2478fde VZ |
105 | // turn on the trace masks specified in the env variable WXTRACE |
106 | static void LINKAGEMODE SetTraceMasks(); | |
107 | #endif // __WXDEBUG__ | |
108 | ||
109 | // ---------------------------------------------------------------------------- | |
110 | // global vars | |
111 | // ---------------------------------------------------------------------------- | |
112 | ||
e0954e72 | 113 | wxAppConsole *wxAppConsoleBase::ms_appInstance = NULL; |
e2478fde | 114 | |
e0954e72 | 115 | wxAppInitializerFunction wxAppConsoleBase::ms_appInitFn = NULL; |
e2478fde | 116 | |
51fe4b60 VZ |
117 | wxSocketManager *wxAppTraitsBase::ms_manager = NULL; |
118 | ||
3185abc2 VZ |
119 | WXDLLIMPEXP_DATA_BASE(wxList) wxPendingDelete; |
120 | ||
b46b1d59 VZ |
121 | // ---------------------------------------------------------------------------- |
122 | // wxEventLoopPtr | |
123 | // ---------------------------------------------------------------------------- | |
124 | ||
125 | // this defines wxEventLoopPtr | |
2ddff00c | 126 | wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoopBase) |
b46b1d59 | 127 | |
e2478fde | 128 | // ============================================================================ |
e0954e72 | 129 | // wxAppConsoleBase implementation |
e2478fde VZ |
130 | // ============================================================================ |
131 | ||
132 | // ---------------------------------------------------------------------------- | |
133 | // ctor/dtor | |
134 | // ---------------------------------------------------------------------------- | |
135 | ||
e0954e72 | 136 | wxAppConsoleBase::wxAppConsoleBase() |
e2478fde VZ |
137 | { |
138 | m_traits = NULL; | |
b46b1d59 | 139 | m_mainLoop = NULL; |
cae9e7b1 | 140 | m_bDoPendingEventProcessing = true; |
e2478fde | 141 | |
5c33522f | 142 | ms_appInstance = static_cast<wxAppConsole *>(this); |
e2478fde VZ |
143 | |
144 | #ifdef __WXDEBUG__ | |
145 | SetTraceMasks(); | |
bc334f39 RD |
146 | #if wxUSE_UNICODE |
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. | |
5276b0a5 | 150 | wxDELETE(m_traits); |
bc334f39 | 151 | #endif |
e2478fde VZ |
152 | #endif |
153 | } | |
154 | ||
e0954e72 | 155 | wxAppConsoleBase::~wxAppConsoleBase() |
e2478fde | 156 | { |
89fb9e52 VZ |
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; | |
160 | ||
e2478fde VZ |
161 | delete m_traits; |
162 | } | |
163 | ||
94826170 | 164 | // ---------------------------------------------------------------------------- |
8b93348e | 165 | // initialization/cleanup |
94826170 VZ |
166 | // ---------------------------------------------------------------------------- |
167 | ||
f432e677 | 168 | bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc), wxChar **WXUNUSED(argv)) |
94826170 | 169 | { |
d774f916 VZ |
170 | #if wxUSE_INTL |
171 | GetTraits()->SetLocale(); | |
172 | #endif // wxUSE_INTL | |
173 | ||
f432e677 VZ |
174 | return true; |
175 | } | |
176 | ||
177 | wxString wxAppConsoleBase::GetAppName() const | |
178 | { | |
179 | wxString name = m_appName; | |
4055ed82 | 180 | #ifndef __WXPALMOS__ |
f432e677 | 181 | if ( name.empty() ) |
94826170 | 182 | { |
f432e677 VZ |
183 | if ( argv ) |
184 | { | |
185 | // the application name is, by default, the name of its executable file | |
186 | wxFileName::SplitPath(argv[0], NULL, &name, NULL); | |
187 | } | |
94826170 | 188 | } |
d774f916 | 189 | #endif // !__WXPALMOS__ |
f432e677 VZ |
190 | return name; |
191 | } | |
94826170 | 192 | |
f432e677 VZ |
193 | wxString wxAppConsoleBase::GetAppDisplayName() const |
194 | { | |
195 | // use the explicitly provided display name, if any | |
196 | if ( !m_appDisplayName.empty() ) | |
197 | return m_appDisplayName; | |
198 | ||
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() ) | |
202 | return m_appName; | |
203 | ||
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(); | |
94826170 VZ |
207 | } |
208 | ||
e0954e72 | 209 | wxEventLoopBase *wxAppConsoleBase::CreateMainLoop() |
b46b1d59 VZ |
210 | { |
211 | return GetTraits()->CreateEventLoop(); | |
212 | } | |
213 | ||
e0954e72 | 214 | void wxAppConsoleBase::CleanUp() |
94826170 | 215 | { |
5276b0a5 | 216 | wxDELETE(m_mainLoop); |
94826170 VZ |
217 | } |
218 | ||
e2478fde VZ |
219 | // ---------------------------------------------------------------------------- |
220 | // OnXXX() callbacks | |
221 | // ---------------------------------------------------------------------------- | |
222 | ||
e0954e72 | 223 | bool wxAppConsoleBase::OnInit() |
e2478fde VZ |
224 | { |
225 | #if wxUSE_CMDLINE_PARSER | |
226 | wxCmdLineParser parser(argc, argv); | |
227 | ||
228 | OnInitCmdLine(parser); | |
229 | ||
230 | bool cont; | |
4629016d | 231 | switch ( parser.Parse(false /* don't show usage */) ) |
e2478fde VZ |
232 | { |
233 | case -1: | |
234 | cont = OnCmdLineHelp(parser); | |
235 | break; | |
236 | ||
237 | case 0: | |
238 | cont = OnCmdLineParsed(parser); | |
239 | break; | |
240 | ||
241 | default: | |
242 | cont = OnCmdLineError(parser); | |
243 | break; | |
244 | } | |
245 | ||
246 | if ( !cont ) | |
4629016d | 247 | return false; |
e2478fde VZ |
248 | #endif // wxUSE_CMDLINE_PARSER |
249 | ||
4629016d | 250 | return true; |
e2478fde VZ |
251 | } |
252 | ||
e0954e72 | 253 | int wxAppConsoleBase::OnRun() |
b46b1d59 VZ |
254 | { |
255 | return MainLoop(); | |
8ac09e52 | 256 | } |
b46b1d59 | 257 | |
e0954e72 | 258 | int wxAppConsoleBase::OnExit() |
e2478fde VZ |
259 | { |
260 | #if wxUSE_CONFIG | |
261 | // delete the config object if any (don't use Get() here, but Set() | |
262 | // because Get() could create a new config object) | |
d3b9f782 | 263 | delete wxConfigBase::Set(NULL); |
e2478fde VZ |
264 | #endif // wxUSE_CONFIG |
265 | ||
e2478fde VZ |
266 | return 0; |
267 | } | |
268 | ||
e0954e72 | 269 | void wxAppConsoleBase::Exit() |
e2478fde | 270 | { |
b46b1d59 VZ |
271 | if (m_mainLoop != NULL) |
272 | ExitMainLoop(); | |
273 | else | |
274 | exit(-1); | |
e2478fde VZ |
275 | } |
276 | ||
277 | // ---------------------------------------------------------------------------- | |
278 | // traits stuff | |
279 | // ---------------------------------------------------------------------------- | |
280 | ||
e0954e72 | 281 | wxAppTraits *wxAppConsoleBase::CreateTraits() |
e2478fde | 282 | { |
7843d11b | 283 | return new wxConsoleAppTraits; |
e2478fde VZ |
284 | } |
285 | ||
e0954e72 | 286 | wxAppTraits *wxAppConsoleBase::GetTraits() |
e2478fde VZ |
287 | { |
288 | // FIXME-MT: protect this with a CS? | |
289 | if ( !m_traits ) | |
290 | { | |
291 | m_traits = CreateTraits(); | |
292 | ||
9a83f860 | 293 | wxASSERT_MSG( m_traits, wxT("wxApp::CreateTraits() failed?") ); |
e2478fde VZ |
294 | } |
295 | ||
296 | return m_traits; | |
297 | } | |
298 | ||
96b2cbe8 VZ |
299 | /* static */ |
300 | wxAppTraits *wxAppConsoleBase::GetTraitsIfExists() | |
301 | { | |
302 | wxAppConsole * const app = GetInstance(); | |
303 | return app ? app->GetTraits() : NULL; | |
304 | } | |
305 | ||
e2478fde | 306 | // ---------------------------------------------------------------------------- |
dde19c21 | 307 | // wxEventLoop redirection |
e2478fde VZ |
308 | // ---------------------------------------------------------------------------- |
309 | ||
e0954e72 | 310 | int wxAppConsoleBase::MainLoop() |
e2478fde | 311 | { |
2ddff00c | 312 | wxEventLoopBaseTiedPtr mainLoop(&m_mainLoop, CreateMainLoop()); |
b46b1d59 VZ |
313 | |
314 | return m_mainLoop ? m_mainLoop->Run() : -1; | |
315 | } | |
316 | ||
e0954e72 | 317 | void wxAppConsoleBase::ExitMainLoop() |
b46b1d59 VZ |
318 | { |
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() ) | |
322 | { | |
323 | m_mainLoop->Exit(0); | |
324 | } | |
325 | } | |
326 | ||
e0954e72 | 327 | bool wxAppConsoleBase::Pending() |
b46b1d59 VZ |
328 | { |
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 | |
2ddff00c | 332 | wxEventLoopBase * const loop = wxEventLoopBase::GetActive(); |
b46b1d59 VZ |
333 | |
334 | return loop && loop->Pending(); | |
335 | } | |
336 | ||
e0954e72 | 337 | bool wxAppConsoleBase::Dispatch() |
b46b1d59 VZ |
338 | { |
339 | // see comment in Pending() | |
2ddff00c | 340 | wxEventLoopBase * const loop = wxEventLoopBase::GetActive(); |
b46b1d59 VZ |
341 | |
342 | return loop && loop->Dispatch(); | |
343 | } | |
8ecff181 | 344 | |
dde19c21 FM |
345 | bool wxAppConsoleBase::Yield(bool onlyIfNeeded) |
346 | { | |
347 | wxEventLoopBase * const loop = wxEventLoopBase::GetActive(); | |
d48b06bd | 348 | |
dde19c21 | 349 | return loop && loop->Yield(onlyIfNeeded); |
e2478fde VZ |
350 | } |
351 | ||
e0954e72 | 352 | void wxAppConsoleBase::WakeUpIdle() |
b46b1d59 | 353 | { |
53cda845 VZ |
354 | wxEventLoopBase * const loop = wxEventLoopBase::GetActive(); |
355 | ||
356 | if ( loop ) | |
357 | loop->WakeUp(); | |
b46b1d59 VZ |
358 | } |
359 | ||
e0954e72 | 360 | bool wxAppConsoleBase::ProcessIdle() |
b46b1d59 | 361 | { |
a758f601 VZ |
362 | // synthesize an idle event and check if more of them are needed |
363 | wxIdleEvent event; | |
364 | event.SetEventObject(this); | |
365 | ProcessEvent(event); | |
dde19c21 | 366 | |
0055cc0e VZ |
367 | #if wxUSE_LOG |
368 | // flush the logged messages if any (do this after processing the events | |
369 | // which could have logged new messages) | |
370 | wxLog::FlushActive(); | |
371 | #endif | |
372 | ||
a758f601 | 373 | return event.MoreRequested(); |
dde19c21 | 374 | } |
14eb37a0 | 375 | |
3185abc2 VZ |
376 | bool wxAppConsoleBase::UsesEventLoop() const |
377 | { | |
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; | |
381 | } | |
382 | ||
dde19c21 FM |
383 | // ---------------------------------------------------------------------------- |
384 | // events | |
385 | // ---------------------------------------------------------------------------- | |
b46b1d59 | 386 | |
dde19c21 FM |
387 | /* static */ |
388 | bool wxAppConsoleBase::IsMainLoopRunning() | |
389 | { | |
390 | const wxAppConsole * const app = GetInstance(); | |
391 | ||
392 | return app && app->m_mainLoop != NULL; | |
b46b1d59 VZ |
393 | } |
394 | ||
e0954e72 | 395 | int wxAppConsoleBase::FilterEvent(wxEvent& WXUNUSED(event)) |
e2478fde VZ |
396 | { |
397 | // process the events normally by default | |
398 | return -1; | |
399 | } | |
400 | ||
8e40ed85 FM |
401 | void wxAppConsoleBase::DelayPendingEventHandler(wxEvtHandler* toDelay) |
402 | { | |
403 | wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
404 | ||
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); | |
408 | ||
409 | if (m_handlersWithPendingDelayedEvents.Index(toDelay) == wxNOT_FOUND) | |
410 | m_handlersWithPendingDelayedEvents.Add(toDelay); | |
411 | ||
412 | wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
413 | } | |
414 | ||
415 | void wxAppConsoleBase::RemovePendingEventHandler(wxEvtHandler* toRemove) | |
416 | { | |
417 | wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
418 | ||
419 | if (m_handlersWithPendingEvents.Index(toRemove) != wxNOT_FOUND) | |
420 | { | |
421 | m_handlersWithPendingEvents.Remove(toRemove); | |
422 | ||
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!" ); | |
426 | } | |
427 | //else: it wasn't in this list at all, it's ok | |
428 | ||
429 | if (m_handlersWithPendingDelayedEvents.Index(toRemove) != wxNOT_FOUND) | |
430 | { | |
431 | m_handlersWithPendingDelayedEvents.Remove(toRemove); | |
432 | ||
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!" ); | |
436 | } | |
437 | //else: it wasn't in this list at all, it's ok | |
438 | ||
439 | wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
440 | } | |
441 | ||
442 | void wxAppConsoleBase::AppendPendingEventHandler(wxEvtHandler* toAppend) | |
443 | { | |
444 | wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
445 | ||
446 | if ( m_handlersWithPendingEvents.Index(toAppend) == wxNOT_FOUND ) | |
447 | m_handlersWithPendingEvents.Add(toAppend); | |
448 | ||
449 | wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
450 | } | |
451 | ||
452 | bool wxAppConsoleBase::HasPendingEvents() const | |
453 | { | |
454 | wxENTER_CRIT_SECT(const_cast<wxAppConsoleBase*>(this)->m_handlersWithPendingEventsLocker); | |
455 | ||
456 | bool has = !m_handlersWithPendingEvents.IsEmpty(); | |
457 | ||
458 | wxLEAVE_CRIT_SECT(const_cast<wxAppConsoleBase*>(this)->m_handlersWithPendingEventsLocker); | |
459 | ||
460 | return has; | |
461 | } | |
462 | ||
463 | void wxAppConsoleBase::SuspendProcessingOfPendingEvents() | |
464 | { | |
cae9e7b1 | 465 | m_bDoPendingEventProcessing = false; |
8e40ed85 FM |
466 | } |
467 | ||
468 | void wxAppConsoleBase::ResumeProcessingOfPendingEvents() | |
469 | { | |
cae9e7b1 | 470 | m_bDoPendingEventProcessing = true; |
8e40ed85 FM |
471 | } |
472 | ||
473 | void wxAppConsoleBase::ProcessPendingEvents() | |
474 | { | |
3185abc2 | 475 | if ( m_bDoPendingEventProcessing ) |
8e40ed85 | 476 | { |
3185abc2 | 477 | wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker); |
8e40ed85 | 478 | |
3185abc2 VZ |
479 | wxCHECK_RET( m_handlersWithPendingDelayedEvents.IsEmpty(), |
480 | "this helper list should be empty" ); | |
8e40ed85 | 481 | |
3185abc2 VZ |
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()) | |
485 | { | |
486 | // In ProcessPendingEvents(), new handlers might be added | |
487 | // and we can safely leave the critical section here. | |
488 | wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
489 | ||
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(); | |
495 | ||
496 | wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
497 | } | |
498 | ||
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()) | |
505 | { | |
506 | WX_APPEND_ARRAY(m_handlersWithPendingEvents, m_handlersWithPendingDelayedEvents); | |
507 | m_handlersWithPendingDelayedEvents.Clear(); | |
508 | } | |
8e40ed85 | 509 | |
3185abc2 | 510 | wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker); |
8e40ed85 FM |
511 | } |
512 | ||
3185abc2 VZ |
513 | // Garbage collect all objects previously scheduled for destruction. |
514 | DeletePendingObjects(); | |
8e40ed85 FM |
515 | } |
516 | ||
cae9e7b1 FM |
517 | void wxAppConsoleBase::DeletePendingEvents() |
518 | { | |
519 | wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
520 | ||
521 | wxCHECK_RET( m_handlersWithPendingDelayedEvents.IsEmpty(), | |
522 | "this helper list should be empty" ); | |
523 | ||
524 | for (unsigned int i=0; i<m_handlersWithPendingEvents.GetCount(); i++) | |
525 | m_handlersWithPendingEvents[i]->DeletePendingEvents(); | |
526 | ||
527 | m_handlersWithPendingEvents.Clear(); | |
528 | ||
529 | wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker); | |
530 | } | |
531 | ||
3185abc2 VZ |
532 | // ---------------------------------------------------------------------------- |
533 | // delayed objects destruction | |
534 | // ---------------------------------------------------------------------------- | |
535 | ||
536 | bool wxAppConsoleBase::IsScheduledForDestruction(wxObject *object) const | |
537 | { | |
0f08aa44 | 538 | return wxPendingDelete.Member(object); |
3185abc2 VZ |
539 | } |
540 | ||
541 | void wxAppConsoleBase::ScheduleForDestruction(wxObject *object) | |
542 | { | |
543 | if ( !UsesEventLoop() ) | |
544 | { | |
545 | // we won't be able to delete it later so do it right now | |
546 | delete object; | |
547 | return; | |
548 | } | |
549 | //else: we either already have or will soon start an event loop | |
550 | ||
551 | if ( !wxPendingDelete.Member(object) ) | |
552 | wxPendingDelete.Append(object); | |
553 | } | |
554 | ||
555 | void wxAppConsoleBase::DeletePendingObjects() | |
556 | { | |
557 | wxList::compatibility_iterator node = wxPendingDelete.GetFirst(); | |
558 | while (node) | |
559 | { | |
560 | wxObject *obj = node->GetData(); | |
561 | ||
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); | |
567 | ||
568 | delete obj; | |
569 | ||
570 | // Deleting one object may have deleted other pending | |
571 | // objects, so start from beginning of list again. | |
572 | node = wxPendingDelete.GetFirst(); | |
573 | } | |
574 | } | |
575 | ||
78361a0e VZ |
576 | // ---------------------------------------------------------------------------- |
577 | // exception handling | |
578 | // ---------------------------------------------------------------------------- | |
579 | ||
6f054ac5 VZ |
580 | #if wxUSE_EXCEPTIONS |
581 | ||
582 | void | |
e0954e72 VZ |
583 | wxAppConsoleBase::HandleEvent(wxEvtHandler *handler, |
584 | wxEventFunction func, | |
585 | wxEvent& event) const | |
6f054ac5 | 586 | { |
96d38c7e VS |
587 | // by default, simply call the handler |
588 | (handler->*func)(event); | |
6f054ac5 VZ |
589 | } |
590 | ||
3c778901 VZ |
591 | void wxAppConsoleBase::CallEventHandler(wxEvtHandler *handler, |
592 | wxEventFunctor& functor, | |
593 | wxEvent& event) const | |
594 | { | |
595 | // If the functor holds a method then, for backward compatibility, call | |
596 | // HandleEvent(): | |
890d70eb | 597 | wxEventFunction eventFunction = functor.GetEvtMethod(); |
3c778901 VZ |
598 | |
599 | if ( eventFunction ) | |
600 | HandleEvent(handler, eventFunction, event); | |
601 | else | |
602 | functor(handler, event); | |
603 | } | |
604 | ||
1663c655 VZ |
605 | void wxAppConsoleBase::OnUnhandledException() |
606 | { | |
607 | #ifdef __WXDEBUG__ | |
608 | // we're called from an exception handler so we can re-throw the exception | |
609 | // to recover its type | |
610 | wxString what; | |
611 | try | |
612 | { | |
613 | throw; | |
614 | } | |
615 | #if wxUSE_STL | |
616 | catch ( std::exception& e ) | |
617 | { | |
618 | what.Printf("std::exception of type \"%s\", what() = \"%s\"", | |
619 | typeid(e).name(), e.what()); | |
620 | } | |
621 | #endif // wxUSE_STL | |
622 | catch ( ... ) | |
623 | { | |
624 | what = "unknown exception"; | |
625 | } | |
626 | ||
627 | wxMessageOutputBest().Printf( | |
628 | "*** Caught unhandled %s; terminating\n", what | |
629 | ); | |
630 | #endif // __WXDEBUG__ | |
631 | } | |
632 | ||
b46b1d59 VZ |
633 | // ---------------------------------------------------------------------------- |
634 | // exceptions support | |
635 | // ---------------------------------------------------------------------------- | |
636 | ||
e0954e72 | 637 | bool wxAppConsoleBase::OnExceptionInMainLoop() |
b46b1d59 VZ |
638 | { |
639 | throw; | |
640 | ||
641 | // some compilers are too stupid to know that we never return after throw | |
642 | #if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200) | |
643 | return false; | |
644 | #endif | |
645 | } | |
646 | ||
6f054ac5 VZ |
647 | #endif // wxUSE_EXCEPTIONS |
648 | ||
e2478fde VZ |
649 | // ---------------------------------------------------------------------------- |
650 | // cmd line parsing | |
651 | // ---------------------------------------------------------------------------- | |
652 | ||
653 | #if wxUSE_CMDLINE_PARSER | |
654 | ||
e6d4038a | 655 | #define OPTION_VERBOSE "verbose" |
e2478fde | 656 | |
e0954e72 | 657 | void wxAppConsoleBase::OnInitCmdLine(wxCmdLineParser& parser) |
e2478fde VZ |
658 | { |
659 | // the standard command line options | |
660 | static const wxCmdLineEntryDesc cmdLineDesc[] = | |
661 | { | |
662 | { | |
663 | wxCMD_LINE_SWITCH, | |
e6d4038a VZ |
664 | "h", |
665 | "help", | |
e2478fde VZ |
666 | gettext_noop("show this help message"), |
667 | wxCMD_LINE_VAL_NONE, | |
668 | wxCMD_LINE_OPTION_HELP | |
669 | }, | |
670 | ||
671 | #if wxUSE_LOG | |
672 | { | |
673 | wxCMD_LINE_SWITCH, | |
0d5ab92f | 674 | NULL, |
e2478fde VZ |
675 | OPTION_VERBOSE, |
676 | gettext_noop("generate verbose log messages"), | |
677 | wxCMD_LINE_VAL_NONE, | |
678 | 0x0 | |
679 | }, | |
680 | #endif // wxUSE_LOG | |
681 | ||
e2478fde | 682 | // terminator |
0d5ab92f | 683 | wxCMD_LINE_DESC_END |
e2478fde VZ |
684 | }; |
685 | ||
686 | parser.SetDesc(cmdLineDesc); | |
687 | } | |
688 | ||
e0954e72 | 689 | bool wxAppConsoleBase::OnCmdLineParsed(wxCmdLineParser& parser) |
e2478fde VZ |
690 | { |
691 | #if wxUSE_LOG | |
692 | if ( parser.Found(OPTION_VERBOSE) ) | |
693 | { | |
fa0d3447 | 694 | wxLog::SetVerbose(true); |
e2478fde | 695 | } |
fa0d3447 WS |
696 | #else |
697 | wxUnusedVar(parser); | |
e2478fde VZ |
698 | #endif // wxUSE_LOG |
699 | ||
fa0d3447 | 700 | return true; |
e2478fde VZ |
701 | } |
702 | ||
e0954e72 | 703 | bool wxAppConsoleBase::OnCmdLineHelp(wxCmdLineParser& parser) |
e2478fde VZ |
704 | { |
705 | parser.Usage(); | |
706 | ||
4629016d | 707 | return false; |
e2478fde VZ |
708 | } |
709 | ||
e0954e72 | 710 | bool wxAppConsoleBase::OnCmdLineError(wxCmdLineParser& parser) |
e2478fde VZ |
711 | { |
712 | parser.Usage(); | |
713 | ||
4629016d | 714 | return false; |
e2478fde VZ |
715 | } |
716 | ||
717 | #endif // wxUSE_CMDLINE_PARSER | |
718 | ||
719 | // ---------------------------------------------------------------------------- | |
720 | // debugging support | |
721 | // ---------------------------------------------------------------------------- | |
722 | ||
723 | /* static */ | |
e0954e72 VZ |
724 | bool wxAppConsoleBase::CheckBuildOptions(const char *optionsSignature, |
725 | const char *componentName) | |
e2478fde | 726 | { |
2a7c7605 VS |
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); | |
e2478fde VZ |
730 | #endif |
731 | ||
2a7c7605 | 732 | if ( strcmp(optionsSignature, WX_BUILD_OPTIONS_SIGNATURE) != 0 ) |
e2478fde | 733 | { |
2a7c7605 VS |
734 | wxString lib = wxString::FromAscii(WX_BUILD_OPTIONS_SIGNATURE); |
735 | wxString prog = wxString::FromAscii(optionsSignature); | |
736 | wxString progName = wxString::FromAscii(componentName); | |
e2478fde | 737 | wxString msg; |
2dbc444a | 738 | |
9a83f860 | 739 | msg.Printf(wxT("Mismatch between the program and library build versions detected.\nThe library used %s,\nand %s used %s."), |
2a7c7605 | 740 | lib.c_str(), progName.c_str(), prog.c_str()); |
2dbc444a | 741 | |
095d49f2 | 742 | wxLogFatalError(msg.c_str()); |
e2478fde VZ |
743 | |
744 | // normally wxLogFatalError doesn't return | |
4629016d | 745 | return false; |
e2478fde | 746 | } |
e2478fde | 747 | |
4629016d | 748 | return true; |
e2478fde VZ |
749 | } |
750 | ||
e0954e72 VZ |
751 | void wxAppConsoleBase::OnAssertFailure(const wxChar *file, |
752 | int line, | |
753 | const wxChar *func, | |
754 | const wxChar *cond, | |
755 | const wxChar *msg) | |
dfa0b52f | 756 | { |
657a8a35 | 757 | #if wxDEBUG_LEVEL |
dfa0b52f | 758 | ShowAssertDialog(file, line, func, cond, msg, GetTraits()); |
657a8a35 VZ |
759 | #else |
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 | |
762 | // nothing in it | |
763 | wxUnusedVar(file); | |
764 | wxUnusedVar(line); | |
765 | wxUnusedVar(func); | |
766 | wxUnusedVar(cond); | |
767 | wxUnusedVar(msg); | |
768 | #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL | |
dfa0b52f VZ |
769 | } |
770 | ||
e0954e72 VZ |
771 | void wxAppConsoleBase::OnAssert(const wxChar *file, |
772 | int line, | |
773 | const wxChar *cond, | |
774 | const wxChar *msg) | |
e2478fde | 775 | { |
acc476c5 | 776 | OnAssertFailure(file, line, NULL, cond, msg); |
e2478fde VZ |
777 | } |
778 | ||
e2478fde VZ |
779 | // ============================================================================ |
780 | // other classes implementations | |
781 | // ============================================================================ | |
782 | ||
783 | // ---------------------------------------------------------------------------- | |
784 | // wxConsoleAppTraitsBase | |
785 | // ---------------------------------------------------------------------------- | |
786 | ||
787 | #if wxUSE_LOG | |
788 | ||
789 | wxLog *wxConsoleAppTraitsBase::CreateLogTarget() | |
790 | { | |
791 | return new wxLogStderr; | |
792 | } | |
793 | ||
794 | #endif // wxUSE_LOG | |
795 | ||
796 | wxMessageOutput *wxConsoleAppTraitsBase::CreateMessageOutput() | |
797 | { | |
798 | return new wxMessageOutputStderr; | |
799 | } | |
800 | ||
801 | #if wxUSE_FONTMAP | |
802 | ||
803 | wxFontMapper *wxConsoleAppTraitsBase::CreateFontMapper() | |
804 | { | |
805 | return (wxFontMapper *)new wxFontMapperBase; | |
806 | } | |
807 | ||
808 | #endif // wxUSE_FONTMAP | |
809 | ||
f0244295 VZ |
810 | wxRendererNative *wxConsoleAppTraitsBase::CreateRenderer() |
811 | { | |
812 | // console applications don't use renderers | |
813 | return NULL; | |
814 | } | |
815 | ||
e2478fde VZ |
816 | bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString& msg) |
817 | { | |
818 | return wxAppTraitsBase::ShowAssertDialog(msg); | |
819 | } | |
820 | ||
821 | bool wxConsoleAppTraitsBase::HasStderr() | |
822 | { | |
823 | // console applications always have stderr, even under Mac/Windows | |
824 | return true; | |
825 | } | |
826 | ||
e2478fde VZ |
827 | // ---------------------------------------------------------------------------- |
828 | // wxAppTraits | |
829 | // ---------------------------------------------------------------------------- | |
830 | ||
6c4f5ea5 | 831 | #if wxUSE_INTL |
d774f916 VZ |
832 | void wxAppTraitsBase::SetLocale() |
833 | { | |
d6f2a891 | 834 | wxSetlocale(LC_ALL, ""); |
cb352236 | 835 | wxUpdateLocaleIsUtf8(); |
d774f916 | 836 | } |
6c4f5ea5 | 837 | #endif |
d774f916 | 838 | |
d254213e PC |
839 | #if wxUSE_THREADS |
840 | void wxMutexGuiEnterImpl(); | |
841 | void wxMutexGuiLeaveImpl(); | |
842 | ||
843 | void wxAppTraitsBase::MutexGuiEnter() | |
844 | { | |
845 | wxMutexGuiEnterImpl(); | |
846 | } | |
847 | ||
848 | void wxAppTraitsBase::MutexGuiLeave() | |
849 | { | |
850 | wxMutexGuiLeaveImpl(); | |
851 | } | |
852 | ||
853 | void WXDLLIMPEXP_BASE wxMutexGuiEnter() | |
854 | { | |
96b2cbe8 VZ |
855 | wxAppTraits * const traits = wxAppConsoleBase::GetTraitsIfExists(); |
856 | if ( traits ) | |
857 | traits->MutexGuiEnter(); | |
d254213e PC |
858 | } |
859 | ||
860 | void WXDLLIMPEXP_BASE wxMutexGuiLeave() | |
861 | { | |
96b2cbe8 VZ |
862 | wxAppTraits * const traits = wxAppConsoleBase::GetTraitsIfExists(); |
863 | if ( traits ) | |
864 | traits->MutexGuiLeave(); | |
d254213e PC |
865 | } |
866 | #endif // wxUSE_THREADS | |
867 | ||
db9febdf | 868 | bool wxAppTraitsBase::ShowAssertDialog(const wxString& msgOriginal) |
e2478fde | 869 | { |
657a8a35 | 870 | #if wxDEBUG_LEVEL |
021efd65 | 871 | wxString msg; |
db9febdf RR |
872 | |
873 | #if wxUSE_STACKWALKER | |
db9febdf RR |
874 | const wxString stackTrace = GetAssertStackTrace(); |
875 | if ( !stackTrace.empty() ) | |
021efd65 | 876 | { |
9a83f860 | 877 | msg << wxT("\n\nCall stack:\n") << stackTrace; |
021efd65 VZ |
878 | |
879 | wxMessageOutputDebug().Output(msg); | |
880 | } | |
db9febdf RR |
881 | #endif // wxUSE_STACKWALKER |
882 | ||
021efd65 | 883 | return DoShowAssertDialog(msgOriginal + msg); |
657a8a35 VZ |
884 | #else // !wxDEBUG_LEVEL |
885 | wxUnusedVar(msgOriginal); | |
886 | ||
887 | return false; | |
888 | #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL | |
e2478fde VZ |
889 | } |
890 | ||
db9febdf RR |
891 | #if wxUSE_STACKWALKER |
892 | wxString wxAppTraitsBase::GetAssertStackTrace() | |
893 | { | |
657a8a35 | 894 | #if wxDEBUG_LEVEL |
021efd65 VZ |
895 | |
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..."); | |
900 | fflush(stderr); | |
901 | #endif // !__WXMSW__ | |
902 | ||
903 | ||
db9febdf RR |
904 | wxString stackTrace; |
905 | ||
906 | class StackDump : public wxStackWalker | |
907 | { | |
908 | public: | |
909 | StackDump() { } | |
910 | ||
911 | const wxString& GetStackTrace() const { return m_stackTrace; } | |
912 | ||
913 | protected: | |
914 | virtual void OnStackFrame(const wxStackFrame& frame) | |
915 | { | |
916 | m_stackTrace << wxString::Format | |
917 | ( | |
9a83f860 | 918 | wxT("[%02d] "), |
db9febdf RR |
919 | wx_truncate_cast(int, frame.GetLevel()) |
920 | ); | |
921 | ||
922 | wxString name = frame.GetName(); | |
923 | if ( !name.empty() ) | |
924 | { | |
9a83f860 | 925 | m_stackTrace << wxString::Format(wxT("%-40s"), name.c_str()); |
db9febdf RR |
926 | } |
927 | else | |
928 | { | |
9a83f860 | 929 | m_stackTrace << wxString::Format(wxT("%p"), frame.GetAddress()); |
db9febdf RR |
930 | } |
931 | ||
932 | if ( frame.HasSourceLocation() ) | |
933 | { | |
9a83f860 | 934 | m_stackTrace << wxT('\t') |
db9febdf | 935 | << frame.GetFileName() |
9a83f860 | 936 | << wxT(':') |
db9febdf RR |
937 | << frame.GetLine(); |
938 | } | |
939 | ||
9a83f860 | 940 | m_stackTrace << wxT('\n'); |
db9febdf RR |
941 | } |
942 | ||
943 | private: | |
944 | wxString m_stackTrace; | |
945 | }; | |
946 | ||
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; | |
951 | ||
952 | StackDump dump; | |
953 | dump.Walk(2, maxLines); // don't show OnAssert() call itself | |
954 | stackTrace = dump.GetStackTrace(); | |
955 | ||
956 | const int count = stackTrace.Freq(wxT('\n')); | |
957 | for ( int i = 0; i < count - maxLines; i++ ) | |
958 | stackTrace = stackTrace.BeforeLast(wxT('\n')); | |
959 | ||
960 | return stackTrace; | |
657a8a35 VZ |
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 | |
964 | return wxString(); | |
965 | #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL | |
db9febdf RR |
966 | } |
967 | #endif // wxUSE_STACKWALKER | |
968 | ||
969 | ||
e2478fde VZ |
970 | // ============================================================================ |
971 | // global functions implementation | |
972 | // ============================================================================ | |
973 | ||
974 | void wxExit() | |
975 | { | |
976 | if ( wxTheApp ) | |
977 | { | |
978 | wxTheApp->Exit(); | |
979 | } | |
980 | else | |
981 | { | |
982 | // what else can we do? | |
983 | exit(-1); | |
984 | } | |
985 | } | |
986 | ||
987 | void wxWakeUpIdle() | |
988 | { | |
989 | if ( wxTheApp ) | |
990 | { | |
991 | wxTheApp->WakeUpIdle(); | |
992 | } | |
993 | //else: do nothing, what can we do? | |
994 | } | |
995 | ||
e2478fde VZ |
996 | // wxASSERT() helper |
997 | bool wxAssertIsEqual(int x, int y) | |
998 | { | |
999 | return x == y; | |
1000 | } | |
1001 | ||
657a8a35 VZ |
1002 | #if wxDEBUG_LEVEL |
1003 | ||
e2478fde VZ |
1004 | // break into the debugger |
1005 | void wxTrap() | |
1006 | { | |
1007 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) | |
1008 | DebugBreak(); | |
f0756afe DE |
1009 | #elif defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS |
1010 | Debugger(); | |
e2478fde VZ |
1011 | #elif defined(__UNIX__) |
1012 | raise(SIGTRAP); | |
1013 | #else | |
1014 | // TODO | |
1015 | #endif // Win/Unix | |
1016 | } | |
1017 | ||
657a8a35 VZ |
1018 | // default assert handler |
1019 | static void | |
1020 | wxDefaultAssertHandler(const wxString& file, | |
1021 | int line, | |
1022 | const wxString& func, | |
1023 | const wxString& cond, | |
1024 | const wxString& msg) | |
e2478fde | 1025 | { |
4d1ea475 VZ |
1026 | // If this option is set, we should abort immediately when assert happens. |
1027 | if ( wxSystemOptions::GetOptionInt("exit-on-assert") ) | |
1028 | abort(); | |
1029 | ||
e2478fde | 1030 | // FIXME MT-unsafe |
000eea7a | 1031 | static int s_bInAssert = 0; |
e2478fde | 1032 | |
000eea7a VZ |
1033 | wxRecursionGuard guard(s_bInAssert); |
1034 | if ( guard.IsInside() ) | |
e2478fde | 1035 | { |
000eea7a | 1036 | // can't use assert here to avoid infinite loops, so just trap |
e2478fde VZ |
1037 | wxTrap(); |
1038 | ||
e2478fde VZ |
1039 | return; |
1040 | } | |
1041 | ||
e2478fde VZ |
1042 | if ( !wxTheApp ) |
1043 | { | |
1044 | // by default, show the assert dialog box -- we can't customize this | |
1045 | // behaviour | |
657a8a35 | 1046 | ShowAssertDialog(file, line, func, cond, msg); |
e2478fde VZ |
1047 | } |
1048 | else | |
1049 | { | |
1050 | // let the app process it as it wants | |
0accd1cf | 1051 | // FIXME-UTF8: use wc_str(), not c_str(), when ANSI build is removed |
657a8a35 VZ |
1052 | wxTheApp->OnAssertFailure(file.c_str(), line, func.c_str(), |
1053 | cond.c_str(), msg.c_str()); | |
e2478fde | 1054 | } |
e2478fde VZ |
1055 | } |
1056 | ||
657a8a35 VZ |
1057 | wxAssertHandler_t wxTheAssertHandler = wxDefaultAssertHandler; |
1058 | ||
7d9550df VZ |
1059 | void wxSetDefaultAssertHandler() |
1060 | { | |
1061 | wxTheAssertHandler = wxDefaultAssertHandler; | |
1062 | } | |
1063 | ||
657a8a35 VZ |
1064 | void wxOnAssert(const wxString& file, |
1065 | int line, | |
1066 | const wxString& func, | |
1067 | const wxString& cond, | |
1068 | const wxString& msg) | |
0accd1cf | 1069 | { |
657a8a35 | 1070 | wxTheAssertHandler(file, line, func, cond, msg); |
0accd1cf VS |
1071 | } |
1072 | ||
657a8a35 VZ |
1073 | void wxOnAssert(const wxString& file, |
1074 | int line, | |
1075 | const wxString& func, | |
1076 | const wxString& cond) | |
0accd1cf | 1077 | { |
657a8a35 | 1078 | wxTheAssertHandler(file, line, func, cond, wxString()); |
0accd1cf VS |
1079 | } |
1080 | ||
657a8a35 VZ |
1081 | void wxOnAssert(const wxChar *file, |
1082 | int line, | |
1083 | const char *func, | |
1084 | const wxChar *cond, | |
1085 | const wxChar *msg) | |
0accd1cf | 1086 | { |
657a8a35 VZ |
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 | |
1090 | #if wxUSE_UNICODE | |
1091 | if ( wxTheAssertHandler ) | |
1092 | #endif // wxUSE_UNICODE | |
1093 | wxTheAssertHandler(file, line, func, cond, msg); | |
0accd1cf VS |
1094 | } |
1095 | ||
657a8a35 VZ |
1096 | void wxOnAssert(const char *file, |
1097 | int line, | |
1098 | const char *func, | |
1099 | const char *cond, | |
1100 | const wxString& msg) | |
fbaf7d45 | 1101 | { |
657a8a35 | 1102 | wxTheAssertHandler(file, line, func, cond, msg); |
fbaf7d45 VS |
1103 | } |
1104 | ||
657a8a35 VZ |
1105 | void wxOnAssert(const char *file, |
1106 | int line, | |
1107 | const char *func, | |
1108 | const char *cond, | |
2b232d20 VZ |
1109 | const wxCStrData& msg) |
1110 | { | |
657a8a35 | 1111 | wxTheAssertHandler(file, line, func, cond, msg); |
2b232d20 VZ |
1112 | } |
1113 | ||
0accd1cf | 1114 | #if wxUSE_UNICODE |
657a8a35 VZ |
1115 | void wxOnAssert(const char *file, |
1116 | int line, | |
1117 | const char *func, | |
1118 | const char *cond) | |
0accd1cf | 1119 | { |
657a8a35 | 1120 | wxTheAssertHandler(file, line, func, cond, wxString()); |
0accd1cf VS |
1121 | } |
1122 | ||
657a8a35 VZ |
1123 | void wxOnAssert(const char *file, |
1124 | int line, | |
1125 | const char *func, | |
1126 | const char *cond, | |
1127 | const char *msg) | |
0accd1cf | 1128 | { |
657a8a35 | 1129 | wxTheAssertHandler(file, line, func, cond, msg); |
0accd1cf VS |
1130 | } |
1131 | ||
657a8a35 VZ |
1132 | void wxOnAssert(const char *file, |
1133 | int line, | |
1134 | const char *func, | |
1135 | const char *cond, | |
1136 | const wxChar *msg) | |
0accd1cf | 1137 | { |
657a8a35 | 1138 | wxTheAssertHandler(file, line, func, cond, msg); |
0accd1cf VS |
1139 | } |
1140 | #endif // wxUSE_UNICODE | |
1141 | ||
657a8a35 | 1142 | #endif // wxDEBUG_LEVEL |
e2478fde VZ |
1143 | |
1144 | // ============================================================================ | |
1145 | // private functions implementation | |
1146 | // ============================================================================ | |
1147 | ||
1148 | #ifdef __WXDEBUG__ | |
1149 | ||
1150 | static void LINKAGEMODE SetTraceMasks() | |
1151 | { | |
1152 | #if wxUSE_LOG | |
1153 | wxString mask; | |
1154 | if ( wxGetEnv(wxT("WXTRACE"), &mask) ) | |
1155 | { | |
1156 | wxStringTokenizer tkn(mask, wxT(",;:")); | |
1157 | while ( tkn.HasMoreTokens() ) | |
1158 | wxLog::AddTraceMask(tkn.GetNextToken()); | |
1159 | } | |
1160 | #endif // wxUSE_LOG | |
1161 | } | |
1162 | ||
657a8a35 VZ |
1163 | #endif // __WXDEBUG__ |
1164 | ||
1165 | #if wxDEBUG_LEVEL | |
1166 | ||
6ef1b2a1 | 1167 | static |
e2478fde VZ |
1168 | bool DoShowAssertDialog(const wxString& msg) |
1169 | { | |
1170 | // under MSW we can show the dialog even in the console mode | |
1171 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) | |
1172 | wxString msgDlg(msg); | |
1173 | ||
657a8a35 VZ |
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 | |
e2478fde VZ |
1177 | msgDlg += wxT("\nDo you want to stop the program?\n") |
1178 | wxT("You can also choose [Cancel] to suppress ") | |
1179 | wxT("further warnings."); | |
1180 | ||
9a83f860 | 1181 | switch ( ::MessageBox(NULL, msgDlg.wx_str(), wxT("wxWidgets Debug Alert"), |
e2478fde VZ |
1182 | MB_YESNOCANCEL | MB_ICONSTOP ) ) |
1183 | { | |
1184 | case IDYES: | |
1185 | wxTrap(); | |
1186 | break; | |
1187 | ||
1188 | case IDCANCEL: | |
1189 | // stop the asserts | |
1190 | return true; | |
1191 | ||
1192 | //case IDNO: nothing to do | |
1193 | } | |
1194 | #else // !__WXMSW__ | |
021efd65 | 1195 | wxUnusedVar(msg); |
e2478fde VZ |
1196 | #endif // __WXMSW__/!__WXMSW__ |
1197 | ||
021efd65 | 1198 | // continue with the asserts by default |
e2478fde VZ |
1199 | return false; |
1200 | } | |
1201 | ||
657a8a35 | 1202 | // show the standard assert dialog |
4a92d4bc | 1203 | static |
657a8a35 VZ |
1204 | void ShowAssertDialog(const wxString& file, |
1205 | int line, | |
1206 | const wxString& func, | |
1207 | const wxString& cond, | |
1208 | const wxString& msgUser, | |
4a92d4bc VZ |
1209 | wxAppTraits *traits) |
1210 | { | |
1211 | // this variable can be set to true to suppress "assert failure" messages | |
1212 | static bool s_bNoAsserts = false; | |
1213 | ||
1214 | wxString msg; | |
1215 | msg.reserve(2048); | |
1216 | ||
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 | |
657a8a35 | 1220 | msg.Printf(wxT("%s(%d): assert \"%s\" failed"), file, line, cond); |
4a92d4bc | 1221 | |
dfa0b52f | 1222 | // add the function name, if any |
657a8a35 | 1223 | if ( !func.empty() ) |
9a83f860 | 1224 | msg << wxT(" in ") << func << wxT("()"); |
dfa0b52f VZ |
1225 | |
1226 | // and the message itself | |
657a8a35 | 1227 | if ( !msgUser.empty() ) |
2c9b3131 | 1228 | { |
9a83f860 | 1229 | msg << wxT(": ") << msgUser; |
2c9b3131 | 1230 | } |
4a92d4bc VZ |
1231 | else // no message given |
1232 | { | |
9a83f860 | 1233 | msg << wxT('.'); |
4a92d4bc VZ |
1234 | } |
1235 | ||
e2478fde VZ |
1236 | #if wxUSE_THREADS |
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() ) | |
1240 | { | |
2d8e0096 | 1241 | msg += wxString::Format(" [in thread %lx]", wxThread::GetCurrentId()); |
e2478fde VZ |
1242 | } |
1243 | #endif // wxUSE_THREADS | |
1244 | ||
2d8e0096 VZ |
1245 | // log the assert in any case |
1246 | wxMessageOutputDebug().Output(msg); | |
1247 | ||
e2478fde VZ |
1248 | if ( !s_bNoAsserts ) |
1249 | { | |
e2478fde VZ |
1250 | if ( traits ) |
1251 | { | |
1252 | // delegate showing assert dialog (if possible) to that class | |
1253 | s_bNoAsserts = traits->ShowAssertDialog(msg); | |
1254 | } | |
1255 | else // no traits object | |
1256 | { | |
1257 | // fall back to the function of last resort | |
1258 | s_bNoAsserts = DoShowAssertDialog(msg); | |
1259 | } | |
1260 | } | |
1261 | } | |
1262 | ||
657a8a35 | 1263 | #endif // wxDEBUG_LEVEL |