csharp.xslt 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  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. </xsl:text><!--
  44. --><xsl:apply-templates select="*"/><!--
  45. --></xsl:template>
  46. <xsl:template name="WriteUsings">
  47. <xsl:param name="ns"/>
  48. <xsl:if test="$ns != ''"><xsl:choose>
  49. <xsl:when test="contains($ns,';')">
  50. using <xsl:value-of select="substring-before($ns,';')"/>;<!--
  51. --><xsl:call-template name="WriteUsings">
  52. <xsl:with-param name="ns" select="substring-after($ns,';')"/>
  53. </xsl:call-template>
  54. </xsl:when>
  55. <xsl:otherwise>
  56. using <xsl:value-of select="$ns"/>;
  57. </xsl:otherwise>
  58. </xsl:choose></xsl:if></xsl:template>
  59. <xsl:template match="FileDescriptorSet">
  60. <xsl:if test="$help='true'">
  61. <xsl:message terminate="yes">
  62. CSharp template for protobuf-net.
  63. Options:
  64. General:
  65. "help" - this page
  66. Additional serializer support:
  67. "xml" - enable explicit xml support (XmlSerializer)
  68. "datacontract" - enable data-contract support (DataContractSerializer; requires .NET 3.0)
  69. "binary" - enable binary support (BinaryFormatter; not supported on Silverlight)
  70. Other:
  71. "protoRpc" - enable proto-rpc client
  72. "observable" - change notification (observer pattern) support
  73. "preObservable" - pre-change notification (observer pattern) support (requires .NET 3.5)
  74. "partialMethods" - provide partial methods for changes (requires C# 3.0)
  75. "detectMissing" - provide *Specified properties to indicate whether fields are present
  76. "lightFramework" - omit additional attributes not included in CF/Silverlight
  77. "asynchronous" - emit asynchronous methods for use with WCF
  78. "clientProxy" - emit asynchronous client proxy class
  79. "import" - additional namespaces to import (semicolon delimited)
  80. "fixCase" - change type/member names (types/properties become PascalCase; fields become camelCase)
  81. </xsl:message>
  82. </xsl:if>
  83. <xsl:if test="$optionXml and $optionDataContract">
  84. <xsl:message terminate="yes">
  85. Invalid options: xml and data-contract serialization are mutually exclusive.
  86. </xsl:message>
  87. </xsl:if>
  88. <xsl:if test="$optionXml">
  89. // Option: xml serialization ([XmlType]/[XmlElement]) enabled
  90. </xsl:if><xsl:if test="$optionDataContract">
  91. // Option: data-contract serialization ([DataContract]/[DataMember]) enabled
  92. </xsl:if><xsl:if test="$optionBinary">
  93. // Option: binary serialization (ISerializable) enabled
  94. </xsl:if><xsl:if test="$optionObservable">
  95. // Option: observable (OnPropertyChanged) enabled
  96. </xsl:if><xsl:if test="$optionPreObservable">
  97. // Option: pre-observable (OnPropertyChanging) enabled
  98. </xsl:if><xsl:if test="$partialMethods">
  99. // Option: partial methods (On*Changing/On*Changed) enabled
  100. </xsl:if><xsl:if test="$optionDetectMissing">
  101. // Option: missing-value detection (*Specified/ShouldSerialize*/Reset*) enabled
  102. </xsl:if><xsl:if test="not($optionFullFramework)">
  103. // Option: light framework (CF/Silverlight) enabled
  104. </xsl:if><xsl:if test="$optionProtoRpc">
  105. // Option: proto-rpc enabled
  106. </xsl:if>
  107. <xsl:call-template name="WriteUsings">
  108. <xsl:with-param name="ns" select="$import"/>
  109. </xsl:call-template>
  110. <xsl:apply-templates select="file/FileDescriptorProto"/>
  111. </xsl:template>
  112. <xsl:template match="FileDescriptorProto">
  113. <xsl:apply-templates select="comments/string[.!='']"/>
  114. // Generated from: <xsl:value-of select="name"/>
  115. <xsl:apply-templates select="dependency/string[.!='']"/>
  116. <xsl:variable name="namespace"><xsl:call-template name="PickNamespace">
  117. <xsl:with-param name="defaultNamespace" select="$defaultNamespace"/>
  118. </xsl:call-template>
  119. </xsl:variable>
  120. <xsl:if test="string($namespace) != ''">
  121. namespace <xsl:value-of select="translate($namespace,':-/\','__..')"/>
  122. {
  123. </xsl:if>
  124. <xsl:apply-templates select="message_type | enum_type | service"/>
  125. <xsl:if test="string($namespace) != ''">
  126. }
  127. </xsl:if>
  128. </xsl:template>
  129. <xsl:template match="FileDescriptorProto/dependency/string">
  130. // Note: requires additional types generated from: <xsl:value-of select="."/></xsl:template>
  131. <xsl:template name="camel">
  132. <xsl:param name="value" select="name"/>
  133. <xsl:param name="delimiter" select="'_'"/>
  134. <xsl:choose>
  135. <xsl:when test="$optionFixCase"><xsl:call-template name="toCamelCase">
  136. <xsl:with-param name="value" select="$value"/>
  137. <xsl:with-param name="delimiter" select="$delimiter"/>
  138. </xsl:call-template></xsl:when>
  139. <xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
  140. </xsl:choose>
  141. </xsl:template>
  142. <xsl:template match="DescriptorProto">
  143. //---------------------------------------------------------------------------------------<xsl:apply-templates select="comments/string[.!='']"/>
  144. [<xsl:if test="$optionFullFramework">global::System.Serializable, </xsl:if>global::ProtoBuf.ProtoContract(Name=@"<xsl:value-of select="name"/>")]
  145. <xsl:if test="$optionDataContract">[global::System.Runtime.Serialization.DataContract(Name=@"<xsl:value-of select="name"/>")]
  146. </xsl:if><xsl:if test="$optionXml">[global::System.Xml.Serialization.XmlType(TypeName=@"<xsl:value-of select="name"/>")]
  147. </xsl:if><!--
  148. -->public partial class <xsl:call-template name="pascal"/> : global::ProtoBuf.IExtensible<!--
  149. --><xsl:if test="$optionBinary">, global::System.Runtime.Serialization.ISerializable</xsl:if><!--
  150. --><xsl:if test="$optionObservable">, global::System.ComponentModel.INotifyPropertyChanged</xsl:if><!--
  151. --><xsl:if test="$optionPreObservable">, global::System.ComponentModel.INotifyPropertyChanging</xsl:if>
  152. {
  153. public <xsl:call-template name="pascal"/>() {}
  154. <xsl:apply-templates select="*"/><xsl:if test="$optionBinary">
  155. protected <xsl:call-template name="pascal"/>(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context)
  156. : this() { global::ProtoBuf.Serializer.Merge(info, this); }
  157. void global::System.Runtime.Serialization.ISerializable.GetObjectData(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context)
  158. { global::ProtoBuf.Serializer.Serialize(info, this); }
  159. </xsl:if><xsl:if test="$optionObservable">
  160. public event global::System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  161. protected virtual void OnPropertyChanged(string propertyName)
  162. { if(PropertyChanged != null) PropertyChanged(this, new global::System.ComponentModel.PropertyChangedEventArgs(propertyName)); }
  163. </xsl:if><xsl:if test="$optionPreObservable">
  164. public event global::System.ComponentModel.PropertyChangingEventHandler PropertyChanging;
  165. protected virtual void OnPropertyChanging(string propertyName)
  166. { if(PropertyChanging != null) PropertyChanging(this, new global::System.ComponentModel.PropertyChangingEventArgs(propertyName)); }
  167. </xsl:if>
  168. private global::ProtoBuf.IExtension extensionObject;
  169. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  170. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  171. }
  172. </xsl:template>
  173. <xsl:template match="DescriptorProto/name | DescriptorProto/extension_range | DescriptorProto/extension | DescriptorProto/comments"/>
  174. <xsl:template match="
  175. FileDescriptorProto/message_type | FileDescriptorProto/enum_type | FileDescriptorProto/service
  176. | DescriptorProto/enum_type | DescriptorProto/message_type
  177. | DescriptorProto/nested_type | EnumDescriptorProto/value | ServiceDescriptorProto/method">
  178. <xsl:apply-templates select="*"/>
  179. </xsl:template>
  180. <xsl:template match="DescriptorProto/field">
  181. <xsl:apply-templates select="*"/>
  182. <xsl:variable name="extName" select="concat('.',(ancestor::FileDescriptorProto/package)[1],'.',../name)"/>
  183. <xsl:apply-templates select="//FieldDescriptorProto[extendee=$extName]"/>
  184. </xsl:template>
  185. <xsl:template match="EnumDescriptorProto">
  186. //---------------------------------------------------------------------------------------<xsl:apply-templates select="comments/string[.!='']"/>
  187. [global::ProtoBuf.ProtoContract(Name=@"<xsl:value-of select="name"/>")]
  188. <xsl:if test="$optionDataContract">[global::System.Runtime.Serialization.DataContract(Name=@"<xsl:value-of select="name"/>")]
  189. </xsl:if>
  190. <xsl:if test="$optionXml">[global::System.Xml.Serialization.XmlType(TypeName=@"<xsl:value-of select="name"/>")]
  191. </xsl:if><!--
  192. -->public enum <xsl:call-template name="pascal"/>
  193. {
  194. <xsl:apply-templates select="value"/>
  195. }
  196. </xsl:template>
  197. <xsl:template match="EnumValueDescriptorProto">
  198. <xsl:variable name="value"><xsl:choose>
  199. <xsl:when test="number"><xsl:value-of select="number"/></xsl:when>
  200. <xsl:otherwise>0</xsl:otherwise>
  201. </xsl:choose></xsl:variable><xsl:apply-templates select="comments/string[.!='']"/>
  202. [global::ProtoBuf.ProtoEnum(Name=@"<xsl:value-of select="name"/>", Value=<xsl:value-of select="$value"/>)]<!--
  203. --><xsl:if test="$optionDataContract">
  204. [global::System.Runtime.Serialization.EnumMember(Value=@"<xsl:value-of select="name"/>")]</xsl:if><!--
  205. --><xsl:if test="$optionXml">
  206. [global::System.Xml.Serialization.XmlEnum(@"<xsl:value-of select="name"/>")]</xsl:if><!--
  207. --><xsl:text disable-output-escaping="yes">
  208. </xsl:text><xsl:call-template name="pascal"/><xsl:text xml:space="preserve"> = </xsl:text><xsl:value-of select="$value"/><xsl:if test="position()!=last()">,
  209. </xsl:if>
  210. </xsl:template>
  211. <xsl:template match="FieldDescriptorProto" mode="field">
  212. <xsl:variable name="field"><xsl:choose>
  213. <xsl:when test="$optionFixCase"><xsl:call-template name="toCamelCase">
  214. <xsl:with-param name="value" select="name"/>
  215. </xsl:call-template></xsl:when>
  216. <xsl:otherwise><xsl:value-of select="name"/></xsl:otherwise>
  217. </xsl:choose></xsl:variable>
  218. <xsl:call-template name="escapeKeyword">
  219. <xsl:with-param name="value"><xsl:choose>
  220. <xsl:when test="not(key('fieldNames',concat('_',$field)))"><xsl:value-of select="concat('_',$field)"/></xsl:when>
  221. <xsl:when test="not(key('fieldNames',concat($field,'Field')))"><xsl:value-of select="concat($field,'Field')"/></xsl:when>
  222. <xsl:otherwise><xsl:value-of select="concat('_',generate-id())"/></xsl:otherwise>
  223. </xsl:choose></xsl:with-param>
  224. </xsl:call-template>
  225. </xsl:template>
  226. <xsl:template name="escapeKeyword">
  227. <xsl:param name="value"/>
  228. <xsl:if test="contains($keywords,concat('|',$value,'|'))">@</xsl:if><xsl:value-of select="$value"/>
  229. </xsl:template>
  230. <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>
  231. <xsl:template match="FieldDescriptorProto" mode="format">
  232. <xsl:choose>
  233. <xsl:when test="type='TYPE_DOUBLE' or type='TYPE_FLOAT'
  234. or type='TYPE_FIXED32' or type='TYPE_FIXED64'
  235. or type='TYPE_SFIXED32' or type='TYPE_SFIXED64'">FixedSize</xsl:when>
  236. <xsl:when test="type='TYPE_GROUP'">Group</xsl:when>
  237. <xsl:when test="not(type) or type='TYPE_INT32' or type='TYPE_INT64'
  238. or type='TYPE_UINT32' or type='TYPE_UINT64'
  239. or type='TYPE_ENUM'">TwosComplement</xsl:when>
  240. <xsl:when test="type='TYPE_SINT32' or type='TYPE_SINT64'">ZigZag</xsl:when>
  241. <xsl:otherwise>Default</xsl:otherwise>
  242. </xsl:choose>
  243. </xsl:template>
  244. <xsl:template match="FieldDescriptorProto" mode="primitiveType">
  245. <xsl:choose>
  246. <xsl:when test="not(type)">struct</xsl:when>
  247. <xsl:when test="type='TYPE_DOUBLE'">struct</xsl:when>
  248. <xsl:when test="type='TYPE_FLOAT'">struct</xsl:when>
  249. <xsl:when test="type='TYPE_INT64'">struct</xsl:when>
  250. <xsl:when test="type='TYPE_UINT64'">struct</xsl:when>
  251. <xsl:when test="type='TYPE_INT32'">struct</xsl:when>
  252. <xsl:when test="type='TYPE_FIXED64'">struct</xsl:when>
  253. <xsl:when test="type='TYPE_FIXED32'">struct</xsl:when>
  254. <xsl:when test="type='TYPE_BOOL'">struct</xsl:when>
  255. <xsl:when test="type='TYPE_STRING'">class</xsl:when>
  256. <xsl:when test="type='TYPE_BYTES'">class</xsl:when>
  257. <xsl:when test="type='TYPE_UINT32'">struct</xsl:when>
  258. <xsl:when test="type='TYPE_SFIXED32'">struct</xsl:when>
  259. <xsl:when test="type='TYPE_SFIXED64'">struct</xsl:when>
  260. <xsl:when test="type='TYPE_SINT32'">struct</xsl:when>
  261. <xsl:when test="type='TYPE_SINT64'">struct</xsl:when>
  262. <xsl:when test="type='TYPE_ENUM'">struct</xsl:when>
  263. <xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE'">none</xsl:when>
  264. <xsl:otherwise>
  265. <xsl:message terminate="yes">
  266. Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
  267. </xsl:message>
  268. </xsl:otherwise>
  269. </xsl:choose>
  270. </xsl:template>
  271. <xsl:template match="FieldDescriptorProto" mode="type">
  272. <xsl:choose>
  273. <xsl:when test="not(type)">double</xsl:when>
  274. <xsl:when test="type='TYPE_DOUBLE'">double</xsl:when>
  275. <xsl:when test="type='TYPE_FLOAT'">float</xsl:when>
  276. <xsl:when test="type='TYPE_INT64'">long</xsl:when>
  277. <xsl:when test="type='TYPE_UINT64'">ulong</xsl:when>
  278. <xsl:when test="type='TYPE_INT32'">int</xsl:when>
  279. <xsl:when test="type='TYPE_FIXED64'">ulong</xsl:when>
  280. <xsl:when test="type='TYPE_FIXED32'">uint</xsl:when>
  281. <xsl:when test="type='TYPE_BOOL'">bool</xsl:when>
  282. <xsl:when test="type='TYPE_STRING'">string</xsl:when>
  283. <xsl:when test="type='TYPE_BYTES'">byte[]</xsl:when>
  284. <xsl:when test="type='TYPE_UINT32'">uint</xsl:when>
  285. <xsl:when test="type='TYPE_SFIXED32'">int</xsl:when>
  286. <xsl:when test="type='TYPE_SFIXED64'">long</xsl:when>
  287. <xsl:when test="type='TYPE_SINT32'">int</xsl:when>
  288. <xsl:when test="type='TYPE_SINT64'">long</xsl:when>
  289. <xsl:when test="type='TYPE_GROUP' or type='TYPE_MESSAGE' or type='TYPE_ENUM'"><xsl:call-template name="pascal">
  290. <xsl:with-param name="value" select="substring-after(type_name,'.')"/>
  291. </xsl:call-template></xsl:when>
  292. <xsl:otherwise>
  293. <xsl:message terminate="yes">
  294. Field type not implemented: <xsl:value-of select="type"/> (<xsl:value-of select="../../name"/>.<xsl:value-of select="name"/>)
  295. </xsl:message>
  296. </xsl:otherwise>
  297. </xsl:choose>
  298. </xsl:template>
  299. <xsl:template match="FieldDescriptorProto[default_value]" mode="defaultValue">
  300. <xsl:choose>
  301. <xsl:when test="type='TYPE_STRING'">@"<xsl:value-of select="default_value"/>"</xsl:when>
  302. <xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="pascal">
  303. <xsl:with-param name="value" select="default_value"/>
  304. </xsl:call-template></xsl:when>
  305. <xsl:when test="type='TYPE_BYTES'"> /*
  306. <xsl:value-of select="default_value"/>
  307. */ null </xsl:when>
  308. <xsl:otherwise>(<xsl:apply-templates select="." mode="type"/>)<xsl:value-of select="default_value"/></xsl:otherwise>
  309. </xsl:choose>
  310. </xsl:template>
  311. <!--
  312. We need to find the first enum value given .foo.bar.SomeEnum - but the enum itself
  313. only knows about SomeEnum; we need to look at all parent DescriptorProto nodes, and
  314. the FileDescriptorProto for the namespace.
  315. This does an annoying up/down recursion... a bit expensive, but *generally* OK.
  316. Could perhaps index the last part of the enum name to reduce overhead?
  317. -->
  318. <xsl:template name="GetFirstEnumValue">
  319. <xsl:variable name="hunt" select="type_name"/>
  320. <xsl:for-each select="//EnumDescriptorProto">
  321. <xsl:variable name="fullName">
  322. <xsl:for-each select="ancestor::FileDescriptorProto[package!='']">.<xsl:value-of select="package"/></xsl:for-each>
  323. <xsl:for-each select="ancestor::DescriptorProto">.<xsl:value-of select="name"/></xsl:for-each>
  324. <xsl:value-of select="'.'"/>
  325. <xsl:call-template name="pascal"/>
  326. </xsl:variable>
  327. <xsl:if test="$fullName=$hunt"><xsl:value-of select="(value/EnumValueDescriptorProto)[1]/name"/></xsl:if>
  328. </xsl:for-each>
  329. </xsl:template>
  330. <xsl:template match="FieldDescriptorProto[not(default_value)]" mode="defaultValue">
  331. <xsl:choose>
  332. <xsl:when test="type='TYPE_STRING'">""</xsl:when>
  333. <xsl:when test="type='TYPE_MESSAGE'">null</xsl:when>
  334. <xsl:when test="type='TYPE_BYTES'">null</xsl:when>
  335. <xsl:when test="type='TYPE_ENUM'"><xsl:apply-templates select="." mode="type"/>.<xsl:call-template name="GetFirstEnumValue"/></xsl:when>
  336. <xsl:otherwise>default(<xsl:apply-templates select="." mode="type"/>)</xsl:otherwise>
  337. </xsl:choose>
  338. </xsl:template>
  339. <xsl:template match="FieldDescriptorProto" mode="checkDeprecated"><!--
  340. --><xsl:if test="options/deprecated='true'">global::System.Obsolete, </xsl:if><!--
  341. --></xsl:template>
  342. <xsl:template match="FieldDescriptorProto[label='LABEL_OPTIONAL' or not(label)]">
  343. <xsl:variable name="propType"><xsl:apply-templates select="." mode="type"/></xsl:variable>
  344. <xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
  345. <xsl:variable name="primitiveType"><xsl:apply-templates select="." mode="primitiveType"/></xsl:variable>
  346. <xsl:variable name="defaultValue"><xsl:apply-templates select="." mode="defaultValue"/></xsl:variable>
  347. <xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
  348. <xsl:variable name="specified" select="$optionDetectMissing and ($primitiveType='struct' or $primitiveType='class')"/>
  349. <xsl:variable name="fieldType"><xsl:value-of select="$propType"/><xsl:if test="$specified and $primitiveType='struct'">?</xsl:if></xsl:variable>
  350. private <xsl:value-of select="concat($fieldType,' ',$field)"/><xsl:if test="not($specified)"> = <xsl:value-of select="$defaultValue"/></xsl:if>;<xsl:apply-templates select="comments/string[.!='']"/>
  351. [<xsl:apply-templates select="." mode="checkDeprecated"/>global::ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired = false, Name=@"<xsl:value-of select="name"/>", DataFormat = global::ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)]<!--
  352. --><xsl:if test="not($specified)">
  353. [global::System.ComponentModel.DefaultValue(<xsl:value-of select="$defaultValue"/>)]</xsl:if><!--
  354. --><xsl:if test="$optionXml">
  355. [global::System.Xml.Serialization.XmlElement(@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>)]
  356. </xsl:if><xsl:if test="$optionDataContract">
  357. [global::System.Runtime.Serialization.DataMember(Name=@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>, IsRequired = false)]
  358. </xsl:if><xsl:call-template name="WriteGetSet">
  359. <xsl:with-param name="fieldType" select="$fieldType"/>
  360. <xsl:with-param name="propType" select="$propType"/>
  361. <xsl:with-param name="name"><xsl:call-template name="pascal"/></xsl:with-param>
  362. <xsl:with-param name="field" select="$field"/>
  363. <xsl:with-param name="defaultValue" select="$defaultValue"/>
  364. <xsl:with-param name="specified" select="$specified"/>
  365. </xsl:call-template>
  366. </xsl:template>
  367. <xsl:template match="FieldDescriptorProto[label='LABEL_REQUIRED']">
  368. <xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
  369. <xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
  370. <xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
  371. private <xsl:value-of select="concat($type, ' ', $field)"/>;<xsl:apply-templates select="comments/string[.!='']"/>
  372. [<xsl:apply-templates select="." mode="checkDeprecated"/>global::ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, IsRequired = true, Name=@"<xsl:value-of select="name"/>", DataFormat = global::ProtoBuf.DataFormat.<xsl:value-of select="$format"/>)]<!--
  373. --><xsl:if test="$optionXml">
  374. [global::System.Xml.Serialization.XmlElement(@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>)]
  375. </xsl:if><xsl:if test="$optionDataContract">
  376. [global::System.Runtime.Serialization.DataMember(Name=@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>, IsRequired = true)]
  377. </xsl:if><xsl:call-template name="WriteGetSet">
  378. <xsl:with-param name="fieldType" select="$type"/>
  379. <xsl:with-param name="propType" select="$type"/>
  380. <xsl:with-param name="name"><xsl:call-template name="pascal"/></xsl:with-param>
  381. <xsl:with-param name="field" select="$field"/>
  382. </xsl:call-template>
  383. </xsl:template>
  384. <xsl:template name="stripKeyword">
  385. <xsl:param name="value"/>
  386. <xsl:choose>
  387. <xsl:when test="starts-with($value,'@')"><xsl:value-of select="substring-after($value,'@')"/></xsl:when>
  388. <xsl:otherwise><xsl:value-of select="$value"/></xsl:otherwise>
  389. </xsl:choose>
  390. </xsl:template>
  391. <xsl:template name="WriteGetSet">
  392. <xsl:param name="fieldType"/>
  393. <xsl:param name="propType"/>
  394. <xsl:param name="name"/>
  395. <xsl:param name="field"/>
  396. <xsl:param name="specified" select="false()"/>
  397. <xsl:param name="defaultValue"/>
  398. <xsl:variable name="nameNoKeyword">
  399. <xsl:call-template name="stripKeyword">
  400. <xsl:with-param name="value" select="$name"/>
  401. </xsl:call-template></xsl:variable>
  402. public <xsl:value-of select="concat($fieldType,' ',$name)"/>
  403. {
  404. get { return <xsl:value-of select="$field"/>; }
  405. set { <xsl:if test="$optionPartialMethods">On<xsl:value-of select="$nameNoKeyword"/>Changing(value); </xsl:if><xsl:if test="$optionPreObservable">OnPropertyChanging(@"<xsl:value-of select="$nameNoKeyword"/>"); </xsl:if><xsl:value-of select="$field"/> = value; <xsl:if test="$optionObservable">OnPropertyChanged(@"<xsl:value-of select="$nameNoKeyword"/>"); </xsl:if><xsl:if test="$optionPartialMethods">On<xsl:value-of select="$nameNoKeyword"/>Changed();</xsl:if>}
  406. }<xsl:if test="$optionPartialMethods">
  407. partial void On<xsl:value-of select="$nameNoKeyword"/>Changing(<xsl:value-of select="$propType"/> value);
  408. partial void On<xsl:value-of select="$nameNoKeyword"/>Changed();</xsl:if><xsl:if test="$specified">
  409. [global::System.Xml.Serialization.XmlIgnore]
  410. <xsl:if test="$optionFullFramework">[global::System.ComponentModel.Browsable(false)]</xsl:if>
  411. public bool <xsl:value-of select="$nameNoKeyword"/>Specified
  412. {
  413. get { return this.<xsl:value-of select="$field"/> != null; }
  414. set { if (value == (this.<xsl:value-of select="$field"/>== null)) this.<xsl:value-of select="$field"/> = value ? this.<xsl:value-of select="$name"/> : (<xsl:value-of select="$fieldType"/>)null; }
  415. }
  416. private bool ShouldSerialize<xsl:value-of select="$nameNoKeyword"/>() { return <xsl:value-of select="$nameNoKeyword"/>Specified; }
  417. private void Reset<xsl:value-of select="$nameNoKeyword"/>() { <xsl:value-of select="$nameNoKeyword"/>Specified = false; }
  418. </xsl:if>
  419. </xsl:template>
  420. <xsl:template match="FieldDescriptorProto[label='LABEL_REPEATED']">
  421. <xsl:variable name="type"><xsl:apply-templates select="." mode="type"/></xsl:variable>
  422. <xsl:variable name="format"><xsl:apply-templates select="." mode="format"/></xsl:variable>
  423. <xsl:variable name="field"><xsl:apply-templates select="." mode="field"/></xsl:variable>
  424. private <xsl:if test="not($optionXml)">readonly</xsl:if> global::System.Collections.Generic.List&lt;<xsl:value-of select="$type" />&gt; <xsl:value-of select="$field"/> = new global::System.Collections.Generic.List&lt;<xsl:value-of select="$type"/>&gt;();<xsl:apply-templates select="comments/string[.!='']"/>
  425. [<xsl:apply-templates select="." mode="checkDeprecated"/>global::ProtoBuf.ProtoMember(<xsl:value-of select="number"/>, Name=@"<xsl:value-of select="name"/>", DataFormat = global::ProtoBuf.DataFormat.<xsl:value-of select="$format"/><xsl:if test="options/packed='true'">, Options = global::ProtoBuf.MemberSerializationOptions.Packed</xsl:if>)]<!--
  426. --><xsl:if test="$optionDataContract">
  427. [global::System.Runtime.Serialization.DataMember(Name=@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>, IsRequired = false)]
  428. </xsl:if><xsl:if test="$optionXml">
  429. [global::System.Xml.Serialization.XmlElement(@"<xsl:value-of select="name"/>", Order = <xsl:value-of select="number"/>)]
  430. </xsl:if>
  431. public global::System.Collections.Generic.List&lt;<xsl:value-of select="$type" />&gt; <xsl:call-template name="pascal"/>
  432. {
  433. get { return <xsl:value-of select="$field"/>; }<!--
  434. --><xsl:if test="$optionXml">
  435. set { <xsl:value-of select="$field"/> = value; }</xsl:if>
  436. }
  437. </xsl:template>
  438. <xsl:template match="ServiceDescriptorProto">
  439. //---------------------------------------------------------------------------------------
  440. <xsl:apply-templates select="comments/string[.!='']"/>
  441. <xsl:if test="($optionClientProxy or $optionDataContract)">
  442. [global::System.ServiceModel.ServiceContract(Name = @"<xsl:value-of select="name"/>")]</xsl:if>
  443. public interface I<xsl:value-of select="name"/>
  444. {
  445. <xsl:apply-templates select="method"/>
  446. }
  447. <xsl:if test="$optionProtoRpc">
  448. public class <xsl:value-of select="name"/>Client : global::ProtoBuf.ServiceModel.RpcClient
  449. {
  450. public <xsl:value-of select="name"/>Client() : base(typeof(I<xsl:value-of select="name"/>)) { }
  451. <xsl:apply-templates select="method/MethodDescriptorProto" mode="protoRpc"/>
  452. }
  453. </xsl:if>
  454. <xsl:apply-templates select="." mode="clientProxy"/>
  455. </xsl:template>
  456. <xsl:template match="MethodDescriptorProto">
  457. <xsl:apply-templates select="comments/string[.!='']"/>
  458. <xsl:if test="($optionClientProxy or $optionDataContract)">
  459. [global::System.ServiceModel.OperationContract(Name = @"<xsl:value-of select="name"/>")]
  460. <xsl:if test="$optionFullFramework">[global::ProtoBuf.ServiceModel.ProtoBehavior]</xsl:if>
  461. </xsl:if>
  462. <xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request);
  463. <xsl:if test="$optionAsynchronous and ($optionClientProxy or $optionDataContract)">
  464. [global::System.ServiceModel.OperationContract(AsyncPattern = true, Name = @"<xsl:value-of select="name"/>")]
  465. global::System.IAsyncResult Begin<xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request, global::System.AsyncCallback callback, object state);
  466. <xsl:apply-templates select="output_type"/> End<xsl:value-of select="name"/>(global::System.IAsyncResult ar);
  467. </xsl:if></xsl:template>
  468. <xsl:template match="MethodDescriptorProto" mode="protoRpc">
  469. <xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request)
  470. {
  471. return (<xsl:apply-templates select="output_type"/>) Send(@"<xsl:value-of select="name"/>", request);
  472. }
  473. </xsl:template>
  474. <xsl:template match="MethodDescriptorProto/input_type | MethodDescriptorProto/output_type">
  475. <xsl:value-of select="substring-after(.,'.')"/>
  476. </xsl:template>
  477. <xsl:template match="MethodDescriptorProto" mode="CompleteEvent">
  478. <xsl:if test="$optionAsynchronous and $optionDataContract">
  479. public partial class <xsl:value-of select="name"/>CompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs
  480. {
  481. private object[] results;
  482. public <xsl:value-of select="name"/>CompletedEventArgs(object[] results, global::System.Exception exception, bool cancelled, object userState)
  483. : base(exception, cancelled, userState)
  484. {
  485. this.results = results;
  486. }
  487. public <xsl:apply-templates select="output_type"/> Result
  488. {
  489. get {
  490. base.RaiseExceptionIfNecessary();
  491. return (<xsl:apply-templates select="output_type"/>)(this.results[0]);
  492. }
  493. }
  494. }
  495. </xsl:if>
  496. </xsl:template>
  497. <xsl:template match="ServiceDescriptorProto" mode="clientProxy">
  498. <xsl:if test="$optionAsynchronous and $optionDataContract and $optionClientProxy">
  499. <xsl:apply-templates select="method/MethodDescriptorProto" mode="CompleteEvent"/>
  500. [global::System.Diagnostics.DebuggerStepThroughAttribute()]
  501. public partial class <xsl:value-of select="name"/>Client : global::System.ServiceModel.ClientBase&lt;I<xsl:value-of select="name"/>&gt;, I<xsl:value-of select="name"/>
  502. {
  503. public <xsl:value-of select="name"/>Client()
  504. {}
  505. public <xsl:value-of select="name"/>Client(string endpointConfigurationName)
  506. : base(endpointConfigurationName)
  507. {}
  508. public <xsl:value-of select="name"/>Client(string endpointConfigurationName, string remoteAddress)
  509. : base(endpointConfigurationName, remoteAddress)
  510. {}
  511. public <xsl:value-of select="name"/>Client(string endpointConfigurationName, global::System.ServiceModel.EndpointAddress remoteAddress)
  512. : base(endpointConfigurationName, remoteAddress)
  513. {}
  514. public <xsl:value-of select="name"/>Client(global::System.ServiceModel.Channels.Binding binding, global::System.ServiceModel.EndpointAddress remoteAddress)
  515. : base(binding, remoteAddress)
  516. {}
  517. <xsl:apply-templates select="method/MethodDescriptorProto" mode="clientProxy"/>
  518. }
  519. </xsl:if>
  520. </xsl:template>
  521. <xsl:template match="MethodDescriptorProto" mode="clientProxy">
  522. <xsl:if test="$optionAsynchronous and $optionDataContract and $optionClientProxy">
  523. private BeginOperationDelegate onBegin<xsl:value-of select="name"/>Delegate;
  524. private EndOperationDelegate onEnd<xsl:value-of select="name"/>Delegate;
  525. private global::System.Threading.SendOrPostCallback on<xsl:value-of select="name"/>CompletedDelegate;
  526. public event global::System.EventHandler&lt;<xsl:value-of select="name"/>CompletedEventArgs&gt; <xsl:value-of select="name"/>Completed;
  527. public <xsl:apply-templates select="output_type"/><xsl:text xml:space="preserve"> </xsl:text><xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request)
  528. {
  529. return base.Channel.<xsl:value-of select="name"/>(request);
  530. }
  531. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  532. public global::System.IAsyncResult Begin<xsl:value-of select="name"/>(<xsl:apply-templates select="input_type"/> request, global::System.AsyncCallback callback, object asyncState)
  533. {
  534. return base.Channel.Begin<xsl:value-of select="name"/>(request, callback, asyncState);
  535. }
  536. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  537. public <xsl:apply-templates select="output_type"/> End<xsl:value-of select="name"/>(global::System.IAsyncResult result)
  538. {
  539. return base.Channel.End<xsl:value-of select="name"/>(result);
  540. }
  541. private global::System.IAsyncResult OnBegin<xsl:value-of select="name"/>(object[] inValues, global::System.AsyncCallback callback, object asyncState)
  542. {
  543. <xsl:apply-templates select="input_type"/> request = ((<xsl:apply-templates select="input_type"/>)(inValues[0]));
  544. return this.Begin<xsl:value-of select="name"/>(request, callback, asyncState);
  545. }
  546. private object[] OnEnd<xsl:value-of select="name"/>(global::System.IAsyncResult result)
  547. {
  548. <xsl:apply-templates select="output_type"/> retVal = this.End<xsl:value-of select="name"/>(result);
  549. return new object[] {
  550. retVal};
  551. }
  552. private void On<xsl:value-of select="name"/>Completed(object state)
  553. {
  554. if ((this.<xsl:value-of select="name"/>Completed != null))
  555. {
  556. InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
  557. this.<xsl:value-of select="name"/>Completed(this, new <xsl:value-of select="name"/>CompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
  558. }
  559. }
  560. public void <xsl:value-of select="name"/>Async(<xsl:apply-templates select="input_type"/> request)
  561. {
  562. this.<xsl:value-of select="name"/>Async(request, null);
  563. }
  564. public void <xsl:value-of select="name"/>Async(<xsl:apply-templates select="input_type"/> request, object userState)
  565. {
  566. if ((this.onBegin<xsl:value-of select="name"/>Delegate == null))
  567. {
  568. this.onBegin<xsl:value-of select="name"/>Delegate = new BeginOperationDelegate(this.OnBegin<xsl:value-of select="name"/>);
  569. }
  570. if ((this.onEnd<xsl:value-of select="name"/>Delegate == null))
  571. {
  572. this.onEnd<xsl:value-of select="name"/>Delegate = new EndOperationDelegate(this.OnEnd<xsl:value-of select="name"/>);
  573. }
  574. if ((this.on<xsl:value-of select="name"/>CompletedDelegate == null))
  575. {
  576. this.on<xsl:value-of select="name"/>CompletedDelegate = new global::System.Threading.SendOrPostCallback(this.On<xsl:value-of select="name"/>Completed);
  577. }
  578. base.InvokeAsync(this.onBegin<xsl:value-of select="name"/>Delegate, new object[] {
  579. request}, this.onEnd<xsl:value-of select="name"/>Delegate, this.on<xsl:value-of select="name"/>CompletedDelegate, userState);
  580. }
  581. </xsl:if>
  582. </xsl:template>
  583. <xsl:template match="FileDescriptorProto/comments/string">
  584. // <xsl:value-of select="."/>
  585. </xsl:template>
  586. <xsl:template match="DescriptorProto/comments/string">
  587. /// &lt;summary&gt;
  588. /// <xsl:value-of select="."/>
  589. /// &lt;/summary&gt;
  590. [global::ProtoBuf.ServiceModel.ProtoComment("<xsl:value-of select="."/>")]</xsl:template>
  591. <xsl:template match="EnumDescriptorProto/comments/string">
  592. /// &lt;summary&gt;
  593. /// <xsl:value-of select="."/>
  594. /// &lt;/summary&gt;
  595. [global::ProtoBuf.ServiceModel.ProtoComment("<xsl:value-of select="."/>")]</xsl:template>
  596. <xsl:template match="ServiceDescriptorProto/comments/string">
  597. /// &lt;summary&gt;
  598. /// <xsl:value-of select="."/>
  599. /// &lt;/summary&gt;
  600. [global::ProtoBuf.ServiceModel.ProtoComment("<xsl:value-of select="."/>")]</xsl:template>
  601. <xsl:template match="FieldDescriptorProto/comments/string">
  602. /// &lt;summary&gt;
  603. /// <xsl:value-of select="."/>
  604. /// &lt;/summary&gt;
  605. [global::ProtoBuf.ServiceModel.ProtoComment("<xsl:value-of select="."/>")]</xsl:template>
  606. <xsl:template match="EnumValueDescriptorProto/comments/string">
  607. /// &lt;summary&gt;
  608. /// <xsl:value-of select="."/>
  609. /// &lt;/summary&gt;
  610. [global::ProtoBuf.ServiceModel.ProtoComment("<xsl:value-of select="."/>")]</xsl:template>
  611. <xsl:template match="MethodDescriptorProto/comments/string">
  612. /// &lt;summary&gt;
  613. /// <xsl:value-of select="."/>
  614. /// &lt;/summary&gt;
  615. [global::ProtoBuf.ServiceModel.ProtoComment("<xsl:value-of select="."/>")]
  616. </xsl:template>
  617. </xsl:stylesheet>