csharp-ext.xslt 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="xsl msxsl"
  5. >
  6. <xsl:import href="common.xslt"/>
  7. <xsl:param name="help"/>
  8. <xsl:param name="xml"/>
  9. <xsl:param name="datacontract"/>
  10. <xsl:param name="binary"/>
  11. <xsl:param name="protoRpc"/>
  12. <xsl:param name="observable"/>
  13. <xsl:param name="preObservable"/>
  14. <xsl:param name="partialMethods"/>
  15. <xsl:param name="detectMissing"/>
  16. <xsl:param name="lightFramework"/>
  17. <xsl:param name="asynchronous"/>
  18. <xsl:param name="clientProxy"/>
  19. <xsl:param name="defaultNamespace"/>
  20. <xsl:param name="import"/>
  21. <xsl:key name="fieldNames" match="//FieldDescriptorProto" use="name"/>
  22. <xsl:output method="text" indent="no" omit-xml-declaration="yes"/>
  23. <xsl:variable name="optionXml" select="$xml='true'"/>
  24. <xsl:variable name="optionDataContract" select="$datacontract='true'"/>
  25. <xsl:variable name="optionBinary" select="$binary='true'"/>
  26. <xsl:variable name="optionProtoRpc" select="$protoRpc='true'"/>
  27. <xsl:variable name="optionObservable" select="$observable='true'"/>
  28. <xsl:variable name="optionPreObservable" select="$preObservable='true'"/>
  29. <xsl:variable name="optionPartialMethods" select="$partialMethods='true'"/>
  30. <xsl:variable name="optionDetectMissing" select="$detectMissing='true'"/>
  31. <xsl:variable name="optionFullFramework" select="not($lightFramework='true')"/>
  32. <xsl:variable name="optionAsynchronous" select="$asynchronous='true'"/>
  33. <xsl:variable name="optionClientProxy" select="$clientProxy='true'"/>
  34. <xsl:template match="/">
  35. <xsl:text disable-output-escaping="yes">//------------------------------------------------------------------------------
  36. // &lt;auto-generated&gt;
  37. // This code was generated by a tool.
  38. //
  39. // Changes to this file may cause incorrect behavior and will be lost if
  40. // the code is regenerated.
  41. // &lt;/auto-generated&gt;
  42. //------------------------------------------------------------------------------
  43. using CommonLang.IO;
  44. using System.Collections.Generic;
  45. </xsl:text><!--
  46. --><xsl:apply-templates select="*"/><!--
  47. --></xsl:template>
  48. <xsl:template name="WriteUsings">
  49. <xsl:param name="ns"/>
  50. <xsl:if test="$ns != ''"><xsl:choose>
  51. <xsl:when test="contains($ns,';')">
  52. using <xsl:value-of select="substring-before($ns,';')"/>;<!--
  53. --><xsl:call-template name="WriteUsings">
  54. <xsl:with-param name="ns" select="substring-after($ns,';')"/>
  55. </xsl:call-template>
  56. </xsl:when>
  57. <xsl:otherwise>
  58. using <xsl:value-of select="$ns"/>;
  59. </xsl:otherwise>
  60. </xsl:choose></xsl:if></xsl:template>
  61. <xsl:template match="FileDescriptorSet">
  62. <xsl:if test="$help='true'">
  63. <xsl:message terminate="yes">
  64. CSharp template for protobuf-net.
  65. Options:
  66. General:
  67. "help" - this page
  68. Additional serializer support:
  69. "xml" - enable explicit xml support (XmlSerializer)
  70. "datacontract" - enable data-contract support (DataContractSerializer; requires .NET 3.0)
  71. "binary" - enable binary support (BinaryFormatter; not supported on Silverlight)
  72. Other:
  73. "protoRpc" - enable proto-rpc client
  74. "observable" - change notification (observer pattern) support
  75. "preObservable" - pre-change notification (observer pattern) support (requires .NET 3.5)
  76. "partialMethods" - provide partial methods for changes (requires C# 3.0)
  77. "detectMissing" - provide *Specified properties to indicate whether fields are present
  78. "lightFramework" - omit additional attributes not included in CF/Silverlight
  79. "asynchronous" - emit asynchronous methods for use with WCF
  80. "clientProxy" - emit asynchronous client proxy class
  81. "import" - additional namespaces to import (semicolon delimited)
  82. "fixCase" - change type/member names (types/properties become PascalCase; fields become camelCase)
  83. </xsl:message>
  84. </xsl:if>
  85. <xsl:if test="$optionXml and $optionDataContract">
  86. <xsl:message terminate="yes">
  87. Invalid options: xml and data-contract serialization are mutually exclusive.
  88. </xsl:message>
  89. </xsl:if>
  90. <xsl:if test="$optionXml">
  91. // Option: xml serialization ([XmlType]/[XmlElement]) enabled
  92. </xsl:if><xsl:if test="$optionDataContract">
  93. // Option: data-contract serialization ([DataContract]/[DataMember]) enabled
  94. </xsl:if><xsl:if test="$optionBinary">
  95. // Option: binary serialization (ISerializable) enabled
  96. </xsl:if><xsl:if test="$optionObservable">
  97. // Option: observable (OnPropertyChanged) enabled
  98. </xsl:if><xsl:if test="$optionPreObservable">
  99. // Option: pre-observable (OnPropertyChanging) enabled
  100. </xsl:if><xsl:if test="$partialMethods">
  101. // Option: partial methods (On*Changing/On*Changed) enabled
  102. </xsl:if><xsl:if test="$optionDetectMissing">
  103. // Option: missing-value detection (*Specified/ShouldSerialize*/Reset*) enabled
  104. </xsl:if><xsl:if test="not($optionFullFramework)">
  105. // Option: light framework (CF/Silverlight) enabled
  106. </xsl:if><xsl:if test="$optionProtoRpc">
  107. // Option: proto-rpc enabled
  108. </xsl:if>
  109. <xsl:call-template name="WriteUsings">
  110. <xsl:with-param name="ns" select="$import"/>
  111. </xsl:call-template>
  112. <xsl:apply-templates select="file/FileDescriptorProto"/>
  113. </xsl:template>
  114. <xsl:template match="FileDescriptorProto">
  115. <xsl:apply-templates select="comments/string[.!='']"/>
  116. // Generated from: <xsl:value-of select="name"/>
  117. <xsl:apply-templates select="dependency/string[.!='']"/>
  118. <xsl:variable name="namespace"><xsl:call-template name="PickNamespace">
  119. <xsl:with-param name="defaultNamespace" select="$defaultNamespace"/>
  120. </xsl:call-template>
  121. </xsl:variable>
  122. <xsl:if test="string($namespace) != ''">
  123. namespace <xsl:value-of select="translate($namespace,':-/\','__..')"/>
  124. {
  125. </xsl:if>
  126. <xsl:apply-templates select="message_type | enum_type | service"/>
  127. <xsl:if test="string($namespace) != ''">
  128. }
  129. </xsl:if>
  130. </xsl:template>
  131. <xsl:template match="FileDescriptorProto/dependency/string">
  132. // Note: requires additional types generated from: <xsl:value-of select="."/></xsl:template>
  133. <xsl:template name="camel">
  134. <xsl:param name="value" select="name"/>
  135. <xsl:param name="delimiter" select="'_'"/>
  136. <xsl:choose>
  137. <xsl:when test="$optionFixCase"><xsl:call-template name="toCamelCase">
  138. <xsl:with-param name="value" select="$value"/>
  139. <xsl:with-param name="delimiter" select="$delimiter"/>
  140. </xsl:call-template></xsl:when>
  141. <xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
  142. </xsl:choose>
  143. </xsl:template>
  144. <xsl:template match="DescriptorProto">
  145. //---------------------------------------------------------------------------------------
  146. <xsl:apply-templates select="comments/string[.!='']"/>
  147. public class <xsl:call-template name="pascal"/> : CommonLang.Protocol.NetMessage
  148. {
  149. public <xsl:call-template name="pascal"/>() {}
  150. <xsl:apply-templates select="*"/>
  151. public override void ReadExternal(IInputStream input)
  152. {
  153. <xsl:apply-templates select="field" mode="stream_read"/> }
  154. public override void WriteExternal(IOutputStream output)
  155. {
  156. <xsl:apply-templates select="field" mode="stream_write"/> }
  157. }
  158. </xsl:template>
  159. <xsl:template match="DescriptorProto/name | DescriptorProto/extension_range | DescriptorProto/extension | DescriptorProto/comments"/>
  160. <xsl:template match="
  161. FileDescriptorProto/message_type | FileDescriptorProto/enum_type | FileDescriptorProto/service
  162. | DescriptorProto/enum_type | DescriptorProto/message_type
  163. | DescriptorProto/nested_type | EnumDescriptorProto/value | ServiceDescriptorProto/method">
  164. <xsl:apply-templates select="*"/>
  165. </xsl:template>
  166. <xsl:template match="DescriptorProto/field">
  167. <xsl:apply-templates select="*"/>
  168. <xsl:variable name="extName" select="concat('.',(ancestor::FileDescriptorProto/package)[1],'.',../name)"/>
  169. <xsl:apply-templates select="//FieldDescriptorProto[extendee=$extName]"/>
  170. </xsl:template>
  171. <xsl:template match="DescriptorProto/field" mode="stream_read">
  172. <xsl:apply-templates select="*" mode="stream_read"/>
  173. </xsl:template>
  174. <xsl:template match="DescriptorProto/field" mode="stream_write">
  175. <xsl:apply-templates select="*" mode="stream_write"/>
  176. </xsl:template>
  177. <xsl:template match="EnumDescriptorProto">
  178. //---------------------------------------------------------------------------------------
  179. <xsl:apply-templates select="comments/string[.!='']"/>
  180. public enum <xsl:call-template name="pascal"/>
  181. {
  182. <xsl:apply-templates select="value"/>
  183. }
  184. </xsl:template>
  185. <xsl:template match="EnumValueDescriptorProto">
  186. <xsl:variable name="value"><xsl:choose>
  187. <xsl:when test="number"><xsl:value-of select="number"/></xsl:when>
  188. <xsl:otherwise>0</xsl:otherwise>
  189. </xsl:choose></xsl:variable><xsl:apply-templates select="comments/string[.!='']"/>
  190. <!--
  191. --><xsl:text disable-output-escaping="yes">
  192. </xsl:text><xsl:call-template name="pascal"/><xsl:text xml:space="preserve"> = </xsl:text><xsl:value-of select="$value"/><xsl:if test="position()!=last()">,
  193. </xsl:if>
  194. </xsl:template>
  195. <xsl:template match="FieldDescriptorProto" mode="field">
  196. <xsl:variable name="field"><xsl:choose>
  197. <xsl:when test="$optionFixCase"><xsl:call-template name="toCamelCase">
  198. <xsl:with-param name="value" select="name"/>
  199. </xsl:call-template></xsl:when>
  200. <xsl:otherwise><xsl:value-of select="name"/></xsl:otherwise>
  201. </xsl:choose></xsl:variable>
  202. <xsl:call-template name="escapeKeyword">
  203. <xsl:with-param name="value"><xsl:choose>
  204. <xsl:when test="not(key('fieldNames',concat('_',$field)))"><xsl:value-of select="concat('_',$field)"/></xsl:when>
  205. <xsl:when test="not(key('fieldNames',concat($field,'Field')))"><xsl:value-of select="concat($field,'Field')"/></xsl:when>
  206. <xsl:otherwise><xsl:value-of select="concat('_',generate-id())"/></xsl:otherwise>
  207. </xsl:choose></xsl:with-param>
  208. </xsl:call-template>
  209. </xsl:template>
  210. <xsl:template name="escapeKeyword">
  211. <xsl:param name="value"/>
  212. <xsl:if test="contains($keywords,concat('|',$value,'|'))">@</xsl:if><xsl:value-of select="$value"/>
  213. </xsl:template>
  214. <xsl:variable name="keywords">|abstract|as|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|do|double|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|goto|if|implicit|in|int|interface|internal|is|lock|long|namespace|new|null|object|operator|out|override|params|private|protected|public|readonly|ref|return|sbyte|sealed|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|virtual|void|volatile|while|</xsl:variable>
  215. <xsl:template match="FieldDescriptorProto" mode="format">
  216. <xsl:choose>
  217. <xsl:when test="type='TYPE_DOUBLE' or type='TYPE_FLOAT'
  218. or type='TYPE_FIXED32' or type='TYPE_FIXED64'
  219. or type='TYPE_SFIXED32' or type='TYPE_SFIXED64'">FixedSize</xsl:when>
  220. <xsl:when test="type='TYPE_GROUP'">Group</xsl:when>
  221. <xsl:when test="not(type) or type='TYPE_INT32' or type='TYPE_INT64'
  222. or type='TYPE_UINT32' or type='TYPE_UINT64'
  223. or type='TYPE_ENUM'">TwosComplement</xsl:when>
  224. <xsl:when test="type='TYPE_SINT32' or type='TYPE_SINT64'">ZigZag</xsl:when>
  225. <xsl:otherwise>Default</xsl:otherwise>
  226. </xsl:choose>
  227. </xsl:template>
  228. <xsl:template match="FieldDescriptorProto" mode="primitiveType">
  229. <xsl:choose>
  230. <xsl:when test="not(type)">struct</xsl:when>
  231. <xsl:when test="type='TYPE_DOUBLE'">struct</xsl:when>
  232. <xsl:when test="type='TYPE_FLOAT'">struct</xsl:when>
  233. <xsl:when test="type='TYPE_INT64'">struct</xsl:when>
  234. <xsl:when test="type='TYPE_UINT64'">struct</xsl:when>
  235. <xsl:when test="type='TYPE_INT32'">struct</xsl:when>
  236. <xsl:when test="type='TYPE_FIXED64'">struct</xsl:when>
  237. <xsl:when test="type='TYPE_FIXED32'">struct</xsl:when>
  238. <xsl:when test="type='TYPE_BOOL'">struct</xsl:when>
  239. <xsl:when test="type='TYPE_STRING'">class</xsl:when>
  240. <xsl:when test="type='TYPE_BYTES'">class</xsl:when>
  241. <xsl:when test="type='TYPE_UINT32'">struct</xsl:when>
  242. <xsl:when test="type='TYPE_SFIXED32'">struct</xsl:when>
  243. <xsl:when test="type='TYPE_SFIXED64'">struct</xsl:when>
  244. <xsl:when test="type='TYPE_SINT32'">struct</xsl:when>
  245. <xsl:when test="type='TYPE_SINT64'">struct</xsl:when>
  246. <xsl:when test="type='TYPE_ENUM'">struct</xsl:when>
  247. <xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE'">none</xsl:when>
  248. <xsl:otherwise>
  249. <xsl:message terminate="yes">
  250. Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
  251. </xsl:message>
  252. </xsl:otherwise>
  253. </xsl:choose>
  254. </xsl:template>
  255. <xsl:template match="FieldDescriptorProto" mode="type">
  256. <xsl:choose>
  257. <xsl:when test="not(type)">double</xsl:when>
  258. <xsl:when test="type='TYPE_DOUBLE'">double</xsl:when>
  259. <xsl:when test="type='TYPE_FLOAT'">float</xsl:when>
  260. <xsl:when test="type='TYPE_INT64'">long</xsl:when>
  261. <xsl:when test="type='TYPE_UINT64'">ulong</xsl:when>
  262. <xsl:when test="type='TYPE_INT32'">int</xsl:when>
  263. <xsl:when test="type='TYPE_FIXED64'">ulong</xsl:when>
  264. <xsl:when test="type='TYPE_FIXED32'">uint</xsl:when>
  265. <xsl:when test="type='TYPE_BOOL'">bool</xsl:when>
  266. <xsl:when test="type='TYPE_STRING'">string</xsl:when>
  267. <xsl:when test="type='TYPE_BYTES'">byte[]</xsl:when>
  268. <xsl:when test="type='TYPE_UINT32'">uint</xsl:when>
  269. <xsl:when test="type='TYPE_SFIXED32'">int</xsl:when>
  270. <xsl:when test="type='TYPE_SFIXED64'">long</xsl:when>
  271. <xsl:when test="type='TYPE_SINT32'">int</xsl:when>
  272. <xsl:when test="type='TYPE_SINT64'">long</xsl:when>
  273. <xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE' or type='TYPE_ENUM'"><xsl:call-template name="pascal">
  274. <xsl:with-param name="value" select="substring-after(type_name,'.')"/>
  275. </xsl:call-template></xsl:when>
  276. <xsl:otherwise>
  277. <xsl:message terminate="yes">
  278. Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
  279. </xsl:message>
  280. </xsl:otherwise>
  281. </xsl:choose>
  282. </xsl:template>
  283. <xsl:template match="FieldDescriptorProto[default_value]" mode="defaultValue">
  284. <xsl:choose>
  285. <xsl:when test="type='TYPE_STRING'">@"<xsl:value-of select="default_value"/>"</xsl:when>
  286. <xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="pascal">
  287. <xsl:with-param name="value" select="default_value"/>
  288. </xsl:call-template></xsl:when>
  289. <xsl:when test="type='TYPE_BYTES'"> /*
  290. <xsl:value-of select="default_value"/>
  291. */ null </xsl:when>
  292. <xsl:otherwise>(<xsl:apply-templates select="." mode="type"/>)<xsl:value-of select="default_value"/></xsl:otherwise>
  293. </xsl:choose>
  294. </xsl:template>
  295. <!--
  296. We need to find the first enum value given .foo.bar.SomeEnum - but the enum itself
  297. only knows about SomeEnum; we need to look at all parent DescriptorProto nodes, and
  298. the FileDescriptorProto for the namespace.
  299. This does an annoying up/down recursion... a bit expensive, but *generally* OK.
  300. Could perhaps index the last part of the enum name to reduce overhead?
  301. -->
  302. <xsl:template name="GetFirstEnumValue">
  303. <xsl:variable name="hunt" select="type_name"/>
  304. <xsl:for-each select="//EnumDescriptorProto">
  305. <xsl:variable name="fullName">
  306. <xsl:for-each select="ancestor::FileDescriptorProto[package!='']">.<xsl:value-of select="package"/></xsl:for-each>
  307. <xsl:for-each select="ancestor::DescriptorProto">.<xsl:value-of select="name"/></xsl:for-each>
  308. <xsl:value-of select="'.'"/>
  309. <xsl:call-template name="pascal"/>
  310. </xsl:variable>
  311. <xsl:if test="$fullName=$hunt"><xsl:value-of select="(value/EnumValueDescriptorProto)[1]/name"/></xsl:if>
  312. </xsl:for-each>
  313. </xsl:template>
  314. <xsl:template match="FieldDescriptorProto[not(default_value)]" mode="defaultValue">
  315. <xsl:choose>
  316. <xsl:when test="type='TYPE_STRING'">""</xsl:when>
  317. <xsl:when test="type='TYPE_MESSAGE'">null</xsl:when>
  318. <xsl:when test="type='TYPE_BYTES'">null</xsl:when>
  319. <xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="GetFirstEnumValue"/></xsl:when>
  320. <xsl:otherwise>default(<xsl:apply-templates select="." mode="type"/>)</xsl:otherwise>
  321. </xsl:choose>
  322. </xsl:template>
  323. <xsl:template match="FieldDescriptorProto" mode="checkDeprecated"><!--
  324. --><xsl:if test="options/deprecated='true'">global::System.Obsolete, </xsl:if><!--
  325. --></xsl:template>
  326. <xsl:template match="FieldDescriptorProto[label='LABEL_OPTIONAL' or not(label)]">
  327. <xsl:variable name="propType"><xsl:apply-templates select="." mode="type"/></xsl:variable>
  328. <xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
  329. <xsl:variable name="primitiveType"><xsl:apply-templates select="." mode="primitiveType"/></xsl:variable>
  330. <xsl:variable name="defaultValue"><xsl:apply-templates select="." mode="defaultValue"/></xsl:variable>
  331. <xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
  332. <xsl:variable name="specified" select="$optionDetectMissing and ($primitiveType='struct' or $primitiveType='class')"/>
  333. <xsl:variable name="fieldType"><xsl:value-of select="$propType"/><xsl:if test="$specified and $primitiveType='struct'">?</xsl:if></xsl:variable>
  334. <xsl:apply-templates select="comments/string[.!='']"/>
  335. public <xsl:value-of select="concat($fieldType,' ',name)"/><xsl:if test="not($specified)"> = <xsl:value-of select="$defaultValue"/></xsl:if>;
  336. </xsl:template>
  337. <xsl:template match="FieldDescriptorProto[label='LABEL_REQUIRED']">
  338. <xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
  339. <xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
  340. <xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
  341. <xsl:apply-templates select="comments/string[.!='']"/>
  342. public <xsl:value-of select="concat($type, ' ', name)"/>;
  343. </xsl:template>
  344. <xsl:template name="stripKeyword">
  345. <xsl:param name="value"/>
  346. <xsl:choose>
  347. <xsl:when test="starts-with($value,'@')"><xsl:value-of select="substring-after($value,'@')"/></xsl:when>
  348. <xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
  349. </xsl:choose>
  350. </xsl:template>
  351. <xsl:template match="FieldDescriptorProto[label='LABEL_REPEATED']">
  352. <xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
  353. <xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
  354. <xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
  355. <xsl:apply-templates select="comments/string[.!='']"/>
  356. public List&lt;<xsl:value-of select="$type" />&gt; <xsl:value-of select="name"/> = new List&lt;<xsl:value-of select="$type"/>&gt;();
  357. </xsl:template>
  358. <xsl:template match="FieldDescriptorProto" mode="stream_read"><!--
  359. -->&#160;&#160;&#160;&#160;this.<xsl:value-of select="name"/> = <xsl:if test="label='LABEL_REPEATED'">input.GetList&lt;<xsl:apply-templates select="." mode="type"/>&gt;(</xsl:if>
  360. <xsl:if test="not(type)">input.GetF64</xsl:if>
  361. <xsl:if test="type='TYPE_DOUBLE'">input.GetF64</xsl:if>
  362. <xsl:if test="type='TYPE_FLOAT'">input.GetF32</xsl:if>
  363. <xsl:if test="type='TYPE_INT64'">input.GetS64</xsl:if>
  364. <xsl:if test="type='TYPE_UINT64'">input.GetU64</xsl:if>
  365. <xsl:if test="type='TYPE_INT32'">input.GetS32</xsl:if>
  366. <xsl:if test="type='TYPE_FIXED64'">input.GetU64</xsl:if>
  367. <xsl:if test="type='TYPE_FIXED32'">input.GetU32</xsl:if>
  368. <xsl:if test="type='TYPE_BOOL'">input.GetBool</xsl:if>
  369. <xsl:if test="type='TYPE_STRING'">input.GetUTF</xsl:if>
  370. <xsl:if test="type='TYPE_BYTES'">input.GetBytes</xsl:if>
  371. <xsl:if test="type='TYPE_UINT32'">input.GetU32</xsl:if>
  372. <xsl:if test="type='TYPE_SFIXED32'">input.GetS32</xsl:if>
  373. <xsl:if test="type='TYPE_SFIXED64'">input.GetS64</xsl:if>
  374. <xsl:if test="type='TYPE_SINT32'">input.GetS32</xsl:if>
  375. <xsl:if test="type='TYPE_SINT64'">input.GetS64</xsl:if>
  376. <xsl:if test="type='TYPE_MESSAGE'">input.GetExt&lt;<xsl:apply-templates select="." mode="type"/>&gt;</xsl:if>
  377. <xsl:if test="type='TYPE_ENUM'">input.GetEnum8&lt;<xsl:apply-templates select="." mode="type"/>&gt;</xsl:if>
  378. <xsl:choose><xsl:when test="label='LABEL_REPEATED'">)</xsl:when><xsl:otherwise>()</xsl:otherwise></xsl:choose>;
  379. </xsl:template>
  380. <xsl:template match="FieldDescriptorProto" mode="stream_write"><!--
  381. -->&#160;&#160;&#160;&#160;<xsl:if test="label='LABEL_REPEATED'">output.PutList&lt;<xsl:apply-templates select="." mode="type"/>&gt;(this.<xsl:value-of select="name"/>, </xsl:if>
  382. <xsl:if test="not(type)">output.PutF64</xsl:if>
  383. <xsl:if test="type='TYPE_DOUBLE'">output.PutF64</xsl:if>
  384. <xsl:if test="type='TYPE_FLOAT'">output.PutF32</xsl:if>
  385. <xsl:if test="type='TYPE_INT64'">output.PutS64</xsl:if>
  386. <xsl:if test="type='TYPE_UINT64'">output.PutU64</xsl:if>
  387. <xsl:if test="type='TYPE_INT32'">output.PutS32</xsl:if>
  388. <xsl:if test="type='TYPE_FIXED64'">output.PutU64</xsl:if>
  389. <xsl:if test="type='TYPE_FIXED32'">output.PutU32</xsl:if>
  390. <xsl:if test="type='TYPE_BOOL'">output.PutBool</xsl:if>
  391. <xsl:if test="type='TYPE_STRING'">output.PutUTF</xsl:if>
  392. <xsl:if test="type='TYPE_BYTES'">output.PutBytes</xsl:if>
  393. <xsl:if test="type='TYPE_UINT32'">output.PutU32</xsl:if>
  394. <xsl:if test="type='TYPE_SFIXED32'">output.PutS32</xsl:if>
  395. <xsl:if test="type='TYPE_SFIXED64'">output.PutS64</xsl:if>
  396. <xsl:if test="type='TYPE_SINT32'">output.PutS32</xsl:if>
  397. <xsl:if test="type='TYPE_SINT64'">output.PutS64</xsl:if>
  398. <xsl:if test="type='TYPE_MESSAGE'">output.PutExt</xsl:if>
  399. <xsl:if test="type='TYPE_ENUM'">output.PutEnum8&lt;<xsl:apply-templates select="." mode="type"/>&gt;</xsl:if>
  400. <xsl:choose><xsl:when test="label='LABEL_REPEATED'">)</xsl:when><xsl:otherwise>(this.<xsl:value-of select="name"/>)</xsl:otherwise></xsl:choose>;
  401. </xsl:template>
  402. <xsl:template match="FileDescriptorProto/comments/string">
  403. // <xsl:value-of select="."/>
  404. </xsl:template>
  405. <xsl:template match="DescriptorProto/comments/string">
  406. /// &lt;summary&gt;
  407. /// <xsl:value-of select="."/>
  408. /// &lt;/summary&gt;</xsl:template>
  409. <xsl:template match="EnumDescriptorProto/comments/string">
  410. /// &lt;summary&gt;
  411. /// <xsl:value-of select="."/>
  412. /// &lt;/summary&gt;</xsl:template>
  413. <xsl:template match="FieldDescriptorProto/comments/string">
  414. /// &lt;summary&gt;
  415. /// <xsl:value-of select="."/>
  416. /// &lt;/summary&gt;</xsl:template>
  417. <xsl:template match="EnumValueDescriptorProto/comments/string">
  418. /// &lt;summary&gt;
  419. /// <xsl:value-of select="."/>
  420. /// &lt;/summary&gt;</xsl:template>
  421. </xsl:stylesheet>