Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters/3.3/ValueParameter.cs @ 2790

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

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 3.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Parameters {
31  /// <summary>
32  /// A parameter whose value is defined it the parameter itself.
33  /// </summary>
34  [Item("ValueParameter<T>", "A parameter whose value is defined it the parameter itself.")]
35  public class ValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem {
36    private T value;
37    [Storable]
38    public T Value {
39      get { return this.value; }
40      set {
41        if (value != this.value) {
42          if (this.value != null) this.value.Changed -= new ChangedEventHandler(Value_Changed);
43          this.value = value;
44          if (this.value != null) this.value.Changed += new ChangedEventHandler(Value_Changed);
45          OnValueChanged();
46        }
47      }
48    }
49    public new T ActualValue {
50      get { return Value; }
51      set { Value = value; }
52    }
53
54    public ValueParameter()
55      : base("Anonymous", typeof(T)) {
56    }
57    public ValueParameter(string name)
58      : base(name, typeof(T)) {
59    }
60    public ValueParameter(string name, T value)
61      : base(name, typeof(T)) {
62      Value = value;
63    }
64    public ValueParameter(string name, string description)
65      : base(name, description, typeof(T)) {
66    }
67    public ValueParameter(string name, string description, T value)
68      : base(name, description, typeof(T)) {
69      Value = value;
70    }
71
72    public override IDeepCloneable Clone(Cloner cloner) {
73      ValueParameter<T> clone = (ValueParameter<T>)base.Clone(cloner);
74      clone.Value = (T)cloner.Clone(value);
75      return clone;
76    }
77
78    public override string ToString() {
79      return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : "null", DataType.Name);
80    }
81
82    protected override IItem GetActualValue() {
83      return Value;
84    }
85    protected override void SetActualValue(IItem value) {
86      T val = value as T;
87      if (val == null)
88        throw new InvalidOperationException(
89          string.Format("Type mismatch. Value is not a \"{0}\".",
90                        typeof(T).GetPrettyName())
91        );
92      Value = val;
93    }
94
95    public event EventHandler ValueChanged;
96    private void OnValueChanged() {
97      if (ValueChanged != null)
98        ValueChanged(this, new EventArgs());
99      OnChanged();
100    }
101    private void Value_Changed(object sender, ChangedEventArgs e) {
102      OnChanged(e);
103    }
104  }
105}
Note: See TracBrowser for help on using the repository browser.