Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / HttpSimpleProtocolImporter.cs
1 // 
2 // System.Web.Services.Description.HttpSimpleProtocolImporter.cs
3 //
4 // Author:
5 //   Lluis Sanchez Gual (lluis@ximian.com)
6 //
7 // Copyright (C) 2003 Ximian, Inc.
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.CodeDom;
32 using System.Web.Services;
33 using System.Web.Services.Protocols;
34 using System.Web.Services.Configuration;
35 using System.Xml;
36 using System.Xml.Serialization;
37 using System.Configuration;
38 using System.Collections;
39
40 namespace System.Web.Services.Description 
41 {
42         internal abstract class HttpSimpleProtocolImporter : ProtocolImporter 
43         {
44
45                 #region Fields
46
47                 HttpBinding httpBinding;
48                 
49                 SoapCodeExporter soapExporter;
50                 SoapSchemaImporter soapImporter;
51                 XmlCodeExporter xmlExporter;
52                 XmlSchemaImporter xmlImporter;
53                 CodeIdentifiers memberIds;
54                 XmlReflectionImporter xmlReflectionImporter;
55                 
56                 #endregion // Fields
57
58                 #region Constructors
59
60                 public HttpSimpleProtocolImporter ()
61                 {
62                 }
63                 
64                 #endregion // Constructors
65
66                 #region Methods
67
68                 protected override CodeTypeDeclaration BeginClass ()
69                 {
70                         httpBinding = (HttpBinding) Binding.Extensions.Find (typeof(HttpBinding));
71
72                         CodeTypeDeclaration codeClass = new CodeTypeDeclaration (ClassName);
73                         codeClass.IsPartial = true;
74
75                         string location = null;
76                         if (Port != null) {
77                                 HttpAddressBinding sab = (HttpAddressBinding) Port.Extensions.Find (typeof(HttpAddressBinding));
78                                 if (sab != null) location = sab.Location;
79                         }
80                         
81                         CodeConstructor cc = new CodeConstructor ();
82                         cc.Attributes = MemberAttributes.Public;
83                         GenerateServiceUrl (location, cc.Statements);
84                         codeClass.Members.Add (cc);
85                         
86                         memberIds = new CodeIdentifiers ();
87                         return codeClass;
88                 }
89
90                 protected override void BeginNamespace ()
91                 {
92                         xmlImporter = new XmlSchemaImporter (LiteralSchemas, ClassNames);
93                         soapImporter = new SoapSchemaImporter (EncodedSchemas, ClassNames);
94                         xmlExporter = new XmlCodeExporter (CodeNamespace, null);
95                         xmlReflectionImporter = new XmlReflectionImporter ();
96                 }
97
98                 protected override void EndClass ()
99                 {
100                         if (xmlExporter.IncludeMetadata.Count > 0)
101                         {
102                                 if (CodeTypeDeclaration.CustomAttributes == null)
103                                         CodeTypeDeclaration.CustomAttributes = new CodeAttributeDeclarationCollection ();
104                                 CodeTypeDeclaration.CustomAttributes.AddRange (xmlExporter.IncludeMetadata);
105                         }
106                 }
107
108                 protected override void EndNamespace ()
109                 {
110                 }
111
112                 protected override bool IsBindingSupported ()
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 [MonoTODO]
118                 protected override bool IsOperationFlowSupported (OperationFlow flow)
119                 {
120                         throw new NotImplementedException ();
121                 }
122
123                 protected override CodeMemberMethod GenerateMethod ()
124                 {
125                         try
126                         {
127                                 HttpOperationBinding httpOper = OperationBinding.Extensions.Find (typeof (HttpOperationBinding)) as HttpOperationBinding;
128                                 if (httpOper == null) throw new Exception ("Http operation binding not found");
129                                 
130                                 XmlMembersMapping inputMembers = ImportInMembersMapping (InputMessage);
131                                 XmlTypeMapping outputMember = ImportOutMembersMapping (OutputMessage);
132                                 
133                                 CodeMemberMethod met = GenerateMethod (memberIds, httpOper, inputMembers, outputMember);
134                                 
135                                 xmlExporter.ExportMembersMapping (inputMembers);
136                                 if (outputMember != null)
137                                         xmlExporter.ExportTypeMapping (outputMember);
138
139                                 return met;
140                         }
141                         catch (Exception ex)
142                         {
143                                 UnsupportedOperationBindingWarning (ex.Message);
144                                 return null;
145                         }
146                 }
147
148                 XmlMembersMapping ImportInMembersMapping (Message msg)
149                 {
150                         SoapSchemaMember[] mems = new SoapSchemaMember [msg.Parts.Count];
151                         for (int n=0; n<mems.Length; n++)
152                         {
153                                 SoapSchemaMember mem = new SoapSchemaMember();
154                                 mem.MemberName = msg.Parts[n].Name;
155                                 mem.MemberType = msg.Parts[n].Type;
156                                 mems[n] = mem;
157                         }
158                         return soapImporter.ImportMembersMapping (Operation.Name, "", mems);
159                 }
160                 
161                 XmlTypeMapping ImportOutMembersMapping (Message msg)
162                 {
163                         if (msg.Parts.Count == 0) return null;
164                         
165                         if (msg.Parts[0].Name == "Body" && msg.Parts[0].Element == XmlQualifiedName.Empty)
166                                 return xmlReflectionImporter.ImportTypeMapping (typeof(XmlNode));
167                         else {
168                                 // This is a bit hacky. The issue is that types such as string[] are to be imported
169                                 // as such, not as ArrayOfString class. ImportTypeMapping will return a
170                                 // class if the type has not been imported as an array before, hence the
171                                 // call to ImportMembersMapping.
172                                 xmlImporter.ImportMembersMapping (new XmlQualifiedName[] {msg.Parts[0].Element});
173                                 return xmlImporter.ImportTypeMapping (msg.Parts[0].Element);
174                         }
175                 }
176                 
177                 CodeMemberMethod GenerateMethod (CodeIdentifiers memberIds, HttpOperationBinding httpOper, XmlMembersMapping inputMembers, XmlTypeMapping outputMember)
178                 {
179                         CodeIdentifiers pids = new CodeIdentifiers ();
180                         CodeMemberMethod method = new CodeMemberMethod ();
181                         CodeMemberMethod methodBegin = new CodeMemberMethod ();
182                         CodeMemberMethod methodEnd = new CodeMemberMethod ();
183                         method.Attributes = MemberAttributes.Public;
184                         methodBegin.Attributes = MemberAttributes.Public;
185                         methodEnd.Attributes = MemberAttributes.Public;
186                         
187                         // Find unique names for temporary variables
188                         
189                         for (int n=0; n<inputMembers.Count; n++)
190                                 pids.AddUnique (inputMembers[n].MemberName, inputMembers[n]);
191
192                         string varAsyncResult = pids.AddUnique ("asyncResult","asyncResult");
193                         string varCallback = pids.AddUnique ("callback","callback");
194                         string varAsyncState = pids.AddUnique ("asyncState","asyncState");
195
196                         string messageName = memberIds.AddUnique(CodeIdentifier.MakeValid(Operation.Name),method);
197
198                         method.Name = Operation.Name;
199                         methodBegin.Name = memberIds.AddUnique(CodeIdentifier.MakeValid("Begin" + Operation.Name),method);
200                         methodEnd.Name = memberIds.AddUnique(CodeIdentifier.MakeValid("End" + Operation.Name),method);
201
202                         method.ReturnType = new CodeTypeReference (typeof(void));
203                         methodEnd.ReturnType = new CodeTypeReference (typeof(void));
204                         methodEnd.Parameters.Add (new CodeParameterDeclarationExpression (typeof (IAsyncResult),varAsyncResult));
205
206                         CodeExpression[] paramArray = new CodeExpression [inputMembers.Count];
207
208                         for (int n=0; n<inputMembers.Count; n++)
209                         {
210                                 string ptype = GetSimpleType (inputMembers[n]);
211                                 CodeParameterDeclarationExpression param = new CodeParameterDeclarationExpression (ptype, inputMembers[n].MemberName);
212                                 
213                                 param.Direction = FieldDirection.In;
214                                 method.Parameters.Add (param);
215                                 methodBegin.Parameters.Add (param);
216                                 paramArray [n] = new CodeVariableReferenceExpression (param.Name);
217                         }
218
219                         bool isVoid = true;
220                         if (outputMember != null)
221                         {
222                                 method.ReturnType = new CodeTypeReference (outputMember.TypeFullName);
223                                 methodEnd.ReturnType = new CodeTypeReference (outputMember.TypeFullName);
224                                 xmlExporter.AddMappingMetadata (method.ReturnTypeCustomAttributes, outputMember, "");
225                                 isVoid = false;
226                         }
227
228                         methodBegin.Parameters.Add (new CodeParameterDeclarationExpression (typeof (AsyncCallback),varCallback));
229                         methodBegin.Parameters.Add (new CodeParameterDeclarationExpression (typeof (object),varAsyncState));
230                         methodBegin.ReturnType = new CodeTypeReference (typeof(IAsyncResult));
231
232                         // Array of input parameters
233                         
234                         CodeArrayCreateExpression methodParams;
235                         if (paramArray.Length > 0)
236                                 methodParams = new CodeArrayCreateExpression (typeof(object), paramArray);
237                         else
238                                 methodParams = new CodeArrayCreateExpression (typeof(object), 0);
239
240                         // Generate method url
241                         
242                         CodeThisReferenceExpression ethis = new CodeThisReferenceExpression();
243                         
244                         CodeExpression thisURlExp = new CodeFieldReferenceExpression (ethis, "Url");
245                         CodePrimitiveExpression metUrl = new CodePrimitiveExpression (httpOper.Location);
246                         CodeBinaryOperatorExpression expMethodLocation = new CodeBinaryOperatorExpression (thisURlExp, CodeBinaryOperatorType.Add, metUrl);
247                         
248                         // Invoke call
249                         
250                         CodePrimitiveExpression varMsgName = new CodePrimitiveExpression (messageName);
251                         CodeMethodInvokeExpression inv;
252
253                         inv = new CodeMethodInvokeExpression (ethis, "Invoke", varMsgName, expMethodLocation, methodParams);
254                         if (!isVoid)
255                                 method.Statements.Add (new CodeMethodReturnStatement (new CodeCastExpression (method.ReturnType, inv)));
256                         else
257                                 method.Statements.Add (inv);
258                         
259                         // Begin Invoke Call
260                         
261                         CodeExpression expCallb = new CodeVariableReferenceExpression (varCallback);
262                         CodeExpression expAsyncs = new CodeVariableReferenceExpression (varAsyncState);
263                         inv = new CodeMethodInvokeExpression (ethis, "BeginInvoke", varMsgName, expMethodLocation, methodParams, expCallb, expAsyncs);
264                         methodBegin.Statements.Add (new CodeMethodReturnStatement (inv));
265                         
266                         // End Invoke call
267                         
268                         CodeExpression varAsyncr = new CodeVariableReferenceExpression (varAsyncResult);
269                         inv = new CodeMethodInvokeExpression (ethis, "EndInvoke", varAsyncr);
270                         if (!isVoid)
271                                 methodEnd.Statements.Add (new CodeMethodReturnStatement (new CodeCastExpression (methodEnd.ReturnType, inv)));
272                         else
273                                 methodEnd.Statements.Add (inv);
274                         
275                         // Attributes
276
277                         CodeAttributeDeclaration att = new CodeAttributeDeclaration ("System.Web.Services.Protocols.HttpMethodAttribute");
278                         att.Arguments.Add (new CodeAttributeArgument (new CodeTypeOfExpression(GetOutMimeFormatter ())));
279                         att.Arguments.Add (new CodeAttributeArgument (new CodeTypeOfExpression(GetInMimeFormatter ())));
280                         AddCustomAttribute (method, att, true);
281                 
282                         CodeTypeDeclaration.Members.Add (method);
283                         CodeTypeDeclaration.Members.Add (methodBegin);
284                         CodeTypeDeclaration.Members.Add (methodEnd);
285                         
286                         return method;
287                 }               
288
289                 internal override CodeExpression BuildInvokeAsync (string messageName, CodeArrayCreateExpression paramsArray, CodeExpression delegateField, CodeExpression userStateVar)
290                 {
291                         HttpOperationBinding httpOper = OperationBinding.Extensions.Find (typeof (HttpOperationBinding)) as HttpOperationBinding;
292                         
293                         CodeThisReferenceExpression ethis = new CodeThisReferenceExpression();
294                         
295                         CodeExpression thisURlExp = new CodeFieldReferenceExpression (ethis, "Url");
296                         CodePrimitiveExpression metUrl = new CodePrimitiveExpression (httpOper.Location);
297                         CodeBinaryOperatorExpression expMethodLocation = new CodeBinaryOperatorExpression (thisURlExp, CodeBinaryOperatorType.Add, metUrl);
298                         
299                         CodeMethodInvokeExpression inv2 = new CodeMethodInvokeExpression (ethis, "InvokeAsync");
300                         inv2.Parameters.Add (new CodePrimitiveExpression (messageName));
301                         inv2.Parameters.Add (expMethodLocation);
302                         inv2.Parameters.Add (paramsArray);
303                         inv2.Parameters.Add (delegateField);
304                         inv2.Parameters.Add (userStateVar);
305                         return inv2;
306                 }
307                 
308                 protected virtual Type GetInMimeFormatter ()
309                 {
310                         return null;
311                 }
312
313                 protected virtual Type GetOutMimeFormatter ()
314                 {
315                         if (OperationBinding.Output.Extensions.Find (typeof(MimeXmlBinding)) != null)
316                                 return typeof (XmlReturnReader);
317                                 
318                         MimeContentBinding bin = (MimeContentBinding) OperationBinding.Output.Extensions.Find (typeof(MimeContentBinding));
319                         if (bin != null && bin.Type == "text/xml")
320                                 return typeof (XmlReturnReader);
321                                 
322                         return typeof(NopReturnReader);
323                 }
324                 
325                 string GetSimpleType (XmlMemberMapping member)
326                 {
327                         // MS seems to always use System.String for input parameters, except for byte[]
328                         
329                         switch (member.TypeName)
330                         {
331                                 case "hexBinary":
332                                 case "base64Binary":
333                                         return "System.String";
334                                 
335                                 default:
336                                         string ptype = member.TypeFullName;
337                                         int i = ptype.IndexOf ('[');
338                                         if (i == -1)
339                                                 return "System.String";
340                                         else 
341                                                 return "System.String" + ptype.Substring (i);
342                         }
343                 }
344
345                 #endregion
346         }
347 }