[2653] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 | using System;
|
---|
[2756] | 23 | using HeuristicLab.Common;
|
---|
[2714] | 24 | using HeuristicLab.Core;
|
---|
[2653] | 25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 26 |
|
---|
[2714] | 27 | namespace HeuristicLab.Parameters {
|
---|
[2653] | 28 | /// <summary>
|
---|
[2947] | 29 | /// A parameter whose value is either defined in the parameter itself or is retrieved from the scope.
|
---|
[2653] | 30 | /// </summary>
|
---|
[2947] | 31 | [Item("ValueLookupParameter<T>", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")]
|
---|
[3017] | 32 | [StorableClass]
|
---|
[2773] | 33 | public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem {
|
---|
[2756] | 34 | private T value;
|
---|
[2653] | 35 | [Storable]
|
---|
[2756] | 36 | public T Value {
|
---|
| 37 | get { return this.value; }
|
---|
[2653] | 38 | set {
|
---|
[2756] | 39 | if (value != this.value) {
|
---|
[2932] | 40 | if (this.value != null) this.value.ToStringChanged -= new EventHandler(Value_ToStringChanged);
|
---|
[2756] | 41 | this.value = value;
|
---|
[2932] | 42 | if (this.value != null) this.value.ToStringChanged += new EventHandler(Value_ToStringChanged);
|
---|
[2756] | 43 | OnValueChanged();
|
---|
[2653] | 44 | }
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
[2796] | 47 | IItem IValueParameter.Value {
|
---|
| 48 | get { return Value; }
|
---|
| 49 | set {
|
---|
| 50 | T val = value as T;
|
---|
[2852] | 51 | if ((value != null) && (val == null))
|
---|
[2796] | 52 | throw new InvalidOperationException(
|
---|
| 53 | string.Format("Type mismatch. Value is not a \"{0}\".",
|
---|
| 54 | typeof(T).GetPrettyName())
|
---|
| 55 | );
|
---|
| 56 | Value = val;
|
---|
| 57 | }
|
---|
| 58 | }
|
---|
[2653] | 59 |
|
---|
[2756] | 60 | public ValueLookupParameter()
|
---|
[2773] | 61 | : base() {
|
---|
[2653] | 62 | }
|
---|
[2756] | 63 | public ValueLookupParameter(string name)
|
---|
[2773] | 64 | : base(name) {
|
---|
[2756] | 65 | }
|
---|
| 66 | public ValueLookupParameter(string name, T value)
|
---|
[2773] | 67 | : base(name) {
|
---|
[2756] | 68 | Value = value;
|
---|
| 69 | }
|
---|
| 70 | public ValueLookupParameter(string name, string description)
|
---|
[2773] | 71 | : base(name, description) {
|
---|
[2653] | 72 | }
|
---|
[2756] | 73 | public ValueLookupParameter(string name, string description, T value)
|
---|
[2773] | 74 | : base(name, description) {
|
---|
[2756] | 75 | Value = value;
|
---|
[2653] | 76 | }
|
---|
| 77 |
|
---|
[2740] | 78 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[2756] | 79 | ValueLookupParameter<T> clone = (ValueLookupParameter<T>)base.Clone(cloner);
|
---|
| 80 | clone.Value = (T)cloner.Clone(value);
|
---|
[2740] | 81 | return clone;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | public override string ToString() {
|
---|
[2818] | 85 | return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : ActualName, DataType.GetPrettyName());
|
---|
[2740] | 86 | }
|
---|
| 87 |
|
---|
[2756] | 88 | public event EventHandler ValueChanged;
|
---|
| 89 | private void OnValueChanged() {
|
---|
| 90 | if (ValueChanged != null)
|
---|
[2793] | 91 | ValueChanged(this, EventArgs.Empty);
|
---|
[2932] | 92 | OnToStringChanged();
|
---|
[2653] | 93 | }
|
---|
[2932] | 94 | private void Value_ToStringChanged(object sender, EventArgs e) {
|
---|
| 95 | OnToStringChanged();
|
---|
[2653] | 96 | }
|
---|
| 97 | }
|
---|
| 98 | }
|
---|