[2756] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2756] | 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;
|
---|
[2757] | 23 | using HeuristicLab.Common;
|
---|
[2756] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.Parameters {
|
---|
| 28 | /// <summary>
|
---|
[2947] | 29 | /// A parameter whose value is defined in the parameter itself or is null.
|
---|
[2756] | 30 | /// </summary>
|
---|
[2947] | 31 | [Item("OptionalValueParameter<T>", "A parameter whose value is defined in the parameter itself or is null.")]
|
---|
[3017] | 32 | [StorableClass]
|
---|
[2890] | 33 | public class OptionalValueParameter<T> : Parameter, IValueParameter<T> where T : class, IItem {
|
---|
[3317] | 34 | [Storable]
|
---|
[2756] | 35 | private T value;
|
---|
[2924] | 36 | public virtual T Value {
|
---|
[2756] | 37 | get { return this.value; }
|
---|
| 38 | set {
|
---|
| 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();
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
[2796] | 47 | IItem IValueParameter.Value {
|
---|
[2757] | 48 | get { return Value; }
|
---|
[2796] | 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 | }
|
---|
[2757] | 58 | }
|
---|
[2756] | 59 |
|
---|
[2890] | 60 | public OptionalValueParameter()
|
---|
[2756] | 61 | : base("Anonymous", typeof(T)) {
|
---|
| 62 | }
|
---|
[2890] | 63 | public OptionalValueParameter(string name)
|
---|
[2756] | 64 | : base(name, typeof(T)) {
|
---|
| 65 | }
|
---|
[2890] | 66 | public OptionalValueParameter(string name, T value)
|
---|
[2756] | 67 | : base(name, typeof(T)) {
|
---|
[3317] | 68 | this.value = value;
|
---|
| 69 | Initialize();
|
---|
[2756] | 70 | }
|
---|
[2890] | 71 | public OptionalValueParameter(string name, string description)
|
---|
[2756] | 72 | : base(name, description, typeof(T)) {
|
---|
| 73 | }
|
---|
[2890] | 74 | public OptionalValueParameter(string name, string description, T value)
|
---|
[2756] | 75 | : base(name, description, typeof(T)) {
|
---|
[3317] | 76 | this.value = value;
|
---|
| 77 | Initialize();
|
---|
[2756] | 78 | }
|
---|
[3317] | 79 | [StorableConstructor]
|
---|
| 80 | protected OptionalValueParameter(bool deserializing) : base(deserializing) { }
|
---|
[2756] | 81 |
|
---|
[3317] | 82 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 83 | private void Initialize() {
|
---|
| 84 | if (value != null) value.ToStringChanged += new EventHandler(Value_ToStringChanged);
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[2756] | 87 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[2890] | 88 | OptionalValueParameter<T> clone = (OptionalValueParameter<T>)base.Clone(cloner);
|
---|
[3317] | 89 | clone.value = (T)cloner.Clone(value);
|
---|
| 90 | clone.Initialize();
|
---|
[2756] | 91 | return clone;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | public override string ToString() {
|
---|
[2818] | 95 | return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : "null", DataType.GetPrettyName());
|
---|
[2756] | 96 | }
|
---|
| 97 |
|
---|
[2757] | 98 | protected override IItem GetActualValue() {
|
---|
| 99 | return Value;
|
---|
| 100 | }
|
---|
| 101 | protected override void SetActualValue(IItem value) {
|
---|
[2796] | 102 | ((IValueParameter)this).Value = value;
|
---|
[2757] | 103 | }
|
---|
| 104 |
|
---|
[2756] | 105 | public event EventHandler ValueChanged;
|
---|
| 106 | private void OnValueChanged() {
|
---|
| 107 | if (ValueChanged != null)
|
---|
[2793] | 108 | ValueChanged(this, EventArgs.Empty);
|
---|
[2932] | 109 | OnToStringChanged();
|
---|
[2756] | 110 | }
|
---|
[2932] | 111 | private void Value_ToStringChanged(object sender, EventArgs e) {
|
---|
| 112 | OnToStringChanged();
|
---|
[2756] | 113 | }
|
---|
| 114 | }
|
---|
| 115 | }
|
---|