Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CloningRefactorBranch/HeuristicLab.Logging/Log.cs @ 887

Last change on this file since 887 was 887, checked in by gkronber, 15 years ago

Refactored cloning in all plugins except: HL.Communication, HL.Hive, HL.GP, HL.Routing, HL.Scheduling, HL.SimOpt, HL.Visualization

#285 (Cloning could be improved by creating objects at the bottom of the cloning chain with 'new' instead of the top with Activator.CreateInstance())

File size: 3.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Text;
25using System.Xml;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28
29namespace HeuristicLab.Logging {
30  public class Log : ItemBase, IVisualizationItem {
31    private ItemList myItems;
32    public ItemList Items {
33      get { return myItems; }
34      set { myItems = value; }
35    }
36
37
38    public Log() { }
39    public Log(ItemList items) {
40      myItems = items;
41    }
42
43    /// <summary>
44    /// Copy constructor to create deep clones.
45    /// </summary>
46    /// <param name="original">The instance to be cloned.</param>
47    public Log(Log original) : this(original, new Dictionary<Guid, object>()) { }
48    /// <summary>
49    /// Copy constructor for DistributedEngine clones (deep clone) reusing already cloned object references
50    /// </summary>
51    /// <remarks>Calls the copy constructor of the base class <see cref="EngineBase"/></remarks>
52    /// <param name="original">Instance to be cloned</param>
53    /// <param name="clonedObjects">Already cloned object reference</param>
54    protected Log(Log original, IDictionary<Guid, object> clonedObjects)
55      : base(original, clonedObjects) {
56      this.myItems = (ItemList)Auxiliary.Clone(original.Items, clonedObjects);
57    }
58
59    /// <summary>
60    /// Creates a deep clone with the copy constructor reusing already cloned
61    /// object references.
62    /// </summary>
63    /// <param name="clonedObjects">Already cloned objects (for referential integrity).</param>
64    /// <returns>The cloned instance.</returns>
65    public override object Clone(IDictionary<Guid, object> clonedObjects) {
66      return new Log(this, clonedObjects);
67    }
68
69    public override IView CreateView() {
70      return new LogView(this);
71    }
72
73    public event EventHandler ItemsChanged;
74    protected virtual void OnItemsChanged() {
75      if (ItemsChanged != null)
76        ItemsChanged(this, new EventArgs());
77    }
78
79    #region Persistence Methods
80    public override XmlNode GetXmlNode(string name, XmlDocument document, IDictionary<Guid, IStorable> persistedObjects) {
81      XmlNode node = base.GetXmlNode(name, document, persistedObjects);
82      node.AppendChild(PersistenceManager.Persist("Items", Items, document, persistedObjects));
83      return node;
84    }
85    public override void Populate(XmlNode node, IDictionary<Guid, IStorable> restoredObjects) {
86      base.Populate(node, restoredObjects);
87      myItems = (ItemList)PersistenceManager.Restore(node.SelectSingleNode("Items"), restoredObjects);
88    }
89    #endregion
90  }
91}
Note: See TracBrowser for help on using the repository browser.