Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Core/3.3/Scope.cs @ 13656

Last change on this file since 13656 was 13656, checked in by ascheibe, 8 years ago

#2582 created branch for Hive Web Job Manager

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