]> git.saurik.com Git - wxWidgets.git/blame - src/common/object.cpp
Now uses wxSocketBase::Error() to see if last IO call failed
[wxWidgets.git] / src / common / object.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: object.cpp
3// Purpose: wxObject implementation
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
3f4a0c5b 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "object.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
1678ad78 23#ifndef WX_PRECOMP
794df945 24 #include "wx/hash.h"
1ccbb61a 25 #if wxUSE_SERIAL
794df945
VZ
26 #include "wx/objstrm.h"
27 #include "wx/serbase.h"
28
29 // for error messages
30 #include "wx/log.h"
31 #include "wx/intl.h"
32 #endif // wxUSE_SERIAL
33#endif // WX_PRECOMP
c801d85f
KB
34
35#include <string.h>
36#include <assert.h>
37
ea57084d 38#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
c801d85f
KB
39#include "wx/memory.h"
40#endif
41
ea57084d 42#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
3f4a0c5b
VZ
43 // for wxObject::Dump
44 #include "wx/ioswrap.h"
c801d85f
KB
45#endif
46
47#if !USE_SHARED_LIBRARY
cf2f341a 48wxClassInfo wxObject::sm_classwxObject((wxChar *) _T("wxObject"), (wxChar *) NULL, (wxChar *) NULL, (int ) sizeof(wxObject), (wxObjectConstructorFn) NULL);
0c32066b
JS
49wxClassInfo* wxClassInfo::sm_first = (wxClassInfo *) NULL;
50wxHashTable* wxClassInfo::sm_classTable = (wxHashTable*) NULL;
c801d85f
KB
51#endif
52
53/*
54 * wxWindows root object.
55 */
56
afb74891 57wxObject::wxObject()
c801d85f 58{
afb74891 59 m_refData = (wxObjectRefData *) NULL;
1ccbb61a 60#if wxUSE_SERIAL
afb74891 61 m_serialObj = (wxObject_Serialize *)NULL;
f4a8c29f 62#endif
c801d85f
KB
63}
64
afb74891 65wxObject::~wxObject()
c801d85f 66{
afb74891 67 UnRef();
1ccbb61a 68#if wxUSE_SERIAL
afb74891
VZ
69 if (m_serialObj)
70 delete m_serialObj;
f4a8c29f 71#endif
c801d85f
KB
72}
73
74/*
75 * Is this object a kind of (a subclass of) 'info'?
76 * E.g. is wxWindow a kind of wxObject?
77 * Go from this class to superclass, taking into account
78 * two possible base classes.
79 */
afb74891 80
341287bf 81bool wxObject::IsKindOf(wxClassInfo *info) const
c801d85f 82{
afb74891
VZ
83 wxClassInfo *thisInfo = GetClassInfo();
84 if (thisInfo)
85 return thisInfo->IsKindOf(info);
86 else
87 return FALSE;
c801d85f
KB
88}
89
a737331d
GL
90wxObject *wxObject::Clone() const
91{
aadbdf11
GL
92 wxObject *object = GetClassInfo()->CreateObject();
93 CopyObject(*object);
94 return object;
95}
96
97void wxObject::CopyObject(wxObject& object_dest) const
98{
99 wxASSERT(object_dest.GetClassInfo()->IsKindOf(GetClassInfo()));
a737331d
GL
100}
101
38830220 102#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT)
c801d85f
KB
103void wxObject::Dump(ostream& str)
104{
afb74891
VZ
105 if (GetClassInfo() && GetClassInfo()->GetClassName())
106 str << GetClassInfo()->GetClassName();
107 else
108 str << "unknown object class";
c801d85f
KB
109}
110#endif
111
ea57084d 112#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
c801d85f
KB
113
114#ifdef new
115#undef new
116#endif
117
4de6207a 118void *wxObject::operator new (size_t size, wxChar * fileName, int lineNum)
c801d85f 119{
afb74891 120 return wxDebugAlloc(size, fileName, lineNum, TRUE);
c801d85f
KB
121}
122
123void wxObject::operator delete (void * buf)
124{
afb74891 125 wxDebugFree(buf);
c801d85f
KB
126}
127
76626af2 128// VC++ 6.0
3f4a0c5b 129#if defined(__VISUALC__) && (__VISUALC__ >= 1200)
87d1e11f 130void wxObject::operator delete(void* pData, char* /* fileName */, int /* lineNum */)
76626af2 131{
afb74891 132 ::operator delete(pData);
76626af2
JS
133}
134#endif
135
c801d85f 136// Cause problems for VC++ - crashes
3f4a0c5b 137#if !defined(__VISUALC__) && wxUSE_ARRAY_MEMORY_OPERATORS
4de6207a 138void * wxObject::operator new[] (size_t size, wxChar * fileName, int lineNum)
c801d85f 139{
afb74891 140 return wxDebugAlloc(size, fileName, lineNum, TRUE, TRUE);
c801d85f
KB
141}
142
143void wxObject::operator delete[] (void * buf)
144{
afb74891 145 wxDebugFree(buf, TRUE);
c801d85f
KB
146}
147#endif
148
149#endif
150
151/*
152 * Class info: provides run-time class type information.
153 */
154
cf2f341a 155wxClassInfo::wxClassInfo(wxChar *cName, wxChar *baseName1, wxChar *baseName2, int sz, wxObjectConstructorFn constr)
c801d85f 156{
afb74891
VZ
157 m_className = cName;
158 m_baseClassName1 = baseName1;
159 m_baseClassName2 = baseName2;
160
161 m_objectSize = sz;
162 m_objectConstructor = constr;
163
164 m_next = sm_first;
165 sm_first = this;
166
167 m_baseInfo1 = (wxClassInfo *) NULL;
168 m_baseInfo2 = (wxClassInfo *) NULL;
c801d85f
KB
169}
170
afb74891 171wxObject *wxClassInfo::CreateObject()
c801d85f 172{
afb74891
VZ
173 if (m_objectConstructor)
174 return (wxObject *)(*m_objectConstructor)();
175 else
176 return (wxObject *) NULL;
c801d85f
KB
177}
178
cf2f341a 179wxClassInfo *wxClassInfo::FindClass(wxChar *c)
c801d85f 180{
afb74891
VZ
181 wxClassInfo *p = sm_first;
182 while (p)
183 {
cf2f341a 184 if (p && p->GetClassName() && wxStrcmp(p->GetClassName(), c) == 0)
afb74891
VZ
185 return p;
186 p = p->m_next;
187 }
188 return (wxClassInfo *) NULL;
c801d85f
KB
189}
190
191// Climb upwards through inheritance hierarchy.
192// Dual inheritance is catered for.
341287bf 193bool wxClassInfo::IsKindOf(wxClassInfo *info) const
c801d85f 194{
afb74891
VZ
195 if (info == NULL)
196 return FALSE;
197
198 // For some reason, when making/using a DLL, static data has to be included
199 // in both the DLL and the application. This can lead to duplicate
200 // wxClassInfo objects, so we have to test the name instead of the pointers.
201 // PROBABLY NO LONGER TRUE now I've done DLL creation right.
202 /*
c801d85f 203#if WXMAKINGDLL
afb74891
VZ
204if (GetClassName() && info->GetClassName() && (strcmp(GetClassName(), info->GetClassName()) == 0))
205return TRUE;
c801d85f 206#else
afb74891
VZ
207 */
208 if (this == info)
209 return TRUE;
c801d85f 210
afb74891
VZ
211 if (m_baseInfo1)
212 if (m_baseInfo1->IsKindOf(info))
213 return TRUE;
c801d85f 214
afb74891
VZ
215 if (m_baseInfo2)
216 return m_baseInfo2->IsKindOf(info);
c801d85f 217
afb74891 218 return FALSE;
c801d85f
KB
219}
220
221// Set pointers to base class(es) to speed up IsKindOf
afb74891 222void wxClassInfo::InitializeClasses()
c801d85f 223{
afb74891
VZ
224 wxClassInfo::sm_classTable = new wxHashTable(wxKEY_STRING);
225
226 // Index all class infos by their class name
227 wxClassInfo *info = sm_first;
228 while (info)
229 {
230 if (info->m_className)
231 sm_classTable->Put(info->m_className, (wxObject *)info);
232 info = info->m_next;
233 }
234
235 // Set base pointers for each wxClassInfo
236 info = sm_first;
237 while (info)
238 {
239 if (info->GetBaseClassName1())
240 info->m_baseInfo1 = (wxClassInfo *)sm_classTable->Get(info->GetBaseClassName1());
241 if (info->GetBaseClassName2())
242 info->m_baseInfo2 = (wxClassInfo *)sm_classTable->Get(info->GetBaseClassName2());
243 info = info->m_next;
244 }
c801d85f
KB
245}
246
afb74891 247void wxClassInfo::CleanUpClasses()
c801d85f 248{
0c32066b
JS
249 delete wxClassInfo::sm_classTable;
250 wxClassInfo::sm_classTable = NULL;
251}
f4a8c29f 252
cf2f341a 253wxObject *wxCreateDynamicObject(const wxChar *name)
0c32066b
JS
254{
255 if (wxClassInfo::sm_classTable)
256 {
257 wxClassInfo *info = (wxClassInfo *)wxClassInfo::sm_classTable->Get(name);
258 if (!info)
259 return (wxObject *)NULL;
260
261 return info->CreateObject();
262 }
263 else
264 {
265 wxClassInfo *info = wxClassInfo::sm_first;
266 while (info)
267 {
cf2f341a 268 if (info->m_className && wxStrcmp(info->m_className, name) == 0)
0c32066b
JS
269 return info->CreateObject();
270 info = info->m_next;
271 }
272 return (wxObject*) NULL;
273 }
274 return (wxObject*) NULL;
c801d85f
KB
275}
276
1ccbb61a 277#if wxUSE_SERIAL
c801d85f 278
7a4b9130
GL
279#include "wx/serbase.h"
280#include "wx/dynlib.h"
281#include "wx/msgdlg.h"
282
1678ad78 283wxObject* wxCreateStoredObject( wxInputStream &stream )
c801d85f 284{
afb74891
VZ
285 wxObjectInputStream obj_s(stream);
286 return obj_s.LoadObject();
c801d85f
KB
287};
288
7a4b9130
GL
289void wxObject::StoreObject( wxObjectOutputStream& stream )
290{
afb74891
VZ
291 wxString obj_name = wxString(GetClassInfo()->GetClassName()) + "_Serialize";
292 wxLibrary *lib = wxTheLibraries.LoadLibrary("wxserial");
7a4b9130 293
afb74891
VZ
294 if (!lib) {
295 wxLogError(_("Can't load wxSerial dynamic library."));
296 return;
297 }
f4a8c29f 298 if (!m_serialObj) {
afb74891
VZ
299 m_serialObj = (WXSERIAL(wxObject) *)lib->CreateObject( obj_name );
300
301 if (!m_serialObj) {
302 wxLogError(_("Can't find the serialization object '%s' "
303 "for the object '%s'."),
304 obj_name.c_str(),
305 GetClassInfo()->GetClassName());
306 return;
307 }
308 m_serialObj->SetObject(this);
f4a8c29f 309 }
7a4b9130 310
afb74891 311 m_serialObj->StoreObject(stream);
7a4b9130
GL
312}
313
314void wxObject::LoadObject( wxObjectInputStream& stream )
315{
afb74891
VZ
316 wxString obj_name = wxString(GetClassInfo()->GetClassName()) + "_Serialize";
317 wxLibrary *lib = wxTheLibraries.LoadLibrary("wxserial");
7a4b9130 318
f4a8c29f 319 if (!m_serialObj) {
afb74891
VZ
320 m_serialObj = (WXSERIAL(wxObject) *)lib->CreateObject( obj_name );
321
322 if (!m_serialObj) {
323 wxLogError(_("Can't find the serialization object '%s' "
324 "for the object '%s'."),
325 obj_name.c_str(),
326 GetClassInfo()->GetClassName());
327 return;
328 }
329 m_serialObj->SetObject(this);
f4a8c29f 330 }
6f34921d 331
afb74891 332 m_serialObj->LoadObject(stream);
7a4b9130
GL
333}
334
bfc6fde4 335#endif // wxUSE_SERIAL
c801d85f
KB
336
337/*
338 * wxObject: cloning of objects
339 */
340
341void wxObject::Ref(const wxObject& clone)
342{
343 // delete reference to old data
344 UnRef();
345 // reference new data
346 if (clone.m_refData) {
347 m_refData = clone.m_refData;
348 ++(m_refData->m_count);
349 }
350}
351
afb74891 352void wxObject::UnRef()
c801d85f
KB
353{
354 if (m_refData) {
355 assert(m_refData->m_count > 0);
356 --(m_refData->m_count);
357 if (m_refData->m_count == 0)
358 delete m_refData;
359 }
c67daf87 360 m_refData = (wxObjectRefData *) NULL;
c801d85f
KB
361}
362
363/*
364 * wxObjectData
365 */
366
367wxObjectRefData::wxObjectRefData(void) : m_count(1)
368{
369}
370
afb74891 371wxObjectRefData::~wxObjectRefData()
c801d85f
KB
372{
373}
374
341287bf
JS
375// These are here so we can avoid 'always true/false' warnings
376// by referring to these instead of TRUE/FALSE
377const bool wxTrue = TRUE;
378const bool wxFalse = FALSE;