]> git.saurik.com Git - wxWidgets.git/blame - src/common/init.cpp
got rid of wxSocketBase::m_error which could get out of sync with wxSocketImpl::m_err...
[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
94826170 37#include "wx/ptr_scpd.h"
fb3e83b6 38#include "wx/except.h"
51abe921 39
94826170
VZ
40#if defined(__WXMSW__) && defined(__WXDEBUG__)
41 #include "wx/msw/msvcrt.h"
42
43 static struct EnableMemLeakChecking
44 {
45 EnableMemLeakChecking()
46 {
47 // do check for memory leaks on program exit (another useful flag
48 // is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free deallocated
49 // memory which may be used to simulate low-memory condition)
50 wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
51 }
52 } gs_enableLeakChecks;
53#endif // __WXMSW__ && __WXDEBUG__
54
e90c1d2a
VZ
55// ----------------------------------------------------------------------------
56// private classes
57// ----------------------------------------------------------------------------
58
e2478fde 59// we need a dummy app object if the user doesn't want to create a real one
94826170 60class wxDummyConsoleApp : public wxAppConsole
e90c1d2a
VZ
61{
62public:
fc7a2a60
VZ
63 wxDummyConsoleApp() { }
64
e2478fde 65 virtual int OnRun() { wxFAIL_MSG( _T("unreachable code") ); return 0; }
fc7a2a60
VZ
66
67 DECLARE_NO_COPY_CLASS(wxDummyConsoleApp)
e90c1d2a
VZ
68};
69
94826170 70// we need a special kind of auto pointer to wxApp which not only deletes the
7cafd224 71// pointer it holds in its dtor but also resets the global application pointer
d0ee33f5
WS
72wxDECLARE_SCOPED_PTR(wxAppConsole, wxAppPtrBase)
73wxDEFINE_SCOPED_PTR(wxAppConsole, wxAppPtrBase)
bc385ba9 74
94826170
VZ
75class wxAppPtr : public wxAppPtrBase
76{
77public:
77c6966e 78 wxEXPLICIT wxAppPtr(wxAppConsole *ptr = NULL) : wxAppPtrBase(ptr) { }
94826170
VZ
79 ~wxAppPtr()
80 {
81 if ( get() )
82 {
83 // the pointer is going to be deleted in the base class dtor, don't
84 // leave the dangling pointer!
a80e5f9e 85 wxApp::SetInstance(NULL);
94826170
VZ
86 }
87 }
88
77c6966e 89 void Set(wxAppConsole *ptr)
94826170
VZ
90 {
91 reset(ptr);
92
a80e5f9e 93 wxApp::SetInstance(ptr);
94826170 94 }
fc7a2a60
VZ
95
96 DECLARE_NO_COPY_CLASS(wxAppPtr)
94826170
VZ
97};
98
05e2b077
VZ
99// class to ensure that wxAppBase::CleanUp() is called if our Initialize()
100// fails
101class wxCallAppCleanup
102{
103public:
77c6966e 104 wxCallAppCleanup(wxAppConsole *app) : m_app(app) { }
05e2b077
VZ
105 ~wxCallAppCleanup() { if ( m_app ) m_app->CleanUp(); }
106
107 void Dismiss() { m_app = NULL; }
108
109private:
77c6966e 110 wxAppConsole *m_app;
05e2b077
VZ
111};
112
94826170
VZ
113// another tiny class which simply exists to ensure that wxEntryCleanup is
114// always called
115class wxCleanupOnExit
116{
117public:
118 ~wxCleanupOnExit() { wxEntryCleanup(); }
119};
bc385ba9 120
005b5298
VZ
121// ----------------------------------------------------------------------------
122// private functions
123// ----------------------------------------------------------------------------
124
125// suppress warnings about unused variables
126static inline void Use(void *) { }
127
128#define WX_SUPPRESS_UNUSED_WARN(x) Use(&x)
129
e90c1d2a 130// ----------------------------------------------------------------------------
94826170 131// initialization data
e90c1d2a
VZ
132// ----------------------------------------------------------------------------
133
94826170
VZ
134static struct InitData
135{
136 InitData()
137 {
138 nInitCount = 0;
139
140#if wxUSE_UNICODE
141 argc = 0;
142 // argv = NULL; -- not even really needed
143#endif // wxUSE_UNICODE
144 }
145
146 // critical section protecting this struct
147 wxCRIT_SECT_DECLARE_MEMBER(csInit);
148
149 // number of times wxInitialize() was called minus the number of times
150 // wxUninitialize() was
151 size_t nInitCount;
152
153#if wxUSE_UNICODE
154 int argc;
155
156 // if we receive the command line arguments as ASCII and have to convert
157 // them to Unicode ourselves (this is the case under Unix but not Windows,
158 // for example), we remember the converted argv here because we'll have to
159 // free it when doing cleanup to avoid memory leaks
150cb195 160 wchar_t **argv;
94826170 161#endif // wxUSE_UNICODE
fc7a2a60
VZ
162
163 DECLARE_NO_COPY_CLASS(InitData)
94826170 164} gs_initData;
e90c1d2a
VZ
165
166// ============================================================================
167// implementation
168// ============================================================================
169
252a752e 170// ----------------------------------------------------------------------------
94826170 171// command line arguments ANSI -> Unicode conversion
252a752e
VZ
172// ----------------------------------------------------------------------------
173
94826170
VZ
174#if wxUSE_UNICODE
175
176static void ConvertArgsToUnicode(int argc, char **argv)
e90c1d2a 177{
94826170 178 gs_initData.argv = new wchar_t *[argc + 1];
265db88d 179 int wargc = 0;
94826170 180 for ( int i = 0; i < argc; i++ )
e90c1d2a 181 {
a47f55c5
SC
182#ifdef __DARWIN__
183 wxWCharBuffer buf(wxConvFileName->cMB2WX(argv[i]));
184#else
faa112c4 185 wxWCharBuffer buf(wxConvLocal.cMB2WX(argv[i]));
a47f55c5 186#endif
265db88d
VZ
187 if ( !buf )
188 {
189 wxLogWarning(_("Command line argument %d couldn't be converted to Unicode and will be ignored."),
190 i);
191 }
192 else // converted ok
193 {
194 gs_initData.argv[wargc++] = wxStrdup(buf);
195 }
e90c1d2a
VZ
196 }
197
265db88d
VZ
198 gs_initData.argc = wargc;
199 gs_initData.argv[wargc] = NULL;
94826170 200}
e90c1d2a 201
94826170
VZ
202static void FreeConvertedArgs()
203{
150cb195 204 if ( gs_initData.argv )
bbfa0322 205 {
150cb195
VZ
206 for ( int i = 0; i < gs_initData.argc; i++ )
207 {
208 free(gs_initData.argv[i]);
209 }
210
211 delete [] gs_initData.argv;
212 gs_initData.argv = NULL;
08989e30 213 gs_initData.argc = 0;
bbfa0322 214 }
94826170 215}
bbfa0322 216
94826170 217#endif // wxUSE_UNICODE
e90c1d2a 218
94826170
VZ
219// ----------------------------------------------------------------------------
220// start up
221// ----------------------------------------------------------------------------
bbfa0322 222
94826170
VZ
223// initialization which is always done (not customizable) before wxApp creation
224static bool DoCommonPreInit()
225{
1c7b2f01 226#if wxUSE_LOG
e94cd97d
DE
227 // Reset logging in case we were cleaned up and are being reinitialized.
228 wxLog::DoCreateOnDemand();
229
1c7b2f01
VZ
230 // install temporary log sink: we can't use wxLogGui before wxApp is
231 // constructed and if we use wxLogStderr, all messages during
232 // initialization simply disappear under Windows
233 //
234 // note that we will delete this log target below
5db920c9 235 delete wxLog::SetActiveTarget(new wxLogBuffer);
1c7b2f01
VZ
236#endif // wxUSE_LOG
237
94826170 238 return true;
e90c1d2a
VZ
239}
240
94826170
VZ
241// non customizable initialization done after wxApp creation and initialization
242static bool DoCommonPostInit()
e90c1d2a 243{
94826170
VZ
244 wxModule::RegisterModules();
245
1c7b2f01
VZ
246 if ( !wxModule::InitializeModules() )
247 {
248 wxLogError(_("Initialization failed in post init, aborting."));
249 return false;
250 }
251
f775771a
FM
252#if defined(__WXDEBUG__)
253 // check if event classes implement Clone() correctly
254 // NOTE: the check is done against _all_ event classes which are linked to
255 // the executable currently running, which are not necessarily all
256 // wxWidgets event classes.
257 const wxClassInfo *ci = wxClassInfo::GetFirst();
95fa881e 258 for (; ci; ci = ci->GetNext())
f775771a
FM
259 {
260 // is this class derived from wxEvent?
95fa881e
PC
261 if (!ci->IsKindOf(CLASSINFO(wxEvent)) || wxString(ci->GetClassName()) == "wxEvent")
262 continue;
f775771a 263
95fa881e
PC
264 if (!ci->IsDynamic())
265 {
266 wxLogWarning("The event class '%s' should have a DECLARE_DYNAMIC_CLASS macro!",
267 ci->GetClassName());
268 continue;
269 }
f775771a 270
95fa881e
PC
271 // yes; test if it implements Clone() correctly
272 wxEvent* test = dynamic_cast<wxEvent*>(ci->CreateObject());
273 if (test == NULL)
274 {
275 wxLogWarning("The event class '%s' should have a DECLARE_DYNAMIC_CLASS macro!",
276 ci->GetClassName());
277 continue;
f775771a
FM
278 }
279
95fa881e
PC
280 wxEvent* cloned = test->Clone();
281 if (!cloned || cloned->GetClassInfo() != ci)
282 wxLogWarning("The event class '%s' does not correctly implement Clone()!",
283 ci->GetClassName());
284
285 delete test;
f775771a
FM
286 }
287#endif
288
1c7b2f01 289 return true;
bc385ba9
VZ
290}
291
05e2b077 292bool wxEntryStart(int& argc, wxChar **argv)
bc385ba9 293{
94826170
VZ
294 // do minimal, always necessary, initialization
295 // --------------------------------------------
296
297 // initialize wxRTTI
298 if ( !DoCommonPreInit() )
bc385ba9 299 {
94826170 300 return false;
bc385ba9
VZ
301 }
302
bc385ba9 303
94826170
VZ
304 // first of all, we need an application object
305 // -------------------------------------------
306
307 // the user might have already created it himself somehow
308 wxAppPtr app(wxTheApp);
309 if ( !app.get() )
310 {
311 // if not, he might have used IMPLEMENT_APP() to give us a function to
312 // create it
bc385ba9
VZ
313 wxAppInitializerFunction fnCreate = wxApp::GetInitializerFunction();
314
94826170
VZ
315 if ( fnCreate )
316 {
317 // he did, try to create the custom wxApp object
7cafd224 318 app.Set((*fnCreate)());
94826170
VZ
319 }
320 }
321
322 if ( !app.get() )
323 {
324 // either IMPLEMENT_APP() was not used at all or it failed -- in any
325 // case we still need something
7cafd224 326 app.Set(new wxDummyConsoleApp);
bc385ba9
VZ
327 }
328
bc385ba9 329
94826170
VZ
330 // wxApp initialization: this can be customized
331 // --------------------------------------------
bc385ba9 332
7cafd224 333 if ( !app->Initialize(argc, argv) )
bc385ba9 334 {
94826170 335 return false;
bc385ba9 336 }
bc385ba9 337
4f6b94a3
VZ
338 // remember, possibly modified (e.g. due to removal of toolkit-specific
339 // parameters), command line arguments in member variables
340 app->argc = argc;
341 app->argv = argv;
342
343
7cafd224 344 wxCallAppCleanup callAppCleanup(app.get());
05e2b077
VZ
345
346 // for compatibility call the old initialization function too
7cafd224 347 if ( !app->OnInitGui() )
05e2b077
VZ
348 return false;
349
bc385ba9 350
94826170
VZ
351 // common initialization after wxTheApp creation
352 // ---------------------------------------------
bc385ba9 353
94826170 354 if ( !DoCommonPostInit() )
94826170 355 return false;
bc385ba9 356
bc385ba9 357
94826170
VZ
358 // prevent the smart pointer from destroying its contents
359 app.release();
360
05e2b077
VZ
361 // and the cleanup object from doing cleanup
362 callAppCleanup.Dismiss();
363
1c7b2f01
VZ
364#if wxUSE_LOG
365 // now that we have a valid wxApp (wxLogGui would have crashed if we used
366 // it before now), we can delete the temporary sink we had created for the
367 // initialization messages -- the next time logging function is called, the
368 // sink will be recreated but this time wxAppTraits will be used
369 delete wxLog::SetActiveTarget(NULL);
370#endif // wxUSE_LOG
371
94826170 372 return true;
bc385ba9
VZ
373}
374
94826170 375#if wxUSE_UNICODE
bbfa0322 376
94826170 377// we provide a wxEntryStart() wrapper taking "char *" pointer too
05e2b077 378bool wxEntryStart(int& argc, char **argv)
bc385ba9 379{
94826170 380 ConvertArgsToUnicode(argc, argv);
bc385ba9 381
265db88d 382 if ( !wxEntryStart(gs_initData.argc, gs_initData.argv) )
bc385ba9 383 {
94826170
VZ
384 FreeConvertedArgs();
385
386 return false;
e90c1d2a 387 }
bc385ba9 388
94826170 389 return true;
bc385ba9
VZ
390}
391
94826170
VZ
392#endif // wxUSE_UNICODE
393
394// ----------------------------------------------------------------------------
395// clean up
396// ----------------------------------------------------------------------------
397
7beb59f3 398// cleanup done before destroying wxTheApp
94826170 399static void DoCommonPreCleanup()
bc385ba9
VZ
400{
401#if wxUSE_LOG
94826170
VZ
402 // flush the logged messages if any and install a 'safer' log target: the
403 // default one (wxLogGui) can't be used after the resources are freed just
404 // below and the user supplied one might be even more unsafe (using any
77ffb593 405 // wxWidgets GUI function is unsafe starting from now)
8a9c2246 406 wxLog::DontCreateOnDemand();
94826170
VZ
407
408 // this will flush the old messages if any
8a9c2246 409 delete wxLog::SetActiveTarget(new wxLogStderr);
bc385ba9 410#endif // wxUSE_LOG
94826170 411}
bc385ba9 412
94826170
VZ
413// cleanup done after destroying wxTheApp
414static void DoCommonPostCleanup()
415{
a4de7e8c
VZ
416 wxModule::CleanUpModules();
417
94826170
VZ
418 // we can't do this in wxApp itself because it doesn't know if argv had
419 // been allocated
90aaa865 420#if wxUSE_UNICODE
94826170 421 FreeConvertedArgs();
90aaa865
VZ
422#endif // wxUSE_UNICODE
423
2ee96a25
VZ
424 // use Set(NULL) and not Get() to avoid creating a message output object on
425 // demand when we just want to delete it
426 delete wxMessageOutput::Set(NULL);
427
8a9c2246
VZ
428#if wxUSE_LOG
429 // and now delete the last logger as well
430 delete wxLog::SetActiveTarget(NULL);
431#endif // wxUSE_LOG
e90c1d2a 432}
e2450fa9 433
94826170
VZ
434void wxEntryCleanup()
435{
436 DoCommonPreCleanup();
437
438
439 // delete the application object
440 if ( wxTheApp )
441 {
442 wxTheApp->CleanUp();
443
b7b00ae1
VZ
444 // reset the global pointer to it to NULL before destroying it as in
445 // some circumstances this can result in executing the code using
446 // wxTheApp and using half-destroyed object is no good
447 wxAppConsole * const app = wxApp::GetInstance();
a80e5f9e 448 wxApp::SetInstance(NULL);
b7b00ae1 449 delete app;
94826170
VZ
450 }
451
452
453 DoCommonPostCleanup();
94826170
VZ
454}
455
456// ----------------------------------------------------------------------------
457// wxEntry
458// ----------------------------------------------------------------------------
459
226c11c0
VZ
460// for MSW the real wxEntry is defined in msw/main.cpp
461#ifndef __WXMSW__
94826170 462 #define wxEntryReal wxEntry
226c11c0 463#endif // !__WXMSW__
94826170 464
05e2b077 465int wxEntryReal(int& argc, wxChar **argv)
94826170
VZ
466{
467 // library initialization
468 if ( !wxEntryStart(argc, argv) )
469 {
688e04b1 470#if wxUSE_LOG
1c7b2f01
VZ
471 // flush any log messages explaining why we failed
472 delete wxLog::SetActiveTarget(NULL);
688e04b1 473#endif
94826170
VZ
474 return -1;
475 }
476
477 // if wxEntryStart succeeded, we must call wxEntryCleanup even if the code
478 // below returns or throws
479 wxCleanupOnExit cleanupOnExit;
480
005b5298
VZ
481 WX_SUPPRESS_UNUSED_WARN(cleanupOnExit);
482
fb3e83b6 483 wxTRY
94826170 484 {
e83f2301 485
fb3e83b6
VZ
486 // app initialization
487 if ( !wxTheApp->CallOnInit() )
488 {
489 // don't call OnExit() if OnInit() failed
490 return -1;
491 }
94826170 492
fe277be0
VZ
493 // ensure that OnExit() is called if OnInit() had succeeded
494 class CallOnExit
495 {
496 public:
497 ~CallOnExit() { wxTheApp->OnExit(); }
498 } callOnExit;
94826170 499
9e9eea73
VZ
500 WX_SUPPRESS_UNUSED_WARN(callOnExit);
501
fe277be0
VZ
502 // app execution
503 return wxTheApp->OnRun();
fb3e83b6
VZ
504 }
505 wxCATCH_ALL( wxTheApp->OnUnhandledException(); return -1; )
94826170
VZ
506}
507
94826170
VZ
508#if wxUSE_UNICODE
509
510// as with wxEntryStart, we provide an ANSI wrapper
abca8ebf 511int wxEntry(int& argc, char **argv)
94826170
VZ
512{
513 ConvertArgsToUnicode(argc, argv);
514
265db88d 515 return wxEntry(gs_initData.argc, gs_initData.argv);
94826170
VZ
516}
517
518#endif // wxUSE_UNICODE
519
520// ----------------------------------------------------------------------------
521// wxInitialize/wxUninitialize
522// ----------------------------------------------------------------------------
523
524bool wxInitialize(int argc, wxChar **argv)
525{
526 wxCRIT_SECT_LOCKER(lockInit, gs_initData.csInit);
527
528 if ( gs_initData.nInitCount++ )
529 {
530 // already initialized
531 return true;
532 }
533
534 return wxEntryStart(argc, argv);
535}
536
537void wxUninitialize()
538{
539 wxCRIT_SECT_LOCKER(lockInit, gs_initData.csInit);
540
8d7eaf91 541 if ( --gs_initData.nInitCount == 0 )
94826170
VZ
542 {
543 wxEntryCleanup();
544 }
545}