Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.DebugEngine/3.3/DebugEngine.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 11.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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 System.Linq;
24using System.Threading;
25using System.Threading.Tasks;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Persistence;
29
30namespace HeuristicLab.DebugEngine {
31
32  [StorableType("671a070c-deca-445a-af74-2249f4825739")]
33  [Item("Debug Engine", "Engine for debugging algorithms.")]
34  public class DebugEngine : Executable, IEngine {
35
36    #region Construction and Cloning
37
38    [StorableConstructor]
39    protected DebugEngine(bool deserializing)
40      : base(deserializing) {
41      InitializeTimer();
42    }
43
44    protected DebugEngine(DebugEngine original, Cloner cloner)
45      : base(original, cloner) {
46      if (original.ExecutionState == ExecutionState.Started) throw new InvalidOperationException(string.Format("Clone not allowed in execution state \"{0}\".", ExecutionState));
47      Log = cloner.Clone(original.Log);
48      ExecutionStack = cloner.Clone(original.ExecutionStack);
49      OperatorTrace = cloner.Clone(original.OperatorTrace);
50      InitializeTimer();
51      currentOperation = cloner.Clone(original.currentOperation);
52    }
53    public DebugEngine()
54      : base() {
55      Log = new Log();
56      ExecutionStack = new ExecutionStack();
57      OperatorTrace = new OperatorTrace();
58      InitializeTimer();
59    }
60
61    public override IDeepCloneable Clone(Cloner cloner) {
62      return new DebugEngine(this, cloner);
63    }
64
65    private void InitializeTimer() {
66      timer = new System.Timers.Timer(250);
67      timer.AutoReset = true;
68      timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Elapsed);
69    }
70
71    #endregion
72
73    #region Fields and Properties
74
75    [Storable]
76    public ILog Log { get; private set; }
77
78    [Storable]
79    public ExecutionStack ExecutionStack { get; private set; }
80
81    [Storable]
82    public OperatorTrace OperatorTrace { get; private set; }
83
84    private CancellationTokenSource cancellationTokenSource;
85    private bool stopPending;
86    private DateTime lastUpdateTime;
87    private System.Timers.Timer timer;
88
89    [Storable]
90    private IOperation currentOperation;
91    public IOperation CurrentOperation {
92      get { return currentOperation; }
93      private set {
94        if (value != currentOperation) {
95          currentOperation = value;
96          OnOperationChanged(value);
97        }
98      }
99    }
100
101    public virtual IAtomicOperation CurrentAtomicOperation {
102      get { return CurrentOperation as IAtomicOperation; }
103    }
104
105    public virtual IExecutionContext CurrentExecutionContext {
106      get { return CurrentOperation as IExecutionContext; }
107    }
108
109    public virtual bool CanContinue {
110      get { return CurrentOperation != null || ExecutionStack.Count > 0; }
111    }
112
113    public virtual bool IsAtBreakpoint {
114      get { return CurrentAtomicOperation != null && CurrentAtomicOperation.Operator != null && CurrentAtomicOperation.Operator.Breakpoint; }
115    }
116
117    #endregion
118
119    #region Events
120
121    public event EventHandler<OperationChangedEventArgs> CurrentOperationChanged;
122    protected virtual void OnOperationChanged(IOperation newOperation) {
123      EventHandler<OperationChangedEventArgs> handler = CurrentOperationChanged;
124      if (handler != null) {
125        handler(this, new OperationChangedEventArgs(newOperation));
126      }
127    }
128
129    #endregion
130
131    #region Std Methods
132    public sealed override void Prepare() {
133      base.Prepare();
134      ExecutionStack.Clear();
135      CurrentOperation = null;
136      OperatorTrace.Reset();
137      OnPrepared();
138    }
139    public void Prepare(IOperation initialOperation) {
140      base.Prepare();
141      ExecutionStack.Clear();
142      if (initialOperation != null)
143        ExecutionStack.Add(initialOperation);
144      CurrentOperation = null;
145      OperatorTrace.Reset();
146      OnPrepared();
147    }
148    protected override void OnPrepared() {
149      Log.LogMessage("Engine prepared");
150      base.OnPrepared();
151    }
152
153    public virtual void Step(bool skipStackOperations) {
154      OnStarted();
155      cancellationTokenSource = new CancellationTokenSource();
156      stopPending = false;
157      lastUpdateTime = DateTime.UtcNow;
158      timer.Start();
159      try {
160        ProcessNextOperation(true, cancellationTokenSource.Token);
161        while (skipStackOperations && !(CurrentOperation is IAtomicOperation) && CanContinue)
162          ProcessNextOperation(true, cancellationTokenSource.Token);
163      } catch (Exception ex) {
164        OnExceptionOccurred(ex);
165      }
166      timer.Stop();
167      ExecutionTime += DateTime.UtcNow - lastUpdateTime;
168      cancellationTokenSource.Dispose();
169      cancellationTokenSource = null;
170      if (stopPending) ExecutionStack.Clear();
171      if (stopPending || !CanContinue) OnStopped();
172      else OnPaused();
173    }
174
175    public override void Start() {
176      base.Start();
177      cancellationTokenSource = new CancellationTokenSource();
178      stopPending = false;
179      Task task = Task.Factory.StartNew(Run, cancellationTokenSource.Token, cancellationTokenSource.Token);
180      task.ContinueWith(t => {
181        try {
182          t.Wait();
183        } catch (AggregateException ex) {
184          try {
185            ex.Flatten().Handle(x => x is OperationCanceledException);
186          } catch (AggregateException remaining) {
187            if (remaining.InnerExceptions.Count == 1) OnExceptionOccurred(remaining.InnerExceptions[0]);
188            else OnExceptionOccurred(remaining);
189          }
190        }
191        cancellationTokenSource.Dispose();
192        cancellationTokenSource = null;
193
194        if (stopPending) ExecutionStack.Clear();
195        if (stopPending || !CanContinue) OnStopped();
196        else OnPaused();
197      });
198    }
199
200    protected override void OnStarted() {
201      Log.LogMessage("Engine started");
202      base.OnStarted();
203    }
204
205    public override void Pause() {
206      base.Pause();
207      cancellationTokenSource.Cancel();
208    }
209
210    protected override void OnPaused() {
211      Log.LogMessage("Engine paused");
212      base.OnPaused();
213    }
214
215    public override void Stop() {
216      CurrentOperation = null;
217      base.Stop();
218      if (ExecutionState == ExecutionState.Paused) {
219        ExecutionStack.Clear();
220        OnStopped();
221      } else {
222        stopPending = true;
223        cancellationTokenSource.Cancel();
224      }
225    }
226
227    protected override void OnStopped() {
228      Log.LogMessage("Engine stopped");
229      base.OnStopped();
230    }
231
232    protected override void OnExceptionOccurred(Exception exception) {
233      Log.LogException(exception);
234      base.OnExceptionOccurred(exception);
235    }
236
237    private void Run(object state) {
238      CancellationToken cancellationToken = (CancellationToken)state;
239
240      OnStarted();
241      lastUpdateTime = DateTime.UtcNow;
242      timer.Start();
243      try {
244        if (!cancellationToken.IsCancellationRequested && CanContinue)
245          ProcessNextOperation(false, cancellationToken);
246        while (!cancellationToken.IsCancellationRequested && CanContinue && !IsAtBreakpoint)
247          ProcessNextOperation(false, cancellationToken);
248        cancellationToken.ThrowIfCancellationRequested();
249      } finally {
250        timer.Stop();
251        ExecutionTime += DateTime.UtcNow - lastUpdateTime;
252
253        if (IsAtBreakpoint)
254          Log.LogMessage(string.Format("Breaking before: {0}", CurrentAtomicOperation.Operator.Name));
255      }
256    }
257
258    private void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) {
259      System.Timers.Timer timer = (System.Timers.Timer)sender;
260      timer.Enabled = false;
261      DateTime now = DateTime.UtcNow;
262      ExecutionTime += now - lastUpdateTime;
263      lastUpdateTime = now;
264      timer.Enabled = true;
265    }
266    #endregion
267
268    #region Methods
269
270
271
272    /// <summary>
273    /// Deals with the next operation, if it is an <see cref="AtomicOperation"/> it is executed,
274    /// if it is a <see cref="CompositeOperation"/> its single operations are pushed on the execution stack.
275    /// </summary>
276    /// <remarks>If an error occurs during the execution the operation is aborted and the operation
277    /// is pushed on the stack again.<br/>
278    /// If the execution was successful <see cref="EngineBase.OnOperationExecuted"/> is called.</remarks>
279    protected virtual void ProcessNextOperation(bool logOperations, CancellationToken cancellationToken) {
280      IAtomicOperation atomicOperation = CurrentOperation as IAtomicOperation;
281      OperationCollection operations = CurrentOperation as OperationCollection;
282      if (atomicOperation != null && operations != null)
283        throw new InvalidOperationException("Current operation is both atomic and an operation collection");
284
285      if (atomicOperation != null) {
286        if (logOperations)
287          Log.LogMessage(string.Format("Performing atomic operation {0}", Utils.Name(atomicOperation)));
288        PerformAtomicOperation(atomicOperation, cancellationToken);
289      } else if (operations != null) {
290        if (logOperations)
291          Log.LogMessage("Expanding operation collection");
292        ExecutionStack.AddRange(operations.Reverse());
293        CurrentOperation = null;
294      } else if (ExecutionStack.Count > 0) {
295        if (logOperations)
296          Log.LogMessage("Popping execution stack");
297        CurrentOperation = ExecutionStack.Last();
298        ExecutionStack.RemoveAt(ExecutionStack.Count - 1);
299      } else {
300        if (logOperations)
301          Log.LogMessage("Nothing to do");
302      }
303      OperatorTrace.Regenerate(CurrentAtomicOperation);
304    }
305
306    protected virtual void PerformAtomicOperation(IAtomicOperation operation, CancellationToken cancellationToken) {
307      if (operation != null) {
308        try {
309          IOperation successor = operation.Operator.Execute((IExecutionContext)operation, cancellationToken);
310          if (successor != null) {
311            OperatorTrace.RegisterParenthood(operation, successor);
312            ExecutionStack.Add(successor);
313          }
314          CurrentOperation = null;
315        } catch (Exception ex) {
316          if (ex is OperationCanceledException) throw ex;
317          else throw new OperatorExecutionException(operation.Operator, ex);
318        }
319      }
320    }
321
322    #endregion
323  }
324}
Note: See TracBrowser for help on using the repository browser.