]> git.saurik.com Git - wxWidgets.git/blame - src/common/module.cpp
include wx/utils.h in PCH-less build to ensure that we get the correct (DLL-exported...
[wxWidgets.git] / src / common / module.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
32d4c30a 2// Name: src/common/module.cpp
c801d85f
KB
3// Purpose: Modules initialization/destruction
4// Author: Wolfram Gloger/adapted by Guilhem Lavaux
5// Modified by:
6// Created: 04/11/98
7// RCS-ID: $Id$
8// Copyright: (c) Wolfram Gloger and Guilhem Lavaux
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
c801d85f
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
32d4c30a
WS
16 #pragma hdrstop
17#endif
18
88a7a4e1
WS
19#include "wx/module.h"
20
32d4c30a
WS
21#ifndef WX_PRECOMP
22 #include "wx/hash.h"
88a7a4e1 23 #include "wx/intl.h"
e4db172a 24 #include "wx/log.h"
c801d85f
KB
25#endif
26
642c0eda 27#include "wx/listimpl.cpp"
8aa4edd2 28
3b96fc2f
MB
29#define TRACE_MODULE _T("module")
30
4115960d 31WX_DEFINE_LIST(wxModuleList)
c801d85f
KB
32
33IMPLEMENT_CLASS(wxModule, wxObject)
34
8aa4edd2 35wxModuleList wxModule::m_modules;
c801d85f
KB
36
37void wxModule::RegisterModule(wxModule* module)
38{
af266e5b 39 module->m_state = State_Registered;
8aa4edd2 40 m_modules.Append(module);
c801d85f
KB
41}
42
0b9ab0bd
RL
43void wxModule::UnregisterModule(wxModule* module)
44{
45 m_modules.DeleteObject(module);
df5168c4 46 delete module;
0b9ab0bd
RL
47}
48
c801d85f
KB
49// Collect up all module-derived classes, create an instance of each,
50// and register them.
8aa4edd2 51void wxModule::RegisterModules()
c801d85f 52{
df5168c4 53 wxHashTable::compatibility_iterator node;
f4a8c29f
GL
54 wxClassInfo* classInfo;
55
0c32066b
JS
56 wxClassInfo::sm_classTable->BeginFind();
57 node = wxClassInfo::sm_classTable->Next();
f4a8c29f 58 while (node)
c801d85f 59 {
b1d4dd7a 60 classInfo = (wxClassInfo *)node->GetData();
8aa4edd2 61 if ( classInfo->IsKindOf(CLASSINFO(wxModule)) &&
c0db9626 62 (classInfo != (& (wxModule::ms_classInfo))) )
c801d85f 63 {
3b96fc2f
MB
64 wxLogTrace(TRACE_MODULE, wxT("Registering module %s"),
65 classInfo->GetClassName());
8aa4edd2 66 wxModule* module = (wxModule *)classInfo->CreateObject();
c801d85f
KB
67 RegisterModule(module);
68 }
0c32066b 69 node = wxClassInfo::sm_classTable->Next();
c801d85f 70 }
c801d85f
KB
71}
72
af266e5b
VZ
73bool wxModule::DoInitializeModule(wxModule *module,
74 wxModuleList &initializedModules)
c801d85f 75{
af266e5b 76 if ( module->m_state == State_Initializing )
c801d85f 77 {
af266e5b
VZ
78 wxLogError(_("Circular dependency involving module \"%s\" detected."),
79 module->GetClassInfo()->GetClassName());
80 return false;
81 }
82
83 module->m_state = State_Initializing;
84
85 const wxArrayClassInfo& dependencies = module->m_dependencies;
86
87 // satisfy module dependencies by loading them before the current module
88 for ( unsigned int i = 0; i < dependencies.size(); ++i )
89 {
90 wxClassInfo * cinfo = dependencies[i];
91
92 // Check if the module is already initialized
93 wxModuleList::compatibility_iterator node;
94 for ( node = initializedModules.GetFirst(); node; node = node->GetNext() )
8aa4edd2 95 {
af266e5b
VZ
96 if ( node->GetData()->GetClassInfo() == cinfo )
97 break;
98 }
99
100 if ( node )
101 {
102 // this dependency is already initialized, nothing to do
103 continue;
104 }
8c18c674 105
af266e5b
VZ
106 // find the module in the registered modules list
107 for ( node = m_modules.GetFirst(); node; node = node->GetNext() )
108 {
109 wxModule *moduleDep = node->GetData();
110 if ( moduleDep->GetClassInfo() == cinfo )
8aa4edd2 111 {
af266e5b
VZ
112 if ( !DoInitializeModule(moduleDep, initializedModules ) )
113 {
114 // failed to initialize a dependency, so fail this one too
115 return false;
116 }
117
118 break;
8aa4edd2 119 }
af266e5b 120 }
8aa4edd2 121
af266e5b
VZ
122 if ( !node )
123 {
124 wxLogError(_("Dependency \"%s\" of module \"%s\" doesn't exist."),
125 cinfo->GetClassName(),
126 module->GetClassInfo()->GetClassName());
4e32eea1 127 return false;
8aa4edd2 128 }
c801d85f 129 }
8aa4edd2 130
af266e5b
VZ
131 if ( !module->Init() )
132 {
133 wxLogError(_("Module \"%s\" initialization failed"),
134 module->GetClassInfo()->GetClassName());
135 return false;
136 }
137
138 wxLogTrace(TRACE_MODULE, wxT("Module \"%s\" initialized"),
139 module->GetClassInfo()->GetClassName());
140
141 module->m_state = State_Initialized;
142 initializedModules.Append(module);
143
4e32eea1 144 return true;
c801d85f
KB
145}
146
af266e5b
VZ
147// Initialize user-defined modules
148bool wxModule::InitializeModules()
c801d85f 149{
af266e5b
VZ
150 wxModuleList initializedModules;
151
152 for ( wxModuleList::compatibility_iterator node = m_modules.GetFirst();
153 node;
154 node = node->GetNext() )
155 {
156 wxModule *module = node->GetData();
157
158 // the module could have been already initialized as dependency of
159 // another one
160 if ( module->m_state == State_Registered )
161 {
162 if ( !DoInitializeModule( module, initializedModules ) )
163 {
164 // failed to initialize all modules, so clean up the already
165 // initialized ones
166 DoCleanUpModules(initializedModules);
167
168 return false;
169 }
170 }
171 }
172
173 // remember the real initialisation order
174 m_modules = initializedModules;
175
176 return true;
177}
178
179// Clean up all currently initialized modules
180void wxModule::DoCleanUpModules(const wxModuleList& modules)
181{
182 // cleanup user-defined modules in the reverse order compared to their
183 // initialization -- this ensures that dependencies are respected
184 for ( wxModuleList::compatibility_iterator node = modules.GetLast();
185 node;
186 node = node->GetPrevious() )
c801d85f 187 {
3b96fc2f
MB
188 wxLogTrace(TRACE_MODULE, wxT("Cleanup module %s"),
189 node->GetData()->GetClassInfo()->GetClassName());
af266e5b
VZ
190
191 wxModule * module = node->GetData();
192
193 wxASSERT_MSG( module->m_state == State_Initialized,
194 _T("not initialized module being cleaned up") );
195
196 module->Exit();
197 module->m_state = State_Registered;
c801d85f 198 }
8aa4edd2 199
af266e5b 200 // clear all modules, even the non-initialized ones
df5168c4 201 WX_CLEAR_LIST(wxModuleList, m_modules);
c801d85f 202}