Mercurial > pub > bltoolkit
comparison Tools/CodeGenerator/ValueMapping.xslt @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f990fcb411a9 |
---|---|
1 <?xml version="1.0" encoding="UTF-8" ?> | |
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
3 | |
4 <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/> | |
5 | |
6 <!-- parameters passed in by the TransformCodeGenerator --> | |
7 <xsl:param name="generator"></xsl:param> | |
8 <xsl:param name="version"></xsl:param> | |
9 <xsl:param name="filename"></xsl:param> | |
10 <xsl:param name="date-created"></xsl:param> | |
11 <xsl:param name="created-by"></xsl:param> | |
12 <xsl:param name="namespace"></xsl:param> | |
13 <xsl:param name="output"></xsl:param> | |
14 | |
15 <!-- support variables --> | |
16 <xsl:variable name="lf" xml:space="preserve"> </xsl:variable> | |
17 <xsl:variable name="t1" xml:space="preserve">	</xsl:variable> | |
18 <xsl:variable name="t2" xml:space="preserve">		</xsl:variable> | |
19 <xsl:variable name="t3" xml:space="preserve">			</xsl:variable> | |
20 <xsl:variable name="t4" xml:space="preserve">				</xsl:variable> | |
21 <xsl:variable name="t5" xml:space="preserve">					</xsl:variable> | |
22 <xsl:variable name="t6" xml:space="preserve">						</xsl:variable> | |
23 <xsl:variable name="t7" xml:space="preserve">							</xsl:variable> | |
24 <xsl:variable name="t8" xml:space="preserve">								</xsl:variable> | |
25 <xsl:variable name="s1" xml:space="preserve"> </xsl:variable> | |
26 <xsl:variable name="s2" xml:space="preserve">  </xsl:variable> | |
27 <xsl:variable name="s3" xml:space="preserve">   </xsl:variable> | |
28 <xsl:variable name="s4" xml:space="preserve">    </xsl:variable> | |
29 <xsl:variable name="s5" xml:space="preserve">     </xsl:variable> | |
30 <xsl:variable name="s6" xml:space="preserve">      </xsl:variable> | |
31 <xsl:variable name="s7" xml:space="preserve">       </xsl:variable> | |
32 <xsl:variable name="s8" xml:space="preserve">        </xsl:variable> | |
33 | |
34 <!-- customization --> | |
35 <xsl:variable name="baseclassname" select="'MB'"/> | |
36 <xsl:variable name="nullableprefix" select="'N'"/> | |
37 <xsl:variable name="instancename" select="'I'"/> | |
38 <xsl:variable name="getmethodspec" select="'Get(IMapDataSource s, object o, int i'"/> | |
39 <xsl:variable name="setmethodspec" select="'Set(IMapDataDestination d, object o, int i'"/> | |
40 <xsl:variable name="padding" select="string-length('DateTimeOffset?') + 1"/> | |
41 | |
42 <!-- the root of all evil --> | |
43 <xsl:template match="/"> | |
44 <!--<xsl:call-template name="header-comment"/>--> | |
45 <xsl:apply-templates select="code"/> | |
46 </xsl:template> | |
47 | |
48 <xsl:template name="header-comment"> | |
49 <xsl:value-of select="$lf"/> | |
50 <xsl:text>#region Generated File</xsl:text> | |
51 <xsl:value-of select="$lf"/> | |
52 <xsl:text>/*</xsl:text> | |
53 <xsl:value-of select="$lf"/> | |
54 <xsl:text> * GENERATED FILE -- DO NOT EDIT</xsl:text> | |
55 <xsl:value-of select="$lf"/> | |
56 <xsl:text> *</xsl:text> | |
57 <xsl:value-of select="$lf"/> | |
58 <xsl:text> * Generator: </xsl:text> | |
59 <xsl:value-of select="$generator"/> | |
60 <xsl:value-of select="$lf"/> | |
61 <xsl:text> * Version: </xsl:text> | |
62 <xsl:value-of select="$version"/> | |
63 <xsl:value-of select="$lf"/> | |
64 <xsl:text> *</xsl:text> | |
65 <xsl:value-of select="$lf"/> | |
66 <xsl:text> *</xsl:text> | |
67 <xsl:value-of select="$lf"/> | |
68 <xsl:text> * Generated code from "</xsl:text> | |
69 <xsl:value-of select="$filename"/> | |
70 <xsl:text>"</xsl:text> | |
71 <xsl:value-of select="$lf"/> | |
72 <xsl:text> *</xsl:text> | |
73 <xsl:value-of select="$lf"/> | |
74 <xsl:text> * Created: </xsl:text> | |
75 <xsl:value-of select="$date-created"/> | |
76 <xsl:value-of select="$lf"/> | |
77 <xsl:text> * By: </xsl:text> | |
78 <xsl:value-of select="$created-by"/> | |
79 <xsl:value-of select="$lf"/> | |
80 <xsl:text> *</xsl:text> | |
81 <xsl:value-of select="$lf"/> | |
82 <xsl:text> */</xsl:text> | |
83 <xsl:value-of select="$lf"/> | |
84 <xsl:text>#endregion</xsl:text> | |
85 <xsl:value-of select="$lf"/> | |
86 </xsl:template> | |
87 | |
88 <xsl:template match="code"> | |
89 <xsl:apply-templates select="using"/> | |
90 <xsl:value-of select="$lf"/> | |
91 <xsl:text>namespace </xsl:text> | |
92 <xsl:value-of select="$namespace"/> | |
93 <xsl:value-of select="$lf"/> | |
94 <xsl:text>{</xsl:text> | |
95 <xsl:value-of select="$lf"/> | |
96 <xsl:call-template name="class"/> | |
97 <xsl:text>}</xsl:text> | |
98 <xsl:value-of select="$lf"/> | |
99 </xsl:template> | |
100 | |
101 <xsl:template match="using"> | |
102 <xsl:text>using </xsl:text> | |
103 <xsl:value-of select="@namespace"/> | |
104 <xsl:text>;</xsl:text> | |
105 <xsl:value-of select="$lf"/> | |
106 </xsl:template> | |
107 | |
108 <!-- the class definition --> | |
109 <xsl:template name="class"> | |
110 <xsl:value-of select="$t1"/> | |
111 <xsl:text>public static partial class ValueMapping</xsl:text> | |
112 <xsl:value-of select="$lf"/> | |
113 <xsl:value-of select="$t1"/> | |
114 <xsl:text>{</xsl:text> | |
115 <xsl:value-of select="$lf"/> | |
116 | |
117 <xsl:apply-templates select="group|comment|br" mode="to"> | |
118 <xsl:with-param name="mode" select="'select'"/> | |
119 </xsl:apply-templates> | |
120 | |
121 <xsl:text>}</xsl:text> | |
122 <xsl:value-of select="$lf"/> | |
123 </xsl:template> | |
124 | |
125 <!-- group --> | |
126 <xsl:template match="group" mode="to"> | |
127 | |
128 <xsl:param name="mode"/> | |
129 | |
130 <xsl:if test="@nullable='true'"> | |
131 <xsl:text>#if FW2</xsl:text> | |
132 <xsl:value-of select="$lf"/> | |
133 </xsl:if> | |
134 | |
135 <xsl:if test="@name"> | |
136 <xsl:value-of select="$t2"/> | |
137 <xsl:text>#region </xsl:text> | |
138 <xsl:value-of select="@name"/> | |
139 <xsl:value-of select="$lf"/> | |
140 <xsl:value-of select="$lf"/> | |
141 </xsl:if> | |
142 | |
143 <xsl:apply-templates select="type|comment|br" mode="to"> | |
144 <xsl:with-param name="tonullable" select="@nullable='true'"/> | |
145 <xsl:with-param name="mode" select="$mode"/> | |
146 </xsl:apply-templates> | |
147 | |
148 <xsl:if test="@name"> | |
149 <xsl:value-of select="$lf"/> | |
150 <xsl:value-of select="$t2"/> | |
151 <xsl:text>#endregion </xsl:text> | |
152 <xsl:value-of select="$lf"/> | |
153 </xsl:if> | |
154 | |
155 <xsl:if test="@nullable='true'"> | |
156 <xsl:text>#endif</xsl:text> | |
157 <xsl:value-of select="$lf"/> | |
158 </xsl:if> | |
159 | |
160 </xsl:template> | |
161 | |
162 <xsl:template match="group" mode="from"> | |
163 <xsl:param name="tonick"/> | |
164 <xsl:param name="totype"/> | |
165 <xsl:param name="tonullable"/> | |
166 | |
167 <xsl:param name="mode"/> | |
168 | |
169 <xsl:if test="@nullable='true'"> | |
170 <xsl:text>#if FW2</xsl:text> | |
171 <xsl:value-of select="$lf"/> | |
172 </xsl:if> | |
173 | |
174 <xsl:apply-templates select="type|comment|br" mode="from"> | |
175 <xsl:with-param name="fromnullable" select="@nullable='true'"/> | |
176 <xsl:with-param name="tonick" select="$tonick"/> | |
177 <xsl:with-param name="totype" select="$totype"/> | |
178 <xsl:with-param name="tonullable" select="$tonullable"/> | |
179 <xsl:with-param name="mode" select="$mode"/> | |
180 </xsl:apply-templates> | |
181 | |
182 <xsl:if test="@nullable='true'"> | |
183 <xsl:text>#endif</xsl:text> | |
184 <xsl:value-of select="$lf"/> | |
185 </xsl:if> | |
186 | |
187 </xsl:template> | |
188 | |
189 <!-- type --> | |
190 <xsl:template match="type" mode="to"> | |
191 | |
192 <xsl:param name="tonullable"/> | |
193 <xsl:param name="mode"/> | |
194 | |
195 <xsl:variable name="name" select="@name"/> | |
196 <xsl:variable name="tonullablelocal" select="@nullable='true' or $tonullable"/> | |
197 <xsl:variable name="tonick"> | |
198 <xsl:if test="$tonullablelocal"> | |
199 <xsl:value-of select="$nullableprefix"/> | |
200 </xsl:if> | |
201 <xsl:choose> | |
202 <xsl:when test="@nick"> | |
203 <xsl:value-of select="@nick"/> | |
204 </xsl:when> | |
205 <xsl:when test="/code/nick[@type=$name]"> | |
206 <xsl:value-of select="/code/nick[@type=$name]/@name"/> | |
207 </xsl:when> | |
208 <xsl:otherwise> | |
209 <xsl:value-of select="$name"/> | |
210 </xsl:otherwise> | |
211 </xsl:choose> | |
212 </xsl:variable> | |
213 | |
214 <xsl:if test="$tonullablelocal"> | |
215 <xsl:text>#if FW2</xsl:text> | |
216 <xsl:value-of select="$lf"/> | |
217 </xsl:if> | |
218 | |
219 <xsl:value-of select="$lf"/> | |
220 <xsl:value-of select="$t2"/> | |
221 <xsl:text>private static IValueMapper Get</xsl:text> | |
222 <xsl:value-of select="$tonick"/> | |
223 <xsl:text>Mapper(Type t)</xsl:text> | |
224 <xsl:value-of select="$lf"/> | |
225 <xsl:value-of select="$t2"/> | |
226 <xsl:text>{</xsl:text> | |
227 <xsl:value-of select="$lf"/> | |
228 | |
229 <xsl:apply-templates select="/code/group|/code/comment|/code/br" mode="from"> | |
230 <xsl:with-param name="tonick" select="$tonick"/> | |
231 <xsl:with-param name="totype" select="@name"/> | |
232 <xsl:with-param name="tonullable" select="$tonullablelocal"/> | |
233 <xsl:with-param name="mode" select="$mode"/> | |
234 </xsl:apply-templates> | |
235 | |
236 <xsl:value-of select="$lf"/> | |
237 <xsl:value-of select="$t3"/> | |
238 <xsl:text>return null;</xsl:text> | |
239 <xsl:value-of select="$lf"/> | |
240 | |
241 <xsl:value-of select="$t2"/> | |
242 <xsl:text>}</xsl:text> | |
243 <xsl:value-of select="$lf"/> | |
244 | |
245 <xsl:if test="$tonullablelocal"> | |
246 <xsl:text>#endif</xsl:text> | |
247 <xsl:value-of select="$lf"/> | |
248 </xsl:if> | |
249 | |
250 </xsl:template> | |
251 | |
252 | |
253 <xsl:template match="type" mode="from"> | |
254 | |
255 <xsl:param name="fromnullable"/> | |
256 <xsl:param name="tonick"/> | |
257 <xsl:param name="totype"/> | |
258 <xsl:param name="tonullable"/> | |
259 <xsl:param name="mode"/> | |
260 | |
261 <xsl:variable name="name" select="@name"/> | |
262 <xsl:variable name="fromnullablelocal" select="@nullable='true' or $fromnullable"/> | |
263 | |
264 <xsl:call-template name="generate"> | |
265 <xsl:with-param name="totype" select="$totype"/> | |
266 <xsl:with-param name="tonullable" select="$tonullable"/> | |
267 <xsl:with-param name="tonick" select="$tonick"/> | |
268 <xsl:with-param name="fromnick"> | |
269 <xsl:if test="$fromnullablelocal"> | |
270 <xsl:value-of select="$nullableprefix"/> | |
271 </xsl:if> | |
272 <xsl:choose> | |
273 <xsl:when test="@nick"> | |
274 <xsl:value-of select="@nick"/> | |
275 </xsl:when> | |
276 <xsl:when test="/code/nick[@type=$name]"> | |
277 <xsl:value-of select="/code/nick[@type=$name]/@name"/> | |
278 </xsl:when> | |
279 <xsl:otherwise> | |
280 <xsl:value-of select="$name"/> | |
281 </xsl:otherwise> | |
282 </xsl:choose> | |
283 </xsl:with-param> | |
284 <xsl:with-param name="fromtype" select="@name"/> | |
285 <xsl:with-param name="fromnullable" select="$fromnullablelocal"/> | |
286 <xsl:with-param name="mode" select="$mode"/> | |
287 </xsl:call-template> | |
288 | |
289 </xsl:template> | |
290 | |
291 <xsl:template name="generate"> | |
292 <xsl:param name="tonick"/> | |
293 <xsl:param name="totype"/> | |
294 <xsl:param name="tonullable"/> | |
295 <xsl:param name="fromnick"/> | |
296 <xsl:param name="fromtype"/> | |
297 <xsl:param name="fromnullable"/> | |
298 <xsl:param name="mode"/> | |
299 | |
300 <xsl:variable name="tofulltype"> | |
301 <xsl:value-of select="$totype"/> | |
302 <xsl:if test="$tonullable"> | |
303 <xsl:text>?</xsl:text> | |
304 </xsl:if> | |
305 </xsl:variable> | |
306 <xsl:variable name="tolongtype"> | |
307 <xsl:if test="$tonullable"> | |
308 <xsl:text>Nullable</xsl:text> | |
309 </xsl:if> | |
310 <xsl:value-of select="$totype"/> | |
311 </xsl:variable> | |
312 <xsl:variable name="totypepad" select="$padding - string-length($tofulltype)"/> | |
313 | |
314 <xsl:variable name="fromfulltype"> | |
315 <xsl:value-of select="$fromtype"/> | |
316 <xsl:if test="$fromnullable"> | |
317 <xsl:text>?</xsl:text> | |
318 </xsl:if> | |
319 </xsl:variable> | |
320 <xsl:variable name="fromlongtype"> | |
321 <xsl:if test="$fromnullable"> | |
322 <xsl:text>Nullable</xsl:text> | |
323 </xsl:if> | |
324 <xsl:value-of select="$fromtype"/> | |
325 </xsl:variable> | |
326 <xsl:variable name="fromtypepad" select="$padding - string-length($fromfulltype)"/> | |
327 | |
328 <xsl:choose> | |
329 <xsl:when test="$mode='mapper'"> | |
330 <xsl:value-of select="$t1"/> | |
331 <xsl:text>internal sealed class </xsl:text> | |
332 <xsl:value-of select="$fromnick"/> | |
333 <xsl:text>To</xsl:text> | |
334 <xsl:value-of select="$tonick"/> | |
335 <xsl:text> : IValueMapper</xsl:text> | |
336 <xsl:value-of select="$lf"/> | |
337 <xsl:value-of select="$t1"/> | |
338 <xsl:text>{</xsl:text> | |
339 <xsl:value-of select="$lf"/> | |
340 <xsl:value-of select="$t2"/> | |
341 <xsl:text>public void Map(</xsl:text> | |
342 <xsl:value-of select="$lf"/> | |
343 <xsl:value-of select="$t3"/> | |
344 <xsl:text>IMapDataSource source, object sourceObject, int sourceIndex,</xsl:text> | |
345 <xsl:value-of select="$lf"/> | |
346 <xsl:value-of select="$t3"/> | |
347 <xsl:text>IMapDataDestination dest, object destObject, int destIndex)</xsl:text> | |
348 <xsl:value-of select="$lf"/> | |
349 <xsl:value-of select="$t2"/> | |
350 <xsl:text>{</xsl:text> | |
351 <xsl:value-of select="$lf"/> | |
352 <xsl:value-of select="$t3"/> | |
353 <xsl:text>if (source.IsNull(sourceObject, sourceIndex))</xsl:text> | |
354 <xsl:value-of select="$lf"/> | |
355 <xsl:value-of select="$t4"/> | |
356 <xsl:text>dest.SetNull(destObject, destIndex);</xsl:text> | |
357 <xsl:value-of select="$lf"/> | |
358 <xsl:value-of select="$t3"/> | |
359 <xsl:text>else</xsl:text> | |
360 <xsl:value-of select="$lf"/> | |
361 <xsl:value-of select="$t4"/> | |
362 <xsl:text>dest.Set</xsl:text> | |
363 <xsl:value-of select="$tolongtype"/> | |
364 <xsl:text>(destObject, destIndex,</xsl:text> | |
365 <xsl:value-of select="$lf"/> | |
366 <xsl:value-of select="$t5"/> | |
367 | |
368 <xsl:if test="not($tonick=$fromnick)"> | |
369 <xsl:text>Convert.To</xsl:text> | |
370 <xsl:value-of select="$tolongtype"/> | |
371 <xsl:text>(</xsl:text> | |
372 <xsl:value-of select="$lf"/> | |
373 <xsl:value-of select="$t6"/> | |
374 </xsl:if> | |
375 | |
376 <xsl:text>source.Get</xsl:text> | |
377 <xsl:value-of select="$fromlongtype"/> | |
378 <xsl:text>(sourceObject, sourceIndex))</xsl:text> | |
379 | |
380 <xsl:if test="not($tonick=$fromnick)"> | |
381 <xsl:text>)</xsl:text> | |
382 </xsl:if> | |
383 | |
384 <xsl:text>;</xsl:text> | |
385 | |
386 <xsl:value-of select="$lf"/> | |
387 <xsl:value-of select="$t2"/> | |
388 <xsl:text>}</xsl:text> | |
389 <xsl:value-of select="$lf"/> | |
390 <xsl:value-of select="$t1"/> | |
391 <xsl:text>}</xsl:text> | |
392 <xsl:value-of select="$lf"/> | |
393 </xsl:when> | |
394 <xsl:when test="$mode='select'"> | |
395 <xsl:value-of select="$t3"/> | |
396 <xsl:text>if (t == typeof(</xsl:text> | |
397 <xsl:value-of select="$fromfulltype"/> | |
398 <xsl:text>))</xsl:text> | |
399 <xsl:call-template name ="writeSpaces"> | |
400 <xsl:with-param name="count" select="$fromtypepad"/> | |
401 </xsl:call-template> | |
402 <xsl:text>return new </xsl:text> | |
403 <xsl:value-of select="$fromnick"/> | |
404 <xsl:text>To</xsl:text> | |
405 <xsl:value-of select="$tonick"/> | |
406 <xsl:text>();</xsl:text> | |
407 <xsl:value-of select="$lf"/> | |
408 </xsl:when> | |
409 </xsl:choose> | |
410 </xsl:template> | |
411 | |
412 <!-- comments --> | |
413 <xsl:template name ="comment"> | |
414 <xsl:if test="text()"> | |
415 <xsl:value-of select="$lf"/> | |
416 <xsl:value-of select="$t3"/> | |
417 <xsl:text>// </xsl:text> | |
418 <xsl:value-of select="text()"/> | |
419 <xsl:value-of select="$lf"/> | |
420 <xsl:value-of select="$t3"/> | |
421 <xsl:text>//</xsl:text> | |
422 </xsl:if> | |
423 <xsl:value-of select="$lf"/> | |
424 </xsl:template> | |
425 | |
426 <xsl:template match="comment"> | |
427 <xsl:call-template name="comment"/> | |
428 </xsl:template> | |
429 | |
430 <xsl:template match="comment" mode ="to"> | |
431 <xsl:if test="not(@tonullable) or @tonullable!='true'"> | |
432 <xsl:call-template name="comment"/> | |
433 </xsl:if> | |
434 </xsl:template> | |
435 | |
436 <xsl:template match="comment" mode ="from"> | |
437 <xsl:if test="not(@tonullable) or @tonullable!='true'"> | |
438 <xsl:call-template name="comment"/> | |
439 </xsl:if> | |
440 </xsl:template> | |
441 | |
442 <xsl:template match="br"> | |
443 <xsl:value-of select="$lf"/> | |
444 </xsl:template> | |
445 | |
446 <xsl:template match="br" mode="to"> | |
447 <xsl:value-of select="$lf"/> | |
448 </xsl:template> | |
449 | |
450 <xsl:template match="br" mode="from"> | |
451 <xsl:value-of select="$lf"/> | |
452 </xsl:template> | |
453 | |
454 <!-- support function --> | |
455 <xsl:template name="writeSpaces"> | |
456 <xsl:param name="count"/> | |
457 <xsl:choose> | |
458 <xsl:when test="$count<1"/> | |
459 <xsl:when test="$count=1"> | |
460 <xsl:value-of select="$s1"/> | |
461 </xsl:when> | |
462 <xsl:when test="$count=2"> | |
463 <xsl:value-of select="$s2"/> | |
464 </xsl:when> | |
465 <xsl:when test="$count=3"> | |
466 <xsl:value-of select="$s3"/> | |
467 </xsl:when> | |
468 <xsl:when test="$count=4"> | |
469 <xsl:value-of select="$s4"/> | |
470 </xsl:when> | |
471 <xsl:when test="$count=5"> | |
472 <xsl:value-of select="$s5"/> | |
473 </xsl:when> | |
474 <xsl:when test="$count=6"> | |
475 <xsl:value-of select="$s6"/> | |
476 </xsl:when> | |
477 <xsl:when test="$count=7"> | |
478 <xsl:value-of select="$s7"/> | |
479 </xsl:when> | |
480 <xsl:when test="$count=8"> | |
481 <xsl:value-of select="$s8"/> | |
482 </xsl:when> | |
483 <xsl:otherwise> | |
484 <xsl:value-of select="$s8"/> | |
485 <xsl:call-template name ="writeSpaces"> | |
486 <xsl:with-param name="count" select="$count - 8"/> | |
487 </xsl:call-template> | |
488 </xsl:otherwise> | |
489 </xsl:choose> | |
490 </xsl:template> | |
491 | |
492 </xsl:stylesheet> |