CodeSynthesis XSD: Difference between revisions

Content deleted Content added
SmackBot (talk | contribs)
m Delink dates (WP:MOSUNLINKDATES) using Project:AWB
No edit summary
 
(10 intermediate revisions by 7 users not shown)
Line 1:
{{ Infobox Softwaresoftware
| name = CodeSynthesis XSD
| developer = Code Synthesis
|logo =
| latest release version = =4.2.0
|screenshot =
| latest release date = {{Start date and =age|2023|10|05}}
|caption =
| operating system = [[Cross-platform]] =[[C++]]
|collapsible =
| programming language = [[C++]]
|author =
| genre = [[XML Data Binding]]
|developer =
| license = [[GNU General Public License]] and Proprietary License
|released =
| website = {{url|https://www.codesynthesis.com/products/xsd}}
|latest release version =
|latest release date =
|latest preview version =
|latest preview date =
|frequently updated =
|programming language = C++
|operating system =
|platform =
|size =
|language =
|status =
|genre = [[library (computing)|library]] or [[Software framework|framework]]
|license =
|website =
}}
'''CodeSynthesis XSD''' is an [[XML Data Binding]] compiler for [[C++]] developed by [[Code Synthesis]] and [[dual license|dual-licensed]] under the [[GNU GPL]] and a proprietary license. Given an [[XML]] instance specification ([[XML Schema (W3C)|XML Schema]]), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. It is supported on a large number of platforms, including [[IBM AIX (operating system)|AIX]], [[Linux|GNU/Linux]], [[HPUX|HP-UX]], [[Mac OS X]], [[Solaris Operating System|Solaris]], [[Microsoft Windows|Windows]], [[OpenVMS|HP OpenVMS]], and [[z/OS|IBM z/OS]]. Supported C++ compilers include [[GNU Compiler Collection|GNU G++]], [[Intel C++]], [[HP aCC]], [[Sun C++]], [[IBM XL C++]], and [[Microsoft Visual C++]]. A version for mobile and embedded systems, called [[CodeSynthesis XSD/e]], is also available.
 
'''CodeSynthesis XSD''' is an [[XML Data Binding]] compiler for [[C++]] developed by [[Code Synthesis]] and [[dual license|dual-licensed]] under the [[GNU GPL]] and a proprietary license. Given an [[XML]] instance specification ([[XML Schema (W3C)|XML Schema]]), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. It is supported on a large number of platforms, including [[IBM AIX (operating system)|AIX]], [[Linux|GNU/Linux]], [[HPUX|HP-UX]], [[Mac OS X]], [[Solaris Operating(operating Systemsystem)|Solaris]], [[Microsoft Windows (operating system)|Windows]], [[OpenVMS|HP OpenVMS]], and [[z/OS|IBM z/OS]]. Supported C++ compilers include [[GNU Compiler Collection|GNU G++]], [[Intel C++]], [[HP aCC]], [[SunOracle Solaris Studio|Solaris Studio C++]], [[IBM XL C++]], and [[Microsoft Visual C++]]. A version for mobile and embedded systems, called [[CodeSynthesis XSD/e]], is also available.
One of the unique features of CodeSynthesis XSD is its support for two different XML Schema to C++ mappings: in-memory C++/Tree and stream-oriented C++/Parser. The C++/Tree mapping is a traditional mapping with a tree-like, in-memory data structure. C++/Parser is a new, [[SAX]]-like mapping which represents the information stored in XML instance documents as a hierarchy of vocabulary-specific parsing events. In comparison to C++/Tree, the C++/Parser mapping allows one to handle large XML documents that would not fit in memory, perform stream-oriented processing, or use an existing in-memory representation.
 
One of the unique features of CodeSynthesis XSD is its support for two different XML Schema to C++ mappings: in-memory C++/Tree and stream-oriented C++/Parser. The C++/Tree mapping is a traditional mapping with a tree-like, in-memory data structure. C++/Parser is a new, [[Simple API for XML|SAX]]-like mapping which represents the information stored in XML instance documents as a hierarchy of vocabulary-specific parsing events. In comparison to C++/Tree, the C++/Parser mapping allows one to handle large XML documents that would not fit in memory, perform stream-oriented processing, or use an existing in-memory representation. The XSD-generated code can target C++98/03 or C++11.
CodeSynthesis XSD itself is written in C++<ref>[[Bjarne Stroustrup]]. [http://www.research.att.com/~bs/applications.html C++ applications], 2007-05-25. Retrieved on 2007-06-18.</ref>.
 
CodeSynthesis XSD itself is written in C++.
 
==References==
{{reflist}}
<references/>
 
==External links==