Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators/3.3/ValuesCollector.cs @ 2773

Last change on this file since 2773 was 2773, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • worked on parameters and operators
File size: 3.2 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.Collections;
27using HeuristicLab.Core;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Operators {
32  /// <summary>
33  /// An operator which collects the actual values of parameters.
34  /// </summary>
35  [Item("ValuesCollector", "An operator which collects the actual values of parameters.")]
36  [Creatable("Test")]
37  public abstract class ValuesCollector : SingleSuccessorOperator, IOperator {
38    private ParameterCollection collectedValues;
39    [Storable]
40    public ParameterCollection CollectedValues {
41      get { return collectedValues; }
42      private set {
43        collectedValues = value;
44        collectedValues.ItemsAdded += new CollectionItemsChangedEventHandler<IParameter>(collectedValues_ItemsAdded);
45        collectedValues.ItemsRemoved += new CollectionItemsChangedEventHandler<IParameter>(collectedValues_ItemsRemoved);
46        collectedValues.CollectionReset += new CollectionItemsChangedEventHandler<IParameter>(collectedValues_CollectionReset);
47      }
48    }
49
50    public ValuesCollector()
51      : base() {
52      CollectedValues = new ParameterCollection();
53    }
54
55    public override IDeepCloneable Clone(Cloner cloner) {
56      ValuesCollector clone = (ValuesCollector)base.Clone(cloner);
57      clone.CollectedValues = (ParameterCollection)cloner.Clone(collectedValues);
58      return clone;
59    }
60
61    private void collectedValues_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IParameter> e) {
62      Parameters.AddRange(e.Items);
63    }
64    private void collectedValues_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IParameter> e) {
65      Parameters.RemoveRange(e.Items);
66    }
67    #region NOTE
68    // NOTE: The ItemsReplaced event has not to be handled here as it is only fired when the name (i.e. key) of a parameter
69    // changes. As the same parameter is also contained in the Parameters collection of the operator, the Parameters collection
70    // will react on this name change on its own.
71    #endregion
72    private void collectedValues_CollectionReset(object sender, CollectionItemsChangedEventArgs<IParameter> e) {
73      Parameters.RemoveRange(e.OldItems);
74      Parameters.AddRange(e.Items);
75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.