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 /////////////////////////////////////////////////////////////////////////////
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma implementation "object.h"
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
26 #include "wx/object.h"
31 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
32 #include "wx/memory.h"
35 #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
36 #if defined(__VISAGECPP__)
37 #define DEBUG_PRINTF(NAME) { static int raz=0; \
38 printf( #NAME " %i\n",raz); fflush(stdout); raz++; }
40 #define DEBUG_PRINTF(NAME)
42 #endif // __WXDEBUG__ || wxUSE_DEBUG_CONTEXT
44 // we must disable optimizations for VC.NET because otherwise its too eager
45 // linker discards wxClassInfo objects in release build thus breaking many,
47 #if defined __VISUALC__ && __VISUALC__ >= 1300
48 #pragma optimize("", off)
51 #if wxUSE_EXTENDED_RTTI
52 const wxClassInfo
* wxObject::ms_classParents
[] = { NULL
} ;
53 wxObject
* wxVariantToObjectConverterwxObject ( wxxVariant
&data
)
54 { return data
.wxTEMPLATED_MEMBER_CALL(Get
, wxObject
*) ; }
55 wxObject
* wxVariantOfPtrToObjectConverterwxObject ( wxxVariant
&data
)
56 { return &data
.wxTEMPLATED_MEMBER_CALL(Get
, wxObject
) ; }
57 wxxVariant
wxObjectToVariantConverterwxObject ( wxObject
*data
)
58 { return wxxVariant( dynamic_cast<wxObject
*> (data
) ) ; }
59 wxClassInfo
wxObject::ms_classInfo(ms_classParents
, wxT("") , wxT("wxObject"),
60 (int) sizeof(wxObject
), \
61 (wxObjectConstructorFn
) 0 ,
62 (wxPropertyInfo
*) NULL
,(wxHandlerInfo
*) NULL
,0 , 0 ,
63 0 , wxVariantOfPtrToObjectConverterwxObject
, wxVariantToObjectConverterwxObject
, wxObjectToVariantConverterwxObject
);
64 template<> void wxStringReadValue(const wxString
& , wxObject
* & ){assert(0) ;}
65 template<> void wxStringWriteValue(wxString
& , wxObject
* const & ){assert(0) ;}
66 template<> void wxStringReadValue(const wxString
& , wxObject
& ){assert(0) ;}
67 template<> void wxStringWriteValue(wxString
& , wxObject
const & ){assert(0) ;}
68 wxClassTypeInfo
s_typeInfo(wxT_OBJECT_PTR
, &wxObject::ms_classInfo
, NULL
, NULL
, typeid(wxObject
*).name() ) ;
69 wxClassTypeInfo
s_typeInfowxObject(wxT_OBJECT
, &wxObject::ms_classInfo
, NULL
, NULL
, typeid(wxObject
).name() ) ;
71 wxClassInfo
wxObject::ms_classInfo( wxT("wxObject"), 0, 0,
72 (int) sizeof(wxObject
),
73 (wxObjectConstructorFn
) 0 );
76 // restore optimizations
77 #if defined __VISUALC__ && __VISUALC__ >= 1300
78 #pragma optimize("", on)
81 wxClassInfo
* wxClassInfo::sm_first
= NULL
;
82 wxHashTable
* wxClassInfo::sm_classTable
= NULL
;
84 // These are here so we can avoid 'always true/false' warnings
85 // by referring to these instead of TRUE/FALSE
86 const bool wxTrue
= TRUE
;
87 const bool wxFalse
= FALSE
;
89 // Is this object a kind of (a subclass of) 'info'?
90 // E.g. is wxWindow a kind of wxObject?
91 // Go from this class to superclass, taking into account
92 // two possible base classes.
93 bool wxObject::IsKindOf(wxClassInfo
*info
) const
95 wxClassInfo
*thisInfo
= GetClassInfo();
96 return (thisInfo
) ? thisInfo
->IsKindOf(info
) : FALSE
;
99 #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING && defined( new )
104 #ifdef _WX_WANT_NEW_SIZET_WXCHAR_INT
105 void *wxObject::operator new ( size_t size
, const wxChar
*fileName
, int lineNum
)
107 return wxDebugAlloc(size
, (wxChar
*) fileName
, lineNum
, TRUE
);
111 #ifdef _WX_WANT_DELETE_VOID
112 void wxObject::operator delete ( void *buf
)
118 #ifdef _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET
119 void wxObject::operator delete ( void *buf
, const char *_fname
, size_t _line
)
125 #ifdef _WX_WANT_DELETE_VOID_WXCHAR_INT
126 void wxObject::operator delete ( void *buf
, const wxChar
*WXUNUSED(fileName
), int WXUNUSED(lineNum
) )
132 #ifdef _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT
133 void *wxObject::operator new[] ( size_t size
, const wxChar
* fileName
, int lineNum
)
135 return wxDebugAlloc(size
, (wxChar
*) fileName
, lineNum
, TRUE
, TRUE
);
139 #ifdef _WX_WANT_ARRAY_DELETE_VOID
140 void wxObject::operator delete[] ( void *buf
)
142 wxDebugFree(buf
, TRUE
);
146 #ifdef _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT
147 void wxObject::operator delete[] (void * buf
, const wxChar
* WXUNUSED(fileName
), int WXUNUSED(lineNum
) )
149 wxDebugFree(buf
, TRUE
);
154 // ----------------------------------------------------------------------------
156 // ----------------------------------------------------------------------------
158 wxClassInfo::~wxClassInfo()
160 // remove this object from the linked list of all class infos: if we don't
161 // do it, loading/unloading a DLL containing static wxClassInfo objects is
163 if ( this == sm_first
)
169 wxClassInfo
*info
= sm_first
;
172 if ( info
->m_next
== this )
174 info
->m_next
= m_next
;
184 wxClassInfo
*wxClassInfo::FindClass(const wxChar
*className
)
188 return (wxClassInfo
*)wxClassInfo::sm_classTable
->Get(className
);
192 for ( wxClassInfo
*info
= sm_first
; info
; info
= info
->m_next
)
194 if ( wxStrcmp(info
->GetClassName(), className
) == 0 )
202 void wxClassInfo::CleanUp()
206 delete sm_classTable
;
207 sm_classTable
= NULL
;
211 void wxClassInfo::Register()
213 if ( !sm_classTable
)
215 sm_classTable
= new wxHashTable(wxKEY_STRING
);
218 // using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you
219 // link any object module twice mistakenly) will break this function
220 // because it will enter an infinite loop and eventually die with "out of
221 // memory" - as this is quite hard to detect if you're unaware of this,
222 // try to do some checks here
223 wxASSERT_MSG( sm_classTable
->Get(m_className
) == NULL
,
224 _T("class already in RTTI table - have you used IMPLEMENT_DYNAMIC_CLASS() twice (may be by linking some object module(s) twice)?") );
226 sm_classTable
->Put(m_className
, (wxObject
*)this);
229 void wxClassInfo::Unregister()
233 sm_classTable
->Delete(m_className
);
234 if ( sm_classTable
->GetCount() == 0 )
236 delete sm_classTable
;
237 sm_classTable
= NULL
;
242 wxObject
*wxCreateDynamicObject(const wxChar
*name
)
244 #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
245 DEBUG_PRINTF(wxObject
*wxCreateDynamicObject
)
248 if ( wxClassInfo::sm_classTable
)
250 wxClassInfo
*info
= (wxClassInfo
*)wxClassInfo::sm_classTable
->Get(name
);
251 return info
? info
->CreateObject() : NULL
;
253 else // no sm_classTable yet
255 for ( wxClassInfo
*info
= wxClassInfo::sm_first
;
257 info
= info
->m_next
)
259 if (info
->m_className
&& wxStrcmp(info
->m_className
, name
) == 0)
260 return info
->CreateObject();
268 // ----------------------------------------------------------------------------
270 // ----------------------------------------------------------------------------
272 // Initialize ref data from another object (needed for copy constructor and
273 // assignment operator)
274 void wxObject::InitFrom(const wxObject
& other
)
276 m_refData
= other
.m_refData
;
278 m_refData
->m_count
++;
281 void wxObject::Ref(const wxObject
& clone
)
283 #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
284 DEBUG_PRINTF(wxObject::Ref
)
287 // nothing to be done
288 if (m_refData
== clone
.m_refData
)
291 // delete reference to old data
294 // reference new data
295 if ( clone
.m_refData
)
297 m_refData
= clone
.m_refData
;
298 ++(m_refData
->m_count
);
302 void wxObject::UnRef()
306 wxASSERT_MSG( m_refData
->m_count
> 0, _T("invalid ref data count") );
308 if ( !--m_refData
->m_count
)
314 void wxObject::AllocExclusive()
318 m_refData
= CreateRefData();
320 else if ( m_refData
->GetRefCount() > 1 )
322 // note that ref is not going to be destroyed in this case
323 const wxObjectRefData
* ref
= m_refData
;
326 // ... so we can still access it
327 m_refData
= CloneRefData(ref
);
329 //else: ref count is 1, we are exclusive owners of m_refData anyhow
331 wxASSERT_MSG( m_refData
&& m_refData
->GetRefCount() == 1,
332 _T("wxObject::AllocExclusive() failed.") );
335 wxObjectRefData
*wxObject::CreateRefData() const
337 // if you use AllocExclusive() you must override this method
338 wxFAIL_MSG( _T("CreateRefData() must be overridden if called!") );
344 wxObject::CloneRefData(const wxObjectRefData
* WXUNUSED(data
)) const
346 // if you use AllocExclusive() you must override this method
347 wxFAIL_MSG( _T("CloneRefData() must be overridden if called!") );