]>
Commit | Line | Data |
---|---|---|
e2478fde VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: common/base/appbase.cpp | |
3 | // Purpose: implements wxAppConsole class | |
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> | |
9 | // License: wxWindows license | |
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 | |
8df6de97 VS |
28 | #include "wx/app.h" |
29 | #include "wx/intl.h" | |
910426ee | 30 | #include "wx/list.h" |
e2478fde VZ |
31 | #if wxUSE_LOG |
32 | #include "wx/log.h" | |
33 | #endif // wxUSE_LOG | |
34 | #endif //WX_PRECOMP | |
35 | ||
36 | #include "wx/apptrait.h" | |
37 | #include "wx/cmdline.h" | |
38 | #include "wx/confbase.h" | |
94826170 VZ |
39 | #if wxUSE_FILENAME |
40 | #include "wx/filename.h" | |
41 | #endif // wxUSE_FILENAME | |
e2478fde VZ |
42 | #if wxUSE_FONTMAP |
43 | #include "wx/fontmap.h" | |
44 | #endif // wxUSE_FONTMAP | |
45 | #include "wx/msgout.h" | |
46 | #include "wx/tokenzr.h" | |
47 | ||
48 | #if !defined(__WXMSW__) || defined(__WXMICROWIN__) | |
49 | #include <signal.h> // for SIGTRAP used by wxTrap() | |
50 | #endif //Win/Unix | |
51 | ||
52 | #if defined(__WXMSW__) | |
53 | #include "wx/msw/private.h" // includes windows.h for MessageBox() | |
54 | #endif | |
55 | ||
56 | #if defined(__WXMAC__) | |
22f69dd4 VZ |
57 | // VZ: MacTypes.h is enough under Mac OS X (where I could test it) but |
58 | // I don't know which headers are needed under earlier systems so | |
59 | // include everything when in doubt | |
60 | #ifdef __DARWIN__ | |
61 | #include "MacTypes.h" | |
62 | #else | |
63 | #include "wx/mac/private.h" // includes mac headers | |
64 | #endif | |
65 | #endif // __WXMAC__ | |
e2478fde VZ |
66 | |
67 | // ---------------------------------------------------------------------------- | |
68 | // private functions prototypes | |
69 | // ---------------------------------------------------------------------------- | |
70 | ||
71 | #ifdef __WXDEBUG__ | |
72 | // really just show the assert dialog | |
73 | static bool DoShowAssertDialog(const wxString& msg); | |
74 | ||
75 | // prepare for showing the assert dialog, use the given traits or | |
76 | // DoShowAssertDialog() as last fallback to really show it | |
77 | static | |
78 | void ShowAssertDialog(const wxChar *szFile, | |
79 | int nLine, | |
80 | const wxChar *szCond, | |
81 | const wxChar *szMsg, | |
82 | wxAppTraits *traits = NULL); | |
83 | ||
84 | // turn on the trace masks specified in the env variable WXTRACE | |
85 | static void LINKAGEMODE SetTraceMasks(); | |
86 | #endif // __WXDEBUG__ | |
87 | ||
88 | // ---------------------------------------------------------------------------- | |
89 | // global vars | |
90 | // ---------------------------------------------------------------------------- | |
91 | ||
92 | wxApp *wxTheApp = NULL; | |
93 | ||
94 | wxAppInitializerFunction wxAppConsole::ms_appInitFn = NULL; | |
95 | ||
96 | // ============================================================================ | |
97 | // wxAppConsole implementation | |
98 | // ============================================================================ | |
99 | ||
100 | // ---------------------------------------------------------------------------- | |
101 | // ctor/dtor | |
102 | // ---------------------------------------------------------------------------- | |
103 | ||
104 | wxAppConsole::wxAppConsole() | |
105 | { | |
106 | m_traits = NULL; | |
107 | ||
108 | wxTheApp = (wxApp *)this; | |
109 | ||
110 | #ifdef __WXDEBUG__ | |
111 | SetTraceMasks(); | |
112 | #endif | |
113 | } | |
114 | ||
115 | wxAppConsole::~wxAppConsole() | |
116 | { | |
117 | delete m_traits; | |
118 | } | |
119 | ||
94826170 VZ |
120 | // ---------------------------------------------------------------------------- |
121 | // initilization/cleanup | |
122 | // ---------------------------------------------------------------------------- | |
123 | ||
124 | bool wxAppConsole::Initialize(int argc, wxChar **argv) | |
125 | { | |
126 | // remember the command line arguments | |
127 | this->argc = argc; | |
128 | this->argv = argv; | |
129 | ||
130 | if ( m_appName.empty() ) | |
131 | { | |
132 | // the application name is, by default, the name of its executable file | |
133 | #if wxUSE_FILENAME | |
134 | wxFileName::SplitPath(argv[0], NULL, &m_appName, NULL); | |
135 | #else // !wxUSE_FILENAME | |
136 | m_appName = argv[0]; | |
137 | #endif // wxUSE_FILENAME/!wxUSE_FILENAME | |
138 | } | |
139 | ||
140 | return true; | |
141 | } | |
142 | ||
143 | void wxAppConsole::CleanUp() | |
144 | { | |
145 | } | |
146 | ||
e2478fde VZ |
147 | // ---------------------------------------------------------------------------- |
148 | // OnXXX() callbacks | |
149 | // ---------------------------------------------------------------------------- | |
150 | ||
151 | bool wxAppConsole::OnInit() | |
152 | { | |
153 | #if wxUSE_CMDLINE_PARSER | |
154 | wxCmdLineParser parser(argc, argv); | |
155 | ||
156 | OnInitCmdLine(parser); | |
157 | ||
158 | bool cont; | |
159 | switch ( parser.Parse(FALSE /* don't show usage */) ) | |
160 | { | |
161 | case -1: | |
162 | cont = OnCmdLineHelp(parser); | |
163 | break; | |
164 | ||
165 | case 0: | |
166 | cont = OnCmdLineParsed(parser); | |
167 | break; | |
168 | ||
169 | default: | |
170 | cont = OnCmdLineError(parser); | |
171 | break; | |
172 | } | |
173 | ||
174 | if ( !cont ) | |
175 | return FALSE; | |
176 | #endif // wxUSE_CMDLINE_PARSER | |
177 | ||
178 | return TRUE; | |
179 | } | |
180 | ||
181 | int wxAppConsole::OnExit() | |
182 | { | |
183 | #if wxUSE_CONFIG | |
184 | // delete the config object if any (don't use Get() here, but Set() | |
185 | // because Get() could create a new config object) | |
186 | delete wxConfigBase::Set((wxConfigBase *) NULL); | |
187 | #endif // wxUSE_CONFIG | |
188 | ||
189 | #ifdef __WXUNIVERSAL__ | |
190 | delete wxTheme::Set(NULL); | |
191 | #endif // __WXUNIVERSAL__ | |
192 | ||
193 | // use Set(NULL) and not Get() to avoid creating a message output object on | |
194 | // demand when we just want to delete it | |
195 | delete wxMessageOutput::Set(NULL); | |
196 | ||
197 | return 0; | |
198 | } | |
199 | ||
200 | void wxAppConsole::Exit() | |
201 | { | |
202 | exit(-1); | |
203 | } | |
204 | ||
205 | // ---------------------------------------------------------------------------- | |
206 | // traits stuff | |
207 | // ---------------------------------------------------------------------------- | |
208 | ||
209 | wxAppTraits *wxAppConsole::CreateTraits() | |
210 | { | |
211 | return wxAppTraits::CreateConsole(); | |
212 | } | |
213 | ||
214 | wxAppTraits *wxAppConsole::GetTraits() | |
215 | { | |
216 | // FIXME-MT: protect this with a CS? | |
217 | if ( !m_traits ) | |
218 | { | |
219 | m_traits = CreateTraits(); | |
220 | ||
221 | wxASSERT_MSG( m_traits, _T("wxApp::CreateTraits() failed?") ); | |
222 | } | |
223 | ||
224 | return m_traits; | |
225 | } | |
226 | ||
227 | // we must implement CreateXXX() in wxApp itself for backwards compatibility | |
228 | #if WXWIN_COMPATIBILITY_2_4 | |
229 | ||
230 | #if wxUSE_LOG | |
231 | ||
232 | wxLog *wxAppConsole::CreateLogTarget() | |
233 | { | |
234 | wxAppTraits *traits = GetTraits(); | |
235 | return traits ? traits->CreateLogTarget() : NULL; | |
236 | } | |
237 | ||
238 | #endif // wxUSE_LOG | |
239 | ||
240 | wxMessageOutput *wxAppConsole::CreateMessageOutput() | |
241 | { | |
242 | wxAppTraits *traits = GetTraits(); | |
243 | return traits ? traits->CreateMessageOutput() : NULL; | |
244 | } | |
245 | ||
246 | #endif // WXWIN_COMPATIBILITY_2_4 | |
247 | ||
248 | // ---------------------------------------------------------------------------- | |
249 | // event processing | |
250 | // ---------------------------------------------------------------------------- | |
251 | ||
252 | void wxAppConsole::ProcessPendingEvents() | |
253 | { | |
254 | // ensure that we're the only thread to modify the pending events list | |
255 | wxENTER_CRIT_SECT( *wxPendingEventsLocker ); | |
256 | ||
257 | if ( !wxPendingEvents ) | |
258 | { | |
259 | wxLEAVE_CRIT_SECT( *wxPendingEventsLocker ); | |
260 | return; | |
261 | } | |
262 | ||
263 | // iterate until the list becomes empty | |
264 | wxNode *node = wxPendingEvents->GetFirst(); | |
265 | while (node) | |
266 | { | |
267 | wxEvtHandler *handler = (wxEvtHandler *)node->GetData(); | |
268 | delete node; | |
269 | ||
270 | // In ProcessPendingEvents(), new handlers might be add | |
271 | // and we can safely leave the critical section here. | |
272 | wxLEAVE_CRIT_SECT( *wxPendingEventsLocker ); | |
273 | handler->ProcessPendingEvents(); | |
274 | wxENTER_CRIT_SECT( *wxPendingEventsLocker ); | |
275 | ||
276 | node = wxPendingEvents->GetFirst(); | |
277 | } | |
278 | ||
279 | wxLEAVE_CRIT_SECT( *wxPendingEventsLocker ); | |
280 | } | |
281 | ||
282 | int wxAppConsole::FilterEvent(wxEvent& WXUNUSED(event)) | |
283 | { | |
284 | // process the events normally by default | |
285 | return -1; | |
286 | } | |
287 | ||
288 | // ---------------------------------------------------------------------------- | |
289 | // cmd line parsing | |
290 | // ---------------------------------------------------------------------------- | |
291 | ||
292 | #if wxUSE_CMDLINE_PARSER | |
293 | ||
294 | #define OPTION_VERBOSE _T("verbose") | |
295 | #define OPTION_THEME _T("theme") | |
296 | #define OPTION_MODE _T("mode") | |
297 | ||
298 | void wxAppConsole::OnInitCmdLine(wxCmdLineParser& parser) | |
299 | { | |
300 | // the standard command line options | |
301 | static const wxCmdLineEntryDesc cmdLineDesc[] = | |
302 | { | |
303 | { | |
304 | wxCMD_LINE_SWITCH, | |
305 | _T("h"), | |
306 | _T("help"), | |
307 | gettext_noop("show this help message"), | |
308 | wxCMD_LINE_VAL_NONE, | |
309 | wxCMD_LINE_OPTION_HELP | |
310 | }, | |
311 | ||
312 | #if wxUSE_LOG | |
313 | { | |
314 | wxCMD_LINE_SWITCH, | |
315 | _T(""), | |
316 | OPTION_VERBOSE, | |
317 | gettext_noop("generate verbose log messages"), | |
318 | wxCMD_LINE_VAL_NONE, | |
319 | 0x0 | |
320 | }, | |
321 | #endif // wxUSE_LOG | |
322 | ||
323 | #ifdef __WXUNIVERSAL__ | |
324 | { | |
325 | wxCMD_LINE_OPTION, | |
326 | _T(""), | |
327 | OPTION_THEME, | |
328 | gettext_noop("specify the theme to use"), | |
329 | wxCMD_LINE_VAL_STRING, | |
330 | 0x0 | |
331 | }, | |
332 | #endif // __WXUNIVERSAL__ | |
333 | ||
334 | #if defined(__WXMGL__) | |
335 | // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports | |
336 | // should provide this option. That's why it is in common/appcmn.cpp | |
337 | // and not mgl/app.cpp | |
338 | { | |
339 | wxCMD_LINE_OPTION, | |
340 | _T(""), | |
341 | OPTION_MODE, | |
342 | gettext_noop("specify display mode to use (e.g. 640x480-16)"), | |
343 | wxCMD_LINE_VAL_STRING, | |
344 | 0x0 | |
345 | }, | |
346 | #endif // __WXMGL__ | |
347 | ||
348 | // terminator | |
349 | { | |
350 | wxCMD_LINE_NONE, | |
351 | _T(""), | |
352 | _T(""), | |
353 | _T(""), | |
354 | wxCMD_LINE_VAL_NONE, | |
355 | 0x0 | |
356 | } | |
357 | }; | |
358 | ||
359 | parser.SetDesc(cmdLineDesc); | |
360 | } | |
361 | ||
362 | bool wxAppConsole::OnCmdLineParsed(wxCmdLineParser& parser) | |
363 | { | |
364 | #if wxUSE_LOG | |
365 | if ( parser.Found(OPTION_VERBOSE) ) | |
366 | { | |
367 | wxLog::SetVerbose(TRUE); | |
368 | } | |
369 | #endif // wxUSE_LOG | |
370 | ||
371 | #ifdef __WXUNIVERSAL__ | |
372 | wxString themeName; | |
373 | if ( parser.Found(OPTION_THEME, &themeName) ) | |
374 | { | |
375 | wxTheme *theme = wxTheme::Create(themeName); | |
376 | if ( !theme ) | |
377 | { | |
378 | wxLogError(_("Unsupported theme '%s'."), themeName.c_str()); | |
379 | return FALSE; | |
380 | } | |
381 | ||
382 | // Delete the defaultly created theme and set the new theme. | |
383 | delete wxTheme::Get(); | |
384 | wxTheme::Set(theme); | |
385 | } | |
386 | #endif // __WXUNIVERSAL__ | |
387 | ||
388 | #if defined(__WXMGL__) | |
389 | wxString modeDesc; | |
390 | if ( parser.Found(OPTION_MODE, &modeDesc) ) | |
391 | { | |
392 | unsigned w, h, bpp; | |
393 | if ( wxSscanf(modeDesc.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3 ) | |
394 | { | |
395 | wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str()); | |
396 | return FALSE; | |
397 | } | |
398 | ||
399 | if ( !SetDisplayMode(wxDisplayModeInfo(w, h, bpp)) ) | |
400 | return FALSE; | |
401 | } | |
402 | #endif // __WXMGL__ | |
403 | ||
404 | return TRUE; | |
405 | } | |
406 | ||
407 | bool wxAppConsole::OnCmdLineHelp(wxCmdLineParser& parser) | |
408 | { | |
409 | parser.Usage(); | |
410 | ||
411 | return FALSE; | |
412 | } | |
413 | ||
414 | bool wxAppConsole::OnCmdLineError(wxCmdLineParser& parser) | |
415 | { | |
416 | parser.Usage(); | |
417 | ||
418 | return FALSE; | |
419 | } | |
420 | ||
421 | #endif // wxUSE_CMDLINE_PARSER | |
422 | ||
423 | // ---------------------------------------------------------------------------- | |
424 | // debugging support | |
425 | // ---------------------------------------------------------------------------- | |
426 | ||
427 | /* static */ | |
428 | bool wxAppConsole::CheckBuildOptions(const wxBuildOptions& opts) | |
429 | { | |
430 | #define wxCMP(what) (what == opts.m_ ## what) | |
431 | ||
432 | bool | |
433 | #ifdef __WXDEBUG__ | |
434 | isDebug = TRUE; | |
435 | #else | |
436 | isDebug = FALSE; | |
437 | #endif | |
438 | ||
439 | int verMaj = wxMAJOR_VERSION, | |
440 | verMin = wxMINOR_VERSION; | |
441 | ||
442 | if ( !(wxCMP(isDebug) && wxCMP(verMaj) && wxCMP(verMin)) ) | |
443 | { | |
444 | wxString msg; | |
445 | wxString libDebug, progDebug; | |
446 | ||
447 | if (isDebug) | |
448 | libDebug = wxT("debug"); | |
449 | else | |
450 | libDebug = wxT("no debug"); | |
451 | ||
452 | if (opts.m_isDebug) | |
453 | progDebug = wxT("debug"); | |
454 | else | |
455 | progDebug = wxT("no debug"); | |
456 | ||
457 | msg.Printf(_T("Mismatch between the program and library build versions detected.\nThe library used %d.%d (%s), and your program used %d.%d (%s)."), | |
458 | verMaj, verMin, libDebug.c_str(), opts.m_verMaj, opts.m_verMin, progDebug.c_str()); | |
459 | ||
460 | wxLogFatalError(msg); | |
461 | ||
462 | // normally wxLogFatalError doesn't return | |
463 | return FALSE; | |
464 | } | |
465 | #undef wxCMP | |
466 | ||
467 | return TRUE; | |
468 | } | |
469 | ||
470 | #ifdef __WXDEBUG__ | |
471 | ||
472 | void wxAppConsole::OnAssert(const wxChar *file, | |
473 | int line, | |
474 | const wxChar *cond, | |
475 | const wxChar *msg) | |
476 | { | |
477 | ShowAssertDialog(file, line, cond, msg, m_traits); | |
478 | } | |
479 | ||
480 | #endif // __WXDEBUG__ | |
481 | ||
482 | // ============================================================================ | |
483 | // other classes implementations | |
484 | // ============================================================================ | |
485 | ||
486 | // ---------------------------------------------------------------------------- | |
487 | // wxConsoleAppTraitsBase | |
488 | // ---------------------------------------------------------------------------- | |
489 | ||
490 | #if wxUSE_LOG | |
491 | ||
492 | wxLog *wxConsoleAppTraitsBase::CreateLogTarget() | |
493 | { | |
494 | return new wxLogStderr; | |
495 | } | |
496 | ||
497 | #endif // wxUSE_LOG | |
498 | ||
499 | wxMessageOutput *wxConsoleAppTraitsBase::CreateMessageOutput() | |
500 | { | |
501 | return new wxMessageOutputStderr; | |
502 | } | |
503 | ||
504 | #if wxUSE_FONTMAP | |
505 | ||
506 | wxFontMapper *wxConsoleAppTraitsBase::CreateFontMapper() | |
507 | { | |
508 | return (wxFontMapper *)new wxFontMapperBase; | |
509 | } | |
510 | ||
511 | #endif // wxUSE_FONTMAP | |
512 | ||
8df6de97 | 513 | #ifdef __WXDEBUG__ |
e2478fde VZ |
514 | bool wxConsoleAppTraitsBase::ShowAssertDialog(const wxString& msg) |
515 | { | |
516 | return wxAppTraitsBase::ShowAssertDialog(msg); | |
517 | } | |
8df6de97 | 518 | #endif |
e2478fde VZ |
519 | |
520 | bool wxConsoleAppTraitsBase::HasStderr() | |
521 | { | |
522 | // console applications always have stderr, even under Mac/Windows | |
523 | return true; | |
524 | } | |
525 | ||
526 | void wxConsoleAppTraitsBase::ScheduleForDestroy(wxObject *object) | |
527 | { | |
528 | delete object; | |
529 | } | |
530 | ||
531 | void wxConsoleAppTraitsBase::RemoveFromPendingDelete(wxObject * WXUNUSED(object)) | |
532 | { | |
533 | // nothing to do | |
534 | } | |
535 | ||
536 | // ---------------------------------------------------------------------------- | |
537 | // wxAppTraits | |
538 | // ---------------------------------------------------------------------------- | |
539 | ||
540 | #ifdef __WXDEBUG__ | |
541 | ||
542 | bool wxAppTraitsBase::ShowAssertDialog(const wxString& msg) | |
543 | { | |
544 | return DoShowAssertDialog(msg); | |
545 | } | |
546 | ||
547 | #endif // __WXDEBUG__ | |
548 | ||
549 | wxAppTraits *wxAppTraitsBase::CreateConsole() | |
550 | { | |
551 | return new wxConsoleAppTraits; | |
552 | } | |
553 | ||
554 | // ============================================================================ | |
555 | // global functions implementation | |
556 | // ============================================================================ | |
557 | ||
558 | void wxExit() | |
559 | { | |
560 | if ( wxTheApp ) | |
561 | { | |
562 | wxTheApp->Exit(); | |
563 | } | |
564 | else | |
565 | { | |
566 | // what else can we do? | |
567 | exit(-1); | |
568 | } | |
569 | } | |
570 | ||
571 | void wxWakeUpIdle() | |
572 | { | |
573 | if ( wxTheApp ) | |
574 | { | |
575 | wxTheApp->WakeUpIdle(); | |
576 | } | |
577 | //else: do nothing, what can we do? | |
578 | } | |
579 | ||
580 | #ifdef __WXDEBUG__ | |
581 | ||
582 | // wxASSERT() helper | |
583 | bool wxAssertIsEqual(int x, int y) | |
584 | { | |
585 | return x == y; | |
586 | } | |
587 | ||
588 | // break into the debugger | |
589 | void wxTrap() | |
590 | { | |
591 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) | |
592 | DebugBreak(); | |
593 | #elif defined(__WXMAC__) && !defined(__DARWIN__) | |
594 | #if __powerc | |
595 | Debugger(); | |
596 | #else | |
597 | SysBreak(); | |
598 | #endif | |
599 | #elif defined(__UNIX__) | |
600 | raise(SIGTRAP); | |
601 | #else | |
602 | // TODO | |
603 | #endif // Win/Unix | |
604 | } | |
605 | ||
606 | void wxAssert(int cond, | |
607 | const wxChar *szFile, | |
608 | int nLine, | |
609 | const wxChar *szCond, | |
610 | const wxChar *szMsg) | |
611 | { | |
612 | if ( !cond ) | |
613 | wxOnAssert(szFile, nLine, szCond, szMsg); | |
614 | } | |
615 | ||
616 | // this function is called when an assert fails | |
617 | void wxOnAssert(const wxChar *szFile, | |
618 | int nLine, | |
619 | const wxChar *szCond, | |
620 | const wxChar *szMsg) | |
621 | { | |
622 | // FIXME MT-unsafe | |
623 | static bool s_bInAssert = FALSE; | |
624 | ||
625 | if ( s_bInAssert ) | |
626 | { | |
627 | // He-e-e-e-elp!! we're trapped in endless loop | |
628 | wxTrap(); | |
629 | ||
630 | s_bInAssert = FALSE; | |
631 | ||
632 | return; | |
633 | } | |
634 | ||
635 | s_bInAssert = TRUE; | |
636 | ||
637 | if ( !wxTheApp ) | |
638 | { | |
639 | // by default, show the assert dialog box -- we can't customize this | |
640 | // behaviour | |
641 | ShowAssertDialog(szFile, nLine, szCond, szMsg); | |
642 | } | |
643 | else | |
644 | { | |
645 | // let the app process it as it wants | |
646 | wxTheApp->OnAssert(szFile, nLine, szCond, szMsg); | |
647 | } | |
648 | ||
649 | s_bInAssert = FALSE; | |
650 | } | |
651 | ||
652 | #endif // __WXDEBUG__ | |
653 | ||
654 | // ============================================================================ | |
655 | // private functions implementation | |
656 | // ============================================================================ | |
657 | ||
658 | #ifdef __WXDEBUG__ | |
659 | ||
660 | static void LINKAGEMODE SetTraceMasks() | |
661 | { | |
662 | #if wxUSE_LOG | |
663 | wxString mask; | |
664 | if ( wxGetEnv(wxT("WXTRACE"), &mask) ) | |
665 | { | |
666 | wxStringTokenizer tkn(mask, wxT(",;:")); | |
667 | while ( tkn.HasMoreTokens() ) | |
668 | wxLog::AddTraceMask(tkn.GetNextToken()); | |
669 | } | |
670 | #endif // wxUSE_LOG | |
671 | } | |
672 | ||
673 | bool DoShowAssertDialog(const wxString& msg) | |
674 | { | |
675 | // under MSW we can show the dialog even in the console mode | |
676 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) | |
677 | wxString msgDlg(msg); | |
678 | ||
679 | // this message is intentionally not translated -- it is for | |
680 | // developpers only | |
681 | msgDlg += wxT("\nDo you want to stop the program?\n") | |
682 | wxT("You can also choose [Cancel] to suppress ") | |
683 | wxT("further warnings."); | |
684 | ||
685 | switch ( ::MessageBox(NULL, msgDlg, _T("wxWindows Debug Alert"), | |
686 | MB_YESNOCANCEL | MB_ICONSTOP ) ) | |
687 | { | |
688 | case IDYES: | |
689 | wxTrap(); | |
690 | break; | |
691 | ||
692 | case IDCANCEL: | |
693 | // stop the asserts | |
694 | return true; | |
695 | ||
696 | //case IDNO: nothing to do | |
697 | } | |
698 | #else // !__WXMSW__ | |
699 | wxFprintf(stderr, wxT("%s\n"), msg.c_str()); | |
700 | fflush(stderr); | |
701 | ||
702 | // TODO: ask the user to enter "Y" or "N" on the console? | |
703 | wxTrap(); | |
704 | #endif // __WXMSW__/!__WXMSW__ | |
705 | ||
706 | // continue with the asserts | |
707 | return false; | |
708 | } | |
709 | ||
710 | // show the assert modal dialog | |
711 | static | |
712 | void ShowAssertDialog(const wxChar *szFile, | |
713 | int nLine, | |
714 | const wxChar *szCond, | |
715 | const wxChar *szMsg, | |
716 | wxAppTraits *traits) | |
717 | { | |
718 | // this variable can be set to true to suppress "assert failure" messages | |
719 | static bool s_bNoAsserts = FALSE; | |
720 | ||
721 | wxString msg; | |
722 | msg.reserve(2048); | |
723 | ||
724 | // make life easier for people using VC++ IDE by using this format: like | |
725 | // this, clicking on the message will take us immediately to the place of | |
726 | // the failed assert | |
727 | msg.Printf(wxT("%s(%d): assert \"%s\" failed"), szFile, nLine, szCond); | |
728 | ||
729 | if ( szMsg ) | |
730 | { | |
731 | msg << _T(": ") << szMsg; | |
732 | } | |
733 | else // no message given | |
734 | { | |
735 | msg << _T('.'); | |
736 | } | |
737 | ||
738 | #if wxUSE_THREADS | |
739 | // if we are not in the main thread, output the assert directly and trap | |
740 | // since dialogs cannot be displayed | |
741 | if ( !wxThread::IsMain() ) | |
742 | { | |
743 | msg += wxT(" [in child thread]"); | |
744 | ||
745 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) | |
746 | msg << wxT("\r\n"); | |
747 | OutputDebugString(msg ); | |
748 | #else | |
749 | // send to stderr | |
750 | wxFprintf(stderr, wxT("%s\n"), msg.c_str()); | |
751 | fflush(stderr); | |
752 | #endif | |
753 | // He-e-e-e-elp!! we're asserting in a child thread | |
754 | wxTrap(); | |
755 | } | |
756 | #endif // wxUSE_THREADS | |
757 | ||
758 | if ( !s_bNoAsserts ) | |
759 | { | |
760 | // send it to the normal log destination | |
761 | wxLogDebug(_T("%s"), msg); | |
762 | ||
763 | if ( traits ) | |
764 | { | |
765 | // delegate showing assert dialog (if possible) to that class | |
766 | s_bNoAsserts = traits->ShowAssertDialog(msg); | |
767 | } | |
768 | else // no traits object | |
769 | { | |
770 | // fall back to the function of last resort | |
771 | s_bNoAsserts = DoShowAssertDialog(msg); | |
772 | } | |
773 | } | |
774 | } | |
775 | ||
776 | #endif // __WXDEBUG__ | |
777 |