Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2434_crossvalidation/HeuristicLab.Operators/3.3/InstrumentedOperator.cs @ 16139

Last change on this file since 16139 was 14029, checked in by gkronber, 8 years ago

#2434: merged trunk changes r12934:14026 from trunk to branch

File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Operators {
30  [Item("InstrumentedOperator", "A operator that can execute pre- and post actions.")]
31  [StorableClass]
32  public abstract class InstrumentedOperator : SingleSuccessorOperator, IInstrumentedOperator {
33    private const string BeforeExecutionOperatorsParameterName = "BeforeExecutionOperators";
34    private const string AfterExecutionOperatorsParameterName = "AfterExecutionOperators";
35
36    private IFixedValueParameter<OperatorList> BeforeExecutionOperatorsParameter {
37      get { return (IFixedValueParameter<OperatorList>)Parameters[BeforeExecutionOperatorsParameterName]; }
38    }
39    private IFixedValueParameter<OperatorList> AfterExecutionOperatorsParameter {
40      get { return (IFixedValueParameter<OperatorList>)Parameters[AfterExecutionOperatorsParameterName]; }
41    }
42
43
44    IEnumerable<IOperator> IInstrumentedOperator.BeforeExecutionOperators { get { return BeforeExecutionOperators; } }
45    public OperatorList BeforeExecutionOperators {
46      get { return BeforeExecutionOperatorsParameter.Value; }
47    }
48    IEnumerable<IOperator> IInstrumentedOperator.AfterExecutionOperators { get { return AfterExecutionOperators; } }
49    public OperatorList AfterExecutionOperators {
50      get { return AfterExecutionOperatorsParameter.Value; }
51    }
52
53    [StorableConstructor]
54    protected InstrumentedOperator(bool deserializing) : base(deserializing) { }
55    protected InstrumentedOperator(InstrumentedOperator original, Cloner cloner)
56      : base(original, cloner) {
57    }
58    protected InstrumentedOperator()
59      : base() {
60      Parameters.Add(new FixedValueParameter<OperatorList>(BeforeExecutionOperatorsParameterName, "Actions that are executed before the execution of the operator", new OperatorList()));
61      Parameters.Add(new FixedValueParameter<OperatorList>(AfterExecutionOperatorsParameterName, "Actions that are executed after the execution of the operator", new OperatorList()));
62      BeforeExecutionOperatorsParameter.Hidden = true;
63      BeforeExecutionOperatorsParameter.GetsCollected = false;
64      AfterExecutionOperatorsParameter.Hidden = true;
65      AfterExecutionOperatorsParameter.GetsCollected = false;
66    }
67
68    [StorableHook(HookType.AfterDeserialization)]
69    private void AfterDeserialization() {
70      // BackwardsCompatibility3.3
71      #region Backwards compatible code, remove with 3.4
72      if (!Parameters.ContainsKey(BeforeExecutionOperatorsParameterName)) {
73        Parameters.Add(new FixedValueParameter<OperatorList>(BeforeExecutionOperatorsParameterName, "Actions that are executed before the execution of the operator", new OperatorList()));
74        BeforeExecutionOperatorsParameter.Hidden = true;
75      }
76      if (!Parameters.ContainsKey(AfterExecutionOperatorsParameterName)) {
77        Parameters.Add(new FixedValueParameter<OperatorList>(AfterExecutionOperatorsParameterName, "Actions that are executed after the execution of the operator", new OperatorList()));
78        AfterExecutionOperatorsParameter.Hidden = true;
79      }
80      #endregion
81    }
82
83    protected override IEnumerable<KeyValuePair<string, IItem>> GetCollectedValues(IValueParameter param) {
84      foreach (var b in base.GetCollectedValues(param)) yield return b;
85      if (param != BeforeExecutionOperatorsParameter && param != AfterExecutionOperatorsParameter) yield break;
86      var operatorList = param.Value as OperatorList;
87      if (operatorList != null) {
88        var counter = 0;
89        foreach (var op in operatorList) {
90          yield return new KeyValuePair<string, IItem>(counter.ToString(), op);
91          var children = new Dictionary<string, IItem>();
92          op.CollectParameterValues(children);
93          foreach (var c in children) yield return new KeyValuePair<string, IItem>(counter + "." + c.Key, c.Value);
94          counter++;
95        }
96      }
97    }
98
99    public sealed override IOperation Apply() {
100      //to speed up the execution call instrumented apply directly if no before operators exists
101      if (!BeforeExecutionOperators.Any())
102        return InstrumentedApply();
103
104      //build before operations
105      var opCol = new OperationCollection();
106      foreach (var beforeAction in BeforeExecutionOperators) {
107        var beforeActionOperation = ExecutionContext.CreateChildOperation(beforeAction);
108        opCol.Add(beforeActionOperation);
109      }
110      //build operation for the instrumented apply
111      opCol.Add(CreateInstrumentedOperation(this));
112      return opCol;
113    }
114
115    public virtual IOperation InstrumentedApply() {
116      if (!AfterExecutionOperators.Any()) {
117        if (Successor != null) return ExecutionContext.CreateOperation(Successor);
118        return null;
119      }
120
121      var opCol = new OperationCollection();
122      foreach (var afterAction in AfterExecutionOperators) {
123        var afterActionOperation = ExecutionContext.CreateChildOperation(afterAction);
124        opCol.Add(afterActionOperation);
125      }
126
127      if (Successor != null)
128        opCol.Add(ExecutionContext.CreateOperation(Successor));
129      return opCol;
130    }
131  }
132}
Note: See TracBrowser for help on using the repository browser.