Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters/3.3/SubScopesLookupParameter.cs @ 2912

Last change on this file since 2912 was 2852, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • worked on algorithms
File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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;
25
26namespace HeuristicLab.Parameters {
27  /// <summary>
28  /// A generic parameter representing instances of type T which are collected from the sub-scopes of the current scope.
29  /// </summary>
30  [Item("SubScopesLookupParameter<T>", "A generic parameter representing instances of type T which are collected from or written to the sub-scopes of the current scope.")]
31  public class SubScopesLookupParameter<T> : LookupParameter<ItemArray<T>> where T : class, IItem {
32    public SubScopesLookupParameter() : base() { }
33    public SubScopesLookupParameter(string name) : base(name) { }
34    public SubScopesLookupParameter(string name, string description) : base(name, description) { }
35
36    protected override IItem GetActualValue() {
37      string name = LookupParameter<ItemArray<T>>.TranslateName(Name, ExecutionContext);
38      IScope scope = ExecutionContext.Scope;
39      ItemArray<T> values = new ItemArray<T>(scope.SubScopes.Count);
40      IVariable var;
41      T value;
42
43      for (int i = 0; i < values.Length; i++) {
44        scope.SubScopes[i].Variables.TryGetValue(name, out var);
45        if (var != null) {
46          value = var.Value as T;
47          if ((var.Value != null) && (value == null))
48            throw new InvalidOperationException(
49              string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
50                            name,
51                            typeof(T).GetPrettyName())
52            );
53          values[i] = value;
54        }
55      }
56      return values;
57    }
58    protected override void SetActualValue(IItem value) {
59      ItemArray<T> values = value as ItemArray<T>;
60      if (values == null)
61        throw new InvalidOperationException(
62          string.Format("Type mismatch. Value is not a \"{0}\".",
63                        typeof(ItemArray<T>).GetPrettyName())
64        );
65
66      string name = LookupParameter<ItemArray<T>>.TranslateName(Name, ExecutionContext);
67      IScope scope = ExecutionContext.Scope;
68      IVariable var;
69
70      for (int i = 0; i < values.Length; i++) {
71        scope.SubScopes[i].Variables.TryGetValue(name, out var);
72        if (var != null) var.Value = values[i];
73        else scope.SubScopes[i].Variables.Add(new Variable(name, values[i]));
74      }
75    }
76  }
77}
Note: See TracBrowser for help on using the repository browser.