]> git.saurik.com Git - wxWidgets.git/blame - src/common/init.cpp
Fix numpad Del not working in wxRTC
[wxWidgets.git] / src / common / init.cpp
CommitLineData
e90c1d2a 1/////////////////////////////////////////////////////////////////////////////
9a6384ca 2// Name: src/common/init.cpp
e90c1d2a
VZ
3// Purpose: initialisation for the library
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 04.10.99
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
65571936 9// Licence: wxWindows licence
e90c1d2a
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
f4c890fd
JS
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
9a6384ca 23 #pragma hdrstop
f4c890fd
JS
24#endif //__BORLANDC__
25
e87271f3
VZ
26#ifndef WX_PRECOMP
27 #include "wx/app.h"
bc385ba9 28 #include "wx/filefn.h"
e2450fa9 29 #include "wx/log.h"
a20599da 30 #include "wx/intl.h"
02761f6c 31 #include "wx/module.h"
e87271f3 32#endif
e90c1d2a 33
abca8ebf 34#include "wx/init.h"
50a743c9 35#include "wx/thread.h"
abca8ebf 36
664e1314 37#include "wx/scopedptr.h"
fb3e83b6 38#include "wx/except.h"
51abe921 39
4b6a582b 40#if defined(__WXMSW__)
94826170
VZ
41 #include "wx/msw/msvcrt.h"
42
4b6a582b
VZ
43 #ifdef wxCrtSetDbgFlag
44 static struct EnableMemLeakChecking
94826170 45 {
4b6a582b
VZ
46 EnableMemLeakChecking()
47 {
48 // check for memory leaks on program exit (another useful flag
49 // is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free deallocated
50 // memory which may be used to simulate low-memory condition)
51 wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
52 }
53 } gs_enableLeakChecks;
54 #endif // wxCrtSetDbgFlag
55#endif // __WXMSW__
94826170 56
e90c1d2a
VZ
57// ----------------------------------------------------------------------------
58// private classes
59// ----------------------------------------------------------------------------
60
e2478fde 61// we need a dummy app object if the user doesn't want to create a real one
94826170 62class wxDummyConsoleApp : public wxAppConsole
e90c1d2a
VZ
63{
64public:
fc7a2a60
VZ
65 wxDummyConsoleApp() { }
66
9a83f860 67 virtual int OnRun() { wxFAIL_MSG( wxT("unreachable code") ); return 0; }
d48b06bd 68 virtual bool DoYield(bool, long) { return true; }
fc7a2a60 69
c0c133e1 70 wxDECLARE_NO_COPY_CLASS(wxDummyConsoleApp);
e90c1d2a
VZ
71};
72
94826170 73// we need a special kind of auto pointer to wxApp which not only deletes the
7cafd224 74// pointer it holds in its dtor but also resets the global application pointer
d0ee33f5
WS
75wxDECLARE_SCOPED_PTR(wxAppConsole, wxAppPtrBase)
76wxDEFINE_SCOPED_PTR(wxAppConsole, wxAppPtrBase)
bc385ba9 77
94826170
VZ
78class wxAppPtr : public wxAppPtrBase
79{
80public:
77c6966e 81 wxEXPLICIT wxAppPtr(wxAppConsole *ptr = NULL) : wxAppPtrBase(ptr) { }
94826170
VZ
82 ~wxAppPtr()
83 {
84 if ( get() )
85 {
86 // the pointer is going to be deleted in the base class dtor, don't
87 // leave the dangling pointer!
a80e5f9e 88 wxApp::SetInstance(NULL);
94826170
VZ
89 }
90 }
91
77c6966e 92 void Set(wxAppConsole *ptr)
94826170
VZ
93 {
94 reset(ptr);
95
a80e5f9e 96 wxApp::SetInstance(ptr);
94826170 97 }
fc7a2a60 98
c0c133e1 99 wxDECLARE_NO_COPY_CLASS(wxAppPtr);
94826170
VZ
100};
101
05e2b077
VZ
102// class to ensure that wxAppBase::CleanUp() is called if our Initialize()
103// fails
104class wxCallAppCleanup
105{
106public:
77c6966e 107 wxCallAppCleanup(wxAppConsole *app) : m_app(app) { }
05e2b077
VZ
108 ~wxCallAppCleanup() { if ( m_app ) m_app->CleanUp(); }
109
110 void Dismiss() { m_app = NULL; }
111
112private:
77c6966e 113 wxAppConsole *m_app;
05e2b077
VZ
114};
115
005b5298
VZ
116// ----------------------------------------------------------------------------
117// private functions
118// ----------------------------------------------------------------------------
119
120// suppress warnings about unused variables
121static inline void Use(void *) { }
122
123#define WX_SUPPRESS_UNUSED_WARN(x) Use(&x)
124
e90c1d2a 125// ----------------------------------------------------------------------------
94826170 126// initialization data
e90c1d2a
VZ
127// ----------------------------------------------------------------------------
128
94826170
VZ
129static struct InitData
130{
131 InitData()
132 {
133 nInitCount = 0;
134
135#if wxUSE_UNICODE
136 argc = 0;
137 // argv = NULL; -- not even really needed
138#endif // wxUSE_UNICODE
139 }
140
141 // critical section protecting this struct
142 wxCRIT_SECT_DECLARE_MEMBER(csInit);
143
144 // number of times wxInitialize() was called minus the number of times
145 // wxUninitialize() was
146 size_t nInitCount;
147
148#if wxUSE_UNICODE
149 int argc;
150
151 // if we receive the command line arguments as ASCII and have to convert
152 // them to Unicode ourselves (this is the case under Unix but not Windows,
153 // for example), we remember the converted argv here because we'll have to
154 // free it when doing cleanup to avoid memory leaks
150cb195 155 wchar_t **argv;
94826170 156#endif // wxUSE_UNICODE
fc7a2a60 157
c0c133e1 158 wxDECLARE_NO_COPY_CLASS(InitData);
94826170 159} gs_initData;
e90c1d2a
VZ
160
161// ============================================================================
162// implementation
163// ============================================================================
164
252a752e 165// ----------------------------------------------------------------------------
94826170 166// command line arguments ANSI -> Unicode conversion
252a752e
VZ
167// ----------------------------------------------------------------------------
168
94826170
VZ
169#if wxUSE_UNICODE
170
171static void ConvertArgsToUnicode(int argc, char **argv)
e90c1d2a 172{
94826170 173 gs_initData.argv = new wchar_t *[argc + 1];
265db88d 174 int wargc = 0;
94826170 175 for ( int i = 0; i < argc; i++ )
e90c1d2a 176 {
a47f55c5
SC
177#ifdef __DARWIN__
178 wxWCharBuffer buf(wxConvFileName->cMB2WX(argv[i]));
179#else
faa112c4 180 wxWCharBuffer buf(wxConvLocal.cMB2WX(argv[i]));
a47f55c5 181#endif
265db88d
VZ
182 if ( !buf )
183 {
184 wxLogWarning(_("Command line argument %d couldn't be converted to Unicode and will be ignored."),
185 i);
186 }
187 else // converted ok
188 {
189 gs_initData.argv[wargc++] = wxStrdup(buf);
190 }
e90c1d2a
VZ
191 }
192
265db88d
VZ
193 gs_initData.argc = wargc;
194 gs_initData.argv[wargc] = NULL;
94826170 195}
e90c1d2a 196
94826170
VZ
197static void FreeConvertedArgs()
198{
150cb195 199 if ( gs_initData.argv )
bbfa0322 200 {
150cb195
VZ
201 for ( int i = 0; i < gs_initData.argc; i++ )
202 {
203 free(gs_initData.argv[i]);
204 }
205
206 delete [] gs_initData.argv;
207 gs_initData.argv = NULL;
08989e30 208 gs_initData.argc = 0;
bbfa0322 209 }
94826170 210}
bbfa0322 211
94826170 212#endif // wxUSE_UNICODE
e90c1d2a 213
94826170
VZ
214// ----------------------------------------------------------------------------
215// start up
216// ----------------------------------------------------------------------------
bbfa0322 217
94826170
VZ
218// initialization which is always done (not customizable) before wxApp creation
219static bool DoCommonPreInit()
220{
1c7b2f01 221#if wxUSE_LOG
e94cd97d
DE
222 // Reset logging in case we were cleaned up and are being reinitialized.
223 wxLog::DoCreateOnDemand();
1c7b2f01
VZ
224#endif // wxUSE_LOG
225
94826170 226 return true;
e90c1d2a
VZ
227}
228
94826170
VZ
229// non customizable initialization done after wxApp creation and initialization
230static bool DoCommonPostInit()
e90c1d2a 231{
94826170
VZ
232 wxModule::RegisterModules();
233
1c7b2f01
VZ
234 if ( !wxModule::InitializeModules() )
235 {
236 wxLogError(_("Initialization failed in post init, aborting."));
237 return false;
238 }
239
240 return true;
bc385ba9
VZ
241}
242
05e2b077 243bool wxEntryStart(int& argc, wxChar **argv)
bc385ba9 244{
94826170
VZ
245 // do minimal, always necessary, initialization
246 // --------------------------------------------
247
248 // initialize wxRTTI
249 if ( !DoCommonPreInit() )
94826170 250 return false;
bc385ba9 251
bc385ba9 252
94826170
VZ
253 // first of all, we need an application object
254 // -------------------------------------------
255
256 // the user might have already created it himself somehow
257 wxAppPtr app(wxTheApp);
258 if ( !app.get() )
259 {
260 // if not, he might have used IMPLEMENT_APP() to give us a function to
261 // create it
bc385ba9
VZ
262 wxAppInitializerFunction fnCreate = wxApp::GetInitializerFunction();
263
94826170
VZ
264 if ( fnCreate )
265 {
266 // he did, try to create the custom wxApp object
7cafd224 267 app.Set((*fnCreate)());
94826170
VZ
268 }
269 }
270
271 if ( !app.get() )
272 {
273 // either IMPLEMENT_APP() was not used at all or it failed -- in any
274 // case we still need something
7cafd224 275 app.Set(new wxDummyConsoleApp);
bc385ba9
VZ
276 }
277
bc385ba9 278
94826170
VZ
279 // wxApp initialization: this can be customized
280 // --------------------------------------------
bc385ba9 281
7cafd224 282 if ( !app->Initialize(argc, argv) )
94826170 283 return false;
bc385ba9 284
4f6b94a3
VZ
285 // remember, possibly modified (e.g. due to removal of toolkit-specific
286 // parameters), command line arguments in member variables
287 app->argc = argc;
288 app->argv = argv;
289
7cafd224 290 wxCallAppCleanup callAppCleanup(app.get());
05e2b077 291
bc385ba9 292
94826170
VZ
293 // common initialization after wxTheApp creation
294 // ---------------------------------------------
bc385ba9 295
94826170 296 if ( !DoCommonPostInit() )
94826170 297 return false;
bc385ba9 298
bc385ba9 299
94826170
VZ
300 // prevent the smart pointer from destroying its contents
301 app.release();
302
05e2b077
VZ
303 // and the cleanup object from doing cleanup
304 callAppCleanup.Dismiss();
305
1c7b2f01
VZ
306#if wxUSE_LOG
307 // now that we have a valid wxApp (wxLogGui would have crashed if we used
308 // it before now), we can delete the temporary sink we had created for the
309 // initialization messages -- the next time logging function is called, the
310 // sink will be recreated but this time wxAppTraits will be used
311 delete wxLog::SetActiveTarget(NULL);
312#endif // wxUSE_LOG
313
94826170 314 return true;
bc385ba9
VZ
315}
316
94826170 317#if wxUSE_UNICODE
bbfa0322 318
94826170 319// we provide a wxEntryStart() wrapper taking "char *" pointer too
05e2b077 320bool wxEntryStart(int& argc, char **argv)
bc385ba9 321{
94826170 322 ConvertArgsToUnicode(argc, argv);
bc385ba9 323
265db88d 324 if ( !wxEntryStart(gs_initData.argc, gs_initData.argv) )
bc385ba9 325 {
94826170
VZ
326 FreeConvertedArgs();
327
328 return false;
e90c1d2a 329 }
bc385ba9 330
94826170 331 return true;
bc385ba9
VZ
332}
333
94826170
VZ
334#endif // wxUSE_UNICODE
335
336// ----------------------------------------------------------------------------
337// clean up
338// ----------------------------------------------------------------------------
339
7beb59f3 340// cleanup done before destroying wxTheApp
94826170 341static void DoCommonPreCleanup()
bc385ba9
VZ
342{
343#if wxUSE_LOG
55b24eb8
VZ
344 // flush the logged messages if any and don't use the current probably
345 // unsafe log target any more: the default one (wxLogGui) can't be used
346 // after the resources are freed which happens when we return and the user
347 // supplied one might be even more unsafe (using any wxWidgets GUI function
348 // is unsafe starting from now)
349 //
350 // notice that wxLog will still recreate a default log target if any
351 // messages are logged but that one will be safe to use until the very end
352 delete wxLog::SetActiveTarget(NULL);
bc385ba9 353#endif // wxUSE_LOG
94826170 354}
bc385ba9 355
94826170
VZ
356// cleanup done after destroying wxTheApp
357static void DoCommonPostCleanup()
358{
a4de7e8c
VZ
359 wxModule::CleanUpModules();
360
94826170
VZ
361 // we can't do this in wxApp itself because it doesn't know if argv had
362 // been allocated
90aaa865 363#if wxUSE_UNICODE
94826170 364 FreeConvertedArgs();
90aaa865
VZ
365#endif // wxUSE_UNICODE
366
2ee96a25
VZ
367 // use Set(NULL) and not Get() to avoid creating a message output object on
368 // demand when we just want to delete it
369 delete wxMessageOutput::Set(NULL);
370
8a9c2246
VZ
371#if wxUSE_LOG
372 // and now delete the last logger as well
55b24eb8
VZ
373 //
374 // we still don't disable log target auto-vivification even if any log
375 // objects created now will result in memory leaks because it seems better
376 // to leak memory which doesn't matter much considering the application is
377 // exiting anyhow than to not show messages which could still be logged
378 // from the user code (e.g. static dtors and such)
8a9c2246
VZ
379 delete wxLog::SetActiveTarget(NULL);
380#endif // wxUSE_LOG
e90c1d2a 381}
e2450fa9 382
94826170
VZ
383void wxEntryCleanup()
384{
385 DoCommonPreCleanup();
386
387
388 // delete the application object
389 if ( wxTheApp )
390 {
391 wxTheApp->CleanUp();
392
b7b00ae1
VZ
393 // reset the global pointer to it to NULL before destroying it as in
394 // some circumstances this can result in executing the code using
395 // wxTheApp and using half-destroyed object is no good
396 wxAppConsole * const app = wxApp::GetInstance();
a80e5f9e 397 wxApp::SetInstance(NULL);
b7b00ae1 398 delete app;
94826170
VZ
399 }
400
401
402 DoCommonPostCleanup();
94826170
VZ
403}
404
405// ----------------------------------------------------------------------------
406// wxEntry
407// ----------------------------------------------------------------------------
408
226c11c0
VZ
409// for MSW the real wxEntry is defined in msw/main.cpp
410#ifndef __WXMSW__
94826170 411 #define wxEntryReal wxEntry
226c11c0 412#endif // !__WXMSW__
94826170 413
05e2b077 414int wxEntryReal(int& argc, wxChar **argv)
94826170
VZ
415{
416 // library initialization
6ecb1fdd
VS
417 wxInitializer initializer(argc, argv);
418
419 if ( !initializer.IsOk() )
94826170 420 {
688e04b1 421#if wxUSE_LOG
1c7b2f01
VZ
422 // flush any log messages explaining why we failed
423 delete wxLog::SetActiveTarget(NULL);
688e04b1 424#endif
94826170
VZ
425 return -1;
426 }
427
fb3e83b6 428 wxTRY
94826170 429 {
fb3e83b6
VZ
430 // app initialization
431 if ( !wxTheApp->CallOnInit() )
432 {
433 // don't call OnExit() if OnInit() failed
434 return -1;
435 }
94826170 436
fe277be0
VZ
437 // ensure that OnExit() is called if OnInit() had succeeded
438 class CallOnExit
439 {
440 public:
441 ~CallOnExit() { wxTheApp->OnExit(); }
442 } callOnExit;
94826170 443
9e9eea73
VZ
444 WX_SUPPRESS_UNUSED_WARN(callOnExit);
445
fe277be0
VZ
446 // app execution
447 return wxTheApp->OnRun();
fb3e83b6
VZ
448 }
449 wxCATCH_ALL( wxTheApp->OnUnhandledException(); return -1; )
94826170
VZ
450}
451
94826170
VZ
452#if wxUSE_UNICODE
453
454// as with wxEntryStart, we provide an ANSI wrapper
abca8ebf 455int wxEntry(int& argc, char **argv)
94826170
VZ
456{
457 ConvertArgsToUnicode(argc, argv);
458
265db88d 459 return wxEntry(gs_initData.argc, gs_initData.argv);
94826170
VZ
460}
461
462#endif // wxUSE_UNICODE
463
464// ----------------------------------------------------------------------------
465// wxInitialize/wxUninitialize
466// ----------------------------------------------------------------------------
467
d3688603
VS
468bool wxInitialize()
469{
470 return wxInitialize(0, (wxChar**)NULL);
471}
472
94826170
VZ
473bool wxInitialize(int argc, wxChar **argv)
474{
475 wxCRIT_SECT_LOCKER(lockInit, gs_initData.csInit);
476
477 if ( gs_initData.nInitCount++ )
478 {
479 // already initialized
480 return true;
481 }
482
483 return wxEntryStart(argc, argv);
484}
485
f380e251
VS
486#if wxUSE_UNICODE
487bool wxInitialize(int argc, char **argv)
488{
489 wxCRIT_SECT_LOCKER(lockInit, gs_initData.csInit);
490
491 if ( gs_initData.nInitCount++ )
492 {
493 // already initialized
494 return true;
495 }
496
497 return wxEntryStart(argc, argv);
498}
499#endif // wxUSE_UNICODE
500
94826170
VZ
501void wxUninitialize()
502{
503 wxCRIT_SECT_LOCKER(lockInit, gs_initData.csInit);
504
8d7eaf91 505 if ( --gs_initData.nInitCount == 0 )
94826170
VZ
506 {
507 wxEntryCleanup();
508 }
509}