[2756] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17226] | 3 | * Copyright (C) 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;
|
---|
[17254] | 23 | using HEAL.Attic;
|
---|
[2756] | 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 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.")]
|
---|
[16723] | 32 | [StorableType("84FE5F33-94B8-4E30-B1CB-CD15314FB83B")]
|
---|
[17257] | 33 | public class LookupParameter<T> : ContextParameter, ILookupParameter<T> where T : class, IItem {
|
---|
[2756] | 34 | [Storable]
|
---|
| 35 | private string actualName;
|
---|
| 36 | public string ActualName {
|
---|
| 37 | get { return actualName; }
|
---|
| 38 | set {
|
---|
| 39 | if (value == null) throw new ArgumentNullException();
|
---|
[5215] | 40 | if (string.IsNullOrWhiteSpace(value)) {
|
---|
| 41 | actualName = Name;
|
---|
| 42 | OnActualNameChanged();
|
---|
| 43 | } else if (!actualName.Equals(value)) {
|
---|
[2756] | 44 | actualName = value;
|
---|
| 45 | OnActualNameChanged();
|
---|
| 46 | }
|
---|
| 47 | }
|
---|
| 48 | }
|
---|
[3687] | 49 | public string TranslatedName {
|
---|
| 50 | get {
|
---|
[16692] | 51 | string translatedName = Name;
|
---|
| 52 | GetValueParameterAndTranslateName(ExecutionContext, ref translatedName);
|
---|
[3687] | 53 | return translatedName;
|
---|
| 54 | }
|
---|
| 55 | }
|
---|
[2757] | 56 | public new T ActualValue {
|
---|
[5193] | 57 | get { return (T)base.ActualValue; }
|
---|
| 58 | set { base.ActualValue = value; }
|
---|
[2756] | 59 | }
|
---|
| 60 |
|
---|
[4722] | 61 | [StorableConstructor]
|
---|
[17257] | 62 | protected LookupParameter(StorableConstructorFlag _) : base(_) { }
|
---|
[4722] | 63 | protected LookupParameter(LookupParameter<T> original, Cloner cloner)
|
---|
| 64 | : base(original, cloner) {
|
---|
| 65 | actualName = original.actualName;
|
---|
| 66 | }
|
---|
[2756] | 67 | public LookupParameter()
|
---|
| 68 | : base("Anonymous", typeof(T)) {
|
---|
[3080] | 69 | this.actualName = Name;
|
---|
[2756] | 70 | }
|
---|
| 71 | public LookupParameter(string name)
|
---|
| 72 | : base(name, typeof(T)) {
|
---|
[3080] | 73 | this.actualName = Name;
|
---|
[2756] | 74 | }
|
---|
| 75 | public LookupParameter(string name, string description)
|
---|
| 76 | : base(name, description, typeof(T)) {
|
---|
[3080] | 77 | this.actualName = Name;
|
---|
[2756] | 78 | }
|
---|
[3080] | 79 | public LookupParameter(string name, string description, string actualName)
|
---|
| 80 | : base(name, description, typeof(T)) {
|
---|
[5215] | 81 | this.actualName = string.IsNullOrWhiteSpace(actualName) ? Name : actualName;
|
---|
[3080] | 82 | }
|
---|
[2756] | 83 |
|
---|
| 84 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4722] | 85 | return new LookupParameter<T>(this, cloner);
|
---|
[2756] | 86 | }
|
---|
| 87 |
|
---|
| 88 | public override string ToString() {
|
---|
[3688] | 89 | if (Name.Equals(ActualName))
|
---|
| 90 | return Name;
|
---|
| 91 | else
|
---|
| 92 | return Name + ": " + ActualName;
|
---|
[2756] | 93 | }
|
---|
| 94 |
|
---|
[16692] | 95 | protected static IValueParameter GetValueParameterAndTranslateName(IExecutionContext executionContext, ref string translatedName) {
|
---|
[3075] | 96 | IValueParameter valueParam;
|
---|
| 97 | ILookupParameter lookupParam;
|
---|
[16692] | 98 | IExecutionContext currentExecutionContext = executionContext;
|
---|
[2773] | 99 |
|
---|
[3075] | 100 | while (currentExecutionContext != null) {
|
---|
[16692] | 101 | IParameter param = null;
|
---|
[17259] | 102 | while (currentExecutionContext != null && !currentExecutionContext.Parameters.TryGetValue(translatedName, out param))
|
---|
[16692] | 103 | currentExecutionContext = currentExecutionContext.Parent;
|
---|
| 104 | if (currentExecutionContext == null) break;
|
---|
[2773] | 105 |
|
---|
[16692] | 106 | valueParam = param as IValueParameter;
|
---|
| 107 | lookupParam = param as ILookupParameter;
|
---|
| 108 |
|
---|
[17254] | 109 | if (valueParam == null && lookupParam == null)
|
---|
[3075] | 110 | throw new InvalidOperationException(
|
---|
[17254] | 111 | string.Format("Parameter look-up chain broken. Parameter \"{0}\" is neither an \"{1}\" nor an \"{2}\".",
|
---|
[16692] | 112 | translatedName, typeof(IValueParameter).GetPrettyName(), typeof(ILookupParameter).GetPrettyName())
|
---|
[3075] | 113 | );
|
---|
[2773] | 114 |
|
---|
[3075] | 115 | if (valueParam != null) {
|
---|
| 116 | if (valueParam.Value != null) return valueParam;
|
---|
| 117 | else if (lookupParam == null) return valueParam;
|
---|
[2773] | 118 | }
|
---|
[16692] | 119 | translatedName = lookupParam.ActualName;
|
---|
[3075] | 120 |
|
---|
| 121 | currentExecutionContext = currentExecutionContext.Parent;
|
---|
[2773] | 122 | }
|
---|
| 123 | return null;
|
---|
| 124 | }
|
---|
[16692] | 125 | protected static IVariable LookupVariable(IScope scope, string name) {
|
---|
| 126 | IVariable variable = null;
|
---|
| 127 | while (scope != null && !scope.Variables.TryGetValue(name, out variable))
|
---|
[2756] | 128 | scope = scope.Parent;
|
---|
[16692] | 129 | return scope != null ? variable : null;
|
---|
[2756] | 130 | }
|
---|
[16692] | 131 |
|
---|
[17257] | 132 | protected override IItem GetActualValueFromContext() {
|
---|
[16692] | 133 | string translatedName = Name;
|
---|
| 134 | var value = GetValue(ExecutionContext, ref translatedName);
|
---|
| 135 | if (value != null && !(value is T))
|
---|
| 136 | throw new InvalidOperationException(
|
---|
| 137 | string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
|
---|
| 138 | translatedName,
|
---|
| 139 | typeof(T).GetPrettyName())
|
---|
| 140 | );
|
---|
| 141 | return value;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | protected static IItem GetValue(IExecutionContext executionContext, ref string name) {
|
---|
[2805] | 145 | // try to get value from context stack
|
---|
[16692] | 146 | IValueParameter param = GetValueParameterAndTranslateName(executionContext, ref name);
|
---|
[3091] | 147 | if (param != null) return param.Value;
|
---|
[2805] | 148 |
|
---|
| 149 | // try to get variable from scope
|
---|
[16692] | 150 | IVariable var = LookupVariable(executionContext.Scope, name);
|
---|
| 151 | return var != null ? var.Value : null;
|
---|
[2756] | 152 | }
|
---|
[16692] | 153 |
|
---|
[2757] | 154 | protected override void SetActualValue(IItem value) {
|
---|
[2852] | 155 | if (!(value is T))
|
---|
[2757] | 156 | throw new InvalidOperationException(
|
---|
| 157 | string.Format("Type mismatch. Value is not a \"{0}\".",
|
---|
| 158 | typeof(T).GetPrettyName())
|
---|
| 159 | );
|
---|
[16692] | 160 | CachedActualValue = value;
|
---|
[9195] | 161 |
|
---|
[16692] | 162 | string translatedName = Name;
|
---|
| 163 | SetValue(ExecutionContext, ref translatedName, value);
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 | protected static void SetValue(IExecutionContext executionContext, ref string name, IItem value) {
|
---|
[2805] | 167 | // try to set value in context stack
|
---|
[16692] | 168 | IValueParameter param = GetValueParameterAndTranslateName(executionContext, ref name);
|
---|
[2805] | 169 | if (param != null) {
|
---|
[2852] | 170 | param.Value = value;
|
---|
[2805] | 171 | return;
|
---|
[2773] | 172 | }
|
---|
[2805] | 173 |
|
---|
| 174 | // try to set value in scope
|
---|
[16692] | 175 | IVariable var = LookupVariable(executionContext.Scope, name);
|
---|
[2805] | 176 | if (var != null) {
|
---|
[2852] | 177 | var.Value = value;
|
---|
[2805] | 178 | return;
|
---|
| 179 | }
|
---|
| 180 |
|
---|
| 181 | // create new variable
|
---|
[16692] | 182 | executionContext.Scope.Variables.Add(new Variable(name, value));
|
---|
[2756] | 183 | }
|
---|
| 184 |
|
---|
| 185 | public event EventHandler ActualNameChanged;
|
---|
[4332] | 186 | protected virtual void OnActualNameChanged() {
|
---|
| 187 | EventHandler handler = ActualNameChanged;
|
---|
| 188 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2932] | 189 | OnToStringChanged();
|
---|
[2756] | 190 | }
|
---|
| 191 | }
|
---|
| 192 | }
|
---|