Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Scope.cs @ 3381

Last change on this file since 3381 was 3376, checked in by swagner, 15 years ago

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

File size: 5.4 KB
RevLine 
[2]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2]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
[2830]22using HeuristicLab.Collections;
[3376]23using HeuristicLab.Common;
[1823]24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[2]25
26namespace HeuristicLab.Core {
[776]27  /// <summary>
28  /// Hierarchical container of variables (and of subscopes).
29  /// </summary>
[2653]30  [Item("Scope", "A scope which contains variables and sub-scopes.")]
[3017]31  [StorableClass]
[2687]32  public sealed class Scope : NamedItem, IScope {
[1727]33    [Storable]
[2687]34    private IScope parent;
35    public IScope Parent {
36      get { return parent; }
37      set {
[3280]38        if (parent != value) {
39          IScope oldParent = parent;
40          parent = null;
41          if (oldParent != null) oldParent.SubScopes.Remove(this);
42          parent = value;
43          if ((parent != null) && !parent.SubScopes.Contains(this)) parent.SubScopes.Add(this);
44        }
[2687]45      }
46    }
[2]47
[2932]48    [Storable]
[2653]49    private VariableCollection variables;
50    public VariableCollection Variables {
51      get { return variables; }
[1727]52    }
[1667]53
[3317]54    [Storable]
[2653]55    private ScopeList subScopes;
56    public ScopeList SubScopes {
57      get { return subScopes; }
[2]58    }
59
[776]60    /// <summary>
61    /// Initializes a new instance of <see cref="Scope"/> having "Anonymous" as default name.
62    /// </summary>
[2653]63    public Scope()
64      : base("Anonymous") {
65      parent = null;
[2932]66      variables = new VariableCollection();
[3317]67      subScopes = new ScopeList();
68      Initialize();
[2]69    }
[776]70    /// <summary>
71    /// Initializes a new instance of <see cref="Scope"/> with the given <paramref name="name"/>.
72    /// </summary>
73    /// <param name="name">The name of the scope.</param>
[2]74    public Scope(string name)
[2653]75      : base(name) {
76      parent = null;
[2932]77      variables = new VariableCollection();
[3317]78      subScopes = new ScopeList();
79      Initialize();
[2]80    }
[2931]81    public Scope(string name, string description)
82      : base(name, description) {
83      parent = null;
[2932]84      variables = new VariableCollection();
[3317]85      subScopes = new ScopeList();
86      Initialize();
[2931]87    }
[3317]88    [StorableConstructor]
89    private Scope(bool deserializing) : base(deserializing) { }
[2]90
[3317]91    [StorableHook(HookType.AfterDeserialization)]
92    private void Initialize() {
93      RegisterSubScopesEvents();
94    }
95
[776]96    /// <inheritdoc/>
[2]97    public void Clear() {
[2653]98      variables.Clear();
99      subScopes.Clear();
[2]100    }
101
[776]102    /// <inheritdoc/>
[2653]103    public override IDeepCloneable Clone(Cloner cloner) {
[2687]104      Scope clone = new Scope();
105      cloner.RegisterClonedObject(this, clone);
[3317]106      clone.ReadOnlyView = ReadOnlyView;
107      clone.name = name;
108      clone.description = description;
[2932]109      if (variables.Count > 0) clone.variables = (VariableCollection)cloner.Clone(variables);
[3280]110      if (subScopes.Count > 0) {
[3317]111        clone.subScopes = (ScopeList)cloner.Clone(subScopes);
[3280]112        foreach (IScope child in clone.SubScopes)
113          child.Parent = clone;
[3317]114        clone.Initialize();
[3280]115      }
[2]116      return clone;
117    }
118
[2653]119    #region SubScopes Events
120    private void RegisterSubScopesEvents() {
121      if (subScopes != null) {
[2687]122        subScopes.ItemsAdded += new CollectionItemsChangedEventHandler<IndexedItem<IScope>>(SubScopes_ItemsAdded);
123        subScopes.ItemsRemoved += new CollectionItemsChangedEventHandler<IndexedItem<IScope>>(SubScopes_ItemsRemoved);
124        subScopes.ItemsReplaced += new CollectionItemsChangedEventHandler<IndexedItem<IScope>>(SubScopes_ItemsReplaced);
125        subScopes.CollectionReset += new CollectionItemsChangedEventHandler<IndexedItem<IScope>>(SubScopes_CollectionReset);
[2653]126      }
[2]127    }
[2687]128    private void SubScopes_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IndexedItem<IScope>> e) {
129      foreach (IndexedItem<IScope> item in e.Items)
130        item.Value.Parent = this;
[61]131    }
[2687]132    private void SubScopes_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IndexedItem<IScope>> e) {
133      foreach (IndexedItem<IScope> item in e.Items)
134        item.Value.Parent = null;
[61]135    }
[2687]136    private void SubScopes_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<IndexedItem<IScope>> e) {
137      foreach (IndexedItem<IScope> oldItem in e.OldItems)
138        oldItem.Value.Parent = null;
139      foreach (IndexedItem<IScope> item in e.Items)
140        item.Value.Parent = this;
[2]141    }
[2687]142    private void SubScopes_CollectionReset(object sender, CollectionItemsChangedEventArgs<IndexedItem<IScope>> e) {
143      foreach (IndexedItem<IScope> oldItem in e.OldItems)
144        oldItem.Value.Parent = null;
145      foreach (IndexedItem<IScope> item in e.Items)
146        item.Value.Parent = this;
[2]147    }
[2653]148    #endregion
[2]149  }
150}
Note: See TracBrowser for help on using the repository browser.