#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
using HeuristicLab.Core;
using System.Threading;
using HeuristicLab.Hive.JobBase;
using System.Xml;
using HeuristicLab.Data;
namespace HeuristicLab.Hive.Engine {
///
/// Represents an job that wraps an engine that should be executed in the hive.
///
public class Job : StorableBase, IJob {
private IEngine engine;
public IEngine Engine {
get { return engine; }
}
public Job()
: base() {
engine = new SequentialEngine.SequentialEngine();
engine.Priority = ThreadPriority.Lowest;
RegisterEvents();
}
private void RegisterEvents() {
engine.Finished += new EventHandler(engine_Finished);
}
private void DeregisterEvents() {
engine.Finished -= new EventHandler(engine_Finished);
}
void engine_Finished(object sender, EventArgs e) {
if (Engine.Canceled) this.progress = 0.0;
else this.progress = 1.0;
if (JobStopped != null)
JobStopped(this, new EventArgs());
}
#region IJob Members
public event EventHandler JobStopped;
public event EventHandler JobFailed;
public long JobId {
get;
set;
}
private double progress;
public double Progress {
get {
DoubleData progress = Engine.GlobalScope.GetVariableValue("Progress", false,
false);
return progress == null ? this.progress : progress.Data;
}
set { throw new NotSupportedException(); }
}
public bool Running {
get {
return Engine.Running;
}
set {
throw new NotSupportedException();
}
}
public void Run() {
throw new NotSupportedException();
}
public void Start() {
Engine.Execute();
}
public void Stop() {
Engine.Abort();
}
#endregion
public override System.Xml.XmlNode GetXmlNode(string name, System.Xml.XmlDocument document, IDictionary persistedObjects) {
XmlNode node = base.GetXmlNode(name, document, persistedObjects);
XmlAttribute idAttr = document.CreateAttribute("JobId");
idAttr.Value = XmlConvert.ToString(JobId);
XmlAttribute progressAttr = document.CreateAttribute("Progress");
progressAttr.Value = XmlConvert.ToString(progress);
node.Attributes.Append(idAttr);
node.Attributes.Append(progressAttr);
node.AppendChild(PersistenceManager.Persist("Engine", Engine, document, persistedObjects));
return node;
}
public override void Populate(System.Xml.XmlNode node, IDictionary restoredObjects) {
base.Populate(node, restoredObjects);
JobId = XmlConvert.ToInt64(node.Attributes["JobId"].Value);
progress = XmlConvert.ToDouble(node.Attributes["Progress"].Value);
DeregisterEvents();
engine = (SequentialEngine.SequentialEngine)PersistenceManager.Restore(node.SelectSingleNode("Engine"), restoredObjects);
RegisterEvents();
}
}
}