Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs @ 5304

Last change on this file since 5304 was 5206, checked in by cneumuel, 14 years ago

#1361 fixed deregistration of events on parameter values

File size: 6.6 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.Drawing;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Parameters {
29  /// <summary>
30  /// A parameter whose value is either defined in the parameter itself or is retrieved from the scope.
31  /// </summary>
32  [Item("ValueLookupParameter", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")]
33  [StorableClass]
34  public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem {
35    public override Image ItemImage {
36      get {
37        if (value != null) return value.ItemImage;
38        else return base.ItemImage;
39      }
40    }
41
42    [Storable]
43    private T value;
44    public T Value {
45      get { return this.value; }
46      set {
47        if (value != this.value) {
48          OnValueChanging();
49          DeregisterValueEvents();
50          this.value = value;
51          RegisterValueEvents();
52          OnValueChanged();
53        }
54      }
55    }
56    IItem IValueParameter.Value {
57      get { return Value; }
58      set {
59        T val = value as T;
60        if ((value != null) && (val == null))
61          throw new InvalidOperationException(
62            string.Format("Type mismatch. Value is not a \"{0}\".",
63                          typeof(T).GetPrettyName())
64          );
65        Value = val;
66      }
67    }
68
69    [Storable(DefaultValue = true)]
70    private bool getsCollected;
71    public bool GetsCollected {
72      get { return getsCollected; }
73      set {
74        if (value != getsCollected) {
75          getsCollected = value;
76          OnGetsCollectedChanged();
77        }
78      }
79    }
80
81    #region Constructors
82    [StorableConstructor]
83    protected ValueLookupParameter(bool deserializing) : base(deserializing) { }
84    protected ValueLookupParameter(ValueLookupParameter<T> original, Cloner cloner)
85      : base(original, cloner) {
86      value = cloner.Clone(original.value);
87      getsCollected = original.getsCollected;
88      RegisterValueEvents();
89    }
90    public ValueLookupParameter()
91      : base() {
92      this.getsCollected = true;
93    }
94    public ValueLookupParameter(string name)
95      : base(name) {
96      this.getsCollected = true;
97    }
98    public ValueLookupParameter(string name, bool getsCollected)
99      : base(name) {
100      this.getsCollected = getsCollected;
101    }
102    public ValueLookupParameter(string name, T value)
103      : base(name) {
104      this.value = value;
105      this.getsCollected = true;
106      RegisterValueEvents();
107    }
108    public ValueLookupParameter(string name, T value, bool getsCollected)
109      : base(name) {
110      this.value = value;
111      this.getsCollected = getsCollected;
112      RegisterValueEvents();
113    }
114    public ValueLookupParameter(string name, string description)
115      : base(name, description) {
116      this.getsCollected = true;
117    }
118    public ValueLookupParameter(string name, string description, bool getsCollected)
119      : base(name, description) {
120      this.getsCollected = getsCollected;
121    }
122    public ValueLookupParameter(string name, string description, T value)
123      : base(name, description) {
124      this.value = value;
125      this.getsCollected = true;
126      RegisterValueEvents();
127    }
128    public ValueLookupParameter(string name, string description, T value, bool getsCollected)
129      : base(name, description) {
130      this.value = value;
131      this.getsCollected = getsCollected;
132      RegisterValueEvents();
133    }
134    public ValueLookupParameter(string name, string description, string actualName)
135      : base(name, description, actualName) {
136      this.getsCollected = true;
137    }
138    public ValueLookupParameter(string name, string description, string actualName, bool getsCollected)
139      : base(name, description, actualName) {
140      this.getsCollected = getsCollected;
141    }
142    #endregion
143
144    [StorableHook(HookType.AfterDeserialization)]
145    private void AfterDeserialization() {
146      RegisterValueEvents();
147    }
148
149    public override IDeepCloneable Clone(Cloner cloner) {
150      return new ValueLookupParameter<T>(this, cloner);
151    }
152
153    public override string ToString() {
154      if (Value != null)
155        return Name + ": " + Value.ToString();
156      else if (Name.Equals(ActualName))
157        return Name;
158      else
159        return Name + ": " + ActualName;
160    }
161
162    public event EventHandler ValueChanging;
163    protected virtual void OnValueChanging() {
164      EventHandler handler = ValueChanging;
165      if (handler != null) handler(this, EventArgs.Empty);
166    }
167    public event EventHandler ValueChanged;
168    protected virtual void OnValueChanged() {
169      EventHandler handler = ValueChanged;
170      if (handler != null) handler(this, EventArgs.Empty);
171      OnItemImageChanged();
172      OnToStringChanged();
173    }
174    public event EventHandler GetsCollectedChanged;
175    protected virtual void OnGetsCollectedChanged() {
176      EventHandler handler = GetsCollectedChanged;
177      if (handler != null) handler(this, EventArgs.Empty);
178    }
179
180    private void RegisterValueEvents() {
181      if (value != null) {
182        value.ItemImageChanged += new EventHandler(Value_ItemImageChanged);
183        value.ToStringChanged += new EventHandler(Value_ToStringChanged);
184      }
185    }
186    private void DeregisterValueEvents() {
187      if (value != null) {
188        value.ItemImageChanged -= new EventHandler(Value_ItemImageChanged);
189        value.ToStringChanged -= new EventHandler(Value_ToStringChanged);
190      }
191    }
192    private void Value_ItemImageChanged(object sender, EventArgs e) {
193      OnItemImageChanged();
194    }
195    private void Value_ToStringChanged(object sender, EventArgs e) {
196      OnToStringChanged();
197    }
198  }
199}
Note: See TracBrowser for help on using the repository browser.