]>
git.saurik.com Git - wxWidgets.git/blob - utils/HelpGen/src/scriptbinder.h
f95bdcc8d335fb0298053f4936e5321220087d09
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Contrib. demo
4 // Author: Aleksandras Gluchovas
8 // Copyright: (c) Aleskandars Gluchovas
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __SCRIPTBINDER_G__
13 #define __SCRIPTBINDER_G__
15 #if defined( wxUSE_TEMPLATE_STL )
29 #include "wx/string.h"
31 #ifdef wxUSE_STD_STRING
35 typedef wxString string
;
42 #define ASSERT(x) if (!(x) ) throw;
47 // just another portable stream class...
59 void WriteBytes( const void* srcBuf
, size_t count
);
61 ScriptStream
& operator<<( const char* str
);
62 ScriptStream
& operator<<( const string
& str
);
63 ScriptStream
& operator<<( char ch
);
67 inline char* GetBuf() { return mpBuf
; }
68 inline size_t GetBufSize() { return mSize
; }
70 // clears current contents of the stream
71 void Reset() { mSize
= 0; }
77 // used internally by ScriptTemplate
79 enum TEMPLATE_VARIABLE_TYPES
87 // helper structures used only by ScriptTemplate
96 TVarInfo( const char* name
, int ofs
, int varType
)
103 struct TArrayInfo
: public TVarInfo
110 TArrayInfo( const char* name
)
111 : TVarInfo( name
, 0, TVAR_REF_ARRAY
)
115 // stores offset of the given member (of the given class)
116 // to (*pOfs), though the use of template classes would have
117 // solved this problem in much clearer fashion
119 // FOR NOW:: obtaining physical offset of class member
120 // does not appeare to be protable across compilers?
121 // FIXME:: +/- 1 problem
124 #define WEIRD_OFFSET 1
126 #define WEIRD_OFFSET 0
130 #define GET_VAR_OFS( className, varName, pOfs ) \
132 int* className::* varPtr; \
133 varPtr = (int* className::*)&className::varName; \
135 (*pOfs) = int(*(int*)&varPtr)-WEIRD_OFFSET; \
140 #if defined( wxUSE_TEMPLATE_STL )
142 typedef vector
<TVarInfo
*> TVarListT
;
144 // container class for sections
145 typedef vector
<ScriptSection
*> SectListT
;
149 typedef TVarInfo
* TVarInfoPtrT
;
150 typedef ScriptSection
* ScriptSectionPtrT
;
152 typedef WXSTL_VECTOR_SHALLOW_COPY(TVarInfoPtrT
) TVarListT
;
154 // container class for sections
155 typedef WXSTL_VECTOR_SHALLOW_COPY(ScriptSectionPtrT
) SectListT
;
159 // class performs preprocessing of arbitrary scripts,
160 // replaces identifiers enclosed in $(..) tag, whith
161 // values of the corresponding class member variables
166 // do not use string object here - parsing of
167 // C string can be much faster (in debug v.)
173 inline void PrintVar( TVarInfo
* pInfo
,
178 ScriptTemplate( const string
& templateText
);
179 virtual ~ScriptTemplate();
181 bool HasVar( const char* name
);
183 // Member variables registration methods.
185 // NOTE:: GET_VAR_OFS() macro should be used
186 // to get offset of the class member (see #define above)
187 void AddStringVar ( const char* name
, int ofs
);
188 void AddIntegerVar( const char* name
, int ofs
);
189 void AddDoubleVar ( const char* name
, int ofs
);
191 void AddObjectRefArray( const char* name
,
192 int ofsRefToFirstObj
,
197 // reads the script, replaces $(..) tags with values
198 // of registered members of dataObj object, and outputs
199 // the result to given text stream
201 void PrintScript( void* dataObj
, ScriptStream
& stm
);
206 // class manages section and aggregated sections of
207 // inter-linked documents
213 // NOTE:: "$(NAME)", $(ID), "$(BODY)" and "$(REFLIST)" aree
214 // reseved template variables of ScriptSection
216 // the below there members are registered to ScriptTemplate,
217 // GUID within the section tree (numeric)
219 ScriptSection
* mpParent
;
221 string mName
; // $(NAME)
222 string mBody
; // $(BODY)
224 // NULL, if this section is not aggregated anywhere
226 SectListT mSubsections
; // aggregated sectons
227 SectListT mReferences
; // registered as $(REFLIST)
229 bool mAutoHide
; // see autoHide arg, in constructor
230 bool mSortOn
; // TRUE, if sort subsectons by naem
232 // tempalte for this section
233 ScriptTemplate
* mpSectTempl
;
235 // template used for links (or references) to this section
236 ScriptTemplate
* mpRefTempl
;
238 // do not call destructor of this object,
239 // call RemoveRef() instead
242 static int mIdCounter
; // generator of GUIDs
244 // fields registered and used by ScriptTemplate object
249 virtual void AddRef();
250 virtual void RemoveRef();
251 void DoRemoveEmptySections(int& nRemoved
, SectListT
& removedLst
);
252 void DoRemoveDeadLinks( SectListT
& removedLst
);
256 // NOTE:: pass NULL to certain template, if your sure
257 // this kind of template will never be used,
258 // e.g. if section is contained but never referrenced,
259 // then pReferenceTemplate can be NULL
261 // if autoHide option is TRUE, the section will be automatically
262 // collapsed (not shown) if it doesn't contain any references
263 // to other sections (e.g. could be usefull for autoamically
264 // hiding empty index-sections).
266 ScriptSection( const string
& name
= "",
267 const string
& body
= "",
268 ScriptTemplate
* pSectionTemplate
= NULL
,
269 ScriptTemplate
* pReferenceTemplate
= NULL
,
270 bool autoHide
= FALSE
,
274 // calls RemoveRef() to all aggreagated sections first,
275 // then to all referenced section - this way all
276 // sections (even not aggregated ones) become "garbage-collected"
278 // NOTE:: do not call destructor directlly, call RemoveRef()
280 virtual ~ScriptSection();
283 // if addToReferencesToo is TRUE, section is aggregated and
284 // also added to reference list of this section
286 void AddSection( ScriptSection
* pSection
, bool addToReferencesToo
= FALSE
);
288 // add cross-reference to this given section
289 void AddReference( ScriptSection
* pReferredSection
);
291 // subsection may be given of variable depth level,
292 // e.g. "publications/reviews/software"
294 ScriptSection
* GetSubsection( const char* name
);
296 // returns list aggregated sections
297 SectListT
& GetSubsections();
299 // binds reserved template names ( $(..) ) to member
300 // vairalbes in the ScriptSection class, should be called
301 // to initialize each user-code provided script template
303 static void RegisterTemplate( ScriptTemplate
& sectionTempalte
);
305 // prints out section tree to the stream, starting from
306 // this section as a root node
307 virtual void Print( ScriptStream
& stm
);
309 // searches empty sections which has autoHide == TRUE,
310 // and colapses them (this method should be called )
311 // on the root-section of the sections tree
313 // NOTE:: does not work properly, yet!
314 void RemoveEmptySections();
317 // base class for documnetation generators
318 // (allows user code set up target script type,
319 // independently of documentation type)
321 class DocGeneratorBase
326 // override this method to do some post processing
327 // after generation of document, or even write some
328 // data into output stream, before the section tree
329 // is flushed into it.
331 // return FALSE, if something has gone wrong and
332 // document cannot be saved now
334 virtual bool OnSaveDocument( ScriptStream
& WXUNUSED(stm
) )
337 // override this method to provide reference to
338 // the top section of the document (used as default
339 // starting section when saving a document)
341 virtual ScriptSection
* GetTopSection()
347 : mTags(0) // no defaul script
350 // dectrouctors of polymorphic classes SHOULD be virtual
351 virtual ~DocGeneratorBase() {}
353 // returns tags, being used for specific target script
354 MarkupTagsT
GetScriptMarkupTags() { return mTags
; }
356 // sets tag array for specific script
358 // NOTE:: Why virtual? since approach with MarkupTagsT is
359 // "flowless" only in theory. Overriding this method
360 // allows document generators to check the type of the
361 // target script, and perhaps make some modifications
362 // to generator's tamplates, to match the specific script
364 virtual void SetScriptMarkupTags( MarkupTagsT tags
)
367 // seves document to file starting from the root-node of
368 // the document (provided by GetTopSection() method),
369 // or from "pFromSection" if it's not NULL.
371 // fopenOptions arg. is string passed to fopen() method,
372 // returns TRUE, if saving was successfull
374 virtual bool SaveDocument( const char* fname
,
375 const char* fopenOptions
= "w",
376 ScriptSection
* pFromSection
= NULL