[1432] | 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 HeuristicLab.Core;
|
---|
| 26 | using System.Threading;
|
---|
[1440] | 27 | using HeuristicLab.Hive.JobBase;
|
---|
| 28 | using HeuristicLab.Hive.Contracts.Interfaces;
|
---|
[1487] | 29 | using HeuristicLab.Hive.Contracts;
|
---|
[1503] | 30 | using HeuristicLab.PluginInfrastructure;
|
---|
[1580] | 31 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
[1591] | 32 | using System.IO;
|
---|
[1726] | 33 | using System.Xml;
|
---|
[1730] | 34 | using System.IO.Compression;
|
---|
[1432] | 35 |
|
---|
| 36 | namespace HeuristicLab.Hive.Engine {
|
---|
| 37 | /// <summary>
|
---|
| 38 | /// Represents an engine that executes its operator-graph on the hive.
|
---|
| 39 | /// in parallel.
|
---|
| 40 | /// </summary>
|
---|
[1440] | 41 | public class HiveEngine : ItemBase, IEngine, IEditable {
|
---|
[1510] | 42 | private Guid jobId;
|
---|
[1440] | 43 | private Job job;
|
---|
| 44 | public string HiveServerUrl { get; set; }
|
---|
[1432] | 45 |
|
---|
[1440] | 46 | public HiveEngine() {
|
---|
| 47 | job = new Job();
|
---|
[1432] | 48 | }
|
---|
| 49 |
|
---|
[1440] | 50 | #region IEngine Members
|
---|
| 51 |
|
---|
| 52 | public IOperatorGraph OperatorGraph {
|
---|
| 53 | get { return job.Engine.OperatorGraph; }
|
---|
[1432] | 54 | }
|
---|
| 55 |
|
---|
[1440] | 56 | public IScope GlobalScope {
|
---|
| 57 | get { return job.Engine.GlobalScope; }
|
---|
[1432] | 58 | }
|
---|
| 59 |
|
---|
[1440] | 60 | public TimeSpan ExecutionTime {
|
---|
| 61 | get { return job.Engine.ExecutionTime; }
|
---|
[1432] | 62 | }
|
---|
[1440] | 63 |
|
---|
[1815] | 64 | public ThreadPriority Priority {
|
---|
| 65 | get { return job.Engine.Priority; }
|
---|
| 66 | set { job.Engine.Priority = value; }
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[1440] | 69 | public bool Running {
|
---|
| 70 | get { return job.Engine.Running; }
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | public bool Canceled {
|
---|
| 74 | get { return job.Engine.Canceled; }
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | public bool Terminated {
|
---|
| 78 | get { return job.Engine.Terminated; }
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | public void Execute() {
|
---|
| 82 | IExecutionEngineFacade executionEngineFacade = ServiceLocator.CreateExecutionEngineFacade(HiveServerUrl);
|
---|
[1726] | 83 |
|
---|
[1730] | 84 | var jobObj = CreateJobObj();
|
---|
[1503] | 85 |
|
---|
[1730] | 86 | ResponseObject<Contracts.BusinessObjects.Job> res = executionEngineFacade.AddJob(jobObj);
|
---|
| 87 | jobId = res.Obj.Id;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | private HeuristicLab.Hive.Contracts.BusinessObjects.Job CreateJobObj() {
|
---|
[1440] | 91 | HeuristicLab.Hive.Contracts.BusinessObjects.Job jobObj = new HeuristicLab.Hive.Contracts.BusinessObjects.Job();
|
---|
[1580] | 92 |
|
---|
[1730] | 93 | MemoryStream memStream = new MemoryStream();
|
---|
| 94 | GZipStream stream = new GZipStream(memStream, CompressionMode.Compress, true);
|
---|
| 95 | XmlDocument document = PersistenceManager.CreateXmlDocument();
|
---|
| 96 | Dictionary<Guid, IStorable> dictionary = new Dictionary<Guid, IStorable>();
|
---|
| 97 | XmlNode rootNode = document.CreateElement("Root");
|
---|
| 98 | document.AppendChild(rootNode);
|
---|
| 99 | rootNode.AppendChild(PersistenceManager.Persist(job, document, dictionary));
|
---|
| 100 | document.Save(stream);
|
---|
| 101 | stream.Close();
|
---|
| 102 | jobObj.SerializedJob = memStream.ToArray();
|
---|
| 103 |
|
---|
| 104 | DiscoveryService service = new DiscoveryService();
|
---|
| 105 | List<PluginInfo> plugins = new List<PluginInfo>();
|
---|
| 106 |
|
---|
| 107 | foreach (IStorable storeable in dictionary.Values) {
|
---|
| 108 | PluginInfo pluginInfo = service.GetDeclaringPlugin(storeable.GetType());
|
---|
| 109 | if (!plugins.Contains(pluginInfo)) plugins.Add(pluginInfo);
|
---|
| 110 | }
|
---|
| 111 |
|
---|
[1580] | 112 | List<HivePluginInfo> pluginsNeeded =
|
---|
| 113 | new List<HivePluginInfo>();
|
---|
[1730] | 114 | foreach (PluginInfo uniquePlugin in plugins) {
|
---|
[1726] | 115 | HivePluginInfo pluginInfo =
|
---|
[1580] | 116 | new HivePluginInfo();
|
---|
[1730] | 117 | pluginInfo.Name = uniquePlugin.Name;
|
---|
| 118 | pluginInfo.Version = uniquePlugin.Version.ToString();
|
---|
| 119 | pluginInfo.BuildDate = uniquePlugin.BuildDate;
|
---|
[1580] | 120 | pluginsNeeded.Add(pluginInfo);
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[1754] | 123 | jobObj.CoresNeeded = 1;
|
---|
[1580] | 124 | jobObj.PluginsNeeded = pluginsNeeded;
|
---|
[1730] | 125 | jobObj.State = HeuristicLab.Hive.Contracts.BusinessObjects.State.offline;
|
---|
| 126 | return jobObj;
|
---|
[1440] | 127 | }
|
---|
| 128 |
|
---|
[1726] | 129 | public void RequestSnapshot() {
|
---|
| 130 | IExecutionEngineFacade executionEngineFacade = ServiceLocator.CreateExecutionEngineFacade(HiveServerUrl);
|
---|
| 131 |
|
---|
[1773] | 132 | // request snapshot
|
---|
| 133 | executionEngineFacade.RequestSnapshot(jobId);
|
---|
| 134 |
|
---|
| 135 | // poll until snapshot is ready
|
---|
| 136 | ResponseObject<JobResult> response;
|
---|
| 137 | do {
|
---|
| 138 | response = executionEngineFacade.GetLastResult(jobId, true);
|
---|
| 139 | if (response.Success && response.StatusMessage == ApplicationConstants.RESPONSE_JOB_RESULT_NOT_YET_HERE) {
|
---|
| 140 | Thread.Sleep(1000);
|
---|
| 141 | }
|
---|
| 142 | } while (response.Success && response.StatusMessage == ApplicationConstants.RESPONSE_JOB_RESULT_NOT_YET_HERE);
|
---|
| 143 |
|
---|
| 144 | if (response.Success) {
|
---|
| 145 | JobResult jobResult = response.Obj;
|
---|
[1726] | 146 | if (jobResult != null) {
|
---|
| 147 | job = (Job)PersistenceManager.RestoreFromGZip(jobResult.Result);
|
---|
| 148 | PluginManager.ControlManager.ShowControl(job.Engine.CreateView());
|
---|
| 149 | }
|
---|
| 150 | } else {
|
---|
[1773] | 151 | Exception ex = new Exception(response.Obj.Exception.Message);
|
---|
[1726] | 152 | ThreadPool.QueueUserWorkItem(delegate(object state) { OnExceptionOccurred(ex); });
|
---|
| 153 | }
|
---|
| 154 | }
|
---|
| 155 |
|
---|
| 156 |
|
---|
[1440] | 157 | public void ExecuteStep() {
|
---|
| 158 | throw new NotSupportedException();
|
---|
| 159 | }
|
---|
| 160 |
|
---|
| 161 | public void ExecuteSteps(int steps) {
|
---|
| 162 | throw new NotSupportedException();
|
---|
| 163 | }
|
---|
| 164 |
|
---|
| 165 | public void Abort() {
|
---|
[1510] | 166 | IExecutionEngineFacade executionEngineFacade = ServiceLocator.CreateExecutionEngineFacade(HiveServerUrl);
|
---|
[1726] | 167 |
|
---|
[1510] | 168 | //This are just Stubs on the server right now. There won't be any effect right now...
|
---|
[1726] | 169 | executionEngineFacade.AbortJob(jobId);
|
---|
| 170 | OnFinished();
|
---|
[1440] | 171 | }
|
---|
| 172 |
|
---|
| 173 | public void Reset() {
|
---|
[1726] | 174 | job.Engine.Reset();
|
---|
| 175 | jobId = Guid.NewGuid();
|
---|
| 176 | OnInitialized();
|
---|
[1440] | 177 | }
|
---|
| 178 |
|
---|
| 179 | public event EventHandler Initialized;
|
---|
[1726] | 180 | /// <summary>
|
---|
| 181 | /// Fires a new <c>Initialized</c> event.
|
---|
| 182 | /// </summary>
|
---|
| 183 | protected virtual void OnInitialized() {
|
---|
| 184 | if (Initialized != null)
|
---|
| 185 | Initialized(this, new EventArgs());
|
---|
| 186 | }
|
---|
[1440] | 187 |
|
---|
| 188 | public event EventHandler<OperationEventArgs> OperationExecuted;
|
---|
[1726] | 189 | /// <summary>
|
---|
| 190 | /// Fires a new <c>OperationExecuted</c> event.
|
---|
| 191 | /// </summary>
|
---|
| 192 | /// <param name="operation">The operation that has been executed.</param>
|
---|
| 193 | protected virtual void OnOperationExecuted(IOperation operation) {
|
---|
| 194 | if (OperationExecuted != null)
|
---|
| 195 | OperationExecuted(this, new OperationEventArgs(operation));
|
---|
| 196 | }
|
---|
[1440] | 197 |
|
---|
| 198 | public event EventHandler<ExceptionEventArgs> ExceptionOccurred;
|
---|
[1726] | 199 | /// <summary>
|
---|
| 200 | /// Aborts the execution and fires a new <c>ExceptionOccurred</c> event.
|
---|
| 201 | /// </summary>
|
---|
| 202 | /// <param name="exception">The exception that was thrown.</param>
|
---|
| 203 | protected virtual void OnExceptionOccurred(Exception exception) {
|
---|
| 204 | Abort();
|
---|
| 205 | if (ExceptionOccurred != null)
|
---|
| 206 | ExceptionOccurred(this, new ExceptionEventArgs(exception));
|
---|
| 207 | }
|
---|
[1440] | 208 |
|
---|
| 209 | public event EventHandler ExecutionTimeChanged;
|
---|
[1726] | 210 | /// <summary>
|
---|
| 211 | /// Fires a new <c>ExecutionTimeChanged</c> event.
|
---|
| 212 | /// </summary>
|
---|
| 213 | protected virtual void OnExecutionTimeChanged() {
|
---|
| 214 | if (ExecutionTimeChanged != null)
|
---|
| 215 | ExecutionTimeChanged(this, new EventArgs());
|
---|
| 216 | }
|
---|
[1440] | 217 |
|
---|
| 218 | public event EventHandler Finished;
|
---|
[1726] | 219 | /// <summary>
|
---|
| 220 | /// Fires a new <c>Finished</c> event.
|
---|
| 221 | /// </summary>
|
---|
| 222 | protected virtual void OnFinished() {
|
---|
| 223 | if (Finished != null)
|
---|
| 224 | Finished(this, new EventArgs());
|
---|
| 225 | }
|
---|
[1440] | 226 |
|
---|
| 227 | #endregion
|
---|
| 228 |
|
---|
| 229 | public override IView CreateView() {
|
---|
| 230 | return new HiveEngineEditor(this);
|
---|
| 231 | }
|
---|
| 232 |
|
---|
| 233 | #region IEditable Members
|
---|
| 234 |
|
---|
| 235 | public IEditor CreateEditor() {
|
---|
| 236 | return new HiveEngineEditor(this);
|
---|
| 237 | }
|
---|
| 238 | #endregion
|
---|
[1726] | 239 |
|
---|
| 240 | public override System.Xml.XmlNode GetXmlNode(string name, System.Xml.XmlDocument document, IDictionary<Guid, IStorable> persistedObjects) {
|
---|
| 241 | XmlNode node = base.GetXmlNode(name, document, persistedObjects);
|
---|
| 242 | XmlAttribute attr = document.CreateAttribute("HiveServerUrl");
|
---|
| 243 | attr.Value = HiveServerUrl;
|
---|
| 244 | node.Attributes.Append(attr);
|
---|
| 245 | node.AppendChild(PersistenceManager.Persist("Job", job, document, persistedObjects));
|
---|
| 246 | return node;
|
---|
| 247 | }
|
---|
| 248 |
|
---|
| 249 | public override void Populate(System.Xml.XmlNode node, IDictionary<Guid, IStorable> restoredObjects) {
|
---|
| 250 | base.Populate(node, restoredObjects);
|
---|
| 251 | HiveServerUrl = node.Attributes["HiveServerUrl"].Value;
|
---|
| 252 | job = (Job)PersistenceManager.Restore(node.SelectSingleNode("Job"), restoredObjects);
|
---|
| 253 | }
|
---|
[1432] | 254 | }
|
---|
| 255 | }
|
---|