Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.3/HeuristicLab.Persistence/3.3/Core/ConfigurationService.cs @ 18242

Last change on this file since 18242 was 5445, checked in by swagner, 13 years ago

Updated year of copyrights (#1406)

File size: 10.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.IO;
25using System.Linq;
26using System.Reflection;
27using System.Text;
28using HeuristicLab.Persistence.Default.Xml;
29using HeuristicLab.Persistence.Interfaces;
30using HeuristicLab.Tracing;
31
32namespace HeuristicLab.Persistence.Core {
33
34  /// <summary>
35  /// Provides a persistable configuration of primitive and composite serializers for
36  /// all registered serial formats. Custom formats can be defined and will be saved
37  /// for future sessions. A default configuration can be generated through reflection.
38  ///
39  /// This class has only a single instance.
40  /// </summary>
41  public class ConfigurationService {
42
43    private static ConfigurationService instance;
44    private readonly Dictionary<IFormat, Configuration> customConfigurations;
45
46    /// <summary>
47    /// List of all available primitive serializers.
48    /// </summary>
49    public Dictionary<Type, List<IPrimitiveSerializer>> PrimitiveSerializers { get; private set; }
50
51    /// <summary>
52    /// List of all available composite serializers (discovered through reflection).
53    /// </summary>
54    public List<ICompositeSerializer> CompositeSerializers { get; private set; }
55
56    /// <summary>
57    /// List of all available formats (discovered through reflection).   
58    /// </summary>
59    public List<IFormat> Formats { get; private set; }
60
61    /// <summary>
62    /// Gets the singleton instance.
63    /// </summary>
64    /// <value>The singleton instance.</value>
65    public static ConfigurationService Instance {
66      get {
67        if (instance == null)
68          instance = new ConfigurationService();
69        return instance;
70      }
71    }
72
73    private ConfigurationService() {
74      PrimitiveSerializers = new Dictionary<Type, List<IPrimitiveSerializer>>();
75      CompositeSerializers = new List<ICompositeSerializer>();
76      customConfigurations = new Dictionary<IFormat, Configuration>();
77      Formats = new List<IFormat>();
78      Reset();
79      LoadSettings();
80    }
81
82    /// <summary>
83    /// Loads the settings.
84    /// </summary>
85    public void LoadSettings() {
86      LoadSettings(false);
87    }
88
89    /// <summary>
90    /// Loads the settings.
91    /// </summary>
92    /// <param name="throwOnError">if set to <c>true</c> throw on error.</param>
93    public void LoadSettings(bool throwOnError) {
94      try {
95        TryLoadSettings();
96      } catch (Exception e) {
97        if (throwOnError) {
98          throw new PersistenceException("Could not load persistence settings.", e);
99        } else {
100          Logger.Warn("Could not load settings.", e);
101        }
102      }
103    }
104
105    /// <summary>
106    /// Tries to load the settings (i.e custom configurations).
107    /// </summary>
108    protected void TryLoadSettings() {
109      if (String.IsNullOrEmpty(Properties.Settings.Default.CustomConfigurations) ||
110          String.IsNullOrEmpty(Properties.Settings.Default.CustomConfigurationsTypeCache))
111        return;
112      Deserializer deSerializer = new Deserializer(
113        XmlParser.ParseTypeCache(
114        new StringReader(
115          Properties.Settings.Default.CustomConfigurationsTypeCache)));
116      XmlParser parser = new XmlParser(
117        new StringReader(
118          Properties.Settings.Default.CustomConfigurations));
119      var newCustomConfigurations = (Dictionary<IFormat, Configuration>)
120        deSerializer.Deserialize(parser);
121      foreach (var config in newCustomConfigurations) {
122        customConfigurations[config.Key] = config.Value;
123      }
124    }
125
126    /// <summary>
127    /// Saves the settings (i.e custom configurations).
128    /// </summary>
129    protected void SaveSettings() {
130      Serializer serializer = new Serializer(
131        customConfigurations,
132        GetDefaultConfig(new XmlFormat()),
133        "CustomConfigurations");
134      XmlGenerator generator = new XmlGenerator();
135      StringBuilder configurationString = new StringBuilder();
136      foreach (ISerializationToken token in serializer) {
137        configurationString.Append(generator.Format(token));
138      }
139      StringBuilder configurationTypeCacheString = new StringBuilder();
140      foreach (string s in generator.Format(serializer.TypeCache))
141        configurationTypeCacheString.Append(s);
142      Properties.Settings.Default.CustomConfigurations =
143        configurationString.ToString();
144      Properties.Settings.Default.CustomConfigurationsTypeCache =
145        configurationTypeCacheString.ToString();
146      Properties.Settings.Default.Save();
147    }
148
149
150    /// <summary>
151    /// Rediscover available serializers and discard all custom configurations.
152    /// </summary>
153    public void Reset() {
154      customConfigurations.Clear();
155      PrimitiveSerializers.Clear();
156      CompositeSerializers.Clear();
157      Assembly defaultAssembly = Assembly.GetExecutingAssembly();
158      DiscoverFrom(defaultAssembly);
159      try {
160        foreach (Assembly a in AppDomain.CurrentDomain.GetAssemblies())
161          if (a != defaultAssembly)
162            DiscoverFrom(a);
163      } catch (AppDomainUnloadedException x) {
164        Logger.Warn("could not get list of assemblies, AppDomain has already been unloaded", x);
165      }
166      SortCompositeSerializers();
167    }
168
169    private class PriortiySorter : IComparer<ICompositeSerializer> {
170      public int Compare(ICompositeSerializer x, ICompositeSerializer y) {
171        return y.Priority - x.Priority;
172      }
173    }
174
175    /// <summary>
176    /// Sorts the composite serializers according to their priority.
177    /// </summary>
178    protected void SortCompositeSerializers() {
179      CompositeSerializers.Sort(new PriortiySorter());
180    }
181
182    /// <summary>
183    /// Discovers serializers from an assembly.
184    /// </summary>
185    /// <param name="a">An Assembly.</param>
186    protected void DiscoverFrom(Assembly a) {
187      try {
188        foreach (Type t in a.GetTypes()) {
189          if (t.GetInterface(typeof(IPrimitiveSerializer).FullName) != null &&
190              !t.IsAbstract && t.GetConstructor(Type.EmptyTypes) != null && !t.ContainsGenericParameters) {
191            IPrimitiveSerializer primitiveSerializer =
192              (IPrimitiveSerializer)Activator.CreateInstance(t, true);
193            if (!PrimitiveSerializers.ContainsKey(primitiveSerializer.SerialDataType))
194              PrimitiveSerializers.Add(primitiveSerializer.SerialDataType, new List<IPrimitiveSerializer>());
195            PrimitiveSerializers[primitiveSerializer.SerialDataType].Add(primitiveSerializer);
196          }
197          if (t.GetInterface(typeof(ICompositeSerializer).FullName) != null &&
198              !t.IsAbstract && t.GetConstructor(Type.EmptyTypes) != null && !t.ContainsGenericParameters) {
199            CompositeSerializers.Add((ICompositeSerializer)Activator.CreateInstance(t, true));
200          }
201          if (t.GetInterface(typeof(IFormat).FullName) != null &&
202             !t.IsAbstract && t.GetConstructor(Type.EmptyTypes) != null && !t.ContainsGenericParameters) {
203            IFormat format = (IFormat)Activator.CreateInstance(t, true);
204            Formats.Add(format);
205          }
206        }
207      } catch (ReflectionTypeLoadException e) {
208        Logger.Warn("could not analyse assembly: " + a.FullName, e);
209      }
210    }
211
212    /// <summary>
213    /// Get the default (automatically discovered) configuration for a certain format.
214    /// </summary>
215    /// <param name="format">The format.</param>
216    /// <returns>The default (auto discovered) configuration.</returns>
217    public Configuration GetDefaultConfig(IFormat format) {
218      Dictionary<Type, IPrimitiveSerializer> primitiveConfig = new Dictionary<Type, IPrimitiveSerializer>();
219      if (PrimitiveSerializers.ContainsKey(format.SerialDataType)) {
220        foreach (IPrimitiveSerializer f in PrimitiveSerializers[format.SerialDataType]) {
221          if (!primitiveConfig.ContainsKey(f.SourceType))
222            primitiveConfig.Add(f.SourceType, (IPrimitiveSerializer)Activator.CreateInstance(f.GetType()));
223        }
224      } else {
225        Logger.Warn(String.Format(
226          "No primitive serializers found for format {0} with serial data type {1}",
227          format.GetType().AssemblyQualifiedName,
228          format.SerialDataType.AssemblyQualifiedName));
229      }
230      return new Configuration(
231        format,
232        primitiveConfig.Values,
233        CompositeSerializers.Where((d) => d.Priority > 0).Select(d => (ICompositeSerializer)Activator.CreateInstance(d.GetType())));
234    }
235
236
237    /// <summary>
238    /// Get a configuration for a certain format. This returns a fresh copy of a custom configuration,
239    /// if defined, otherwise returns the default (automatically discovered) configuration.
240    /// </summary>
241    /// <param name="format">The format.</param>
242    /// <returns>A Configuration</returns>
243    public Configuration GetConfiguration(IFormat format) {
244      if (customConfigurations.ContainsKey(format))
245        return customConfigurations[format].Copy();
246      return GetDefaultConfig(format);
247    }
248
249    /// <summary>
250    /// Define a new custom configuration for a ceratin format.
251    /// </summary>
252    /// <param name="configuration">The new configuration.</param>
253    public void DefineConfiguration(Configuration configuration) {
254      customConfigurations[configuration.Format] = configuration.Copy();
255      SaveSettings();
256    }
257
258  }
259
260}
Note: See TracBrowser for help on using the repository browser.