Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Scripting/3.3/VariableStore.cs @ 11058

Last change on this file since 11058 was 11058, checked in by abeham, 10 years ago

#2203: Made VariableStore IDeepCloneable and implemented cloning there

File size: 2.6 KB
RevLine 
[10506]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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
[11058]22using System;
23using System.IO;
[10506]24using HeuristicLab.Collections;
[10332]25using HeuristicLab.Common;
26using HeuristicLab.Core;
[11058]27using HeuristicLab.Persistence.Core;
[10332]28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[11058]29using HeuristicLab.Persistence.Default.Xml;
[10332]30
[10506]31namespace HeuristicLab.Scripting {
[10332]32  [Item("VariableStore", "Represents a variable store.")]
33  [StorableClass]
[11058]34  public class VariableStore : ObservableDictionary<string, object>, IContent, IDeepCloneable {
[10332]35    [StorableConstructor]
36    protected VariableStore(bool deserializing) : base(deserializing) { }
[11058]37    protected VariableStore(VariableStore original, Cloner cloner) {
38      cloner.RegisterClonedObject(original, this);
39      foreach (var kvp in original.dict) {
40        var clonedValue = kvp.Value as IDeepCloneable;
41        if (clonedValue != null) {
42          dict[kvp.Key] = cloner.Clone(clonedValue);
43        } else {
44          try {
45            dict[kvp.Key] = CloneByPersistence(kvp.Value);
46          } catch (PersistenceException pe) {
47            throw new NotSupportedException("VariableStore: Variable " + kvp.Key + " could not be cloned.", pe);
48          }
49        }
50      }
51    }
[10332]52    public VariableStore() : base() { }
[11058]53
54    public object Clone() {
55      return Clone(new Cloner());
56    }
57    public IDeepCloneable Clone(Cloner cloner) {
58      return new VariableStore(this, cloner);
59    }
60
61    protected object CloneByPersistence(object value) {
62      using (var serializerStream = new MemoryStream()) {
63        XmlGenerator.Serialize(value, serializerStream);
64        var bytes = serializerStream.GetBuffer();
65        using (var deserializerStream = new MemoryStream(bytes)) {
66          return XmlParser.Deserialize<VariableStore>(deserializerStream);
67        }
68      }
69    }
[10332]70  }
71}
Note: See TracBrowser for help on using the repository browser.