Merge pull request #2869 from BrzVlad/feature-mod-union-opt
[mono.git] / mcs / class / System / System.Configuration / LocalFileSettingsProvider.cs
1 //
2 // System.Configuration.LocalFileSettingsProvider.cs
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //      Atsushi Enomoto (atsushi@ximian.com)
7 //
8 // (C) 2005, 2007 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if CONFIGURATION_DEP
31
32 using System;
33 using System.Collections.Specialized;
34
35 namespace System.Configuration
36 {
37         public class LocalFileSettingsProvider : SettingsProvider, IApplicationSettingsProvider
38         {
39                 CustomizableFileSettingsProvider impl;
40
41                 public LocalFileSettingsProvider ()
42                 {
43                         impl = new CustomizableFileSettingsProvider ();
44                 }
45
46                 [MonoTODO]
47                 public SettingsPropertyValue GetPreviousVersion (SettingsContext context,
48                                                                  SettingsProperty property)
49                 {
50                         return impl.GetPreviousVersion (context, property);
51                 }
52
53
54                 [MonoTODO]
55                 public override SettingsPropertyValueCollection GetPropertyValues (SettingsContext context,
56                                                                                    SettingsPropertyCollection properties)
57                 {
58                         return impl.GetPropertyValues (context, properties);
59                 }
60
61 #if CONFIGURATION_DEP
62                 public override void Initialize (string name,
63                                                  NameValueCollection values)
64                 {
65                         if (name == null)
66                                 name = "LocalFileSettingsProvider";
67                         if (values != null)
68                                 impl.ApplicationName = values ["applicationName"];
69
70                         base.Initialize (name, values);
71                 }
72 #endif
73
74                 [MonoTODO]
75                 public void Reset (SettingsContext context)
76                 {
77                         impl.Reset (context);
78                 }
79
80                 [MonoTODO]
81                 public override void SetPropertyValues (SettingsContext context,
82                                                         SettingsPropertyValueCollection values)
83                 {
84                         impl.SetPropertyValues (context, values);
85                 }
86
87                 [MonoTODO]
88                 public void Upgrade (SettingsContext context,
89                                      SettingsPropertyCollection properties)
90                 {
91                         impl.Upgrade (context, properties);
92                 }
93
94                 public override string ApplicationName {
95                         get { return impl.ApplicationName; }
96                         set { impl.ApplicationName = value; }
97                 }
98
99 /*
100                 bool IsUserSetting (SettingsProperty prop)
101                 {
102 #if CONFIGURATION_DEP
103                         if (prop.Attributes.ContainsKey (typeof (UserScopedSettingAttribute)))
104                                 return true;
105                         else if (prop.Attributes.ContainsKey (typeof (ApplicationScopedSettingAttribute)))
106                                 return false;
107                         else
108                                 throw new ConfigurationErrorsException (
109                                                         String.Format ("The setting '{0}' does not have either an ApplicationScopedSettingAttribute or UserScopedSettingAttribute.",
110                                                                        prop.Name));
111 #else
112                         return false;
113 #endif
114                 }
115 */              
116         }
117
118 }
119
120 #endif