Mark tests as not working under TARGET_JVM
[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 #if NET_2_0
35
36 using System.Threading;
37 using System.Reflection;
38 using System.Collections;
39 using System.Configuration;
40
41 namespace System.Data.Common {
42         public static class DbProviderFactories
43         {
44                 private static object configEntries = null; // DataSet
45
46                 internal const string CONFIG_SECTION_NAME        = "system.data";
47                 internal const string CONFIG_SEC_TABLE_NAME      = "DbProviderFactories";
48
49                 #region Methods
50
51                 public static DbProviderFactory GetFactory (DataRow providerRow)
52                 {
53                         string assemblyType = (string) providerRow ["AssemblyQualifiedName"];
54 #if TARGET_JVM // case insensitive GetType is not supported
55                         Type type = Type.GetType (assemblyType, false);
56 #else
57                         Type type = Type.GetType (assemblyType, false, true);
58 #endif
59                         if (type != null && type.IsSubclassOf (typeof (DbProviderFactory))) {
60                                 // Provider factories are singletons with Instance field having
61                                 // the sole instance
62                                 FieldInfo field = type.GetField ("Instance", BindingFlags.Public |
63                                         BindingFlags.Static);
64                                 if (field != null) {
65                                         return field.GetValue (null) as DbProviderFactory;
66                                 }
67                         }
68
69                         throw new ConfigurationException("DataProvider is missing!");
70                 }
71
72                 public static DbProviderFactory GetFactory (string providerInvariantName)
73                 {
74                         DataTable table = GetFactoryClasses ();
75                         if (table != null) {
76                                 DataRow row = table.Rows.Find (providerInvariantName);
77                                 if (row != null)
78                                         return GetFactory (row);
79                         }
80                         throw new ConfigurationException ("DataProvider is not found!");
81                 }
82
83                 public static DataTable GetFactoryClasses ()
84                 {
85                                 DataSet ds = GetConfigEntries ();
86                                 DataTable table = ds != null ? ds.Tables [CONFIG_SEC_TABLE_NAME] : null;
87                                 if (table != null)
88                                         table = table.Copy (); // avoid modifications by user
89                                 return table;
90                 }
91
92                 #endregion // Methods
93
94                 #region Internal Methods
95
96                 internal static DataSet GetConfigEntries ()
97                 {
98                         if (configEntries != null)
99                                 return configEntries as DataSet;
100
101                         DataSet ds = (DataSet) ConfigurationManager.GetSection (CONFIG_SECTION_NAME);
102                         Interlocked.CompareExchange (ref configEntries, ds, null);
103                         return configEntries as DataSet;
104                 }
105
106                 #endregion Internal Methods
107         }
108 }
109
110 #endif // NET_2_0