[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 |
|
---|
[11090] | 22 | using System;
|
---|
| 23 | using System.IO;
|
---|
[10506] | 24 | using HeuristicLab.Collections;
|
---|
[10332] | 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
[11090] | 27 | using HeuristicLab.Persistence.Core;
|
---|
[10332] | 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[11090] | 29 | using HeuristicLab.Persistence.Default.Xml;
|
---|
[10332] | 30 |
|
---|
[10506] | 31 | namespace HeuristicLab.Scripting {
|
---|
[10332] | 32 | [Item("VariableStore", "Represents a variable store.")]
|
---|
| 33 | [StorableClass]
|
---|
[11090] | 34 | public class VariableStore : ObservableDictionary<string, object>, IContent, IDeepCloneable {
|
---|
[10332] | 35 | [StorableConstructor]
|
---|
| 36 | protected VariableStore(bool deserializing) : base(deserializing) { }
|
---|
[11090] | 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(string.Format(@"VariableStore: Variable ""{0}"" could not be cloned.", kvp.Key), pe);
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
| 50 | }
|
---|
| 51 | }
|
---|
[10332] | 52 | public VariableStore() : base() { }
|
---|
[11090] | 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 T CloneByPersistence<T>(T 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<T>(deserializerStream);
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
[10332] | 70 | }
|
---|
| 71 | }
|
---|