[2756] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 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();
|
---|
[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 {
|
---|
| 51 | string translatedName;
|
---|
| 52 | GetValueParameterAndTranslateName(out translatedName);
|
---|
| 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]
|
---|
| 62 | protected LookupParameter(bool deserializing) : base(deserializing) { }
|
---|
| 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;
|
---|
[5784] | 70 | this.Hidden = true;
|
---|
[2756] | 71 | }
|
---|
| 72 | public LookupParameter(string name)
|
---|
| 73 | : base(name, typeof(T)) {
|
---|
[3080] | 74 | this.actualName = Name;
|
---|
[5784] | 75 | this.Hidden = true;
|
---|
[2756] | 76 | }
|
---|
| 77 | public LookupParameter(string name, string description)
|
---|
| 78 | : base(name, description, typeof(T)) {
|
---|
[3080] | 79 | this.actualName = Name;
|
---|
[5784] | 80 | this.Hidden = true;
|
---|
[2756] | 81 | }
|
---|
[3080] | 82 | public LookupParameter(string name, string description, string actualName)
|
---|
| 83 | : base(name, description, typeof(T)) {
|
---|
[5215] | 84 | this.actualName = string.IsNullOrWhiteSpace(actualName) ? Name : actualName;
|
---|
[5784] | 85 | this.Hidden = true;
|
---|
[3080] | 86 | }
|
---|
[2756] | 87 |
|
---|
| 88 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4722] | 89 | return new LookupParameter<T>(this, cloner);
|
---|
[2756] | 90 | }
|
---|
| 91 |
|
---|
| 92 | public override string ToString() {
|
---|
[3688] | 93 | if (Name.Equals(ActualName))
|
---|
| 94 | return Name;
|
---|
| 95 | else
|
---|
| 96 | return Name + ": " + ActualName;
|
---|
[2756] | 97 | }
|
---|
| 98 |
|
---|
[3075] | 99 | private IValueParameter GetValueParameterAndTranslateName(out string actualName) {
|
---|
| 100 | IValueParameter valueParam;
|
---|
| 101 | ILookupParameter lookupParam;
|
---|
| 102 | IExecutionContext currentExecutionContext = ExecutionContext;
|
---|
[2773] | 103 |
|
---|
[3075] | 104 | actualName = Name;
|
---|
| 105 | while (currentExecutionContext != null) {
|
---|
| 106 | valueParam = currentExecutionContext.Parameters[actualName] as IValueParameter;
|
---|
| 107 | lookupParam = currentExecutionContext.Parameters[actualName] as ILookupParameter;
|
---|
[2773] | 108 |
|
---|
[3075] | 109 | if ((valueParam == null) && (lookupParam == null))
|
---|
| 110 | throw new InvalidOperationException(
|
---|
| 111 | string.Format("Parameter look-up chain broken. Parameter \"{0}\" is not an \"{1}\" or an \"{2}\".",
|
---|
| 112 | actualName, typeof(IValueParameter).GetPrettyName(), typeof(ILookupParameter).GetPrettyName())
|
---|
| 113 | );
|
---|
[2773] | 114 |
|
---|
[3075] | 115 | if (valueParam != null) {
|
---|
| 116 | if (valueParam.Value != null) return valueParam;
|
---|
| 117 | else if (lookupParam == null) return valueParam;
|
---|
[2773] | 118 | }
|
---|
[3075] | 119 | if (lookupParam != null) actualName = lookupParam.ActualName;
|
---|
| 120 |
|
---|
| 121 | currentExecutionContext = currentExecutionContext.Parent;
|
---|
| 122 | while ((currentExecutionContext != null) && !currentExecutionContext.Parameters.ContainsKey(actualName))
|
---|
| 123 | currentExecutionContext = currentExecutionContext.Parent;
|
---|
[2773] | 124 | }
|
---|
| 125 | return null;
|
---|
| 126 | }
|
---|
[2756] | 127 | private IVariable LookupVariable(string name) {
|
---|
| 128 | IScope scope = ExecutionContext.Scope;
|
---|
| 129 | while ((scope != null) && !scope.Variables.ContainsKey(name))
|
---|
| 130 | scope = scope.Parent;
|
---|
[3077] | 131 | return scope != null ? scope.Variables[name] : null;
|
---|
[2756] | 132 | }
|
---|
[2757] | 133 | protected override IItem GetActualValue() {
|
---|
[2773] | 134 | string name;
|
---|
[2805] | 135 | // try to get value from context stack
|
---|
[3075] | 136 | IValueParameter param = GetValueParameterAndTranslateName(out name);
|
---|
[3091] | 137 | if (param != null) return param.Value;
|
---|
[2805] | 138 |
|
---|
| 139 | // try to get variable from scope
|
---|
| 140 | IVariable var = LookupVariable(name);
|
---|
| 141 | if (var != null) {
|
---|
[2852] | 142 | if (!(var.Value is T))
|
---|
[2805] | 143 | throw new InvalidOperationException(
|
---|
| 144 | string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
|
---|
| 145 | name,
|
---|
| 146 | typeof(T).GetPrettyName())
|
---|
| 147 | );
|
---|
[2852] | 148 | return var.Value;
|
---|
[2756] | 149 | }
|
---|
| 150 | return null;
|
---|
| 151 | }
|
---|
[2757] | 152 | protected override void SetActualValue(IItem value) {
|
---|
[2852] | 153 | if (!(value is T))
|
---|
[2757] | 154 | throw new InvalidOperationException(
|
---|
| 155 | string.Format("Type mismatch. Value is not a \"{0}\".",
|
---|
| 156 | typeof(T).GetPrettyName())
|
---|
| 157 | );
|
---|
[2805] | 158 | // try to set value in context stack
|
---|
[2773] | 159 | string name;
|
---|
[3075] | 160 | IValueParameter param = GetValueParameterAndTranslateName(out name);
|
---|
[2805] | 161 | if (param != null) {
|
---|
[2852] | 162 | param.Value = value;
|
---|
[2805] | 163 | return;
|
---|
[2773] | 164 | }
|
---|
[2805] | 165 |
|
---|
| 166 | // try to set value in scope
|
---|
| 167 | IVariable var = LookupVariable(name);
|
---|
| 168 | if (var != null) {
|
---|
[2852] | 169 | var.Value = value;
|
---|
[2805] | 170 | return;
|
---|
| 171 | }
|
---|
| 172 |
|
---|
| 173 | // create new variable
|
---|
| 174 | ExecutionContext.Scope.Variables.Add(new Variable(name, value));
|
---|
[2756] | 175 | }
|
---|
| 176 |
|
---|
| 177 | public event EventHandler ActualNameChanged;
|
---|
[4332] | 178 | protected virtual void OnActualNameChanged() {
|
---|
| 179 | EventHandler handler = ActualNameChanged;
|
---|
| 180 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[2932] | 181 | OnToStringChanged();
|
---|
[2756] | 182 | }
|
---|
| 183 | }
|
---|
| 184 | }
|
---|