DOM code generator: Difference between revisions
m tutorial -> navigation |
m fmt |
||
Line 2: | Line 2: | ||
==DOM generated types== | ==DOM generated types== | ||
The DOM's basic types are defined in | The DOM's basic types are defined in <code>daeTypes.h</code>. There are mappings from XML Schema basic types to DOM types in <code>daeDomTypes.h</code>. | ||
Any other new types defined in the COLLADA schema document generate new atomic types or add name bindings to existing atomic types in the DOM. | Any other new types defined in the COLLADA schema document generate new atomic types or add name bindings to existing atomic types in the DOM. | ||
Line 8: | Line 8: | ||
All types defined in the COLLADA schema are either restrictions, extensions, unions, or lists of existing types. | All types defined in the COLLADA schema are either restrictions, extensions, unions, or lists of existing types. | ||
The DOM generates types in | The DOM generates types in <code>domTypes.h</code>. | ||
===Type declaration formats=== | ===Type declaration formats=== | ||
Line 19: | Line 19: | ||
The format for enum types is: | The format for enum types is: | ||
enum dom''New_type_name'' | enum dom''New_type_name'' | ||
Each enum value is then created as | Each enum value is then created as <code>''NEW_TYPE_NAME''_Enum</code>. | ||
Union types are supported only for unions of enums. A new enum is generated for that union type containing the symbols and values of all enums contained in the union. | Union types are supported only for unions of enums. A new enum is generated for that union type containing the symbols and values of all enums contained in the union. | ||
===Code for registered types=== | ===Code for registered types=== | ||
All generated types are registered in the | All generated types are registered in the <code>registerDomTypes</code> function found in <code>domTypes.cpp</code>. For all types except enums, code is generated that looks like | ||
type = daeAtomicType::get("base_type_name"); | type = daeAtomicType::get("base_type_name"); | ||
if ( type == NULL ) { //register as a raw type | if ( type == NULL ) { //register as a raw type | ||
Line 34: | Line 34: | ||
type->_nameBindings.append("new_type_name "); | type->_nameBindings.append("new_type_name "); | ||
} | } | ||
This code searches for a type for the | This code searches for a type for the <code>base_type_name</code>. If it finds one, it adds <code>new_type_name</code> as a name binding for that type. If the base type does not exist then a new <code>rawRefType</code> is created. | ||
===Enumerated types=== | ===Enumerated types=== | ||
Enums always get a new type generated. The two arrays | Enums always get a new type generated. The two arrays <code>_strings</code> and <code>_values</code> are populated with the enum values. | ||
In the schema, if an enumeration has an | In the schema, if an enumeration has an <xs:annotation> with an <xs:appinfo> value=''value'', the enum created will have a '''value''' value. | ||
==DOM-generated classes== | ==DOM-generated classes== | ||
===Interface=== | ===Interface=== | ||
Each | Each <xs:element> <xs:group> and <xs:complexType> generates a new <code>daeElement</code> subclass name <code>dom''Element_name''</code>. | ||
Each attribute and child element and a value (if it has one) gets its data storage and accessor and mutators. Array types and URIs are returned by reference. All other types are returned by value. | Each attribute and child element and a value (if it has one) gets its data storage and accessor and mutators. Array types and URIs are returned by reference. All other types are returned by value. | ||
If an element has an '''xs:choice''' content model group and more than a single child element, it will have | If an element has an '''xs:choice''' content model group and more than a single child element, it will have <code>_contents</code>, <code>_contentsOrder</code>, and <code>_CMData</code> arrays to store the data needed to represent the ordering of children in the content model. | ||
An '''xs:complexType''' generates two classes: | An '''xs:complexType''' generates two classes: | ||
* The class description/interface. | * The class description/interface. | ||
* A | * A <code>daeElement</code> subclass that inherits from both <code>daeElement</code> and the new class interface. | ||
Any class defined in XMLSchema global scope (not defined as a child of another element) generates a new | Any class defined in XMLSchema global scope (not defined as a child of another element) generates a new <code>daeElement</code> subclass. This new element, if the type attribute is a complex type, also inherits from the complex type interface and <code>daeElement</code>. | ||
An element that is part of a substitution group inherits from the element it is substitutable for. Then the DOM uses polymorphism and stores a pointer to the base class, which could be an object of any of the substitutable classes. | An element that is part of a substitution group inherits from the element it is substitutable for. Then the DOM uses polymorphism and stores a pointer to the base class, which could be an object of any of the substitutable classes. | ||
Line 66: | Line 66: | ||
which lets the DOM create memory to store its string data. | which lets the DOM create memory to store its string data. | ||
The | The ''xmlns'' attribute is specially created only for elements that have an <xs:annotation> <xs:appinfo> that contains '''enable-xmlns'''. | ||
===Meta generation=== | ===Meta generation=== | ||
Each element that is generated has a function | Each element that is generated has a function <code>registerElement</code>. This is the function that is called to create the meta information that describes the new element. | ||
Every element’s | Every element’s <code>_Meta</code> descriptor has a name and a pointer to the element’s creation function <code>create(daeInt bytes</code>. | ||
If the new element is created from an | If the new element is created from an <xs:group> then the meta is tagged as ''transparent''. Transparent means that the IOplugin will not create an XML tag or any attributes for this element when it is saved. Essentially, the transparent flag means that the element exists in the COLLADA DOM content but doesn’t really exist in the XML content. | ||
If the new element is abstract, the | If the new element is abstract, the <code>abstract</code> flag is set for the meta. Abstract elements cannot be placed in the DOM. | ||
If the element is not declared in the schema’s global scope then the | If the element is not declared in the schema’s global scope then the <code>isInnerClass</code> flag is set to true. This flag is used by the <code>metaAny</code> content model group. Any globally declared elements can be created as part of the “any” content model, but elements declared as inner classes can not. Any other children of an “any” group become the weakly typed <code>domAny</code> elements. | ||
Each attribute has a new | Each attribute has a new <code>metaAttribute</code> or <code>metaArrayAttribute</code> created to describe it. This <code>metaAttribute</code> is given a name, a type, and the pointer offset into the class where the data can be found. | ||
The value is treated the same as a normal attribute. | The value is treated the same as a normal attribute. | ||
If the attribute is marked required or given a default value, that is also set on the | If the attribute is marked required or given a default value, that is also set on the <code>metaAttribute</code>. | ||
The | The <code>metaCMPolicy</code> object tree is generated to match the content model specified in the schema. Only the '''xs:any''' content model group is not supported. | ||
Any content model that contains either an element that is the base for a substitution group or both a choice and more than one child element will have | Any content model that contains either an element that is the base for a substitution group or both a choice and more than one child element will have <code>contents</code> and <code>contentsOrder</code> <code>metaAttribute</code>s added. | ||
If the element’s content model contains an '''xs:choice''' group then the meta will have a | If the element’s content model contains an '''xs:choice''' group then the meta will have a <code>CMData</code> <code>metaAttribute</code> created. | ||
==Code generator program flow and systems== | ==Code generator program flow and systems== | ||
The code generator is run by starting | The code generator is run by starting <code>gen.php</code> with a php interpreter. The <code>gen.php</code> requires at least one argument, which is the schema to use for code generation. | ||
The generator, by default, creates the full integration classes. Pass an argument (after the schema) '''min''' to generate the minimal integration classes. | The generator, by default, creates the full integration classes. Pass an argument (after the schema) '''min''' to generate the minimal integration classes. | ||
Line 102: | Line 102: | ||
The generator starts by parsing the schema document and creating its own DOM-like structure to store the info from the schema. | The generator starts by parsing the schema document and creating its own DOM-like structure to store the info from the schema. | ||
For each schema element that might be encountered, there needs to be a source file | For each schema element that might be encountered, there needs to be a source file <code>xs''ElementName''.php</code>. This class is used to store the data related to that element. The source file needs to be included ('''require_once''' in PHP) in the <code>object-model.php</code> file. | ||
Each of the object model classes has a constructor that registers what elements and attributes (along with their '''min''' and '''maxOccurs''') are valid for that element. | Each of the object model classes has a constructor that registers what elements and attributes (along with their '''min''' and '''maxOccurs''') are valid for that element. | ||
The | The <code>SchemaParser</code> class uses the default PHP SAX XML parser to parse the schema document and create the custom DOM used for code generation. | ||
The generator then gets all elements that are '''xs:simpleType''' and calls generate on them. Generate creates a | The generator then gets all elements that are '''xs:simpleType''' and calls generate on them. Generate creates a <code>TypeMeta</code> object that contains the data needed to generate the COLLADA simple types. | ||
Then the generator does the same for '''xs:complexType, xs:group, and xs:element'''. | Then the generator does the same for '''xs:complexType, xs:group, and xs:element'''. | ||
Line 115: | Line 115: | ||
The most significant templates are: | The most significant templates are: | ||
* | * <code>tpl-types-header.php</code> for generated type definitions | ||
* | * <code>tpl-types-cpp.php</code> for type registration | ||
* | * <code>tpl-class-def.php</code> for generated class interfaces | ||
* | * <code>tpl-cpp-methods</code> for the generation of the meta for each class. | ||
{{DOM navigation}} | {{DOM navigation}} | ||
[[Category:DOM subsystems|Code generator]] | [[Category:DOM subsystems|Code generator]] |
Revision as of 05:22, 23 May 2007
Summary: The COLLADA Code Generator is an external application that is used to generate the C++ classes that are used in the COLLADA DOM.
DOM generated types
The DOM's basic types are defined in daeTypes.h
. There are mappings from XML Schema basic types to DOM types in daeDomTypes.h
.
Any other new types defined in the COLLADA schema document generate new atomic types or add name bindings to existing atomic types in the DOM.
All types defined in the COLLADA schema are either restrictions, extensions, unions, or lists of existing types.
The DOM generates types in domTypes.h
.
Type declaration formats
The format for most type declarations is:
typedef base_type_name domNew_type_name
The format for list types is:
typedef daeTArray< base_type_name > domNew_type_name
The format for enum types is:
enum domNew_type_name
Each enum value is then created as NEW_TYPE_NAME_Enum
.
Union types are supported only for unions of enums. A new enum is generated for that union type containing the symbols and values of all enums contained in the union.
Code for registered types
All generated types are registered in the registerDomTypes
function found in domTypes.cpp
. For all types except enums, code is generated that looks like
type = daeAtomicType::get("base_type_name"); if ( type == NULL ) { //register as a raw type type = new daeRawRefType; type->_nameBindings.append("new_type_name"); daeAtomicType::append( type ); } else { //add binding to existing type type->_nameBindings.append("new_type_name "); }
This code searches for a type for the base_type_name
. If it finds one, it adds new_type_name
as a name binding for that type. If the base type does not exist then a new rawRefType
is created.
Enumerated types
Enums always get a new type generated. The two arrays _strings
and _values
are populated with the enum values.
In the schema, if an enumeration has an <xs:annotation> with an <xs:appinfo> value=value, the enum created will have a value value.
DOM-generated classes
Interface
Each <xs:element> <xs:group> and <xs:complexType> generates a new daeElement
subclass name domElement_name
.
Each attribute and child element and a value (if it has one) gets its data storage and accessor and mutators. Array types and URIs are returned by reference. All other types are returned by value.
If an element has an xs:choice content model group and more than a single child element, it will have _contents
, _contentsOrder
, and _CMData
arrays to store the data needed to represent the ordering of children in the content model.
An xs:complexType generates two classes:
- The class description/interface.
- A
daeElement
subclass that inherits from bothdaeElement
and the new class interface.
Any class defined in XMLSchema global scope (not defined as a child of another element) generates a new daeElement
subclass. This new element, if the type attribute is a complex type, also inherits from the complex type interface and daeElement
.
An element that is part of a substitution group inherits from the element it is substitutable for. Then the DOM uses polymorphism and stores a pointer to the base class, which could be an object of any of the substitutable classes.
The code generator allows for schema type inheritance by either extension or restriction. In either case the new class inherits from the base class. Restriction is handled with the DOM meta information since C++ can do inheritance only by extension. The current (COLLADA 1.4.1) schema does not take advantage of this feature.
The code generator allows for scoped type definitions. This would happen when a simple type is created anonymously in the schema document instead of creating a global simple type and referencing it. The current (COLLADA 1.4.1) schema does not take advantage of this feature.
When generating mutators for string data attributes or values, the generator creates code:
*(daeStringRef*)&attrAttribute_name = atAttribute_name
which lets the DOM create memory to store its string data.
The xmlns attribute is specially created only for elements that have an <xs:annotation> <xs:appinfo> that contains enable-xmlns.
Meta generation
Each element that is generated has a function registerElement
. This is the function that is called to create the meta information that describes the new element.
Every element’s _Meta
descriptor has a name and a pointer to the element’s creation function create(daeInt bytes
.
If the new element is created from an <xs:group> then the meta is tagged as transparent. Transparent means that the IOplugin will not create an XML tag or any attributes for this element when it is saved. Essentially, the transparent flag means that the element exists in the COLLADA DOM content but doesn’t really exist in the XML content.
If the new element is abstract, the abstract
flag is set for the meta. Abstract elements cannot be placed in the DOM.
If the element is not declared in the schema’s global scope then the isInnerClass
flag is set to true. This flag is used by the metaAny
content model group. Any globally declared elements can be created as part of the “any” content model, but elements declared as inner classes can not. Any other children of an “any” group become the weakly typed domAny
elements.
Each attribute has a new metaAttribute
or metaArrayAttribute
created to describe it. This metaAttribute
is given a name, a type, and the pointer offset into the class where the data can be found.
The value is treated the same as a normal attribute.
If the attribute is marked required or given a default value, that is also set on the metaAttribute
.
The metaCMPolicy
object tree is generated to match the content model specified in the schema. Only the xs:any content model group is not supported.
Any content model that contains either an element that is the base for a substitution group or both a choice and more than one child element will have contents
and contentsOrder
metaAttribute
s added.
If the element’s content model contains an xs:choice group then the meta will have a CMData
metaAttribute
created.
Code generator program flow and systems
The code generator is run by starting gen.php
with a php interpreter. The gen.php
requires at least one argument, which is the schema to use for code generation.
The generator, by default, creates the full integration classes. Pass an argument (after the schema) min to generate the minimal integration classes.
The generator, by default, puts the SCEA SNIP copyright as the header of all of the files. Pass an argument cprt for the generator to use the SCEA Shared Source License copyright as the header. This is the way the generated classes should be created.
The generator starts by parsing the schema document and creating its own DOM-like structure to store the info from the schema.
For each schema element that might be encountered, there needs to be a source file xsElementName.php
. This class is used to store the data related to that element. The source file needs to be included (require_once in PHP) in the object-model.php
file.
Each of the object model classes has a constructor that registers what elements and attributes (along with their min and maxOccurs) are valid for that element.
The SchemaParser
class uses the default PHP SAX XML parser to parse the schema document and create the custom DOM used for code generation.
The generator then gets all elements that are xs:simpleType and calls generate on them. Generate creates a TypeMeta
object that contains the data needed to generate the COLLADA simple types.
Then the generator does the same for xs:complexType, xs:group, and xs:element.
The template-engine source file contains the logic on how to apply a template. Templates suffixed with –file, contain the logic for creating a new C++ source or header file and applying another template to actually write the C++ code.
The most significant templates are:
tpl-types-header.php
for generated type definitionstpl-types-cpp.php
for type registrationtpl-class-def.php
for generated class interfacestpl-cpp-methods
for the generation of the meta for each class.
COLLADA DOM - Version 2.4 Historical Reference |
---|
List of main articles under the DOM portal. |
User Guide chapters: • Intro • Architecture • Setting up • Working with documents • Creating docs • Importing docs • Representing elements • Working with elements • Resolving URIs • Resolving SIDs • Using custom COLLADA data • Integration templates • Error handling Systems: • URI resolver • Meta • Load/save flow • Runtime database • Memory • StringRef • Code generator |