summaryrefslogtreecommitdiff
path: root/dist/etc/vc-9.0/xsd-cxx-parser.rules
blob: ca9d053622173e78c6f7576ae6eed29b894a9f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
	Name="CodeSynthesis XSD Compiler C++/Parser Mapping Rules"
	Version="8.00"
	>
	<Rules>
		<CustomBuildRule
			Name="C++/Parser Mapping Rule"
			DisplayName="C++/Parser Mapping Rule"
			CommandLine="xsd.exe cxx-parser [AllOptions] [AdditionalOptions] [Inputs]"
			Outputs="[$OutDir]\$(InputName)[$SkelFileSuffix][$HeaderSuffix];[$OutDir]\$(InputName)[$SkelFileSuffix][$SourceSuffix]"
			FileExtensions="*.xsd"
			ExecutionDescription="xsd cxx-parser [Inputs]"
			ShowOnlyRuleProperties="false"
			>
			<Properties>
				<StringProperty
					Name="OutDir"
					DisplayName="Output Directory"
					Category="Output"
					Description="Output directory for the generated files"
					Switch="--output-dir [value]"
					DefaultValue="."
				/>
				<BooleanProperty
					Name="ProprietaryLicense"
					DisplayName="Proprietary License"
					Category="Licensing"
					Description="Indicate that the generated code is licensed under a proprietary license instead of the GPL."
					Switch="--proprietary-license"
				/>
				<StringProperty
					Name="HeaderSuffix"
					DisplayName="C++ Header Suffix "
					Category="Output"
					Description="Generated C++ header file suffix"
					Switch="--hxx-suffix [value]"
					DefaultValue=".hxx"
				/>
				<StringProperty
					Name="SourceSuffix"
					DisplayName="C++ Source Suffix"
					Category="Output"
					Description="Generated C++ source file suffix"
					Switch="--cxx-suffix [value]"
					DefaultValue=".cxx"
				/>
				<StringProperty
					Name="InlineSuffix"
					DisplayName="C++ Inline Suffix"
					Category="Output"
					Description="Generated C++ inline file suffix"
					Switch="--ixx-suffix [value]"
					DefaultValue=".ixx"
				/>
				<StringProperty
					Name="SkelFileSuffix"
					DisplayName="Parser Skeleton File Suffix"
					PropertyPageName="Output"
					Description="Use the provided suffix to construct the names of generated parser skeleton file."
					Switch="--skel-file-suffix [value]"
					DefaultValue="-pskel"
				/>
				<EnumProperty
					Name="CharType"
					DisplayName="Char Type"
					PropertyPageName="Code Generation"
					Description="Character type to be used in the generated code."
					>
					<Values>
						<EnumValue
							Value="0"
							DisplayName="char"
						/>
						<EnumValue
							Value="1"
							Switch="--char-type wchar_t"
							DisplayName="wchar_t"
						/>
					</Values>
				</EnumProperty>
				<EnumProperty
					Name="XMLParser"
					DisplayName="Underlying XML Parser"
					PropertyPageName="Code Generation"
					Description="Use the specified parser as the underlying XML parser."
					>
					<Values>
						<EnumValue
							Value="0"
							DisplayName="xerces"
						/>
						<EnumValue
							Value="1"
							Switch="--xml-parser expat"
							DisplayName="expat"
						/>
					</Values>
				</EnumProperty>
				<StringProperty
					Name="NamespaceMap"
					DisplayName="Namespace Map"
					PropertyPageName="Code Generation"
					Description="Map XML Schema namespaces to C++ namespaces by specifying a comma-separated list of mapping rules in the form &lt;xml-ns&gt;=&lt;cxx-ns&gt; where &lt;xml-ns&gt; stands for an XML Schema namespace and &lt;cxx-ns&gt; - for a C++ namespace."
					Switch="--namespace-map [value]"
					Delimited="true"
					Delimiters=","
				/>
				<StringProperty
					Name="TypeMap"
					DisplayName="Type Map"
					PropertyPageName="Code Generation"
					Description="Specify type map files as a comma-separated list."
					Switch="--type-map [value]"
					Delimited="true"
					Delimiters=","
				/>
				<BooleanProperty
					Name="GenInline"
					DisplayName="Generate Inline"
					PropertyPageName="Code Generation"
					Description="Generate simple functions inline. This option triggers creation of the inline file."
					Switch="--generate-inline"
				/>
				<BooleanProperty
					Name="GenValidation"
					DisplayName="Generate Validation Code"
					PropertyPageName="Code Generation"
					Description="Generate validation code which ensures that instance documents conform to the schema. This is the default for the Expat XML parser."
					Switch="--generate-validation"
				/>
				<BooleanProperty
					Name="SupValidation"
					DisplayName="Suppress Validation Code"
					PropertyPageName="Code Generation"
					Description="Suppress generation of validation code. This is the default for the Xerces-C++ XML parser."
					Switch="--suppress-validation"
				/>
				<BooleanProperty
					Name="GenPolymorphic"
					DisplayName="Generate Polymorphic"
					PropertyPageName="Code Generation"
					Description="Generate polymorphism-aware code. Specify this option if you use substitution groups or xsi:type."
					Switch="--generate-polymorphic"
				/>
				<StringProperty
					Name="SkelTypeSuffix"
					DisplayName="Parser Skeleton Type Suffix"
					PropertyPageName="Code Generation"
					Description="Use the provided suffix to construct the names of generated parser skeletons."
					Switch="--skel-type-suffix [value]"
					DefaultValue="_pskel"
				/>
				<StringProperty
					Name="ExportSymbol"
					DisplayName="Export Symbol"
					PropertyPageName="Code Generation"
					Description="Insert the specified symbol in places where DLL export/import control statements (__declspec(dllexport/dllimport)) are necessary."
					Switch="--export-symbol [value]"
				/>
				<StringProperty
					Name="HxxPrologue"
					DisplayName="Header Prologue File"
					PropertyPageName="Code Generation"
					Description="Insert the contents of the file specified at the beginning of the header file."
					Switch="--hxx-prologue-file [value]"
				/>
				<StringProperty
					Name="HxxEpilogue"
					DisplayName="Header Epilogue File"
					PropertyPageName="Code Generation"
					Description="Insert the contents of the file specified at the end of the header file."
					Switch="--hxx-epilogue-file [value]"
				/>
			</Properties>
		</CustomBuildRule>
	</Rules>
</VisualStudioToolFile>