merge -r 58784:58785
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / Compiler.cs
1 //
2 // System.Web.Configuration.CompilerCollection
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
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
32
33 using System;
34 using System.CodeDom.Compiler;
35 using System.Configuration;
36
37 namespace System.Web.Configuration
38 {
39         public sealed class Compiler : ConfigurationElement
40         {
41                 static ConfigurationProperty compilerOptionsProp;
42                 static ConfigurationProperty extensionProp;
43                 static ConfigurationProperty languageProp;
44                 static ConfigurationProperty typeProp;
45                 static ConfigurationProperty warningLevelProp;
46
47                 static ConfigurationPropertyCollection properties;
48
49                 static Compiler ()
50                 {
51                         compilerOptionsProp = new ConfigurationProperty("compilerOptions", typeof (string), "");
52                         extensionProp = new ConfigurationProperty("extension", typeof (string), "");
53                         languageProp = new ConfigurationProperty("language", typeof (string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
54                         typeProp = new ConfigurationProperty("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
55                         warningLevelProp = new ConfigurationProperty("warningLevel", typeof (int), 0);
56
57                         properties = new ConfigurationPropertyCollection ();
58                         properties.Add (compilerOptionsProp);
59                         properties.Add (extensionProp);
60                         properties.Add (languageProp);
61                         properties.Add (typeProp);
62                         properties.Add (warningLevelProp);
63                 }
64
65                 internal Compiler ()
66                 {
67                 }
68
69                 public Compiler (string compilerOptions, string extension, string language, string type, int warningLevel)
70                 {
71                         this.CompilerOptions = compilerOptions;
72                         this.Extension = extension;
73                         this.Language = language;
74                         this.Type = type;
75                         this.WarningLevel = warningLevel;
76                 }
77
78                 [ConfigurationProperty ("compilerOptions", DefaultValue = "")]
79                 public string CompilerOptions {
80                         get { return (string) base[compilerOptionsProp]; }
81                         internal set { base[compilerOptionsProp] = value; }
82                 }
83
84                 [ConfigurationProperty ("extension", DefaultValue = "")]
85                 public string Extension {
86                         get { return (string) base[extensionProp]; }
87                         internal set { base[extensionProp] = value; }
88                 }
89
90                 [ConfigurationProperty ("language", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
91                 public string Language {
92                         get { return (string) base[languageProp]; }
93                         internal set { base[languageProp] = value; }
94                 }
95
96                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
97                 public string Type {
98                         get { return (string) base[typeProp]; }
99                         internal set { base[typeProp] = value; }
100                 }
101
102                 [IntegerValidator (MinValue = 0, MaxValue = 4)]
103                 [ConfigurationProperty ("warningLevel", DefaultValue = "0")]
104                 public int WarningLevel {
105                         get { return (int) base[warningLevelProp]; }
106                         internal set { base[warningLevelProp] = value; }
107                 }
108
109                 protected override ConfigurationPropertyCollection Properties {
110                         get { return properties; }
111                 }
112
113 #region CompatabilityCode
114                 [MonoTODO ("we shouldn't need this")]
115                 CodeDomProvider provider;
116                 internal CodeDomProvider Provider {
117                         get { 
118                                 if (provider == null) {
119                                         Type t = System.Type.GetType (this.Type);
120                                         provider = Activator.CreateInstance (t) as CodeDomProvider;
121                                 }
122                                 return provider;
123                         }
124                         set {
125                                 provider = value;
126                         }
127                 }
128 #endregion
129         }
130 }
131
132 #endif