| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- //
- // System.Web.Services.Description.ServiceDescriptionImporter.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.CodeDom;
- using System.CodeDom.Compiler;
- using System.Web.Services;
- using System.Web.Services.Protocols;
- using System.Web.Services.Description;
- using System.Xml.Serialization;
- using System.Xml;
- using System.Xml.Schema;
- using System.Collections;
- using System.Collections.Specialized;
- using System.Configuration;
- namespace System.Web.Services.Description {
- public class ServiceDescriptionImporter {
- #region Fields
- string protocolName;
- XmlSchemas schemas;
- ServiceDescriptionCollection serviceDescriptions;
- ServiceDescriptionImportStyle style;
-
- #if NET_2_0
- CodeGenerationOptions options;
- CodeDomProvider codeGenerator;
- ImportContext context;
- #endif
- ArrayList importInfo = new ArrayList ();
-
- #endregion // Fields
- #region Constructors
-
- public ServiceDescriptionImporter ()
- {
- protocolName = String.Empty;
- schemas = new XmlSchemas ();
- serviceDescriptions = new ServiceDescriptionCollection ();
- serviceDescriptions.SetImporter (this);
- style = ServiceDescriptionImportStyle.Client;
- }
-
- #endregion // Constructors
- #region Properties
- public string ProtocolName {
- get { return protocolName; }
- set { protocolName = value; }
- }
- public XmlSchemas Schemas {
- get { return schemas; }
- }
- public ServiceDescriptionCollection ServiceDescriptions {
- get { return serviceDescriptions; }
- }
- public ServiceDescriptionImportStyle Style {
- get { return style; }
- set { style = value; }
- }
-
- #if NET_2_0
- [System.Runtime.InteropServices.ComVisible(false)]
- public CodeGenerationOptions CodeGenerationOptions {
- get { return options; }
- set { options = value; }
- }
-
- [System.Runtime.InteropServices.ComVisible(false)]
- public CodeDomProvider CodeGenerator {
- get { return codeGenerator; }
- set { codeGenerator = value; }
- }
-
-
- internal ImportContext Context {
- get { return context; }
- set { context = value; }
- }
- #endif
-
- #endregion // Properties
- #region Methods
- public void AddServiceDescription (ServiceDescription serviceDescription, string appSettingUrlKey, string appSettingBaseUrl)
- {
- if (appSettingUrlKey != null && appSettingUrlKey == string.Empty && style == ServiceDescriptionImportStyle.Server)
- throw new InvalidOperationException ("Cannot set appSettingUrlKey if Style is Server");
- serviceDescriptions.Add (serviceDescription, appSettingUrlKey, appSettingBaseUrl);
- }
- internal void OnServiceDescriptionAdded (ServiceDescription serviceDescription, string appSettingUrlKey, string appSettingBaseUrl)
- {
- ImportInfo info = new ImportInfo (serviceDescription, appSettingUrlKey, appSettingBaseUrl);
- importInfo.Add (info);
-
- if (serviceDescription.Types != null)
- schemas.Add (serviceDescription.Types.Schemas);
- }
- public ServiceDescriptionImportWarnings Import (CodeNamespace codeNamespace, CodeCompileUnit codeCompileUnit)
- {
- ProtocolImporter importer = GetImporter ();
-
- if (!importer.Import (this, codeNamespace, codeCompileUnit, importInfo))
- throw new Exception ("None of the supported bindings was found");
-
- return importer.Warnings;
- }
-
- ProtocolImporter GetImporter ()
- {
- ArrayList importers = GetSupportedImporters ();
- if (protocolName == null || protocolName == "") protocolName = "Soap";
- foreach (ProtocolImporter importer in importers) {
- if (importer.ProtocolName == protocolName)
- return importer;
- }
-
- throw new Exception ("Protocol " + protocolName + " not supported");
- }
-
- ArrayList GetSupportedImporters ()
- {
- ArrayList list = new ArrayList ();
- list.Add (new SoapProtocolImporter ());
- list.Add (new HttpGetProtocolImporter ());
- list.Add (new HttpPostProtocolImporter ());
- return list;
- }
-
- #if NET_2_0
- public static StringCollection GenerateWebReferences (
- WebReferenceCollection webReferences,
- CodeGenerationOptions options,
- ServiceDescriptionImportStyle style,
- CodeDomProvider codeGenerator)
- {
- CodeCompileUnit codeCompileUnit = new CodeCompileUnit ();
- return GenerateWebReferences (webReferences, options, style, codeGenerator, codeCompileUnit, false);
- }
- [MonoTODO ("verbose?")]
- public static StringCollection GenerateWebReferences (
- WebReferenceCollection webReferences,
- CodeGenerationOptions options,
- ServiceDescriptionImportStyle style,
- CodeDomProvider codeGenerator,
- CodeCompileUnit codeCompileUnit,
- bool verbose)
- {
- StringCollection allWarnings = new StringCollection ();
- ImportContext context = new ImportContext (new CodeIdentifiers(), true);
-
- foreach (WebReference reference in webReferences)
- {
- ServiceDescriptionImporter importer = new ServiceDescriptionImporter ();
- importer.CodeGenerator = codeGenerator;
- importer.CodeGenerationOptions = options;
- importer.Context = context;
- importer.Style = style;
- importer.ProtocolName = reference.ProtocolName;
-
- importer.AddReference (reference);
-
- reference.Warnings = importer.Import (reference.ProxyCode, codeCompileUnit);
- reference.SetValidationWarnings (context.Warnings);
- foreach (string s in context.Warnings)
- allWarnings.Add (s);
- context.Warnings.Clear ();
- }
- return allWarnings;
- }
-
- internal void AddReference (WebReference reference)
- {
- foreach (object doc in reference.Documents.Values)
- {
- if (doc is ServiceDescription) {
- ServiceDescription service = (ServiceDescription) doc;
- ImportInfo info = new ImportInfo (service, reference);
- importInfo.Add (info);
- serviceDescriptions.Add (service);
-
- if (service.Types != null)
- schemas.Add (service.Types.Schemas);
- }
- else if (doc is XmlSchema) {
- schemas.Add ((XmlSchema) doc);
- }
- }
- }
-
- #endif
- #endregion
- }
- internal class ImportInfo
- {
- string _appSettingUrlKey;
- string _appSettingBaseUrl;
- ServiceDescription _serviceDescription;
-
- public WebReference _reference;
-
- public ImportInfo (ServiceDescription serviceDescription, string appSettingUrlKey, string appSettingBaseUrl)
- {
- _serviceDescription = serviceDescription;
- _appSettingUrlKey = appSettingUrlKey;
- _appSettingBaseUrl = appSettingBaseUrl;
- }
-
- public ImportInfo (ServiceDescription serviceDescription, WebReference reference)
- {
- _reference = reference;
- _serviceDescription = serviceDescription;
- }
-
- public WebReference Reference {
- get { return _reference; }
- }
-
- public ServiceDescription ServiceDescription {
- get { return _serviceDescription; }
- }
-
- public string AppSettingUrlKey {
- get {
- if (_reference != null) return _reference.AppSettingUrlKey;
- else return _appSettingUrlKey;
- }
- set {
- _appSettingUrlKey = value;
- }
- }
-
- public string AppSettingBaseUrl {
- get {
- if (_reference != null) return _reference.AppSettingBaseUrl;
- else return _appSettingBaseUrl;
- }
- set {
- _appSettingBaseUrl = value;
- }
- }
- }
- }
|