#region License Information
/* HeuristicLab
* Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Parameters {
///
/// A parameter whose value is either defined in the parameter itself or is retrieved from the scope.
///
[Item("ValueLookupParameter", "A parameter whose value is either defined in the parameter itself or is retrieved from or written to a scope.")]
[StorableClass]
public class ValueLookupParameter : LookupParameter, IValueLookupParameter where T : class, IItem {
private T value;
[Storable]
public T Value {
get { return this.value; }
set {
if (value != this.value) {
if (this.value != null) this.value.ToStringChanged -= new EventHandler(Value_ToStringChanged);
this.value = value;
if (this.value != null) this.value.ToStringChanged += new EventHandler(Value_ToStringChanged);
OnValueChanged();
}
}
}
IItem IValueParameter.Value {
get { return Value; }
set {
T val = value as T;
if ((value != null) && (val == null))
throw new InvalidOperationException(
string.Format("Type mismatch. Value is not a \"{0}\".",
typeof(T).GetPrettyName())
);
Value = val;
}
}
public ValueLookupParameter()
: base() {
}
public ValueLookupParameter(string name)
: base(name) {
}
public ValueLookupParameter(string name, T value)
: base(name) {
Value = value;
}
public ValueLookupParameter(string name, string description)
: base(name, description) {
}
public ValueLookupParameter(string name, string description, T value)
: base(name, description) {
Value = value;
}
public ValueLookupParameter(string name, string description, string actualName)
: base(name, description, actualName) {
}
public override IDeepCloneable Clone(Cloner cloner) {
ValueLookupParameter clone = (ValueLookupParameter)base.Clone(cloner);
clone.Value = (T)cloner.Clone(value);
return clone;
}
public override string ToString() {
return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : ActualName, DataType.GetPrettyName());
}
public event EventHandler ValueChanged;
private void OnValueChanged() {
if (ValueChanged != null)
ValueChanged(this, EventArgs.Empty);
OnToStringChanged();
}
private void Value_ToStringChanged(object sender, EventArgs e) {
OnToStringChanged();
}
}
}