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