2005-06-17 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / System.Configuration / System.Configuration / ConfigurationManager.cs
1 //
2 // System.Configuration.ConfigurationManager.cs
3 //
4 // Authors:
5 //      Duncan Mak (duncan@ximian.com)
6 //      Lluis Sanchez Gual (lluis@novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 //
27 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
28 //
29 #if NET_2_0
30 using System;
31 using System.Collections;
32 using System.Collections.Specialized;
33 using System.Reflection;
34 using System.Xml;
35 using System.IO;
36 using System.Configuration.Internal;
37
38 namespace System.Configuration {
39
40         public abstract class ConfigurationManager
41         {
42                 static InternalConfigurationFactory configFactory = new InternalConfigurationFactory ();
43                 
44                 ConfigurationManager ()
45                 {
46                 }
47                 
48                 public static Configuration OpenExeConfiguration (ConfigurationUserLevel userLevel)
49                 {
50                         return OpenExeConfiguration (userLevel, null);
51                 }
52                 
53                 [MonoTODO ("userLevel")]
54                 public static Configuration OpenExeConfiguration (ConfigurationUserLevel userLevel, string exePath)
55                 {
56                         if (exePath == null) {
57                                 exePath = Assembly.GetCallingAssembly ().Location;
58                         } else if (!File.Exists (exePath)) {
59                                 throw new ArgumentException ("File not found or not readable.", "exePath");
60                         }
61
62                         ExeConfigurationFileMap map = new ExeConfigurationFileMap ();
63                         map.ExeConfigFilename = exePath + ".config";
64                         return ConfigurationFactory.Create (typeof(ExeConfigurationHost), map);
65                 }
66
67                 [MonoTODO ("userLevel")]
68                 public static Configuration OpenMappedExeConfiguration (ExeConfigurationFileMap fileMap, ConfigurationUserLevel userLevel)
69                 {
70                         return ConfigurationFactory.Create (typeof(ExeConfigurationHost), fileMap);
71                 }
72
73                 public static Configuration OpenMachineConfiguration ()
74                 {
75                         ConfigurationFileMap map = new ConfigurationFileMap ();
76                         return ConfigurationFactory.Create (typeof(MachineConfigurationHost), map);
77                 }
78                 
79                 public static Configuration OpenMappedMachineConfiguration (ConfigurationFileMap fileMap)
80                 {
81                         return ConfigurationFactory.Create (typeof(MachineConfigurationHost), fileMap);
82                 }
83                 
84                 internal static IInternalConfigConfigurationFactory ConfigurationFactory {
85                         get { return configFactory; }
86                 }
87         }
88 }
89
90 #endif