2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ProvidersHelper.cs
1 //
2 // System.Web.Configuration.ProvidersHelper
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 #if NET_2_0
31
32 using System;
33 using System.Collections;
34 using System.Configuration;
35 using System.Configuration.Provider;
36 using System.Data.Common;
37 using System.Data.SqlClient;
38 using System.IO;
39 using System.Reflection;
40 using System.Web;
41 using System.Web.Compilation;
42 using System.Collections.Specialized;
43
44 namespace System.Web.Configuration {
45
46         public static class ProvidersHelper
47         {
48                 public static ProviderBase InstantiateProvider (ProviderSettings providerSettings, Type providerType)
49                 {
50                         Type settingsType = HttpApplication.LoadType (providerSettings.Type);
51                         if (settingsType == null)
52                                 throw new ConfigurationErrorsException (String.Format ("Could not find type: {0}",
53                                                                                        providerSettings.Type));
54                         if (!providerType.IsAssignableFrom (settingsType))
55                                 throw new ConfigurationErrorsException (String.Format ("Provider '{0}' must subclass from '{1}'",
56                                                                                        providerSettings.Name, providerType));
57
58                         ProviderBase provider = Activator.CreateInstance (settingsType) as ProviderBase;
59
60                         NameValueCollection col = new NameValueCollection (providerSettings.Parameters);
61                         provider.Initialize (providerSettings.Name, col);
62
63                         return provider;
64                 }
65
66                 public static void InstantiateProviders (ProviderSettingsCollection configProviders, ProviderCollection providers, Type providerType)
67                 {
68                         if (!typeof (ProviderBase).IsAssignableFrom (providerType))
69                                 throw new ConfigurationErrorsException (String.Format ("type '{0}' must subclass from ProviderBase", providerType));
70
71                         foreach (ProviderSettings settings in configProviders)
72                                 providers.Add (InstantiateProvider (settings, providerType));
73                 }
74
75                 internal static DbProviderFactory GetDbProviderFactory (string providerName)
76                 {
77                         DbProviderFactory f = null;
78
79                         if (providerName != null && providerName != "") {
80                                 try {
81                                         f = DbProviderFactories.GetFactory(providerName);
82                                 }
83                                 catch (Exception e) { Console.WriteLine (e); /* nada */ }
84                                 if (f != null)
85                                         return f;
86                         }
87
88                         return SqlClientFactory.Instance;
89                 }
90         }
91
92 }
93
94 #endif
95