[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using System.Xml;
|
---|
| 26 | using System.Threading;
|
---|
[1823] | 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2] | 28 |
|
---|
| 29 | namespace HeuristicLab.Core {
|
---|
[776] | 30 | /// <summary>
|
---|
| 31 | /// Base class to represent an engine, which is an interpreter, holding the code, the data and
|
---|
| 32 | /// the actual state, which is the runtime stack and a pointer onto the next operation. It represents
|
---|
| 33 | /// one execution and can handle parallel executions.
|
---|
| 34 | /// </summary>
|
---|
[2] | 35 | public abstract class EngineBase : ItemBase, IEngine {
|
---|
[1667] | 36 |
|
---|
[776] | 37 | /// <summary>
|
---|
| 38 | /// Field of the current instance that represent the operator graph.
|
---|
| 39 | /// </summary>
|
---|
[1667] | 40 | [Storable]
|
---|
[2] | 41 | protected IOperatorGraph myOperatorGraph;
|
---|
[776] | 42 | /// <summary>
|
---|
| 43 | /// Gets the current operator graph.
|
---|
| 44 | /// </summary>
|
---|
[2] | 45 | public IOperatorGraph OperatorGraph {
|
---|
| 46 | get { return myOperatorGraph; }
|
---|
| 47 | }
|
---|
[776] | 48 | /// <summary>
|
---|
| 49 | /// Field of the current instance that represent the global scope.
|
---|
| 50 | /// </summary>
|
---|
[1667] | 51 | [Storable]
|
---|
[2] | 52 | protected IScope myGlobalScope;
|
---|
[776] | 53 | /// <summary>
|
---|
| 54 | /// Gets the current global scope.
|
---|
| 55 | /// </summary>
|
---|
[2] | 56 | public IScope GlobalScope {
|
---|
| 57 | get { return myGlobalScope; }
|
---|
| 58 | }
|
---|
| 59 |
|
---|
[1667] | 60 | [Storable]
|
---|
[2] | 61 | private TimeSpan myExecutionTime;
|
---|
[776] | 62 | /// <summary>
|
---|
| 63 | /// Gets or sets the execution time.
|
---|
| 64 | /// </summary>
|
---|
| 65 | /// <remarks>Calls <see cref="OnExecutionTimeChanged"/> in the setter.</remarks>
|
---|
[2] | 66 | public TimeSpan ExecutionTime {
|
---|
| 67 | get { return myExecutionTime; }
|
---|
| 68 | protected set {
|
---|
| 69 | myExecutionTime = value;
|
---|
| 70 | OnExecutionTimeChanged();
|
---|
| 71 | }
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[776] | 74 | /// <summary>
|
---|
| 75 | /// Field of the current instance that represent the execution stack.
|
---|
| 76 | /// </summary>
|
---|
[1667] | 77 | [Storable]
|
---|
[2] | 78 | protected Stack<IOperation> myExecutionStack;
|
---|
[776] | 79 | /// <summary>
|
---|
| 80 | /// Gets the current execution stack.
|
---|
| 81 | /// </summary>
|
---|
[2] | 82 | public Stack<IOperation> ExecutionStack {
|
---|
| 83 | get { return myExecutionStack; }
|
---|
| 84 | }
|
---|
[1667] | 85 |
|
---|
[776] | 86 | /// <summary>
|
---|
| 87 | /// Flag of the current instance whether it is currently running.
|
---|
| 88 | /// </summary>
|
---|
[2] | 89 | protected bool myRunning;
|
---|
[776] | 90 | /// <summary>
|
---|
| 91 | /// Gets information whether the instance is currently running.
|
---|
| 92 | /// </summary>
|
---|
[2] | 93 | public bool Running {
|
---|
| 94 | get { return myRunning; }
|
---|
| 95 | }
|
---|
[776] | 96 |
|
---|
| 97 | /// <summary>
|
---|
| 98 | /// Flag of the current instance whether it is canceled.
|
---|
| 99 | /// </summary>
|
---|
[2] | 100 | protected bool myCanceled;
|
---|
[776] | 101 | /// <summary>
|
---|
| 102 | /// Gets information whether the instance is currently canceled.
|
---|
| 103 | /// </summary>
|
---|
[2] | 104 | public bool Canceled {
|
---|
| 105 | get { return myCanceled; }
|
---|
| 106 | }
|
---|
[776] | 107 | /// <summary>
|
---|
| 108 | /// Gets information whether the instance has already terminated.
|
---|
| 109 | /// </summary>
|
---|
[2] | 110 | public virtual bool Terminated {
|
---|
| 111 | get { return ExecutionStack.Count == 0; }
|
---|
| 112 | }
|
---|
| 113 |
|
---|
[776] | 114 | /// <summary>
|
---|
| 115 | /// Initializes a new instance of <see cref="EngineBase"/> with a new global scope.
|
---|
| 116 | /// </summary>
|
---|
| 117 | /// <remarks>Calls <see cref="Reset"/>.</remarks>
|
---|
[2] | 118 | protected EngineBase() {
|
---|
| 119 | myOperatorGraph = new OperatorGraph();
|
---|
| 120 | myGlobalScope = new Scope("Global");
|
---|
| 121 | myExecutionStack = new Stack<IOperation>();
|
---|
| 122 | Reset();
|
---|
| 123 | }
|
---|
| 124 |
|
---|
[776] | 125 | /// <summary>
|
---|
| 126 | /// Clones the current instance (deep clone).
|
---|
| 127 | /// </summary>
|
---|
| 128 | /// <remarks>Deep clone through <see cref="Auxiliary.Clone"/> method of helper class
|
---|
| 129 | /// <see cref="Auxiliary"/>.</remarks>
|
---|
| 130 | /// <param name="clonedObjects">Dictionary of all already clone objects. (Needed to avoid cycles.)</param>
|
---|
| 131 | /// <returns>The cloned object as <see cref="EngineBase"/>.</returns>
|
---|
[2] | 132 | public override object Clone(IDictionary<Guid, object> clonedObjects) {
|
---|
| 133 | EngineBase clone = (EngineBase)base.Clone(clonedObjects);
|
---|
| 134 | clone.myOperatorGraph = (IOperatorGraph)Auxiliary.Clone(OperatorGraph, clonedObjects);
|
---|
| 135 | clone.myGlobalScope = (IScope)Auxiliary.Clone(GlobalScope, clonedObjects);
|
---|
| 136 | clone.myExecutionTime = ExecutionTime;
|
---|
| 137 | IOperation[] operations = new IOperation[ExecutionStack.Count];
|
---|
| 138 | ExecutionStack.CopyTo(operations, 0);
|
---|
| 139 | for (int i = operations.Length - 1; i >= 0; i--)
|
---|
| 140 | clone.myExecutionStack.Push((IOperation)Auxiliary.Clone(operations[i], clonedObjects));
|
---|
| 141 | clone.myRunning = Running;
|
---|
| 142 | clone.myCanceled = Canceled;
|
---|
| 143 | return clone;
|
---|
| 144 | }
|
---|
| 145 |
|
---|
[776] | 146 | /// <inheritdoc/>
|
---|
| 147 | /// <remarks>Calls <see cref="ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback, object)"/>
|
---|
| 148 | /// of class <see cref="ThreadPool"/>.</remarks>
|
---|
[2] | 149 | public virtual void Execute() {
|
---|
| 150 | myRunning = true;
|
---|
| 151 | myCanceled = false;
|
---|
| 152 | ThreadPool.QueueUserWorkItem(new WaitCallback(Run), null);
|
---|
| 153 | }
|
---|
[776] | 154 | /// <inheritdoc/>
|
---|
| 155 | /// <remarks>Calls <see cref="ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback, object)"/>
|
---|
| 156 | /// of class <see cref="ThreadPool"/>.</remarks>
|
---|
[2] | 157 | public virtual void ExecuteSteps(int steps) {
|
---|
| 158 | myRunning = true;
|
---|
| 159 | myCanceled = false;
|
---|
| 160 | ThreadPool.QueueUserWorkItem(new WaitCallback(Run), steps);
|
---|
| 161 | }
|
---|
[776] | 162 | /// <inheritdoc/>
|
---|
| 163 | /// <remarks>Calls <see cref="ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback, object)"/>
|
---|
| 164 | /// of class <see cref="ThreadPool"/>.</remarks>
|
---|
[2] | 165 | public void ExecuteStep() {
|
---|
| 166 | ExecuteSteps(1);
|
---|
| 167 | }
|
---|
[776] | 168 | /// <inheritdoc/>
|
---|
| 169 | /// <remarks>Sets the protected flag <c>myCanceled</c> to <c>true</c>.</remarks>
|
---|
[2] | 170 | public virtual void Abort() {
|
---|
| 171 | myCanceled = true;
|
---|
| 172 | }
|
---|
[776] | 173 | /// <inheritdoc/>
|
---|
| 174 | /// <remarks>Sets <c>myCanceled</c> and <c>myRunning</c> to <c>false</c>. The global scope is cleared,
|
---|
| 175 | /// the execution time is reseted, the execution stack is cleared and a new <see cref="AtomicOperation"/>
|
---|
| 176 | /// with the initial operator is added. <br/>
|
---|
| 177 | /// Calls <see cref="OnInitialized"/>.</remarks>
|
---|
[2] | 178 | public virtual void Reset() {
|
---|
| 179 | myCanceled = false;
|
---|
| 180 | myRunning = false;
|
---|
| 181 | GlobalScope.Clear();
|
---|
| 182 | ExecutionTime = new TimeSpan();
|
---|
| 183 | myExecutionStack.Clear();
|
---|
| 184 | if (OperatorGraph.InitialOperator != null)
|
---|
| 185 | myExecutionStack.Push(new AtomicOperation(OperatorGraph.InitialOperator, GlobalScope));
|
---|
| 186 | OnInitialized();
|
---|
| 187 | }
|
---|
| 188 |
|
---|
| 189 | private void Run(object state) {
|
---|
| 190 | if (state == null) Run();
|
---|
| 191 | else RunSteps((int)state);
|
---|
| 192 | myRunning = false;
|
---|
| 193 | OnFinished();
|
---|
| 194 | }
|
---|
| 195 | private void Run() {
|
---|
| 196 | DateTime start = DateTime.Now;
|
---|
| 197 | DateTime end;
|
---|
| 198 | while ((!Canceled) && (!Terminated)) {
|
---|
| 199 | ProcessNextOperation();
|
---|
| 200 | end = DateTime.Now;
|
---|
| 201 | ExecutionTime += end - start;
|
---|
| 202 | start = end;
|
---|
| 203 | }
|
---|
| 204 | ExecutionTime += DateTime.Now - start;
|
---|
| 205 | }
|
---|
| 206 | private void RunSteps(int steps) {
|
---|
| 207 | DateTime start = DateTime.Now;
|
---|
| 208 | DateTime end;
|
---|
| 209 | int step = 0;
|
---|
| 210 | while ((!Canceled) && (!Terminated) && (step < steps)) {
|
---|
| 211 | ProcessNextOperation();
|
---|
| 212 | step++;
|
---|
| 213 | end = DateTime.Now;
|
---|
| 214 | ExecutionTime += end - start;
|
---|
| 215 | start = end;
|
---|
| 216 | }
|
---|
| 217 | ExecutionTime += DateTime.Now - start;
|
---|
| 218 | }
|
---|
| 219 |
|
---|
[776] | 220 | /// <summary>
|
---|
| 221 | /// Performs the next operation.
|
---|
| 222 | /// </summary>
|
---|
[2] | 223 | protected abstract void ProcessNextOperation();
|
---|
| 224 |
|
---|
[776] | 225 | /// <summary>
|
---|
| 226 | /// Occurs when the current instance is initialized.
|
---|
| 227 | /// </summary>
|
---|
[2] | 228 | public event EventHandler Initialized;
|
---|
[776] | 229 | /// <summary>
|
---|
| 230 | /// Fires a new <c>Initialized</c> event.
|
---|
| 231 | /// </summary>
|
---|
[2] | 232 | protected virtual void OnInitialized() {
|
---|
| 233 | if (Initialized != null)
|
---|
| 234 | Initialized(this, new EventArgs());
|
---|
| 235 | }
|
---|
[776] | 236 | /// <summary>
|
---|
| 237 | /// Occurs when an operation is executed.
|
---|
| 238 | /// </summary>
|
---|
[2] | 239 | public event EventHandler<OperationEventArgs> OperationExecuted;
|
---|
[776] | 240 | /// <summary>
|
---|
| 241 | /// Fires a new <c>OperationExecuted</c> event.
|
---|
| 242 | /// </summary>
|
---|
| 243 | /// <param name="operation">The operation that has been executed.</param>
|
---|
[2] | 244 | protected virtual void OnOperationExecuted(IOperation operation) {
|
---|
| 245 | if (OperationExecuted != null)
|
---|
| 246 | OperationExecuted(this, new OperationEventArgs(operation));
|
---|
| 247 | }
|
---|
[776] | 248 | /// <summary>
|
---|
| 249 | /// Occurs when an exception occured during the execution.
|
---|
| 250 | /// </summary>
|
---|
[2] | 251 | public event EventHandler<ExceptionEventArgs> ExceptionOccurred;
|
---|
[776] | 252 | /// <summary>
|
---|
| 253 | /// Aborts the execution and fires a new <c>ExceptionOccurred</c> event.
|
---|
| 254 | /// </summary>
|
---|
| 255 | /// <param name="exception">The exception that was thrown.</param>
|
---|
[2] | 256 | protected virtual void OnExceptionOccurred(Exception exception) {
|
---|
| 257 | Abort();
|
---|
| 258 | if (ExceptionOccurred != null)
|
---|
| 259 | ExceptionOccurred(this, new ExceptionEventArgs(exception));
|
---|
| 260 | }
|
---|
[776] | 261 | /// <summary>
|
---|
| 262 | /// Occurs when the execution time changed.
|
---|
| 263 | /// </summary>
|
---|
[2] | 264 | public event EventHandler ExecutionTimeChanged;
|
---|
[776] | 265 | /// <summary>
|
---|
| 266 | /// Fires a new <c>ExecutionTimeChanged</c> event.
|
---|
| 267 | /// </summary>
|
---|
[2] | 268 | protected virtual void OnExecutionTimeChanged() {
|
---|
| 269 | if (ExecutionTimeChanged != null)
|
---|
| 270 | ExecutionTimeChanged(this, new EventArgs());
|
---|
| 271 | }
|
---|
[776] | 272 | /// <summary>
|
---|
| 273 | /// Occurs when the execution is finished.
|
---|
| 274 | /// </summary>
|
---|
[2] | 275 | public event EventHandler Finished;
|
---|
[776] | 276 | /// <summary>
|
---|
| 277 | /// Fires a new <c>Finished</c> event.
|
---|
| 278 | /// </summary>
|
---|
[2] | 279 | protected virtual void OnFinished() {
|
---|
| 280 | if (Finished != null)
|
---|
| 281 | Finished(this, new EventArgs());
|
---|
| 282 | }
|
---|
| 283 | }
|
---|
| 284 | }
|
---|