forgotten ifdefs
[mono.git] / mcs / class / System.Web / System.Web.Compilation / WsdlBuildProvider.cs
1 //
2 // System.Web.Compilation.WsdlBuildProvider
3 //
4 // Authors:
5 //      Marek Habersack <grendello@gmail.com>
6 //
7 // (C) 2006 Marek Habersack
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 #if NET_2_0 && WEBSERVICES_DEP
32
33 using System;
34 using System.CodeDom;
35 using System.CodeDom.Compiler;
36 using System.Collections;
37 using System.IO;
38 using System.Reflection;
39 using System.Web.UI;
40 using System.Web.Services.Description;
41 using System.Xml.Serialization;
42
43 namespace System.Web.Compilation {
44
45         [BuildProviderAppliesTo (BuildProviderAppliesTo.Web|BuildProviderAppliesTo.Code)]
46         sealed class WsdlBuildProvider : BuildProvider {
47                 public WsdlBuildProvider()
48                 {
49                 }
50
51                 public override void GenerateCode (AssemblyBuilder assemblyBuilder)
52                 {
53         
54                         CodeCompileUnit unit = new CodeCompileUnit ();
55                         CodeNamespace proxyCode = GetCodeNamespace ();
56                         unit.Namespaces.Add (proxyCode);
57                         
58                         string path = VirtualPathUtility.ToAbsolute (VirtualPath);
59                         ServiceDescription description = ServiceDescription.Read (path);
60                         ServiceDescriptionImporter importer = new ServiceDescriptionImporter ();
61                                 
62                         importer.AddServiceDescription (description, null, null);
63                         importer.Style = ServiceDescriptionImportStyle.Client;
64                         importer.CodeGenerator = assemblyBuilder.CodeDomProvider;
65                         importer.CodeGenerationOptions = CodeGenerationOptions.GenerateProperties | CodeGenerationOptions.GenerateNewAsync;
66                         importer.Import (proxyCode, unit);
67                         
68                         TextWriter writer = assemblyBuilder.CreateCodeFile (this);
69                         try {
70                                 if (writer != null)
71                                         assemblyBuilder.CodeDomProvider.GenerateCodeFromCompileUnit (unit, writer, null);
72                         } finally {
73                                 writer.Close ();
74                         }
75                 }
76                 
77                 CodeNamespace GetCodeNamespace()
78                 {
79                         CodeNamespace codeNamespace = new CodeNamespace(null);
80                         codeNamespace.Comments.Add(
81                                 new CodeCommentStatement("\n This source code was auto-generated by Mono Framework" + Environment.Version + "\n"));
82                         
83                         return codeNamespace;
84                 }
85         }
86 }
87 #endif
88