Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5447 was 5445, checked in by swagner, 13 years ago

Updated year of copyrights (#1406)

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