New test.
[mono.git] / mcs / class / System.Web / System.Web.Configuration / ModulesConfiguration.cs
1 // 
2 // System.Web.Configuration.ModulesConfiguration
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //      Miguel de Icaza (miguel@novell.com)
7 //
8 // (c) 2002 Ximian, Inc. (http://www.ximian.com)
9 // (C) 2005 Novell, Inc. (http://www.novell.com)
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32 using System;
33 using System.Collections;
34
35 namespace System.Web.Configuration
36 {
37         class ModuleItem {
38                 public string Name;
39                 public Type Type;
40                 
41                 public ModuleItem (string name, Type type)
42                 {
43                         Name = name;
44                         Type = type;
45                 }
46         }
47                 
48         class ModulesConfiguration
49         {
50                 ArrayList Modules;
51
52                 private ModulesConfiguration ()
53                 {
54                 }
55
56                 public ModulesConfiguration (ModulesConfiguration parent)
57                 {
58                         if (parent != null)
59                                 Modules = new ArrayList (parent.Modules);
60                         else
61                                 Modules = new ArrayList (8);
62                 }
63
64                 public void Add (string name, Type type)
65                 {
66                         Modules.Add (new ModuleItem (name, type));
67                 }
68                 
69                 public void Add (string name, string type)
70                 {
71                         Type item_type;
72                         
73                         try {
74                                 item_type = Type.GetType (type, true);
75                         } catch (Exception e){
76                                 throw new HttpException (
77                                         String.Format ("Failed to load module `{0}' from type `{1}'", name, type), e);
78                         }
79
80                         if (!typeof (IHttpModule).IsAssignableFrom (item_type))
81                                 throw new HttpException (
82                                         String.Format ("The type {0} can not be assigned to IHttpHandler in the <httpModule> section",
83                                                        name));
84
85                         Add (name, item_type);
86                 }
87
88                 public ModuleItem Remove (string name)
89                 {
90                         int end = Modules.Count;
91
92                         for (int i = 0; i < end; i++) {
93                                 ModuleItem item = (ModuleItem) Modules [i];
94
95                                 if (item.Name == name){
96                                         Modules.RemoveAt (i);
97                                         return item;
98                                 }
99                         }
100                         return null;
101                 }
102
103                 public void Clear ()
104                 {
105                         Modules.Clear ();
106                 }
107
108                 public HttpModuleCollection LoadModules (HttpApplication app)
109                 {
110                         HttpModuleCollection coll = new HttpModuleCollection ();
111                         foreach (ModuleItem item in Modules){
112                                 IHttpModule module = (IHttpModule) Activator.CreateInstance (item.Type, true);
113                                 module.Init (app);
114                                 coll.AddModule (item.Name, module);
115                         }
116
117                         return coll;
118                 }
119         }
120 }
121