1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: streaming runtime metadata information (extended class info)
4 // Author: Stefan Csomor
8 // Copyright: (c) 2003 Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_XTISTRMH__
13 #define _WX_XTISTRMH__
17 #if wxUSE_EXTENDED_RTTI
19 const int wxInvalidObjectID
= -2 ;
20 const int wxNullObjectID
= -3 ;
22 // Filer contains the interfaces for streaming objects in and out of XML,
23 // rendering them either to objects in memory, or to code. Note: We
24 // consider the process of generating code to be one of *depersisting* the
25 // object from xml, *not* of persisting the object to code from an object
26 // in memory. This distincation can be confusing, and should be kept
27 // in mind when looking at the property streamers and callback interfaces
31 Main interfaces for streaming out objects.
34 // ----------------------------------------------------------------------------
37 // This class will be asked during the streaming-out process about every single
38 // property or object instance. It can veto streaming out by returning false
39 // or modify the value before it is streamed-out.
40 // ----------------------------------------------------------------------------
42 class WXDLLIMPEXP_BASE wxWriter
;
43 class WXDLLIMPEXP_BASE wxReader
;
45 class WXDLLIMPEXP_BASE wxPersister
48 // will be called before an object is written, may veto by returning false
49 virtual bool BeforeWriteObject( wxWriter
*WXUNUSED(writer
) , const wxObject
*WXUNUSED(object
) , const wxClassInfo
*WXUNUSED(classInfo
) , wxxVariantArray
&WXUNUSED(metadata
)) { return true ; }
51 // will be called after this object has been written, may be needed for adjusting stacks
52 virtual void AfterWriteObject( wxWriter
*WXUNUSED(writer
) , const wxObject
*WXUNUSED(object
) , const wxClassInfo
*WXUNUSED(classInfo
) ) {}
54 // will be called before a property gets written, may change the value , eg replace a concrete wxSize by wxSize( wxDefaultCoord , wxDefaultCoord ) or veto
55 // writing that property at all by returning false
56 virtual bool BeforeWriteProperty( wxWriter
*WXUNUSED(writer
) , const wxObject
*WXUNUSED(object
), const wxPropertyInfo
*WXUNUSED(propInfo
) , wxxVariant
&WXUNUSED(value
) ) { return true ; }
58 // will be called before a property gets written, may change the value , eg replace a concrete wxSize by wxSize( wxDefaultCoord , wxDefaultCoord ) or veto
59 // writing that property at all by returning false
60 virtual bool BeforeWriteProperty( wxWriter
*WXUNUSED(writer
) , const wxObject
*WXUNUSED(object
), const wxPropertyInfo
*WXUNUSED(propInfo
) , wxxVariantArray
&WXUNUSED(value
) ) { return true ; }
62 // will be called after a property has been written out, may be needed for adjusting stacks
63 virtual void AfterWriteProperty( wxWriter
*WXUNUSED(writer
) , const wxPropertyInfo
*WXUNUSED(propInfo
) ) {}
65 // will be called before this delegate gets written
66 virtual bool BeforeWriteDelegate( wxWriter
*WXUNUSED(writer
) , const wxObject
*WXUNUSED(object
), const wxClassInfo
* WXUNUSED(classInfo
) , const wxPropertyInfo
*WXUNUSED(propInfo
) ,
67 const wxObject
*&WXUNUSED(eventSink
) , const wxHandlerInfo
* &WXUNUSED(handlerInfo
) ) { return true ; }
69 virtual void AfterWriteDelegate( wxWriter
*WXUNUSED(writer
) , const wxObject
*WXUNUSED(object
), const wxClassInfo
* WXUNUSED(classInfo
) , const wxPropertyInfo
*WXUNUSED(propInfo
) ,
70 const wxObject
*&WXUNUSED(eventSink
) , const wxHandlerInfo
* &WXUNUSED(handlerInfo
) ) { }
73 class WXDLLIMPEXP_BASE wxWriter
: public wxObject
79 // with this call you start writing out a new top-level object
80 void WriteObject(const wxObject
*object
, const wxClassInfo
*classInfo
, wxPersister
*persister
, const wxString
&name
, wxxVariantArray
&WXUNUSED(metadata
)) ;
83 // Managing the object identity table a.k.a context
85 // these methods make sure that no object gets written twice, because sometimes multiple calls to the WriteObject will be
86 // made without wanting to have duplicate objects written, the object identity table will be reset manually
88 virtual void ClearObjectContext() ;
90 // gets the object Id for a passed in object in the context
91 int GetObjectID(const wxObject
*obj
) ;
93 // returns true if this object has already been written in this context
94 bool IsObjectKnown( const wxObject
*obj
) ;
97 // streaming callbacks
99 // these callbacks really write out the values in the stream format
101 // begins writing out a new toplevel entry which has the indicated unique name
102 virtual void DoBeginWriteTopLevelEntry( const wxString
&name
) = 0 ;
104 // ends writing out a new toplevel entry which has the indicated unique name
105 virtual void DoEndWriteTopLevelEntry( const wxString
&name
) = 0 ;
107 // start of writing an object having the passed in ID
108 virtual void DoBeginWriteObject(const wxObject
*object
, const wxClassInfo
*classInfo
, int objectID
, wxxVariantArray
&metadata
) = 0 ;
110 // end of writing an toplevel object name param is used for unique identification within the container
111 virtual void DoEndWriteObject(const wxObject
*object
, const wxClassInfo
*classInfo
, int objectID
) = 0 ;
113 // writes a simple property in the stream format
114 virtual void DoWriteSimpleType( wxxVariant
&value
) = 0 ;
116 // start of writing a complex property into the stream (
117 virtual void DoBeginWriteProperty( const wxPropertyInfo
*propInfo
) = 0 ;
119 // end of writing a complex property into the stream
120 virtual void DoEndWriteProperty( const wxPropertyInfo
*propInfo
) = 0;
122 virtual void DoBeginWriteElement() = 0 ;
123 virtual void DoEndWriteElement() = 0 ;
124 // insert an object reference to an already written object
125 virtual void DoWriteRepeatedObject( int objectID
) = 0 ;
127 // insert a null reference
128 virtual void DoWriteNullObject() = 0 ;
130 // writes a delegate in the stream format
131 virtual void DoWriteDelegate( const wxObject
*object
, const wxClassInfo
* classInfo
, const wxPropertyInfo
*propInfo
,
132 const wxObject
*eventSink
, int sinkObjectID
, const wxClassInfo
* eventSinkClassInfo
, const wxHandlerInfo
* handlerIndo
) = 0;
135 struct wxWriterInternal
;
136 wxWriterInternal
* m_data
;
138 struct wxWriterInternalPropertiesData
;
140 void WriteAllProperties( const wxObject
* obj
, const wxClassInfo
* ci
, wxPersister
*persister
, wxWriterInternalPropertiesData
* data
) ;
141 void WriteOneProperty( const wxObject
*obj
, const wxClassInfo
* ci
, const wxPropertyInfo
* pi
, wxPersister
*persister
, wxWriterInternalPropertiesData
*data
) ;
142 void WriteObject(const wxObject
*object
, const wxClassInfo
*classInfo
, wxPersister
*persister
, bool isEmbedded
, wxxVariantArray
&metadata
) ;
143 void FindConnectEntry(const wxEvtHandler
* evSource
,const wxDelegateTypeInfo
* dti
, const wxObject
* &sink
, const wxHandlerInfo
*&handler
) ;
148 Streaming callbacks for depersisting XML to code, or running objects
151 class WXDLLIMPEXP_BASE wxDepersister
;
154 wxReader handles streaming in a class from a arbitrary format. While walking through
155 it issues calls out to interfaces to depersist the guts from the underlying storage format.
158 class WXDLLIMPEXP_BASE wxReader
: public wxObject
164 // the only thing wxReader knows about is the class info by object ID
165 wxClassInfo
*GetObjectClassInfo(int objectID
) ;
166 bool HasObjectClassInfo( int objectID
) ;
167 void SetObjectClassInfo(int objectID
, wxClassInfo
* classInfo
);
169 // Reads the component the reader is pointed at from the underlying format.
170 // The return value is the root object ID, which can
171 // then be used to ask the depersister about that object
172 // if there was a problem you will get back wxInvalidObjectID and the current
173 // error log will carry the problems encoutered
174 virtual int ReadObject( const wxString
&name
, wxDepersister
*depersist
) = 0 ;
177 struct wxReaderInternal
;
178 wxReaderInternal
*m_data
;
181 // This abstract class matches the allocate-init/create model of creation of objects.
182 // At runtime, these will create actual instances, and manipulate them.
183 // When generating code, these will just create statements of C++
184 // code to create the objects.
186 class WXDLLIMPEXP_BASE wxDepersister
189 // allocate the new object on the heap, that object will have the passed in ID
190 virtual void AllocateObject(int objectID
, wxClassInfo
*classInfo
, wxxVariantArray
&metadata
) = 0;
192 // initialize the already allocated object having the ID objectID with the Create method
193 // creation parameters which are objects are having their Ids passed in objectIDValues
194 // having objectId <> wxInvalidObjectID
196 virtual void CreateObject(int objectID
,
197 const wxClassInfo
*classInfo
,
199 wxxVariant
*VariantValues
,
200 int *objectIDValues
,
201 const wxClassInfo
**objectClassInfos
,
202 wxxVariantArray
&metadata
) = 0;
204 // construct the new object on the heap, that object will have the passed in ID (for objects that
205 // don't support allocate-create type of creation)
206 // creation parameters which are objects are having their Ids passed in objectIDValues
207 // having objectId <> wxInvalidObjectID
209 virtual void ConstructObject(int objectID
,
210 const wxClassInfo
*classInfo
,
212 wxxVariant
*VariantValues
,
213 int *objectIDValues
,
214 const wxClassInfo
**objectClassInfos
,
215 wxxVariantArray
&metadata
) = 0;
217 // destroy the heap-allocated object having the ID objectID, this may be used if an object
218 // is embedded in another object and set via value semantics, so the intermediate
219 // object can be destroyed after safely
220 virtual void DestroyObject(int objectID
, wxClassInfo
*classInfo
) = 0;
222 // set the corresponding property
223 virtual void SetProperty(int objectID
,
224 const wxClassInfo
*classInfo
,
225 const wxPropertyInfo
* propertyInfo
,
226 const wxxVariant
&VariantValue
) = 0;
228 // sets the corresponding property (value is an object)
229 virtual void SetPropertyAsObject(int objectID
,
230 const wxClassInfo
*classInfo
,
231 const wxPropertyInfo
* propertyInfo
,
232 int valueObjectId
) = 0;
234 // adds an element to a property collection
235 virtual void AddToPropertyCollection( int objectID
,
236 const wxClassInfo
*classInfo
,
237 const wxPropertyInfo
* propertyInfo
,
238 const wxxVariant
&VariantValue
) = 0;
240 // sets the corresponding property (value is an object)
241 virtual void AddToPropertyCollectionAsObject(int objectID
,
242 const wxClassInfo
*classInfo
,
243 const wxPropertyInfo
* propertyInfo
,
244 int valueObjectId
) = 0;
246 // sets the corresponding event handler
247 virtual void SetConnect(int EventSourceObjectID
,
248 const wxClassInfo
*EventSourceClassInfo
,
249 const wxPropertyInfo
*delegateInfo
,
250 const wxClassInfo
*EventSinkClassInfo
,
251 const wxHandlerInfo
* handlerInfo
,
252 int EventSinkObjectID
) = 0;
256 wxRuntimeDepersister implements the callbacks that will depersist
257 an object into a running memory image, as opposed to writing
258 C++ initialization code to bring the object to life.
261 class WXDLLIMPEXP_BASE wxRuntimeDepersister
: public wxDepersister
263 struct wxRuntimeDepersisterInternal
;
264 wxRuntimeDepersisterInternal
* m_data
;
266 wxRuntimeDepersister();
267 virtual ~wxRuntimeDepersister();
269 // returns the object having the corresponding ID fully constructed
270 wxObject
*GetObject(int objectID
) ;
272 // allocate the new object on the heap, that object will have the passed in ID
273 virtual void AllocateObject(int objectID
, wxClassInfo
*classInfo
,
274 wxxVariantArray
&metadata
) ;
276 // initialize the already allocated object having the ID objectID with the Create method
277 // creation parameters which are objects are having their Ids passed in objectIDValues
278 // having objectId <> wxInvalidObjectID
280 virtual void CreateObject(int objectID
,
281 const wxClassInfo
*classInfo
,
283 wxxVariant
*VariantValues
,
285 const wxClassInfo
**objectClassInfos
,
286 wxxVariantArray
&metadata
289 // construct the new object on the heap, that object will have the passed in ID (for objects that
290 // don't support allocate-create type of creation)
291 // creation parameters which are objects are having their Ids passed in objectIDValues
292 // having objectId <> wxInvalidObjectID
294 virtual void ConstructObject(int objectID
,
295 const wxClassInfo
*classInfo
,
297 wxxVariant
*VariantValues
,
298 int *objectIDValues
,
299 const wxClassInfo
**objectClassInfos
,
300 wxxVariantArray
&metadata
) ;
302 // destroy the heap-allocated object having the ID objectID, this may be used if an object
303 // is embedded in another object and set via value semantics, so the intermediate
304 // object can be destroyed after safely
305 virtual void DestroyObject(int objectID
, wxClassInfo
*classInfo
) ;
307 // set the corresponding property
308 virtual void SetProperty(int objectID
,
309 const wxClassInfo
*classInfo
,
310 const wxPropertyInfo
* propertyInfo
,
311 const wxxVariant
&variantValue
);
313 // sets the corresponding property (value is an object)
314 virtual void SetPropertyAsObject(int objectId
,
315 const wxClassInfo
*classInfo
,
316 const wxPropertyInfo
* propertyInfo
,
319 // adds an element to a property collection
320 virtual void AddToPropertyCollection( int objectID
,
321 const wxClassInfo
*classInfo
,
322 const wxPropertyInfo
* propertyInfo
,
323 const wxxVariant
&VariantValue
) ;
325 // sets the corresponding property (value is an object)
326 virtual void AddToPropertyCollectionAsObject(int objectID
,
327 const wxClassInfo
*classInfo
,
328 const wxPropertyInfo
* propertyInfo
,
331 // sets the corresponding event handler
332 virtual void SetConnect(int eventSourceObjectID
,
333 const wxClassInfo
*eventSourceClassInfo
,
334 const wxPropertyInfo
*delegateInfo
,
335 const wxClassInfo
*eventSinkClassInfo
,
336 const wxHandlerInfo
* handlerInfo
,
337 int eventSinkObjectID
) ;
341 wxDepersisterCode implements the callbacks that will depersist
342 an object into a C++ initialization function. this will move to
346 class WXDLLIMPEXP_BASE wxTextOutputStream
;
348 class WXDLLIMPEXP_BASE wxCodeDepersister
: public wxDepersister
351 struct wxCodeDepersisterInternal
;
352 wxCodeDepersisterInternal
* m_data
;
353 wxTextOutputStream
*m_fp
;
354 wxString
ValueAsCode( const wxxVariant
¶m
) ;
356 wxCodeDepersister(wxTextOutputStream
*out
);
357 virtual ~wxCodeDepersister();
359 // allocate the new object on the heap, that object will have the passed in ID
360 virtual void AllocateObject(int objectID
, wxClassInfo
*classInfo
,
361 wxxVariantArray
&metadata
) ;
363 // initialize the already allocated object having the ID objectID with the Create method
364 // creation parameters which are objects are having their Ids passed in objectIDValues
365 // having objectId <> wxInvalidObjectID
367 virtual void CreateObject(int objectID
,
368 const wxClassInfo
*classInfo
,
370 wxxVariant
*variantValues
,
372 const wxClassInfo
**objectClassInfos
,
373 wxxVariantArray
&metadata
376 // construct the new object on the heap, that object will have the passed in ID (for objects that
377 // don't support allocate-create type of creation)
378 // creation parameters which are objects are having their Ids passed in objectIDValues
379 // having objectId <> wxInvalidObjectID
381 virtual void ConstructObject(int objectID
,
382 const wxClassInfo
*classInfo
,
384 wxxVariant
*VariantValues
,
385 int *objectIDValues
,
386 const wxClassInfo
**objectClassInfos
,
387 wxxVariantArray
&metadata
) ;
389 // destroy the heap-allocated object having the ID objectID, this may be used if an object
390 // is embedded in another object and set via value semantics, so the intermediate
391 // object can be destroyed after safely
392 virtual void DestroyObject(int objectID
, wxClassInfo
*classInfo
) ;
394 // set the corresponding property
395 virtual void SetProperty(int objectID
,
396 const wxClassInfo
*classInfo
,
397 const wxPropertyInfo
* propertyInfo
,
398 const wxxVariant
&variantValue
);
400 // sets the corresponding property (value is an object)
401 virtual void SetPropertyAsObject(int objectId
,
402 const wxClassInfo
*classInfo
,
403 const wxPropertyInfo
* propertyInfo
,
406 // adds an element to a property collection
407 virtual void AddToPropertyCollection( int objectID
,
408 const wxClassInfo
*classInfo
,
409 const wxPropertyInfo
* propertyInfo
,
410 const wxxVariant
&VariantValue
) ;
412 // sets the corresponding property (value is an object)
413 virtual void AddToPropertyCollectionAsObject(int objectID
,
414 const wxClassInfo
*classInfo
,
415 const wxPropertyInfo
* propertyInfo
,
418 // sets the corresponding event handler
419 virtual void SetConnect(int eventSourceObjectID
,
420 const wxClassInfo
*eventSourceClassInfo
,
421 const wxPropertyInfo
*delegateInfo
,
422 const wxClassInfo
*eventSinkClassInfo
,
423 const wxHandlerInfo
* handlerInfo
,
424 int eventSinkObjectID
) ;
427 #endif // wxUSE_EXTENDED_RTTI