aboutsummaryrefslogtreecommitdiff
path: root/xsde/cxx
AgeCommit message (Collapse)AuthorFilesLines
2010-10-08Factor out common facets handling code in serializerBoris Kolpackov6-124/+119
2010-10-08Add support for the whiteSpace facetBoris Kolpackov8-147/+195
Use the same mechanism to handle whitespace processing for build-in types and enumerations.
2010-10-07Implement generation of clone functionsBoris Kolpackov6-89/+1425
New test: clone.
2010-10-07Cast off constness when freeing with custom allocatorBoris Kolpackov3-8/+8
2010-06-02Workaround for GH C++Boris Kolpackov1-1/+5
2010-05-26Add 'U' suffix to unsigned default values for C99Boris Kolpackov1-3/+3
2010-05-11Add support for custom allocatorsBoris Kolpackov30-435/+1185
New example: examples/cxx/hybrid/allocator.
2010-04-15Adjust to changed predicate namesBoris Kolpackov31-101/+100
2010-03-29Only override _pre if we are using mixin reuseBoris Kolpackov2-7/+8
2010-03-28Add facet support for other string-based types (serializer)Boris Kolpackov1-4/+3
2010-03-28Validate facets in C++/Hybrid enum parser/serializer implementationsBoris Kolpackov3-56/+114
2010-03-28Validate enumerations in the xsd:string parser/serializerBoris Kolpackov8-31/+426
2010-03-17Partial support for simple type facet validationBoris Kolpackov4-14/+232
For now only certain types and facets are supported.
2010-02-19Add support for translating schema paths in fpt modeBoris Kolpackov9-51/+156
New options: --schema-file-regex, --schema-file-regex-trace.
2010-02-19Remove unused traverserBoris Kolpackov2-56/+0
2010-01-12Include file component in regex strings for schema being compiledBoris Kolpackov21-82/+84
2010-01-08Handle resolved default/fixed values for QName typeBoris Kolpackov1-1/+8
2010-01-07Add support for ISO-8859-1 as application encodingBoris Kolpackov21-3/+329
New runtime configuration parameter, XSDE_ENCODING. New option, --char-encoding. New test, tests/cxx/hybrid/iso8859-1.
2010-01-01Update copyright in source filesBoris Kolpackov118-124/+124
2009-12-14Call make_float for seconds in date-time typesBoris Kolpackov1-0/+3
2009-12-03Implement automatic mapping for urn-style XML namespacesBoris Kolpackov2-5/+26
2009-12-01Cosmetic changesBoris Kolpackov2-2/+2
2009-12-01Map empty schema enumerations to the 'empty' C++ enumerator nameBoris Kolpackov1-1/+2
2009-10-27Implement schema enumeration to C++ enum mapping in C++/HybridBoris Kolpackov22-176/+2118
2009-10-23Generate the static polymorphic() function in aggregatesBoris Kolpackov4-0/+76
2009-10-21Cosmetic changesBoris Kolpackov1-3/+4
2009-10-11Use a set instead of pre-sorted array for keywordsBoris Kolpackov2-91/+98
The pre-sorted array approach depends on the character encoding.
2009-09-20Remove unnecessary qualificationBoris Kolpackov1-1/+1
2009-09-20Remove unnecessary header inclusionBoris Kolpackov35-70/+0
2009-09-19Add missing header inclusionBoris Kolpackov1-0/+1
2009-04-12Fix reset code for mixin reuseBoris Kolpackov5-25/+51
2009-04-12Use the actual sequence template namesBoris Kolpackov2-6/+9
Can't use their using-declarations from the xml_schema namespace because of the broken eVC++ 4.0.
2009-04-11Use the max cardinality value of the actual compositorBoris Kolpackov1-3/+3
2009-04-11Call the next/arm callback for a required compositorBoris Kolpackov1-85/+278
If a required compositor has maxOccurs > 1 and all its particles are optional, then we need to call its next/arm callback in case there is no content matched by this compositor.
2009-04-09Qualify compositor types in detach() implementationsBoris Kolpackov1-4/+4
2009-04-09Handle polymorphic types with no substationsBoris Kolpackov2-92/+76
In this case aggregates have no maps.
2009-04-08Make the default value a floating-point literalBoris Kolpackov1-0/+13
We cannot append the F suffix to an integer constant.
2009-04-08Assign the value function name in all the unions in the graphBoris Kolpackov1-174/+159
We need to do this even for unions from included/imported schemas since we may need this name to compare/assign default values of these union types. Also assign member names in base list and union types, not just complex.
2009-04-08Get rid of warningsBoris Kolpackov1-3/+6
2009-04-08Get rid of warningsBoris Kolpackov2-3/+3
2009-04-02Fix type alignment code to examine all members of a typeBoris Kolpackov1-134/+88
The alignment of a type is the alignment of its most strictly aligned member.
2009-04-02Add support for attributes with default and fixed values.Boris Kolpackov15-160/+2104
tests/cxx/hybrid/default: new test tests/cxx/hybrid/binary: update to test default and fixed values
2009-03-26Implement support for XML Schema polymorphism in C++/HybridBoris Kolpackov38-291/+2144
examples/cxx/hybrid/polyroot/ examples/cxx/hybrid/polymorphism/: new examples tests/cxx/hybrid/polymorphism/: new tests
2009-03-16Change sequence names to be consistent with documentationBoris Kolpackov4-61/+66
The *_seq names were changed to *_sequence. Also, the generated code now uses sequence names from the xml_schema namespace instead of the implementation namespaces (xsde::cxx::hybrid).
2009-03-16Add support for type customization in C++/HybridBoris Kolpackov18-358/+908
examples/cxx/hybrid/custom/wildcard/: new example
2009-03-11Add generation of detach functionsBoris Kolpackov7-9/+284
New option: --generate-detach. Also added detach/attach functionality to var_seq, non-STL str_seq, and string_base.
2009-03-11Use the common POD stack container for the parser stateBoris Kolpackov1-3/+4
2009-03-11Add support for parsing/serialization of recursive typesBoris Kolpackov9-183/+727
tests/cxx/hybrid/recursive/: new test
2009-03-08Add support for binary representationsBoris Kolpackov14-7/+2551
xsde/cxx/hybrid/insertion-*: insertion operators generator xsde/cxx/hybrid/extraction-*: extraction operators generator libxsde/xsde/cxx/hybrid/cdr/: CDR support code libxsde/xsde/cxx/hybrid/xdr/: XDR support code tests/cxx/hybrid/binary/: new tests examples/cxx/hybrid/binary/: new examples documentation/cxx/hybrid/guide/: new chapter
2009-02-24Start tracking XSD/e with git after version 3.0.03.0.0Boris Kolpackov106-0/+54269