// // System.Web.Services.Description.HttpSimpleProtocolImporter.cs // // Author: // Lluis Sanchez Gual (lluis@ximian.com) // // Copyright (C) 2003 Ximian, Inc. // using System.CodeDom; using System.Web.Services; using System.Web.Services.Protocols; using System.Web.Services.Configuration; using System.Xml; using System.Xml.Serialization; using System.Configuration; using System.Collections; namespace System.Web.Services.Description { internal abstract class HttpSimpleProtocolImporter : ProtocolImporter { #region Fields HttpBinding httpBinding; SoapCodeExporter soapExporter; SoapSchemaImporter soapImporter; XmlCodeExporter xmlExporter; XmlSchemaImporter xmlImporter; CodeIdentifiers memberIds; #endregion // Fields #region Constructors public HttpSimpleProtocolImporter () { } #endregion // Constructors #region Methods protected override CodeTypeDeclaration BeginClass () { httpBinding = (HttpBinding) Binding.Extensions.Find (typeof(HttpBinding)); CodeTypeDeclaration codeClass = new CodeTypeDeclaration (ClassName); string location = null; HttpAddressBinding sab = (HttpAddressBinding) Port.Extensions.Find (typeof(HttpAddressBinding)); if (sab != null) location = sab.Location; string url = GetServiceUrl (location); CodeConstructor cc = new CodeConstructor (); cc.Attributes = MemberAttributes.Public; CodeExpression ce = new CodeFieldReferenceExpression (new CodeThisReferenceExpression(), "Url"); CodeAssignStatement cas = new CodeAssignStatement (ce, new CodePrimitiveExpression (url)); cc.Statements.Add (cas); codeClass.Members.Add (cc); memberIds = new CodeIdentifiers (); return codeClass; } protected override void BeginNamespace () { xmlImporter = new XmlSchemaImporter (Schemas, ClassNames); soapImporter = new SoapSchemaImporter (Schemas, ClassNames); xmlExporter = new XmlCodeExporter (CodeNamespace, null); } protected override void EndClass () { } protected override void EndNamespace () { } protected override bool IsBindingSupported () { throw new NotImplementedException (); } [MonoTODO] protected override bool IsOperationFlowSupported (OperationFlow flow) { throw new NotImplementedException (); } protected override CodeMemberMethod GenerateMethod () { try { HttpOperationBinding httpOper = OperationBinding.Extensions.Find (typeof (HttpOperationBinding)) as HttpOperationBinding; if (httpOper == null) throw new Exception ("Http operation binding not found"); XmlMembersMapping inputMembers = ImportInMembersMapping (InputMessage); XmlMembersMapping outputMembers = ImportOutMembersMapping (OutputMessage); CodeMemberMethod met = GenerateMethod (memberIds, httpOper, inputMembers, outputMembers); xmlExporter.ExportMembersMapping (inputMembers); xmlExporter.ExportMembersMapping (outputMembers); return met; } catch (Exception ex) { Console.WriteLine (ex); UnsupportedOperationBindingWarning (ex.Message); return null; } } XmlMembersMapping ImportInMembersMapping (Message msg) { XmlQualifiedName elem = null; SoapSchemaMember[] mems = new SoapSchemaMember [msg.Parts.Count]; for (int n=0; n 0) methodParams = new CodeArrayCreateExpression (typeof(object), paramArray); else methodParams = new CodeArrayCreateExpression (typeof(object), 0); // Generate method url CodeThisReferenceExpression ethis = new CodeThisReferenceExpression(); CodeExpression thisURlExp = new CodeFieldReferenceExpression (ethis, "Url"); CodePrimitiveExpression metUrl = new CodePrimitiveExpression (httpOper.Location); CodeBinaryOperatorExpression expMethodLocation = new CodeBinaryOperatorExpression (thisURlExp, CodeBinaryOperatorType.Add, metUrl); // Invoke call CodePrimitiveExpression varMsgName = new CodePrimitiveExpression (messageName); CodeMethodInvokeExpression inv; inv = new CodeMethodInvokeExpression (ethis, "Invoke", varMsgName, expMethodLocation, methodParams); if (!isVoid) method.Statements.Add (new CodeMethodReturnStatement (new CodeCastExpression (method.ReturnType, inv))); else method.Statements.Add (inv); // Begin Invoke Call CodeExpression expCallb = new CodeVariableReferenceExpression (varCallback); CodeExpression expAsyncs = new CodeVariableReferenceExpression (varAsyncState); inv = new CodeMethodInvokeExpression (ethis, "BeginInvoke", varMsgName, expMethodLocation, methodParams, expCallb, expAsyncs); methodBegin.Statements.Add (new CodeMethodReturnStatement (inv)); // End Invoke call CodeExpression varAsyncr = new CodeVariableReferenceExpression (varAsyncResult); inv = new CodeMethodInvokeExpression (ethis, "EndInvoke", varAsyncr); if (!isVoid) methodEnd.Statements.Add (new CodeMethodReturnStatement (new CodeCastExpression (methodEnd.ReturnType, inv))); else methodEnd.Statements.Add (inv); // Attributes CodeAttributeDeclaration att = new CodeAttributeDeclaration ("System.Web.Services.Protocols.HttpMethodAttribute"); att.Arguments.Add (new CodeAttributeArgument (new CodeTypeOfExpression(GetOutMimeFormatter ()))); att.Arguments.Add (new CodeAttributeArgument (new CodeTypeOfExpression(GetInMimeFormatter ()))); AddCustomAttribute (method, att, true); CodeTypeDeclaration.Members.Add (method); CodeTypeDeclaration.Members.Add (methodBegin); CodeTypeDeclaration.Members.Add (methodEnd); return method; } protected virtual Type GetInMimeFormatter () { return null; } protected virtual Type GetOutMimeFormatter () { if (OperationBinding.Output.Extensions.Find (typeof(MimeXmlBinding)) != null) return typeof (XmlReturnReader); MimeContentBinding bin = (MimeContentBinding) OperationBinding.Output.Extensions.Find (typeof(MimeContentBinding)); if (bin != null && bin.Type == "text/xml") return typeof (XmlReturnReader); return typeof(NopReturnReader); } #endregion } }