[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;
|
---|
[2474] | 27 | using HeuristicLab.Common;
|
---|
[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 {
|
---|
[776] | 36 | /// <summary>
|
---|
| 37 | /// Field of the current instance that represent the operator graph.
|
---|
| 38 | /// </summary>
|
---|
[2] | 39 | protected IOperatorGraph myOperatorGraph;
|
---|
[776] | 40 | /// <summary>
|
---|
| 41 | /// Gets the current operator graph.
|
---|
| 42 | /// </summary>
|
---|
[2] | 43 | public IOperatorGraph OperatorGraph {
|
---|
| 44 | get { return myOperatorGraph; }
|
---|
| 45 | }
|
---|
[776] | 46 | /// <summary>
|
---|
| 47 | /// Field of the current instance that represent the global scope.
|
---|
| 48 | /// </summary>
|
---|
[2] | 49 | protected IScope myGlobalScope;
|
---|
[776] | 50 | /// <summary>
|
---|
| 51 | /// Gets the current global scope.
|
---|
| 52 | /// </summary>
|
---|
[2] | 53 | public IScope GlobalScope {
|
---|
| 54 | get { return myGlobalScope; }
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | private TimeSpan myExecutionTime;
|
---|
[776] | 58 | /// <summary>
|
---|
| 59 | /// Gets or sets the execution time.
|
---|
| 60 | /// </summary>
|
---|
| 61 | /// <remarks>Calls <see cref="OnExecutionTimeChanged"/> in the setter.</remarks>
|
---|
[2] | 62 | public TimeSpan ExecutionTime {
|
---|
| 63 | get { return myExecutionTime; }
|
---|
| 64 | protected set {
|
---|
| 65 | myExecutionTime = value;
|
---|
| 66 | OnExecutionTimeChanged();
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 |
|
---|
[1815] | 70 | private ThreadPriority myPriority;
|
---|
[776] | 71 | /// <summary>
|
---|
[1815] | 72 | /// Gets or sets the priority of the worker thread.
|
---|
| 73 | /// </summary>
|
---|
| 74 | public ThreadPriority Priority {
|
---|
| 75 | get { return myPriority; }
|
---|
| 76 | set { myPriority = value; }
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | /// <summary>
|
---|
[776] | 80 | /// Field of the current instance that represent the execution stack.
|
---|
| 81 | /// </summary>
|
---|
[2] | 82 | protected Stack<IOperation> myExecutionStack;
|
---|
[776] | 83 | /// <summary>
|
---|
| 84 | /// Gets the current execution stack.
|
---|
| 85 | /// </summary>
|
---|
[2] | 86 | public Stack<IOperation> ExecutionStack {
|
---|
| 87 | get { return myExecutionStack; }
|
---|
| 88 | }
|
---|
[776] | 89 |
|
---|
| 90 | /// <summary>
|
---|
| 91 | /// Flag of the current instance whether it is currently running.
|
---|
| 92 | /// </summary>
|
---|
[2] | 93 | protected bool myRunning;
|
---|
[776] | 94 | /// <summary>
|
---|
| 95 | /// Gets information whether the instance is currently running.
|
---|
| 96 | /// </summary>
|
---|
[2] | 97 | public bool Running {
|
---|
| 98 | get { return myRunning; }
|
---|
| 99 | }
|
---|
[776] | 100 |
|
---|
| 101 | /// <summary>
|
---|
| 102 | /// Flag of the current instance whether it is canceled.
|
---|
| 103 | /// </summary>
|
---|
[2] | 104 | protected bool myCanceled;
|
---|
[776] | 105 | /// <summary>
|
---|
| 106 | /// Gets information whether the instance is currently canceled.
|
---|
| 107 | /// </summary>
|
---|
[2] | 108 | public bool Canceled {
|
---|
| 109 | get { return myCanceled; }
|
---|
| 110 | }
|
---|
[776] | 111 | /// <summary>
|
---|
| 112 | /// Gets information whether the instance has already terminated.
|
---|
| 113 | /// </summary>
|
---|
[2] | 114 | public virtual bool Terminated {
|
---|
| 115 | get { return ExecutionStack.Count == 0; }
|
---|
| 116 | }
|
---|
| 117 |
|
---|
[776] | 118 | /// <summary>
|
---|
| 119 | /// Initializes a new instance of <see cref="EngineBase"/> with a new global scope.
|
---|
| 120 | /// </summary>
|
---|
| 121 | /// <remarks>Calls <see cref="Reset"/>.</remarks>
|
---|
[2] | 122 | protected EngineBase() {
|
---|
| 123 | myOperatorGraph = new OperatorGraph();
|
---|
| 124 | myGlobalScope = new Scope("Global");
|
---|
[1815] | 125 | myPriority = ThreadPriority.Normal;
|
---|
[2] | 126 | myExecutionStack = new Stack<IOperation>();
|
---|
| 127 | Reset();
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[776] | 130 | /// <summary>
|
---|
| 131 | /// Clones the current instance (deep clone).
|
---|
| 132 | /// </summary>
|
---|
| 133 | /// <remarks>Deep clone through <see cref="Auxiliary.Clone"/> method of helper class
|
---|
| 134 | /// <see cref="Auxiliary"/>.</remarks>
|
---|
| 135 | /// <param name="clonedObjects">Dictionary of all already clone objects. (Needed to avoid cycles.)</param>
|
---|
| 136 | /// <returns>The cloned object as <see cref="EngineBase"/>.</returns>
|
---|
[2] | 137 | public override object Clone(IDictionary<Guid, object> clonedObjects) {
|
---|
| 138 | EngineBase clone = (EngineBase)base.Clone(clonedObjects);
|
---|
| 139 | clone.myOperatorGraph = (IOperatorGraph)Auxiliary.Clone(OperatorGraph, clonedObjects);
|
---|
| 140 | clone.myGlobalScope = (IScope)Auxiliary.Clone(GlobalScope, clonedObjects);
|
---|
| 141 | clone.myExecutionTime = ExecutionTime;
|
---|
| 142 | IOperation[] operations = new IOperation[ExecutionStack.Count];
|
---|
| 143 | ExecutionStack.CopyTo(operations, 0);
|
---|
| 144 | for (int i = operations.Length - 1; i >= 0; i--)
|
---|
| 145 | clone.myExecutionStack.Push((IOperation)Auxiliary.Clone(operations[i], clonedObjects));
|
---|
| 146 | clone.myRunning = Running;
|
---|
| 147 | clone.myCanceled = Canceled;
|
---|
| 148 | return clone;
|
---|
| 149 |
|
---|
| 150 | }
|
---|
| 151 |
|
---|
[776] | 152 | /// <inheritdoc/>
|
---|
| 153 | /// <remarks>Calls <see cref="ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback, object)"/>
|
---|
| 154 | /// of class <see cref="ThreadPool"/>.</remarks>
|
---|
[2] | 155 | public virtual void Execute() {
|
---|
| 156 | myRunning = true;
|
---|
| 157 | myCanceled = false;
|
---|
| 158 | ThreadPool.QueueUserWorkItem(new WaitCallback(Run), null);
|
---|
| 159 | }
|
---|
[776] | 160 | /// <inheritdoc/>
|
---|
| 161 | /// <remarks>Calls <see cref="ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback, object)"/>
|
---|
| 162 | /// of class <see cref="ThreadPool"/>.</remarks>
|
---|
[2] | 163 | public virtual void ExecuteSteps(int steps) {
|
---|
| 164 | myRunning = true;
|
---|
| 165 | myCanceled = false;
|
---|
| 166 | ThreadPool.QueueUserWorkItem(new WaitCallback(Run), steps);
|
---|
| 167 | }
|
---|
[776] | 168 | /// <inheritdoc/>
|
---|
| 169 | /// <remarks>Calls <see cref="ThreadPool.QueueUserWorkItem(System.Threading.WaitCallback, object)"/>
|
---|
| 170 | /// of class <see cref="ThreadPool"/>.</remarks>
|
---|
[2] | 171 | public void ExecuteStep() {
|
---|
| 172 | ExecuteSteps(1);
|
---|
| 173 | }
|
---|
[776] | 174 | /// <inheritdoc/>
|
---|
| 175 | /// <remarks>Sets the protected flag <c>myCanceled</c> to <c>true</c>.</remarks>
|
---|
[2] | 176 | public virtual void Abort() {
|
---|
| 177 | myCanceled = true;
|
---|
| 178 | }
|
---|
[776] | 179 | /// <inheritdoc/>
|
---|
| 180 | /// <remarks>Sets <c>myCanceled</c> and <c>myRunning</c> to <c>false</c>. The global scope is cleared,
|
---|
| 181 | /// the execution time is reseted, the execution stack is cleared and a new <see cref="AtomicOperation"/>
|
---|
| 182 | /// with the initial operator is added. <br/>
|
---|
| 183 | /// Calls <see cref="OnInitialized"/>.</remarks>
|
---|
[2] | 184 | public virtual void Reset() {
|
---|
| 185 | myCanceled = false;
|
---|
| 186 | myRunning = false;
|
---|
| 187 | GlobalScope.Clear();
|
---|
| 188 | ExecutionTime = new TimeSpan();
|
---|
| 189 | myExecutionStack.Clear();
|
---|
| 190 | if (OperatorGraph.InitialOperator != null)
|
---|
| 191 | myExecutionStack.Push(new AtomicOperation(OperatorGraph.InitialOperator, GlobalScope));
|
---|
| 192 | OnInitialized();
|
---|
| 193 | }
|
---|
| 194 |
|
---|
| 195 | private void Run(object state) {
|
---|
[1815] | 196 | Thread.CurrentThread.Priority = Priority;
|
---|
[2] | 197 | if (state == null) Run();
|
---|
| 198 | else RunSteps((int)state);
|
---|
| 199 | myRunning = false;
|
---|
[1815] | 200 | Thread.CurrentThread.Priority = ThreadPriority.Normal;
|
---|
[2] | 201 | OnFinished();
|
---|
| 202 | }
|
---|
| 203 | private void Run() {
|
---|
| 204 | DateTime start = DateTime.Now;
|
---|
| 205 | DateTime end;
|
---|
| 206 | while ((!Canceled) && (!Terminated)) {
|
---|
| 207 | ProcessNextOperation();
|
---|
| 208 | end = DateTime.Now;
|
---|
| 209 | ExecutionTime += end - start;
|
---|
| 210 | start = end;
|
---|
| 211 | }
|
---|
| 212 | ExecutionTime += DateTime.Now - start;
|
---|
| 213 | }
|
---|
| 214 | private void RunSteps(int steps) {
|
---|
| 215 | DateTime start = DateTime.Now;
|
---|
| 216 | DateTime end;
|
---|
| 217 | int step = 0;
|
---|
| 218 | while ((!Canceled) && (!Terminated) && (step < steps)) {
|
---|
| 219 | ProcessNextOperation();
|
---|
| 220 | step++;
|
---|
| 221 | end = DateTime.Now;
|
---|
| 222 | ExecutionTime += end - start;
|
---|
| 223 | start = end;
|
---|
| 224 | }
|
---|
| 225 | ExecutionTime += DateTime.Now - start;
|
---|
| 226 | }
|
---|
| 227 |
|
---|
[776] | 228 | /// <summary>
|
---|
| 229 | /// Performs the next operation.
|
---|
| 230 | /// </summary>
|
---|
[2] | 231 | protected abstract void ProcessNextOperation();
|
---|
| 232 |
|
---|
[776] | 233 | /// <summary>
|
---|
| 234 | /// Occurs when the current instance is initialized.
|
---|
| 235 | /// </summary>
|
---|
[2] | 236 | public event EventHandler Initialized;
|
---|
[776] | 237 | /// <summary>
|
---|
| 238 | /// Fires a new <c>Initialized</c> event.
|
---|
| 239 | /// </summary>
|
---|
[2] | 240 | protected virtual void OnInitialized() {
|
---|
| 241 | if (Initialized != null)
|
---|
| 242 | Initialized(this, new EventArgs());
|
---|
| 243 | }
|
---|
[776] | 244 | /// <summary>
|
---|
| 245 | /// Occurs when an operation is executed.
|
---|
| 246 | /// </summary>
|
---|
[2474] | 247 | public event EventHandler<EventArgs<IOperation>> OperationExecuted;
|
---|
[776] | 248 | /// <summary>
|
---|
| 249 | /// Fires a new <c>OperationExecuted</c> event.
|
---|
| 250 | /// </summary>
|
---|
| 251 | /// <param name="operation">The operation that has been executed.</param>
|
---|
[2] | 252 | protected virtual void OnOperationExecuted(IOperation operation) {
|
---|
| 253 | if (OperationExecuted != null)
|
---|
[2474] | 254 | OperationExecuted(this, new EventArgs<IOperation>(operation));
|
---|
[2] | 255 | }
|
---|
[776] | 256 | /// <summary>
|
---|
| 257 | /// Occurs when an exception occured during the execution.
|
---|
| 258 | /// </summary>
|
---|
[2474] | 259 | public event EventHandler<EventArgs<Exception>> ExceptionOccurred;
|
---|
[776] | 260 | /// <summary>
|
---|
| 261 | /// Aborts the execution and fires a new <c>ExceptionOccurred</c> event.
|
---|
| 262 | /// </summary>
|
---|
| 263 | /// <param name="exception">The exception that was thrown.</param>
|
---|
[2] | 264 | protected virtual void OnExceptionOccurred(Exception exception) {
|
---|
| 265 | Abort();
|
---|
| 266 | if (ExceptionOccurred != null)
|
---|
[2474] | 267 | ExceptionOccurred(this, new EventArgs<Exception>(exception));
|
---|
[2] | 268 | }
|
---|
[776] | 269 | /// <summary>
|
---|
| 270 | /// Occurs when the execution time changed.
|
---|
| 271 | /// </summary>
|
---|
[2] | 272 | public event EventHandler ExecutionTimeChanged;
|
---|
[776] | 273 | /// <summary>
|
---|
| 274 | /// Fires a new <c>ExecutionTimeChanged</c> event.
|
---|
| 275 | /// </summary>
|
---|
[2] | 276 | protected virtual void OnExecutionTimeChanged() {
|
---|
| 277 | if (ExecutionTimeChanged != null)
|
---|
| 278 | ExecutionTimeChanged(this, new EventArgs());
|
---|
| 279 | }
|
---|
[776] | 280 | /// <summary>
|
---|
| 281 | /// Occurs when the execution is finished.
|
---|
| 282 | /// </summary>
|
---|
[2] | 283 | public event EventHandler Finished;
|
---|
[776] | 284 | /// <summary>
|
---|
| 285 | /// Fires a new <c>Finished</c> event.
|
---|
| 286 | /// </summary>
|
---|
[2] | 287 | protected virtual void OnFinished() {
|
---|
| 288 | if (Finished != null)
|
---|
| 289 | Finished(this, new EventArgs());
|
---|
| 290 | }
|
---|
| 291 |
|
---|
| 292 | #region Persistence Methods
|
---|
[776] | 293 | /// <summary>
|
---|
| 294 | /// Saves the current instance as <see cref="XmlNode"/> in the specified <paramref name="document"/>.
|
---|
| 295 | /// </summary>
|
---|
| 296 | /// <remarks>Calls <see cref="StorableBase.GetXmlNode"/> of base class <see cref="ItemBase"/>.<br/>
|
---|
| 297 | /// A quick overview how the single elements of the current instance are saved:
|
---|
| 298 | /// <list type="bullet">
|
---|
| 299 | /// <item>
|
---|
| 300 | /// <term>Operator graph: </term>
|
---|
| 301 | /// <description>Saved as a child node with the tag name <c>OperatorGraph</c>.</description>
|
---|
| 302 | /// </item>
|
---|
| 303 | /// <item>
|
---|
| 304 | /// <term>Global scope: </term>
|
---|
| 305 | /// <description>Saved as a child node with the tag name <c>GlobalScope</c>.</description>
|
---|
| 306 | /// </item>
|
---|
| 307 | /// <item>
|
---|
| 308 | /// <term>Execution stack: </term>
|
---|
| 309 | /// <description>A child node is created with the tag name <c>ExecutionStack</c>. Beyond this child node
|
---|
| 310 | /// all operations of the execution stack are saved as child nodes.</description>
|
---|
| 311 | /// </item>
|
---|
| 312 | /// <item>
|
---|
| 313 | /// <term>Execution time: </term>
|
---|
| 314 | /// <description>Saved as a child node with the tag name <c>ExecutionTime</c>, where the execution
|
---|
| 315 | /// time is saved as string in the node's inner text.</description>
|
---|
| 316 | /// </item>
|
---|
[1815] | 317 | /// <item>
|
---|
| 318 | /// <term>Priority: </term>
|
---|
| 319 | /// <description>Saved as a child node with the tag name <c>Priority</c>, where the thread priority
|
---|
| 320 | /// is saved as string in the node's inner text.</description>
|
---|
| 321 | /// </item>
|
---|
[776] | 322 | /// </list></remarks>
|
---|
| 323 | /// <param name="name">The (tag)name of the <see cref="XmlNode"/>.</param>
|
---|
| 324 | /// <param name="document">The <see cref="XmlDocument"/> where to save the data.</param>
|
---|
| 325 | /// <param name="persistedObjects">The dictionary of all already persisted objects. (Needed to avoid cycles.)</param>
|
---|
| 326 | /// <returns>The saved <see cref="XmlNode"/>.</returns>
|
---|
[2] | 327 | public override XmlNode GetXmlNode(string name, XmlDocument document, IDictionary<Guid,IStorable> persistedObjects) {
|
---|
| 328 | XmlNode node = base.GetXmlNode(name, document, persistedObjects);
|
---|
| 329 |
|
---|
| 330 | node.AppendChild(PersistenceManager.Persist("OperatorGraph", OperatorGraph, document, persistedObjects));
|
---|
| 331 | node.AppendChild(PersistenceManager.Persist("GlobalScope", GlobalScope, document, persistedObjects));
|
---|
| 332 |
|
---|
| 333 | XmlNode stackNode = document.CreateNode(XmlNodeType.Element, "ExecutionStack", null);
|
---|
| 334 | IOperation[] operations = new IOperation[ExecutionStack.Count];
|
---|
| 335 | ExecutionStack.CopyTo(operations, 0);
|
---|
| 336 | for (int i = 0; i < operations.Length; i++)
|
---|
| 337 | stackNode.AppendChild(PersistenceManager.Persist(operations[i], document, persistedObjects));
|
---|
| 338 | node.AppendChild(stackNode);
|
---|
| 339 |
|
---|
| 340 | XmlNode timeNode = document.CreateNode(XmlNodeType.Element, "ExecutionTime", null);
|
---|
| 341 | timeNode.InnerText = ExecutionTime.ToString();
|
---|
| 342 | node.AppendChild(timeNode);
|
---|
[1815] | 343 | XmlNode priorityNode = document.CreateNode(XmlNodeType.Element, "Priority", null);
|
---|
| 344 | priorityNode.InnerText = Priority.ToString();
|
---|
| 345 | node.AppendChild(priorityNode);
|
---|
[2] | 346 | return node;
|
---|
| 347 | }
|
---|
[776] | 348 | /// <summary>
|
---|
| 349 | /// Loads the persisted instance from the specified <paramref name="node"/>.
|
---|
| 350 | /// </summary>
|
---|
| 351 | /// <remarks>See <see cref="GetXmlNode"/> to get information on how the instance must be saved. <br/>
|
---|
| 352 | /// Calls <see cref="StorableBase.Populate"/> of base class <see cref="ItemBase"/>.</remarks>
|
---|
| 353 | /// <param name="node">The <see cref="XmlNode"/> where the engine is saved.</param>
|
---|
| 354 | /// <param name="restoredObjects">The dictionary of all already restored objects.
|
---|
| 355 | /// (Needed to avoid cycles.)</param>
|
---|
[2] | 356 | public override void Populate(XmlNode node, IDictionary<Guid,IStorable> restoredObjects) {
|
---|
| 357 | base.Populate(node, restoredObjects);
|
---|
| 358 | myOperatorGraph = (IOperatorGraph)PersistenceManager.Restore(node.SelectSingleNode("OperatorGraph"), restoredObjects);
|
---|
| 359 | myGlobalScope = (IScope)PersistenceManager.Restore(node.SelectSingleNode("GlobalScope"), restoredObjects);
|
---|
| 360 |
|
---|
| 361 | XmlNode stackNode = node.SelectSingleNode("ExecutionStack");
|
---|
| 362 | for (int i = stackNode.ChildNodes.Count - 1; i >= 0; i--)
|
---|
| 363 | myExecutionStack.Push((IOperation)PersistenceManager.Restore(stackNode.ChildNodes[i], restoredObjects));
|
---|
| 364 |
|
---|
| 365 | XmlNode timeNode = node.SelectSingleNode("ExecutionTime");
|
---|
| 366 | myExecutionTime = TimeSpan.Parse(timeNode.InnerText);
|
---|
[1815] | 367 | XmlNode priorityNode = node.SelectSingleNode("Priority");
|
---|
| 368 | if (priorityNode != null)
|
---|
| 369 | myPriority = (ThreadPriority) Enum.Parse(typeof(ThreadPriority), priorityNode.InnerText);
|
---|
[2] | 370 | }
|
---|
| 371 | #endregion
|
---|
| 372 | }
|
---|
| 373 | }
|
---|