use RuntimeEnvironment.SystemConfigurationFile
[mono.git] / mcs / class / System.Configuration / System.Configuration / InternalConfigurationHost.cs
1 //
2 // System.Configuration.InternalConfigurationHost.cs
3 //
4 // Authors:
5 //  Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
27 //
28
29 #if NET_2_0
30
31 using System;
32 using System.IO;
33 using System.Security;
34 using System.Configuration.Internal;
35
36 namespace System.Configuration
37 {
38         abstract class InternalConfigurationHost: IInternalConfigHost
39         {
40                 public virtual object CreateConfigurationContext (string configPath, string locationSubPath)
41                 {
42                         return null;
43                 }
44                 
45                 public virtual object CreateDeprecatedConfigContext (string configPath)
46                 {
47                         throw new NotImplementedException ();
48                 }
49                 
50                 public virtual void DeleteStream (string streamName)
51                 {
52                         File.Delete (streamName);
53                 }
54                 
55                 string IInternalConfigHost.DecryptSection (string encryptedXml, ProtectedConfigurationProvider protectionProvider, ProtectedConfigurationSection protectedSection)
56                 {
57                         return protectedSection.DecryptSection (encryptedXml, protectionProvider);
58                 }
59                 
60                 string IInternalConfigHost.EncryptSection (string clearXml, ProtectedConfigurationProvider protectionProvider, ProtectedConfigurationSection protectedSection)
61                 {
62                         return protectedSection.EncryptSection (clearXml, protectionProvider);
63                 }
64                 
65                 public virtual string GetConfigPathFromLocationSubPath (string configPath, string locationSubPath)
66                 {
67                         return configPath;
68                 }
69                 
70                 public virtual Type GetConfigType (string typeName, bool throwOnError)
71                 {
72                         Type type = Type.GetType (typeName);
73                         if (type == null && throwOnError)
74                                 throw new ConfigurationErrorsException ("Type '" + typeName + "' not found.");
75                         return type;
76                 }
77                 
78                 public virtual string GetConfigTypeName (Type t)
79                 {
80                         return t.AssemblyQualifiedName;
81                 }
82                 
83                 public virtual void GetRestrictedPermissions (IInternalConfigRecord configRecord, out PermissionSet permissionSet, out bool isHostReady)
84                 {
85                         throw new NotImplementedException ();
86                 }
87                 
88                 public abstract string GetStreamName (string configPath);
89                 public abstract void Init (IInternalConfigRoot root, params object[] hostInitParams);
90                 public abstract void InitForConfiguration (ref string locationSubPath, out string configPath, out string locationConfigPath, IInternalConfigRoot root, params object[] hostInitConfigurationParams);
91                 
92                 [MonoTODO ("remote config")]
93                 public virtual string GetStreamNameForConfigSource (string streamName, string configSource)
94                 {
95                         throw new NotSupportedException ("mono does not support remote configuration");
96                 }
97                 
98                 public virtual object GetStreamVersion (string streamName)
99                 {
100                         throw new NotImplementedException ();
101                 }
102                 
103                 public virtual IDisposable Impersonate ()
104                 {
105                         throw new NotImplementedException ();
106                 }
107                 
108                 public virtual bool IsAboveApplication (string configPath)
109                 {
110                         throw new NotImplementedException ();
111                 }
112                 
113                 public virtual bool IsConfigRecordRequired (string configPath)
114                 {
115                         throw new NotImplementedException ();
116                 }
117                 
118                 public virtual bool IsDefinitionAllowed (string configPath, ConfigurationAllowDefinition allowDefinition, ConfigurationAllowExeDefinition allowExeDefinition)
119                 {
120                         switch (allowDefinition) {
121                                 case ConfigurationAllowDefinition.MachineOnly:
122                                         return configPath == "machine";
123                                 case ConfigurationAllowDefinition.MachineToApplication:
124                                         return configPath == "machine" || configPath == "exe";
125                                 default:
126                                         return true;
127                         }
128                 }
129                 
130                 public virtual bool IsFile (string streamName)
131                 {
132                         throw new NotImplementedException ();
133                 }
134
135                 public virtual bool IsFullTrustSectionWithoutAptcaAllowed (IInternalConfigRecord configRecord)
136                 {
137                         throw new NotImplementedException ();
138                 }
139
140                 public virtual bool IsInitDelayed (IInternalConfigRecord configRecord)
141                 {
142                         throw new NotImplementedException ();
143                 }
144
145                 public virtual bool IsLocationApplicable (string configPath)
146                 {
147                         throw new NotImplementedException ();
148                 }
149
150                 public virtual bool IsRemote {
151                         get {
152                                 throw new NotImplementedException ();
153                         }
154                 }
155
156                 public virtual bool IsSecondaryRoot (string configPath)
157                 {
158                         throw new NotImplementedException ();
159                 }
160
161                 public virtual bool IsTrustedConfigPath (string configPath)
162                 {
163                         throw new NotImplementedException ();
164                 }
165                 
166                 public virtual Stream OpenStreamForRead (string streamName)
167                 {
168 #if TARGET_JVM
169                         if (String.CompareOrdinal (streamName, System.Runtime.InteropServices.RuntimeEnvironment.SystemConfigurationFile) == 0)
170                                 return (Stream) vmw.common.IOUtils.getStreamForGHConfigs (streamName);
171 #endif
172                         if (!File.Exists (streamName))
173                                 throw new ConfigurationException ("File '" + streamName + "' not found");
174                                 
175                         return new FileStream (streamName, FileMode.Open, FileAccess.Read);
176                 }
177
178                 public virtual Stream OpenStreamForRead (string streamName, bool assertPermissions)
179                 {
180                         throw new NotImplementedException ();
181                 }
182                 
183                 public virtual Stream OpenStreamForWrite (string streamName, string templateStreamName, ref object writeContext)
184                 {
185                         return new FileStream (streamName, FileMode.Create, FileAccess.Write);
186                 }
187
188                 public virtual Stream OpenStreamForWrite (string streamName, string templateStreamName, ref object writeContext, bool assertPermissions)
189                 {
190                         throw new NotImplementedException ();
191                 }
192                 
193                 public virtual bool PrefetchAll (string configPath, string streamName)
194                 {
195                         throw new NotImplementedException ();
196                 }
197                 
198                 public virtual bool PrefetchSection (string sectionGroupName, string sectionName)
199                 {
200                         throw new NotImplementedException ();
201                 }
202
203                 public virtual void RequireCompleteInit (IInternalConfigRecord configRecord)
204                 {
205                         throw new NotImplementedException ();
206                 }
207
208                 public virtual object StartMonitoringStreamForChanges (string streamName, StreamChangeCallback callback)
209                 {
210                         throw new NotImplementedException ();
211                 }
212                 
213                 public virtual void StopMonitoringStreamForChanges (string streamName, StreamChangeCallback callback)
214                 {
215                         throw new NotImplementedException ();
216                 }
217                 
218                 public virtual void VerifyDefinitionAllowed (string configPath, ConfigurationAllowDefinition allowDefinition, ConfigurationAllowExeDefinition allowExeDefinition, IConfigErrorInfo errorInfo)
219                 {
220                         if (!IsDefinitionAllowed (configPath, allowDefinition, allowExeDefinition))
221                                 throw new ConfigurationErrorsException ("The section can't be defined in this file (the allowed definition context is '" + allowDefinition + "').", errorInfo.Filename, errorInfo.LineNumber);
222                 }
223                 
224                 public virtual void WriteCompleted (string streamName, bool success, object writeContext)
225                 {
226                 }
227
228                 public virtual void WriteCompleted (string streamName, bool success, object writeContext, bool assertPermissions)
229                 {
230                 }
231                 
232                 public virtual bool SupportsChangeNotifications {
233                         get { return false; }
234                 }
235                 
236                 public virtual bool SupportsLocation {
237                         get { return false; }
238                 }
239                 
240                 public virtual bool SupportsPath {
241                         get { return false; }
242                 }
243                 
244                 public virtual bool SupportsRefresh {
245                         get { return false; }
246                 }
247         }
248         
249         class ExeConfigurationHost: InternalConfigurationHost
250         {
251                 ExeConfigurationFileMap map;
252                 
253                 public override void Init (IInternalConfigRoot root, params object[] hostInitParams)
254                 {
255                         map = (ExeConfigurationFileMap) hostInitParams [0];
256                 }
257                 
258                 public override string GetStreamName (string configPath)
259                 {
260                         switch (configPath) {
261                                 case "exe": return map.ExeConfigFilename; 
262                                 case "local": return map.LocalUserConfigFilename;
263                                 case "roaming": return map.LocalUserConfigFilename;
264                                 case "machine": return map.MachineConfigFilename;
265                                 default: return map.ExeConfigFilename;
266                         }
267                 }
268                 
269                 public override void InitForConfiguration (ref string locationSubPath, out string configPath, out string locationConfigPath, IInternalConfigRoot root, params object[] hostInitConfigurationParams)
270                 {
271                         map = (ExeConfigurationFileMap) hostInitConfigurationParams [0];
272                         configPath = null;
273                         string next = null;
274
275                         locationConfigPath = null;
276
277                         if ((locationSubPath == "exe" || locationSubPath == null) && map.ExeConfigFilename != null) {
278                                 configPath = "exe";
279                                 next = "local";
280                                 locationConfigPath = map.ExeConfigFilename;
281                         }
282                         
283                         if ((locationSubPath == "local" || configPath == null) && map.LocalUserConfigFilename != null) {
284                                 configPath = "local";
285                                 next = "roaming";
286                                 locationConfigPath = map.LocalUserConfigFilename;
287                         }
288                         
289                         if ((locationSubPath == "roaming" || configPath == null) && map.RoamingUserConfigFilename != null) {
290                                 configPath = "roaming";
291                                 next = "machine";
292                                 locationConfigPath = map.RoamingUserConfigFilename;
293                         }
294                         
295                         if ((locationSubPath == "machine" || configPath == null) && map.MachineConfigFilename != null) {
296                                 configPath = "machine";
297                                 next = null;
298                         }
299
300                         locationSubPath = next;
301                 }
302         }
303         
304         class MachineConfigurationHost: InternalConfigurationHost
305         {
306                 ConfigurationFileMap map;
307                 
308                 public override void Init (IInternalConfigRoot root, params object[] hostInitParams)
309                 {
310                         map = (ConfigurationFileMap) hostInitParams [0];
311                 }
312                 
313                 public override string GetStreamName (string configPath)
314                 {
315                         return map.MachineConfigFilename;
316                 }
317                 
318                 public override void InitForConfiguration (ref string locationSubPath, out string configPath, out string locationConfigPath, IInternalConfigRoot root, params object[] hostInitConfigurationParams)
319                 {
320                         map = (ConfigurationFileMap) hostInitConfigurationParams [0];
321                         locationSubPath = null;
322                         configPath = null;
323                         locationConfigPath = null;
324                 }
325
326                 public override bool IsDefinitionAllowed (string configPath, ConfigurationAllowDefinition allowDefinition, ConfigurationAllowExeDefinition allowExeDefinition)
327                 {
328                         return true;
329                 }
330         }
331 }
332
333 #endif