* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / ServiceDescriptionReflector.cs
1 // \r
2 // System.Web.Services.Description.ServiceDescriptionReflector.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //   Lluis Sanchez Gual (lluis@ximian.com)\r
7 //\r
8 // Copyright (C) Tim Coleman, 2002\r
9 //\r
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31 \r
32 using System.Web.Services;\r
33 using System.Xml.Serialization;\r
34 using System.Xml;\r
35 using System.Xml.Schema;\r
36 using System.Web.Services.Protocols;\r
37 using System.Web.Services.Configuration;\r
38 #if NET_2_0 && CONFIGURATION_2_0
39 using WSConfig = System.Web.Services.Configuration.WebServicesSection;
40 using WSProtocol = System.Web.Services.Configuration.WebServiceProtocols;
41 #endif
42 \r
43 namespace System.Web.Services.Description {\r
44         public class ServiceDescriptionReflector \r
45         {\r
46                 ServiceDescriptionCollection serviceDescriptions;\r
47                 Types types;\r
48 \r
49                 #region Constructors\r
50         \r
51                 public ServiceDescriptionReflector ()\r
52                 {\r
53                         types = new Types ();\r
54                         serviceDescriptions = new ServiceDescriptionCollection ();\r
55                 }\r
56                 \r
57                 #endregion // Constructors\r
58 \r
59                 #region Properties\r
60 \r
61                 public XmlSchemas Schemas {\r
62                         get { return types.Schemas; }\r
63                 }\r
64 \r
65                 public ServiceDescriptionCollection ServiceDescriptions {\r
66                         get { return serviceDescriptions; }\r
67                 }\r
68 \r
69 \r
70                 #endregion // Properties\r
71 \r
72                 #region Methods\r
73 \r
74                 public void Reflect (Type type, string url)\r
75                 {\r
76                         XmlSchemaExporter schemaExporter = new XmlSchemaExporter (Schemas);\r
77                         SoapSchemaExporter soapSchemaExporter = new SoapSchemaExporter (Schemas);\r
78                         \r
79                         new SoapProtocolReflector ().Reflect (this, type, url, schemaExporter, soapSchemaExporter);\r
80                         \r
81                         if (WSConfig.IsSupported (WSProtocol.HttpGet))\r
82                                 new HttpGetProtocolReflector ().Reflect (this, type, url, schemaExporter, soapSchemaExporter);\r
83                         \r
84 #if NET_1_1\r
85                         if (WSConfig.IsSupported (WSProtocol.HttpPost) || WSConfig.IsSupported (WSProtocol.HttpPostLocalhost))\r
86 #else\r
87                         if (WSConfig.IsSupported (WSProtocol.HttpPost))\r
88 #endif\r
89                                 new HttpPostProtocolReflector ().Reflect (this, type, url, schemaExporter, soapSchemaExporter);\r
90                                 \r
91                         int i=0;\r
92                         while (i < types.Schemas.Count) {\r
93                                 if (types.Schemas[i].Items.Count == 0) types.Schemas.RemoveAt (i);\r
94                                 else i++;\r
95                         }\r
96                         \r
97                         if (serviceDescriptions.Count == 1)\r
98                                 serviceDescriptions[0].Types = types;\r
99                         else\r
100                         {\r
101                                 foreach (ServiceDescription d in serviceDescriptions)\r
102                                 {\r
103                                         d.Types = new Types();\r
104                                         for (int n=0; n<types.Schemas.Count; n++)\r
105                                                 ProtocolReflector.AddImport (d, types.Schemas[n].TargetNamespace, GetSchemaUrl (url, n));\r
106                                 }\r
107                         }\r
108                 }\r
109                 \r
110                 string GetSchemaUrl (string baseUrl, int id)\r
111                 {\r
112                         return baseUrl + "?schema=" + id;\r
113                 }\r
114                 \r
115                 \r
116                 #endregion\r
117         }\r
118 }