* ToolTask.cs (ProcessOuputTool): Move logging of tool
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / BuildProvider.cs
1 //
2 // System.Web.Configuration.BuildProvider
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //      Chris Toshok (toshok@ximian.com)
7 //
8 // Copyright (c) 2005 Novell, Inc (http://www.novell.com)
9 //
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
32 #if NET_2_0
33 using System;
34 using System.ComponentModel;
35 using System.Configuration;
36
37 namespace System.Web.Configuration
38 {
39         public sealed class BuildProvider : ConfigurationElement {
40
41                 static ConfigurationProperty extensionProp;
42                 static ConfigurationProperty typeProp;
43                 static ConfigurationPropertyCollection properties;
44
45                 static BuildProvider ()
46                 {
47                         extensionProp = new ConfigurationProperty ("extension", typeof (string), "",
48                                                                    TypeDescriptor.GetConverter (typeof (string)), PropertyHelper.NonEmptyStringValidator,
49                                                                    ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
50                         typeProp = new ConfigurationProperty ("type", typeof (string), "",
51                                                               TypeDescriptor.GetConverter (typeof (string)), PropertyHelper.NonEmptyStringValidator,
52                                                               ConfigurationPropertyOptions.IsRequired);
53                         properties = new ConfigurationPropertyCollection();
54
55                         properties.Add (extensionProp);
56                         properties.Add (typeProp);
57                 }
58
59                 internal BuildProvider ()
60                 {
61                 }
62
63                 public BuildProvider (string extension, string type)
64                 {
65                         this.Extension = extension;
66                         this.Type = type;
67                 }
68
69                 [StringValidator (MinLength = 1)]
70                 [ConfigurationProperty ("extension", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
71                 public string Extension {
72                         get { return (string) base[extensionProp]; }
73                         set { base[extensionProp] = value; }
74                 }
75
76                 [StringValidator (MinLength = 1)]
77                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
78                 public string Type {
79                         get { return (string) base[typeProp]; }
80                         set { base[typeProp] = value; }
81                 }
82
83                 protected override ConfigurationPropertyCollection Properties {
84                         get { return properties; }
85                 }
86
87                 public override bool Equals (object provider)
88                 {
89                         BuildProvider p = provider as BuildProvider;
90                         if (p == null)
91                                 return false;
92
93                         return (Extension == p.Extension && Type == p.Type);
94                 }
95
96                 public override int GetHashCode ()
97                 {
98                         return (Extension.GetHashCode () + Type.GetHashCode ());
99                 }
100         }
101         
102 }
103 #endif // NET_2_0
104