Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Parameters/3.3/LookupParameter.cs @ 5471

Last change on this file since 5471 was 5445, checked in by swagner, 13 years ago

Updated year of copyrights (#1406)

File size: 6.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Parameters {
28  /// <summary>
29  /// A parameter whose value is retrieved from the scope.
30  /// </summary>
31  [Item("LookupParameter", "A parameter whose value is retrieved from or written to a scope.")]
32  [StorableClass]
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 (string.IsNullOrWhiteSpace(value)) {
41          actualName = Name;
42          OnActualNameChanged();
43        } else if (!actualName.Equals(value)) {
44          actualName = value;
45          OnActualNameChanged();
46        }
47      }
48    }
49    public string TranslatedName {
50      get {
51        string translatedName;
52        GetValueParameterAndTranslateName(out translatedName);
53        return translatedName;
54      }
55    }
56    public new T ActualValue {
57      get { return (T)base.ActualValue; }
58      set { base.ActualValue = value; }
59    }
60
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    }
67    public LookupParameter()
68      : base("Anonymous", typeof(T)) {
69      this.actualName = Name;
70    }
71    public LookupParameter(string name)
72      : base(name, typeof(T)) {
73      this.actualName = Name;
74    }
75    public LookupParameter(string name, string description)
76      : base(name, description, typeof(T)) {
77      this.actualName = Name;
78    }
79    public LookupParameter(string name, string description, string actualName)
80      : base(name, description, typeof(T)) {
81      this.actualName = string.IsNullOrWhiteSpace(actualName) ? Name : actualName;
82    }
83
84    public override IDeepCloneable Clone(Cloner cloner) {
85      return new LookupParameter<T>(this, cloner);
86    }
87
88    public override string ToString() {
89      if (Name.Equals(ActualName))
90        return Name;
91      else
92        return Name + ": " + ActualName;
93    }
94
95    private IValueParameter GetValueParameterAndTranslateName(out string actualName) {
96      IValueParameter valueParam;
97      ILookupParameter lookupParam;
98      IExecutionContext currentExecutionContext = ExecutionContext;
99
100      actualName = Name;
101      while (currentExecutionContext != null) {
102        valueParam = currentExecutionContext.Parameters[actualName] as IValueParameter;
103        lookupParam = currentExecutionContext.Parameters[actualName] as ILookupParameter;
104
105        if ((valueParam == null) && (lookupParam == null))
106          throw new InvalidOperationException(
107            string.Format("Parameter look-up chain broken. Parameter \"{0}\" is not an \"{1}\" or an \"{2}\".",
108                          actualName, typeof(IValueParameter).GetPrettyName(), typeof(ILookupParameter).GetPrettyName())
109          );
110
111        if (valueParam != null) {
112          if (valueParam.Value != null) return valueParam;
113          else if (lookupParam == null) return valueParam;
114        }
115        if (lookupParam != null) actualName = lookupParam.ActualName;
116
117        currentExecutionContext = currentExecutionContext.Parent;
118        while ((currentExecutionContext != null) && !currentExecutionContext.Parameters.ContainsKey(actualName))
119          currentExecutionContext = currentExecutionContext.Parent;
120      }
121      return null;
122    }
123    private IVariable LookupVariable(string name) {
124      IScope scope = ExecutionContext.Scope;
125      while ((scope != null) && !scope.Variables.ContainsKey(name))
126        scope = scope.Parent;
127      return scope != null ? scope.Variables[name] : null;
128    }
129    protected override IItem GetActualValue() {
130      string name;
131      // try to get value from context stack
132      IValueParameter param = GetValueParameterAndTranslateName(out name);
133      if (param != null) return param.Value;
134
135      // try to get variable from scope
136      IVariable var = LookupVariable(name);
137      if (var != null) {
138        if (!(var.Value is T))
139          throw new InvalidOperationException(
140            string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
141                          name,
142                          typeof(T).GetPrettyName())
143          );
144        return var.Value;
145      }
146      return null;
147    }
148    protected override void SetActualValue(IItem value) {
149      if (!(value is T))
150        throw new InvalidOperationException(
151          string.Format("Type mismatch. Value is not a \"{0}\".",
152                        typeof(T).GetPrettyName())
153        );
154      // try to set value in context stack
155      string name;
156      IValueParameter param = GetValueParameterAndTranslateName(out name);
157      if (param != null) {
158        param.Value = value;
159        return;
160      }
161
162      // try to set value in scope
163      IVariable var = LookupVariable(name);
164      if (var != null) {
165        var.Value = value;
166        return;
167      }
168
169      // create new variable
170      ExecutionContext.Scope.Variables.Add(new Variable(name, value));
171    }
172
173    public event EventHandler ActualNameChanged;
174    protected virtual void OnActualNameChanged() {
175      EventHandler handler = ActualNameChanged;
176      if (handler != null) handler(this, EventArgs.Empty);
177      OnToStringChanged();
178    }
179  }
180}
Note: See TracBrowser for help on using the repository browser.