Merge pull request #3962 from mkorkalo/fix_MonoBtlsContext_memory_leak
[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 using System;
32 using System.CodeDom.Compiler;
33 using System.ComponentModel;
34 using System.Configuration;
35
36 namespace System.Web.Configuration
37 {
38         public sealed class Compiler : ConfigurationElement
39         {
40                 static ConfigurationProperty compilerOptionsProp;
41                 static ConfigurationProperty extensionProp;
42                 static ConfigurationProperty languageProp;
43                 static ConfigurationProperty typeProp;
44                 static ConfigurationProperty warningLevelProp;
45
46                 static ConfigurationPropertyCollection properties;
47
48                 static Compiler ()
49                 {
50                         compilerOptionsProp = new ConfigurationProperty("compilerOptions", typeof (string), "");
51                         extensionProp = new ConfigurationProperty("extension", typeof (string), "");
52                         languageProp = new ConfigurationProperty("language", typeof (string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
53                         typeProp = new ConfigurationProperty("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
54                         warningLevelProp = new ConfigurationProperty("warningLevel", typeof (int), 0,
55                                                                      TypeDescriptor.GetConverter (typeof (int)),
56                                                                      new IntegerValidator (0, 4),
57                                                                      ConfigurationPropertyOptions.None);
58
59                         properties = new ConfigurationPropertyCollection ();
60                         properties.Add (compilerOptionsProp);
61                         properties.Add (extensionProp);
62                         properties.Add (languageProp);
63                         properties.Add (typeProp);
64                         properties.Add (warningLevelProp);
65                 }
66
67                 internal Compiler ()
68                 {
69                 }
70
71                 public Compiler (string compilerOptions, string extension, string language, string type, int warningLevel)
72                 {
73                         this.CompilerOptions = compilerOptions;
74                         this.Extension = extension;
75                         this.Language = language;
76                         this.Type = type;
77                         this.WarningLevel = warningLevel;
78                 }
79
80                 [ConfigurationProperty ("compilerOptions", DefaultValue = "")]
81                 public string CompilerOptions {
82                         get { return (string) base[compilerOptionsProp]; }
83                         internal set { base[compilerOptionsProp] = value; }
84                 }
85
86                 [ConfigurationProperty ("extension", DefaultValue = "")]
87                 public string Extension {
88                         get { return (string) base[extensionProp]; }
89                         internal set { base[extensionProp] = value; }
90                 }
91
92                 [ConfigurationProperty ("language", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
93                 public string Language {
94                         get { return (string) base[languageProp]; }
95                         internal set { base[languageProp] = value; }
96                 }
97
98                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
99                 public string Type {
100                         get { return (string) base[typeProp]; }
101                         internal set { base[typeProp] = value; }
102                 }
103
104                 [IntegerValidator (MinValue = 0, MaxValue = 4)]
105                 [ConfigurationProperty ("warningLevel", DefaultValue = "0")]
106                 public int WarningLevel {
107                         get { return (int) base[warningLevelProp]; }
108                         internal set { base[warningLevelProp] = value; }
109                 }
110
111                 protected internal override ConfigurationPropertyCollection Properties {
112                         get { return properties; }
113                 }
114         }
115 }