Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / class / System.Data / System.Data.Common / DbProviderFactories.cs
1 //
2 // System.Data.Common.DbProviderFactories.cs
3 //
4 // Author:
5 //   Sureshkumar T (tsureshkumar@novell.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Tim Coleman, 2003
9 //
10
11 //
12 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34 using System.Threading;
35 using System.Reflection;
36 using System.Collections;
37 using System.Configuration;
38
39 namespace System.Data.Common {
40         public static class DbProviderFactories
41         {
42                 private static object configEntries = null; // DataSet
43
44                 internal const string CONFIG_SECTION_NAME        = "system.data";
45                 internal const string CONFIG_SEC_TABLE_NAME      = "DbProviderFactories";
46
47                 #region Methods
48
49                 public static DbProviderFactory GetFactory (DataRow providerRow)
50                 {
51                         string assemblyType = (string) providerRow ["AssemblyQualifiedName"];
52 #if TARGET_JVM // case insensitive GetType is not supported
53                         Type type = Type.GetType (assemblyType, false);
54 #else
55                         Type type = Type.GetType (assemblyType, false, true);
56 #endif
57                         if (type != null && type.IsSubclassOf (typeof (DbProviderFactory))) {
58                                 // Provider factories are singletons with Instance field having
59                                 // the sole instance
60                                 FieldInfo field = type.GetField ("Instance", BindingFlags.Public |
61                                         BindingFlags.Static);
62                                 if (field != null) {
63                                         return field.GetValue (null) as DbProviderFactory;
64                                 }
65                         }
66
67                         throw new ConfigurationErrorsException("Failed to find or load the registered .Net Framework Data Provider.");
68                 }
69
70                 public static DbProviderFactory GetFactory (string providerInvariantName)
71                 {
72                         DataTable table = GetFactoryClasses ();
73                         if (table != null) {
74                                 DataRow row = table.Rows.Find (providerInvariantName);
75                                 if (row != null)
76                                         return GetFactory (row);
77                         }
78                         throw new ConfigurationErrorsException (String.Format("Failed to find or load the registered .Net Framework Data Provider '{0}'.", providerInvariantName));
79                 }
80                 
81 #if NET_4_5
82                 [MonoTODO]
83                 public static DbProviderFactory GetFactory (DbConnection connection)
84                 {
85                         throw new NotImplementedException ();
86                 }
87 #endif
88
89                 public static DataTable GetFactoryClasses ()
90                 {
91                                 DataSet ds = GetConfigEntries ();
92                                 DataTable table = ds != null ? ds.Tables [CONFIG_SEC_TABLE_NAME] : null;
93                                 if (table != null)
94                                         table = table.Copy (); // avoid modifications by user
95                                 return table;
96                 }
97
98                 #endregion // Methods
99
100                 #region Internal Methods
101
102                 internal static DataSet GetConfigEntries ()
103                 {
104                         if (configEntries != null)
105                                 return configEntries as DataSet;
106
107                         DataSet ds = (DataSet) ConfigurationManager.GetSection (CONFIG_SECTION_NAME);
108                         Interlocked.CompareExchange (ref configEntries, ds, null);
109                         return configEntries as DataSet;
110                 }
111
112                 #endregion Internal Methods
113         }
114 }