]>
git.saurik.com Git - wxWidgets.git/blob - utils/HelpGen/src/scriptbinder.h
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"
32 typedef wxString string
;
38 #define ASSERT(x) if (!(x) ) throw;
43 // just another portable stream class...
55 void WriteBytes( const void* srcBuf
, size_t count
);
57 ScriptStream
& operator<<( const char* str
);
58 ScriptStream
& operator<<( const string
& str
);
59 ScriptStream
& operator<<( char ch
);
63 inline char* GetBuf() { return mpBuf
; }
64 inline size_t GetBufSize() { return mSize
; }
66 // clears current contents of the stream
67 void Reset() { mSize
= 0; }
73 // used internally by ScriptTemplate
75 enum TEMPLATE_VARIABLE_TYPES
83 // helper structures used only by ScriptTemplate
92 TVarInfo( const char* name
, int ofs
, int varType
)
99 struct TArrayInfo
: public TVarInfo
106 TArrayInfo( const char* name
)
107 : TVarInfo( name
, 0, TVAR_REF_ARRAY
)
111 // stores offset of the given member (of the given class)
112 // to (*pOfs), though the use of template classes would have
113 // solved this problem in much clearer fashion
115 // FOR NOW:: obtaining physical offset of class member
116 // does not appeare to be protable across compilers?
117 // FIXME:: +/- 1 problem
120 #define WEIRD_OFFSET 1
122 #define WEIRD_OFFSET 0
126 #define GET_VAR_OFS( className, varName, pOfs ) \
128 int* className::* varPtr; \
129 varPtr = (int* className::*)&className::varName; \
131 (*pOfs) = int(*(int*)&varPtr)-WEIRD_OFFSET; \
136 #if defined( wxUSE_TEMPLATE_STL )
138 typedef vector
<TVarInfo
*> TVarListT
;
140 // container class for sections
141 typedef vector
<ScriptSection
*> SectListT
;
145 typedef TVarInfo
* TVarInfoPtrT
;
146 typedef ScriptSection
* ScriptSectionPtrT
;
148 typedef WXSTL_VECTOR_SHALLOW_COPY(TVarInfoPtrT
) TVarListT
;
150 // container class for sections
151 typedef WXSTL_VECTOR_SHALLOW_COPY(ScriptSectionPtrT
) SectListT
;
155 // class performs preprocessing of arbitrary scripts,
156 // replaces identifiers enclosed in $(..) tag, whith
157 // values of the corresponding class member variables
162 // do not use string object here - parsing of
163 // C string can be much faster (in debug v.)
169 inline void PrintVar( TVarInfo
* pInfo
,
174 ScriptTemplate( const string
& templateText
);
175 virtual ~ScriptTemplate();
177 bool HasVar( const char* name
);
179 // Member variables registration methods.
181 // NOTE:: GET_VAR_OFS() macro should be used
182 // to get offset of the class member (see #define above)
183 void AddStringVar ( const char* name
, int ofs
);
184 void AddIntegerVar( const char* name
, int ofs
);
185 void AddDoubleVar ( const char* name
, int ofs
);
187 void AddObjectRefArray( const char* name
,
188 int ofsRefToFirstObj
,
193 // reads the script, replaces $(..) tags with values
194 // of registered members of dataObj object, and outputs
195 // the result to given text stream
197 void PrintScript( void* dataObj
, ScriptStream
& stm
);
202 // class manages section and aggregated sections of
203 // inter-linked documents
209 // NOTE:: "$(NAME)", $(ID), "$(BODY)" and "$(REFLIST)" aree
210 // reseved template variables of ScriptSection
212 // the below there members are registered to ScriptTemplate,
213 // GUID within the section tree (numeric)
215 ScriptSection
* mpParent
;
217 string mName
; // $(NAME)
218 string mBody
; // $(BODY)
220 // NULL, if this section is not aggregated anywhere
222 SectListT mSubsections
; // aggregated sectons
223 SectListT mReferences
; // registered as $(REFLIST)
225 bool mAutoHide
; // see autoHide arg, in constructor
226 bool mSortOn
; // TRUE, if sort subsectons by naem
228 // tempalte for this section
229 ScriptTemplate
* mpSectTempl
;
231 // template used for links (or references) to this section
232 ScriptTemplate
* mpRefTempl
;
234 // do not call destructor of this object,
235 // call RemoveRef() instead
238 static int mIdCounter
; // generator of GUIDs
240 // fields registered and used by ScriptTemplate object
245 virtual void AddRef();
246 virtual void RemoveRef();
247 void DoRemoveEmptySections(int& nRemoved
, SectListT
& removedLst
);
248 void DoRemoveDeadLinks( SectListT
& removedLst
);
252 // NOTE:: pass NULL to certain template, if your sure
253 // this kind of template will never be used,
254 // e.g. if section is contained but never referrenced,
255 // then pReferenceTemplate can be NULL
257 // if autoHide option is TRUE, the section will be automatically
258 // collapsed (not shown) if it doesn't contain any references
259 // to other sections (e.g. could be usefull for autoamically
260 // hiding empty index-sections).
262 ScriptSection( const string
& name
= "",
263 const string
& body
= "",
264 ScriptTemplate
* pSectionTemplate
= NULL
,
265 ScriptTemplate
* pReferenceTemplate
= NULL
,
266 bool autoHide
= FALSE
,
270 // calls RemoveRef() to all aggreagated sections first,
271 // then to all referenced section - this way all
272 // sections (even not aggregated ones) become "garbage-collected"
274 // NOTE:: do not call destructor directlly, call RemoveRef()
276 virtual ~ScriptSection();
279 // if addToReferencesToo is TRUE, section is aggregated and
280 // also added to reference list of this section
282 void AddSection( ScriptSection
* pSection
, bool addToReferencesToo
= FALSE
);
284 // add cross-reference to this given section
285 void AddReference( ScriptSection
* pReferredSection
);
287 // subsection may be given of variable depth level,
288 // e.g. "publications/reviews/software"
290 ScriptSection
* GetSubsection( const char* name
);
292 // returns list aggregated sections
293 SectListT
& GetSubsections();
295 // binds reserved template names ( $(..) ) to member
296 // vairalbes in the ScriptSection class, should be called
297 // to initialize each user-code provided script template
299 static void RegisterTemplate( ScriptTemplate
& sectionTempalte
);
301 // prints out section tree to the stream, starting from
302 // this section as a root node
303 virtual void Print( ScriptStream
& stm
);
305 // searches empty sections which has autoHide == TRUE,
306 // and colapses them (this method should be called )
307 // on the root-section of the sections tree
309 // NOTE:: does not work properly, yet!
310 void RemoveEmptySections();
313 // base class for documnetation generators
314 // (allows user code set up target script type,
315 // independently of documentation type)
317 class DocGeneratorBase
322 // override this method to do some post processing
323 // after generation of document, or even write some
324 // data into output stream, before the section tree
325 // is flushed into it.
327 // return FALSE, if something has gone wrong and
328 // document cannot be saved now
330 virtual bool OnSaveDocument( ScriptStream
& stm
)
333 // override this method to provide reference to
334 // the top section of the document (used as default
335 // starting section when saving a document)
337 virtual ScriptSection
* GetTopSection()
343 : mTags(0) // no defaul script
346 // dectrouctors of polymorphic classes SHOULD be virtual
347 virtual ~DocGeneratorBase() {}
349 // returns tags, being used for specific target script
350 MarkupTagsT
GetScriptMarkupTags() { return mTags
; }
352 // sets tag array for specific script
354 // NOTE:: Why virtual? since approach with MarkupTagsT is
355 // "flowless" only in theory. Overriding this method
356 // allows document generators to check the type of the
357 // target script, and perhaps make some modifications
358 // to generator's tamplates, to match the specific script
360 virtual void SetScriptMarkupTags( MarkupTagsT tags
)
363 // seves document to file starting from the root-node of
364 // the document (provided by GetTopSection() method),
365 // or from "pFromSection" if it's not NULL.
367 // fopenOptions arg. is string passed to fopen() method,
368 // returns TRUE, if saving was successfull
370 virtual bool SaveDocument( const char* fname
,
371 const char* fopenOptions
= "w",
372 ScriptSection
* pFromSection
= NULL