[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;
|
---|
| 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 retrieved from the scope.
|
---|
| 30 | /// </summary>
|
---|
[3822] | 31 | [Item("LookupParameter", "A parameter whose value is retrieved from or written to a scope.")]
|
---|
[3017] | 32 | [StorableClass]
|
---|
[2756] | 33 | public class LookupParameter<T> : Parameter, ILookupParameter<T> where T : class, IItem {
|
---|
| 34 | [Storable]
|
---|
| 35 | private string actualName;
|
---|
| 36 | public string ActualName {
|
---|
| 37 | get { return actualName; }
|
---|
| 38 | set {
|
---|
| 39 | if (value == null) throw new ArgumentNullException();
|
---|
| 40 | if (!actualName.Equals(value)) {
|
---|
| 41 | actualName = value;
|
---|
| 42 | OnActualNameChanged();
|
---|
| 43 | }
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
[3687] | 46 | public string TranslatedName {
|
---|
| 47 | get {
|
---|
| 48 | string translatedName;
|
---|
| 49 | GetValueParameterAndTranslateName(out translatedName);
|
---|
| 50 | return translatedName;
|
---|
| 51 | }
|
---|
| 52 | }
|
---|
[2757] | 53 | public new T ActualValue {
|
---|
[2987] | 54 | get {
|
---|
| 55 | if (cachedActualValue == null) cachedActualValue = GetActualValue();
|
---|
| 56 | return (T)cachedActualValue;
|
---|
| 57 | }
|
---|
| 58 | set {
|
---|
| 59 | cachedActualValue = value;
|
---|
| 60 | SetActualValue(value);
|
---|
| 61 | }
|
---|
[2756] | 62 | }
|
---|
| 63 |
|
---|
| 64 | public LookupParameter()
|
---|
| 65 | : base("Anonymous", typeof(T)) {
|
---|
[3080] | 66 | this.actualName = Name;
|
---|
[2756] | 67 | }
|
---|
| 68 | public LookupParameter(string name)
|
---|
| 69 | : base(name, typeof(T)) {
|
---|
[3080] | 70 | this.actualName = Name;
|
---|
[2756] | 71 | }
|
---|
| 72 | public LookupParameter(string name, string description)
|
---|
| 73 | : base(name, description, typeof(T)) {
|
---|
[3080] | 74 | this.actualName = Name;
|
---|
[2756] | 75 | }
|
---|
[3080] | 76 | public LookupParameter(string name, string description, string actualName)
|
---|
| 77 | : base(name, description, typeof(T)) {
|
---|
| 78 | this.actualName = actualName == null ? string.Empty : actualName;
|
---|
| 79 | }
|
---|
[3317] | 80 | [StorableConstructor]
|
---|
| 81 | protected LookupParameter(bool deserializing) : base(deserializing) { }
|
---|
[2756] | 82 |
|
---|
| 83 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 84 | LookupParameter<T> clone = (LookupParameter<T>)base.Clone(cloner);
|
---|
| 85 | clone.actualName = actualName;
|
---|
| 86 | return clone;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | public override string ToString() {
|
---|
[3688] | 90 | if (Name.Equals(ActualName))
|
---|
| 91 | return Name;
|
---|
| 92 | else
|
---|
| 93 | return Name + ": " + ActualName;
|
---|
[2756] | 94 | }
|
---|
| 95 |
|
---|
[3075] | 96 | private IValueParameter GetValueParameterAndTranslateName(out string actualName) {
|
---|
| 97 | IValueParameter valueParam;
|
---|
| 98 | ILookupParameter lookupParam;
|
---|
| 99 | IExecutionContext currentExecutionContext = ExecutionContext;
|
---|
[2773] | 100 |
|
---|
[3075] | 101 | actualName = Name;
|
---|
| 102 | while (currentExecutionContext != null) {
|
---|
| 103 | valueParam = currentExecutionContext.Parameters[actualName] as IValueParameter;
|
---|
| 104 | lookupParam = currentExecutionContext.Parameters[actualName] as ILookupParameter;
|
---|
[2773] | 105 |
|
---|
[3075] | 106 | if ((valueParam == null) && (lookupParam == null))
|
---|
| 107 | throw new InvalidOperationException(
|
---|
| 108 | string.Format("Parameter look-up chain broken. Parameter \"{0}\" is not an \"{1}\" or an \"{2}\".",
|
---|
| 109 | actualName, typeof(IValueParameter).GetPrettyName(), typeof(ILookupParameter).GetPrettyName())
|
---|
| 110 | );
|
---|
[2773] | 111 |
|
---|
[3075] | 112 | if (valueParam != null) {
|
---|
| 113 | if (valueParam.Value != null) return valueParam;
|
---|
| 114 | else if (lookupParam == null) return valueParam;
|
---|
[2773] | 115 | }
|
---|
[3075] | 116 | if (lookupParam != null) actualName = lookupParam.ActualName;
|
---|
| 117 |
|
---|
| 118 | currentExecutionContext = currentExecutionContext.Parent;
|
---|
| 119 | while ((currentExecutionContext != null) && !currentExecutionContext.Parameters.ContainsKey(actualName))
|
---|
| 120 | currentExecutionContext = currentExecutionContext.Parent;
|
---|
[2773] | 121 | }
|
---|
| 122 | return null;
|
---|
| 123 | }
|
---|
[2756] | 124 | private IVariable LookupVariable(string name) {
|
---|
| 125 | IScope scope = ExecutionContext.Scope;
|
---|
| 126 | while ((scope != null) && !scope.Variables.ContainsKey(name))
|
---|
| 127 | scope = scope.Parent;
|
---|
[3077] | 128 | return scope != null ? scope.Variables[name] : null;
|
---|
[2756] | 129 | }
|
---|
[2757] | 130 | protected override IItem GetActualValue() {
|
---|
[2773] | 131 | string name;
|
---|
[2805] | 132 | // try to get value from context stack
|
---|
[3075] | 133 | IValueParameter param = GetValueParameterAndTranslateName(out name);
|
---|
[3091] | 134 | if (param != null) return param.Value;
|
---|
[2805] | 135 |
|
---|
| 136 | // try to get variable from scope
|
---|
| 137 | IVariable var = LookupVariable(name);
|
---|
| 138 | if (var != null) {
|
---|
[2852] | 139 | if (!(var.Value is T))
|
---|
[2805] | 140 | throw new InvalidOperationException(
|
---|
| 141 | string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
|
---|
| 142 | name,
|
---|
| 143 | typeof(T).GetPrettyName())
|
---|
| 144 | );
|
---|
[2852] | 145 | return var.Value;
|
---|
[2756] | 146 | }
|
---|
| 147 | return null;
|
---|
| 148 | }
|
---|
[2757] | 149 | protected override void SetActualValue(IItem value) {
|
---|
[2852] | 150 | if (!(value is T))
|
---|
[2757] | 151 | throw new InvalidOperationException(
|
---|
| 152 | string.Format("Type mismatch. Value is not a \"{0}\".",
|
---|
| 153 | typeof(T).GetPrettyName())
|
---|
| 154 | );
|
---|
[2805] | 155 | // try to set value in context stack
|
---|
[2773] | 156 | string name;
|
---|
[3075] | 157 | IValueParameter param = GetValueParameterAndTranslateName(out name);
|
---|
[2805] | 158 | if (param != null) {
|
---|
[2852] | 159 | param.Value = value;
|
---|
[2805] | 160 | return;
|
---|
[2773] | 161 | }
|
---|
[2805] | 162 |
|
---|
| 163 | // try to set value in scope
|
---|
| 164 | IVariable var = LookupVariable(name);
|
---|
| 165 | if (var != null) {
|
---|
[2852] | 166 | var.Value = value;
|
---|
[2805] | 167 | return;
|
---|
| 168 | }
|
---|
| 169 |
|
---|
| 170 | // create new variable
|
---|
| 171 | ExecutionContext.Scope.Variables.Add(new Variable(name, value));
|
---|
[2756] | 172 | }
|
---|
| 173 |
|
---|
| 174 | public event EventHandler ActualNameChanged;
|
---|
[4332] | 175 | protected virtual void OnActualNameChanged() {
|
---|
| 176 | EventHandler handler = ActualNameChanged;
|
---|
| 177 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2932] | 178 | OnToStringChanged();
|
---|
[2756] | 179 | }
|
---|
| 180 | }
|
---|
| 181 | }
|
---|