[819] | 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.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using System.Threading;
|
---|
| 27 | using System.Xml;
|
---|
| 28 | using HeuristicLab.Core;
|
---|
[822] | 29 | using HeuristicLab.Hive.Contracts;
|
---|
[819] | 30 |
|
---|
[822] | 31 | namespace HeuristicLab.Hive.Contracts {
|
---|
[819] | 32 | [Serializable]
|
---|
| 33 | abstract public class JobBase : StorableBase, IJob {
|
---|
| 34 |
|
---|
| 35 | private Thread thread = null;
|
---|
| 36 | public event EventHandler JobStopped;
|
---|
| 37 |
|
---|
| 38 | public long JobId { get; set; }
|
---|
| 39 | public double Progress { get; set; }
|
---|
| 40 | public bool Running { get; set; }
|
---|
| 41 |
|
---|
| 42 | protected bool abort = false;
|
---|
| 43 |
|
---|
| 44 | abstract public void Run();
|
---|
| 45 |
|
---|
| 46 | public void Start() {
|
---|
| 47 | thread = new Thread(new ThreadStart(Run));
|
---|
| 48 | thread.Start();
|
---|
| 49 | Running = true;
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | public void Stop() {
|
---|
| 53 | abort = true;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | protected void OnJobStopped() {
|
---|
| 57 | Console.WriteLine("Job has finished");
|
---|
| 58 | Running = false;
|
---|
| 59 | if (JobStopped != null)
|
---|
| 60 | JobStopped(this, new EventArgs());
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | public override XmlNode GetXmlNode(string name, XmlDocument document, IDictionary<Guid, IStorable> persistedObjects) {
|
---|
| 64 | XmlNode node = base.GetXmlNode(name, document, persistedObjects);
|
---|
| 65 |
|
---|
| 66 | XmlNode progr = document.CreateNode(XmlNodeType.Element, "Progress", null);
|
---|
| 67 | progr.InnerText = Convert.ToString(Progress);
|
---|
| 68 |
|
---|
| 69 | node.AppendChild(progr);
|
---|
| 70 | return node;
|
---|
| 71 | }
|
---|
| 72 | public override void Populate(XmlNode node, IDictionary<Guid, IStorable> restoredObjects) {
|
---|
| 73 | base.Populate(node, restoredObjects);
|
---|
| 74 |
|
---|
| 75 | XmlNode progr = node.SelectSingleNode("Progress");
|
---|
| 76 | Progress = Convert.ToDouble(progr.InnerText);
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | public JobBase() {
|
---|
| 80 | }
|
---|
| 81 | }
|
---|
| 82 | }
|
---|