Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters/3.3/OptionalValueParameter.cs @ 3317

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

Implemented ReadOnlyView property for items (#969).

File size: 3.9 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 HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Parameters {
28  /// <summary>
29  /// A parameter whose value is defined in the parameter itself or is null.
30  /// </summary>
31  [Item("OptionalValueParameter<T>", "A parameter whose value is defined in the parameter itself or is null.")]
32  [StorableClass]
33  public class OptionalValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem {
34    [Storable]
35    private T value;
36    public virtual T Value {
37      get { return this.value; }
38      set {
39        if (value != this.value) {
40          if (this.value != null) this.value.ToStringChanged -= new EventHandler(Value_ToStringChanged);
41          this.value = value;
42          if (this.value != null) this.value.ToStringChanged += new EventHandler(Value_ToStringChanged);
43          OnValueChanged();
44        }
45      }
46    }
47    IItem IValueParameter.Value {
48      get { return Value; }
49      set {
50        T val = value as T;
51        if ((value != null) && (val == null))
52          throw new InvalidOperationException(
53            string.Format("Type mismatch. Value is not a \"{0}\".",
54                          typeof(T).GetPrettyName())
55          );
56        Value = val;
57      }
58    }
59
60    public OptionalValueParameter()
61      : base("Anonymous", typeof(T)) {
62    }
63    public OptionalValueParameter(string name)
64      : base(name, typeof(T)) {
65    }
66    public OptionalValueParameter(string name, T value)
67      : base(name, typeof(T)) {
68      this.value = value;
69      Initialize();
70    }
71    public OptionalValueParameter(string name, string description)
72      : base(name, description, typeof(T)) {
73    }
74    public OptionalValueParameter(string name, string description, T value)
75      : base(name, description, typeof(T)) {
76      this.value = value;
77      Initialize();
78    }
79    [StorableConstructor]
80    protected OptionalValueParameter(bool deserializing) : base(deserializing) { }
81
82    [StorableHook(HookType.AfterDeserialization)]
83    private void Initialize() {
84      if (value != null) value.ToStringChanged += new EventHandler(Value_ToStringChanged);
85    }
86
87    public override IDeepCloneable Clone(Cloner cloner) {
88      OptionalValueParameter<T> clone = (OptionalValueParameter<T>)base.Clone(cloner);
89      clone.value = (T)cloner.Clone(value);
90      clone.Initialize();
91      return clone;
92    }
93
94    public override string ToString() {
95      return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : "null", DataType.GetPrettyName());
96    }
97
98    protected override IItem GetActualValue() {
99      return Value;
100    }
101    protected override void SetActualValue(IItem value) {
102      ((IValueParameter)this).Value = value;
103    }
104
105    public event EventHandler ValueChanged;
106    private void OnValueChanged() {
107      if (ValueChanged != null)
108        ValueChanged(this, EventArgs.Empty);
109      OnToStringChanged();
110    }
111    private void Value_ToStringChanged(object sender, EventArgs e) {
112      OnToStringChanged();
113    }
114  }
115}
Note: See TracBrowser for help on using the repository browser.