]> git.saurik.com Git - wxWidgets.git/blame - src/common/object.cpp
added a few virtual keywords for consistency (no real changes) (patch 543922)
[wxWidgets.git] / src / common / object.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: object.cpp
3// Purpose: wxObject implementation
4// Author: Julian Smart
0b9ab0bd 5// Modified by: Ron Lee
c801d85f
KB
6// Created: 04/01/98
7// RCS-ID: $Id$
0b9ab0bd
RL
8// Copyright: (c) 1998 Julian Smart and Markus Holzem
9// (c) 2001 Ron Lee <ron@debian.org>
3f4a0c5b 10// Licence: wxWindows license
c801d85f
KB
11/////////////////////////////////////////////////////////////////////////////
12
13#ifdef __GNUG__
14#pragma implementation "object.h"
15#endif
16
0b9ab0bd
RL
17 // For compilers that support precompilation, includes "wx.h".
18
c801d85f
KB
19#include "wx/wxprec.h"
20
21#ifdef __BORLANDC__
22#pragma hdrstop
23#endif
24
1678ad78 25#ifndef WX_PRECOMP
0b9ab0bd 26#include "wx/hash.h"
24eb81cb
DW
27#endif
28
c801d85f
KB
29#include <string.h>
30#include <assert.h>
31
ea57084d 32#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
c801d85f
KB
33#include "wx/memory.h"
34#endif
35
ea57084d 36#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
3f4a0c5b 37 // for wxObject::Dump
0b9ab0bd 38#include "wx/ioswrap.h"
c801d85f 39
0b9ab0bd
RL
40#if defined(__VISAGECPP__)
41#define DEBUG_PRINTF(NAME) { static int raz=0; \
42 printf( #NAME " %i\n",raz); fflush(stdout); raz++; }
43#else
44#define DEBUG_PRINTF(NAME)
45#endif
c801d85f 46
0b9ab0bd 47#endif
f6bcfd97 48
0b9ab0bd
RL
49
50wxClassInfo wxObject::sm_classwxObject( wxT("wxObject"), 0, 0,
51 (int) sizeof(wxObject),
52 (wxObjectConstructorFn) 0 );
53wxClassInfo* wxClassInfo::sm_first = 0;
54wxHashTable* wxClassInfo::sm_classTable = 0;
c801d85f 55
0b9ab0bd
RL
56 // These are here so we can avoid 'always true/false' warnings
57 // by referring to these instead of TRUE/FALSE
c801d85f 58
0b9ab0bd
RL
59const bool wxTrue = TRUE;
60const bool wxFalse = FALSE;
c801d85f 61
0b9ab0bd
RL
62 // Is this object a kind of (a subclass of) 'info'?
63 // E.g. is wxWindow a kind of wxObject?
64 // Go from this class to superclass, taking into account
65 // two possible base classes.
afb74891 66
341287bf 67bool wxObject::IsKindOf(wxClassInfo *info) const
c801d85f 68{
afb74891 69 wxClassInfo *thisInfo = GetClassInfo();
0b9ab0bd 70 return (thisInfo) ? thisInfo->IsKindOf(info) : FALSE ;
c801d85f
KB
71}
72
38830220 73#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
dd107c50 74void wxObject::Dump(wxSTD ostream& str)
c801d85f 75{
afb74891
VZ
76 if (GetClassInfo() && GetClassInfo()->GetClassName())
77 str << GetClassInfo()->GetClassName();
78 else
79 str << "unknown object class";
c801d85f
KB
80}
81#endif
82
ea57084d 83#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
c801d85f
KB
84
85#ifdef new
86#undef new
87#endif
88
0b9ab0bd 89void *wxObject::operator new (size_t size, wxChar *fileName, int lineNum)
c801d85f 90{
afb74891 91 return wxDebugAlloc(size, fileName, lineNum, TRUE);
c801d85f
KB
92}
93
0b9ab0bd
RL
94#ifndef __VISAGECPP__
95void wxObject::operator delete (void *buf)
415ca026
DW
96{
97 wxDebugFree(buf);
98}
0b9ab0bd
RL
99#elif __DEBUG_ALLOC__
100void wxObject::operator delete (void *buf, const char *_fname, size_t _line)
c801d85f 101{
afb74891 102 wxDebugFree(buf);
c801d85f 103}
0b9ab0bd
RL
104#endif
105
106 // VC++ 6.0
c801d85f 107
3f4a0c5b 108#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
0b9ab0bd 109void wxObject::operator delete(void *pData, wxChar *WXUNUSED(fileName), int WXUNUSED(lineNum))
76626af2 110{
afb74891 111 ::operator delete(pData);
76626af2
JS
112}
113#endif
114
0b9ab0bd
RL
115 // Cause problems for VC++ - crashes
116
7c74e7fe 117#if (!defined(__VISUALC__) && wxUSE_ARRAY_MEMORY_OPERATORS ) || defined(__MWERKS__)
0b9ab0bd 118void *wxObject::operator new[] (size_t size, wxChar *fileName, int lineNum)
c801d85f 119{
afb74891 120 return wxDebugAlloc(size, fileName, lineNum, TRUE, TRUE);
c801d85f
KB
121}
122
0b9ab0bd 123void wxObject::operator delete[] (void *buf)
c801d85f 124{
afb74891 125 wxDebugFree(buf, TRUE);
c801d85f
KB
126}
127#endif
128
0b9ab0bd 129#endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
afb74891 130
afb74891 131
0b9ab0bd
RL
132// ----------------------------------------------------------------------------
133// wxClassInfo
134// ----------------------------------------------------------------------------
c801d85f 135
0b9ab0bd 136wxClassInfo *wxClassInfo::FindClass(const wxChar *className)
c801d85f 137{
80e8062f
VZ
138 if ( sm_classTable )
139 {
140 return (wxClassInfo *)wxClassInfo::sm_classTable->Get(className);
141 }
142 else
143 {
144 for ( wxClassInfo *info = sm_first; info ; info = info->m_next )
145 {
146 if ( wxStrcmp(info->GetClassName(), className) == 0 )
147 return info;
148 }
149
150 return NULL;
151 }
c801d85f
KB
152}
153
1f428942
VZ
154// a tiny InitializeClasses() helper
155/* static */
156inline wxClassInfo *wxClassInfo::GetBaseByName(const wxChar *name)
157{
158 if ( !name )
159 return NULL;
160
161 wxClassInfo *classInfo = (wxClassInfo *)sm_classTable->Get(name);
162
163 // this must be fixed, other things risk work wrongly later if you get this
21b52985
VZ
164 wxASSERT_MSG( classInfo,
165 wxString::Format
166 (
167 _T("base class '%s' is unknown to wxWindows RTTI"),
168 name
169 ) );
1f428942
VZ
170
171 return classInfo;
172}
c801d85f 173
1f428942 174// Set pointers to base class(es) to speed up IsKindOf
afb74891 175void wxClassInfo::InitializeClasses()
c801d85f 176{
309689b2
VZ
177 // using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you
178 // link any object module twice mistakenly) will break this function
179 // because it will enter an infinite loop and eventually die with "out of
180 // memory" - as this is quite hard to detect if you're unaware of this,
181 // try to do some checks here
0b9ab0bd 182
309689b2 183#ifdef __WXDEBUG__
0b9ab0bd 184 static const size_t nMaxClasses = 10000; // more than we'll ever have
309689b2 185 size_t nClass = 0;
0b9ab0bd 186#endif
309689b2 187
afb74891
VZ
188 wxClassInfo::sm_classTable = new wxHashTable(wxKEY_STRING);
189
0b9ab0bd
RL
190 // Index all class infos by their class name
191
192 wxClassInfo *info;
193 for(info = sm_first; info; info = info->m_next)
afb74891
VZ
194 {
195 if (info->m_className)
309689b2
VZ
196 {
197 wxASSERT_MSG( ++nClass < nMaxClasses,
f6bcfd97 198 _T("an infinite loop detected - have you used IMPLEMENT_DYNAMIC_CLASS() twice (may be by linking some object module(s) twice)?") );
afb74891 199 sm_classTable->Put(info->m_className, (wxObject *)info);
309689b2 200 }
afb74891
VZ
201 }
202
0b9ab0bd
RL
203 // Set base pointers for each wxClassInfo
204
205 for(info = sm_first; info; info = info->m_next)
afb74891 206 {
1f428942
VZ
207 info->m_baseInfo1 = GetBaseByName(info->GetBaseClassName1());
208 info->m_baseInfo2 = GetBaseByName(info->GetBaseClassName2());
afb74891 209 }
c801d85f
KB
210}
211
afb74891 212void wxClassInfo::CleanUpClasses()
c801d85f 213{
0c32066b 214 delete wxClassInfo::sm_classTable;
0b9ab0bd 215 wxClassInfo::sm_classTable = 0;
0c32066b 216}
f4a8c29f 217
0b9ab0bd 218
cf2f341a 219wxObject *wxCreateDynamicObject(const wxChar *name)
0c32066b 220{
bbee61e5 221#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
415ca026 222 DEBUG_PRINTF(wxObject *wxCreateDynamicObject)
bbee61e5 223#endif
61cca9d2 224
0c32066b
JS
225 if (wxClassInfo::sm_classTable)
226 {
227 wxClassInfo *info = (wxClassInfo *)wxClassInfo::sm_classTable->Get(name);
0b9ab0bd 228 return info != 0 ? info->CreateObject() : 0;
0c32066b
JS
229 }
230 else
231 {
0b9ab0bd 232 for(wxClassInfo *info = wxClassInfo::sm_first; info; info = info->m_next)
cf2f341a 233 if (info->m_className && wxStrcmp(info->m_className, name) == 0)
0c32066b 234 return info->CreateObject();
0b9ab0bd 235 return 0;
0c32066b 236 }
c801d85f
KB
237}
238
7a4b9130 239
0b9ab0bd
RL
240// ----------------------------------------------------------------------------
241// wxClassInfo
242// ----------------------------------------------------------------------------
c801d85f
KB
243
244void wxObject::Ref(const wxObject& clone)
245{
bbee61e5 246#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
807d8487 247 DEBUG_PRINTF(wxObject::Ref)
bbee61e5 248#endif
0b9ab0bd 249
c89f5c02
RR
250 // nothing to be done
251 if (m_refData == clone.m_refData)
252 return;
253
0b9ab0bd 254 // delete reference to old data
c801d85f 255 UnRef();
0b9ab0bd 256
c801d85f 257 // reference new data
807d8487 258 if ( clone.m_refData )
0b9ab0bd 259 {
c801d85f
KB
260 m_refData = clone.m_refData;
261 ++(m_refData->m_count);
262 }
263}
264
afb74891 265void wxObject::UnRef()
c801d85f 266{
807d8487 267 if ( m_refData )
4fe5383d
VZ
268 {
269 wxASSERT_MSG( m_refData->m_count > 0, _T("invalid ref data count") );
270
271 if ( !--m_refData->m_count )
c801d85f 272 delete m_refData;
807d8487 273 m_refData = NULL;
c801d85f 274 }
c801d85f
KB
275}
276
807d8487
VZ
277void wxObject::AllocExclusive()
278{
279 if ( !m_refData )
280 {
281 m_refData = CreateRefData();
282 }
283 else if ( m_refData->GetRefCount() > 1 )
284 {
285 // note that ref is not going to be destroyed in this case
a9bf8315 286 const wxObjectRefData* ref = m_refData;
807d8487
VZ
287 UnRef();
288
289 // ... so we can still access it
290 m_refData = CloneRefData(ref);
291 }
292 //else: ref count is 1, we are exclusive owners of m_refData anyhow
293
294 wxASSERT_MSG( m_refData && m_refData->GetRefCount() == 1,
295 _T("wxObject::AllocExclusive() failed.") );
296}
297
298wxObjectRefData *wxObject::CreateRefData() const
299{
d1870078
VZ
300 // if you use AllocExclusive() you must override this method
301 wxFAIL_MSG( _T("CreateRefData() must be overridden if called!") );
302
807d8487
VZ
303 return NULL;
304}
305
a9bf8315
VZ
306wxObjectRefData *
307wxObject::CloneRefData(const wxObjectRefData * WXUNUSED(data)) const
807d8487 308{
d1870078
VZ
309 // if you use AllocExclusive() you must override this method
310 wxFAIL_MSG( _T("CloneRefData() must be overridden if called!") );
311
807d8487
VZ
312 return NULL;
313}
314
315// ----------------------------------------------------------------------------
316// misc
317// ----------------------------------------------------------------------------
ce28b4d7
GD
318
319#if defined(__DARWIN__) && defined(DYLIB_INIT)
320
321extern "C" {
322 void __initialize_Cplusplus(void);
323 void wxWindowsDylibInit(void);
324};
325
0b9ab0bd
RL
326 // Dynamic shared library (dylib) initialization routine
327 // required to initialize static C++ objects bacause of lazy dynamic linking
328 // http://developer.apple.com/techpubs/macosx/Essentials/
329 // SystemOverview/Frameworks/Dynamic_Shared_Libraries.html
330
ce28b4d7
GD
331void wxWindowsDylibInit()
332{
333 // The function __initialize_Cplusplus() must be called from the shared
334 // library initialization routine to cause the static C++ objects in
335 // the library to be initialized (reference number 2441683).
336
337 __initialize_Cplusplus();
338}
339
340#endif
0b9ab0bd
RL
341
342// vi:sts=4:sw=4:et