]>
git.saurik.com Git - wxWidgets.git/blob - src/common/object.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/object.cpp
3 // Purpose: wxObject implementation
4 // Author: Julian Smart
5 // Modified by: Ron Lee
8 // Copyright: (c) 1998 Julian Smart
9 // (c) 2001 Ron Lee <ron@debian.org>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
14 #pragma implementation "object.h"
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
30 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
31 #include "wx/memory.h"
34 #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
36 #include "wx/ioswrap.h"
38 #if defined(__VISAGECPP__)
39 #define DEBUG_PRINTF(NAME) { static int raz=0; \
40 printf( #NAME " %i\n",raz); fflush(stdout); raz++; }
42 #define DEBUG_PRINTF(NAME)
44 #endif // __WXDEBUG__ || wxUSE_DEBUG_CONTEXT
47 wxClassInfo
wxObject::sm_classwxObject( wxT("wxObject"), 0, 0,
48 (int) sizeof(wxObject
),
49 (wxObjectConstructorFn
) 0 );
51 wxClassInfo
* wxClassInfo::sm_first
= NULL
;
52 wxHashTable
* wxClassInfo::sm_classTable
= NULL
;
54 // These are here so we can avoid 'always true/false' warnings
55 // by referring to these instead of TRUE/FALSE
56 const bool wxTrue
= TRUE
;
57 const bool wxFalse
= FALSE
;
59 // Is this object a kind of (a subclass of) 'info'?
60 // E.g. is wxWindow a kind of wxObject?
61 // Go from this class to superclass, taking into account
62 // two possible base classes.
63 bool wxObject::IsKindOf(wxClassInfo
*info
) const
65 wxClassInfo
*thisInfo
= GetClassInfo();
66 return (thisInfo
) ? thisInfo
->IsKindOf(info
) : FALSE
;
69 #if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
70 void wxObject::Dump(wxSTD ostream
& str
)
72 if (GetClassInfo() && GetClassInfo()->GetClassName())
73 str
<< GetClassInfo()->GetClassName();
75 str
<< _T("unknown object class");
80 #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING && defined( new )
85 #ifdef _WX_WANT_NEW_SIZET_WXCHAR_INT
86 void *wxObject::operator new ( size_t size
, const wxChar
*fileName
, int lineNum
)
88 return wxDebugAlloc(size
, (wxChar
*) fileName
, lineNum
, TRUE
);
92 #ifdef _WX_WANT_DELETE_VOID
93 void wxObject::operator delete ( void *buf
)
99 #ifdef _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET
100 void wxObject::operator delete ( void *buf
, const char *_fname
, size_t _line
)
106 #ifdef _WX_WANT_DELETE_VOID_WXCHAR_INT
107 void wxObject::operator delete ( void *buf
, const wxChar
*WXUNUSED(fileName
), int WXUNUSED(lineNum
) )
113 #ifdef _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT
114 void *wxObject::operator new[] ( size_t size
, const wxChar
* fileName
, int lineNum
)
116 return wxDebugAlloc(size
, (wxChar
*) fileName
, lineNum
, TRUE
, TRUE
);
120 #ifdef _WX_WANT_ARRAY_DELETE_VOID
121 void wxObject::operator delete[] ( void *buf
)
123 wxDebugFree(buf
, TRUE
);
127 #ifdef _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT
128 void wxObject::operator delete[] (void * buf
, const wxChar
* WXUNUSED(fileName
), int WXUNUSED(lineNum
) )
130 wxDebugFree(buf
, TRUE
);
135 // ----------------------------------------------------------------------------
137 // ----------------------------------------------------------------------------
139 wxClassInfo::~wxClassInfo()
141 // remove this object from the linked list of all class infos: if we don't
142 // do it, loading/unloading a DLL containing static wxClassInfo objects is
144 if ( this == sm_first
)
150 wxClassInfo
*info
= sm_first
;
153 if ( info
->m_next
== this )
155 info
->m_next
= m_next
;
164 wxClassInfo
*wxClassInfo::FindClass(const wxChar
*className
)
168 return (wxClassInfo
*)wxClassInfo::sm_classTable
->Get(className
);
172 for ( wxClassInfo
*info
= sm_first
; info
; info
= info
->m_next
)
174 if ( wxStrcmp(info
->GetClassName(), className
) == 0 )
182 // a tiny InitializeClasses() helper
184 inline wxClassInfo
*wxClassInfo::GetBaseByName(const wxChar
*name
)
189 wxClassInfo
*classInfo
= (wxClassInfo
*)sm_classTable
->Get(name
);
192 // this must be fixed, other things will work wrongly later if you get this
195 wxFAIL_MSG( wxString::Format
197 _T("base class '%s' is unknown to wxWindows RTTI"),
201 #endif // __WXDEBUG__
206 // Set pointers to base class(es) to speed up IsKindOf
207 void wxClassInfo::InitializeClasses()
209 // using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you
210 // link any object module twice mistakenly) will break this function
211 // because it will enter an infinite loop and eventually die with "out of
212 // memory" - as this is quite hard to detect if you're unaware of this,
213 // try to do some checks here
216 static const size_t nMaxClasses
= 10000; // more than we'll ever have
220 sm_classTable
= new wxHashTable(wxKEY_STRING
);
222 // Index all class infos by their class name
225 for(info
= sm_first
; info
; info
= info
->m_next
)
227 if (info
->m_className
)
229 wxASSERT_MSG( ++nClass
< nMaxClasses
,
230 _T("an infinite loop detected - have you used IMPLEMENT_DYNAMIC_CLASS() twice (may be by linking some object module(s) twice)?") );
231 sm_classTable
->Put(info
->m_className
, (wxObject
*)info
);
235 // Set base pointers for each wxClassInfo
237 for(info
= sm_first
; info
; info
= info
->m_next
)
239 info
->m_baseInfo1
= GetBaseByName(info
->GetBaseClassName1());
240 info
->m_baseInfo2
= GetBaseByName(info
->GetBaseClassName2());
244 void wxClassInfo::CleanUpClasses()
246 delete wxClassInfo::sm_classTable
;
247 wxClassInfo::sm_classTable
= NULL
;
251 wxObject
*wxCreateDynamicObject(const wxChar
*name
)
253 #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
254 DEBUG_PRINTF(wxObject
*wxCreateDynamicObject
)
257 if ( wxClassInfo::sm_classTable
)
259 wxClassInfo
*info
= (wxClassInfo
*)wxClassInfo::sm_classTable
->Get(name
);
260 return info
? info
->CreateObject() : NULL
;
262 else // no sm_classTable yet
264 for ( wxClassInfo
*info
= wxClassInfo::sm_first
;
266 info
= info
->m_next
)
268 if (info
->m_className
&& wxStrcmp(info
->m_className
, name
) == 0)
269 return info
->CreateObject();
277 // ----------------------------------------------------------------------------
279 // ----------------------------------------------------------------------------
281 // Initialize ref data from another object (needed for copy constructor and
282 // assignment operator)
283 void wxObject::InitFrom(const wxObject
& other
)
285 m_refData
= other
.m_refData
;
287 m_refData
->m_count
++;
290 void wxObject::Ref(const wxObject
& clone
)
292 #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
293 DEBUG_PRINTF(wxObject::Ref
)
296 // nothing to be done
297 if (m_refData
== clone
.m_refData
)
300 // delete reference to old data
303 // reference new data
304 if ( clone
.m_refData
)
306 m_refData
= clone
.m_refData
;
307 ++(m_refData
->m_count
);
311 void wxObject::UnRef()
315 wxASSERT_MSG( m_refData
->m_count
> 0, _T("invalid ref data count") );
317 if ( !--m_refData
->m_count
)
323 void wxObject::AllocExclusive()
327 m_refData
= CreateRefData();
329 else if ( m_refData
->GetRefCount() > 1 )
331 // note that ref is not going to be destroyed in this case
332 const wxObjectRefData
* ref
= m_refData
;
335 // ... so we can still access it
336 m_refData
= CloneRefData(ref
);
338 //else: ref count is 1, we are exclusive owners of m_refData anyhow
340 wxASSERT_MSG( m_refData
&& m_refData
->GetRefCount() == 1,
341 _T("wxObject::AllocExclusive() failed.") );
344 wxObjectRefData
*wxObject::CreateRefData() const
346 // if you use AllocExclusive() you must override this method
347 wxFAIL_MSG( _T("CreateRefData() must be overridden if called!") );
353 wxObject::CloneRefData(const wxObjectRefData
* WXUNUSED(data
)) const
355 // if you use AllocExclusive() you must override this method
356 wxFAIL_MSG( _T("CloneRefData() must be overridden if called!") );
361 // ----------------------------------------------------------------------------
363 // ----------------------------------------------------------------------------
365 #if defined(__DARWIN__) && defined(WXMAKINGDLL)
368 void __initialize_Cplusplus(void);
369 void wxWindowsDylibInit(void);
372 // Dynamic shared library (dylib) initialization routine
373 // required to initialize static C++ objects bacause of lazy dynamic linking
374 // http://developer.apple.com/techpubs/macosx/Essentials/
375 // SystemOverview/Frameworks/Dynamic_Shared_Libraries.html
377 void wxWindowsDylibInit()
379 // The function __initialize_Cplusplus() must be called from the shared
380 // library initialization routine to cause the static C++ objects in
381 // the library to be initialized (reference number 2441683).
383 // This only seems to be necessary if the library initialization routine
384 // needs to use the static C++ objects
385 __initialize_Cplusplus();