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 |
|
---|
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 generic parameter representing instances of type T which are collected from the sub-scopes of the current scope.
|
---|
30 | /// </summary>
|
---|
31 | [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.")]
|
---|
32 | [StorableClass]
|
---|
33 | public class SubScopesLookupParameter<T> : LookupParameter<ItemArray<T>> where T : class, IItem {
|
---|
34 | public SubScopesLookupParameter() : base() { }
|
---|
35 | public SubScopesLookupParameter(string name) : base(name) { }
|
---|
36 | public SubScopesLookupParameter(string name, string description) : base(name, description) { }
|
---|
37 | public SubScopesLookupParameter(string name, string description, string actualName) : base(name, description, actualName) { }
|
---|
38 |
|
---|
39 | protected override IItem GetActualValue() {
|
---|
40 | string name = LookupParameter<ItemArray<T>>.TranslateName(Name, ExecutionContext);
|
---|
41 | IScope scope = ExecutionContext.Scope;
|
---|
42 | ItemArray<T> values = new ItemArray<T>(scope.SubScopes.Count);
|
---|
43 | IVariable var;
|
---|
44 | T value;
|
---|
45 |
|
---|
46 | for (int i = 0; i < values.Length; i++) {
|
---|
47 | scope.SubScopes[i].Variables.TryGetValue(name, out var);
|
---|
48 | if (var != null) {
|
---|
49 | value = var.Value as T;
|
---|
50 | if ((var.Value != null) && (value == null))
|
---|
51 | throw new InvalidOperationException(
|
---|
52 | string.Format("Type mismatch. Variable \"{0}\" does not contain a \"{1}\".",
|
---|
53 | name,
|
---|
54 | typeof(T).GetPrettyName())
|
---|
55 | );
|
---|
56 | values[i] = value;
|
---|
57 | }
|
---|
58 | }
|
---|
59 | return values;
|
---|
60 | }
|
---|
61 | protected override void SetActualValue(IItem value) {
|
---|
62 | ItemArray<T> values = value as ItemArray<T>;
|
---|
63 | if (values == null)
|
---|
64 | throw new InvalidOperationException(
|
---|
65 | string.Format("Type mismatch. Value is not a \"{0}\".",
|
---|
66 | typeof(ItemArray<T>).GetPrettyName())
|
---|
67 | );
|
---|
68 |
|
---|
69 | string name = LookupParameter<ItemArray<T>>.TranslateName(Name, ExecutionContext);
|
---|
70 | IScope scope = ExecutionContext.Scope;
|
---|
71 | IVariable var;
|
---|
72 |
|
---|
73 | for (int i = 0; i < values.Length; i++) {
|
---|
74 | scope.SubScopes[i].Variables.TryGetValue(name, out var);
|
---|
75 | if (var != null) var.Value = values[i];
|
---|
76 | else scope.SubScopes[i].Variables.Add(new Variable(name, values[i]));
|
---|
77 | }
|
---|
78 | }
|
---|
79 | }
|
---|
80 | }
|
---|