#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 System.Windows.Forms;
using HeuristicLab.PluginInfrastructure;
using System.Net;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.Linq;
using HeuristicLab.Data;
using HeuristicLab.Grid;
using System.Diagnostics;
using HeuristicLab.Core;
using System.Threading;
using HeuristicLab.Modeling;
using HeuristicLab.Modeling.Database;
namespace HeuristicLab.CEDMA.Server {
public class GridExecuter : ExecuterBase {
private JobManager jobManager;
private Dictionary activeAlgorithms;
private TimeSpan StartJobInterval {
get { return TimeSpan.FromMilliseconds(3000); }
}
private TimeSpan WaitForFinishedJobsTimeout {
get { return TimeSpan.FromMilliseconds(100); }
}
public GridExecuter(IDispatcher dispatcher, IGridServer server, IModelingDatabase databaseService)
: base(dispatcher, databaseService) {
this.jobManager = new JobManager(server);
activeAlgorithms = new Dictionary();
jobManager.Reset();
}
protected override void StartJobs() {
Dictionary asyncResults = new Dictionary();
// inifinite loop:
// 1. try to dispatch one algo
// 2. when at least one run is dispatched try to get the result
// 3. sleep
while (true) {
try {
// if allowed then try to dispatch another run
if (asyncResults.Count < MaxActiveJobs) {
// get an execution from the dispatcher and execute in grid via job-manager
HeuristicLab.Modeling.IAlgorithm algorithm = Dispatcher.GetNextJob();
if (algorithm != null) {
AtomicOperation op = new AtomicOperation(algorithm.Engine.OperatorGraph.InitialOperator, algorithm.Engine.GlobalScope);
ProcessingEngine procEngine = new ProcessingEngine(algorithm.Engine.GlobalScope, op);
procEngine.OperatorGraph.AddOperator(algorithm.Engine.OperatorGraph.InitialOperator);
procEngine.OperatorGraph.InitialOperator = algorithm.Engine.OperatorGraph.InitialOperator;
procEngine.Reset();
AsyncGridResult asyncResult = jobManager.BeginExecuteEngine(procEngine);
asyncResults.Add(asyncResult.WaitHandle, asyncResult);
lock (activeAlgorithms) {
activeAlgorithms.Add(asyncResult, algorithm);
}
OnChanged();
}
}
// when there are active runs
if (asyncResults.Count > 0) {
WaitHandle[] whArr = asyncResults.Keys.ToArray();
int readyHandleIndex = WaitAny(whArr, WaitForFinishedJobsTimeout);
// if the wait didn't timeout, a new result is ready
if (readyHandleIndex != WaitHandle.WaitTimeout) {
// request the finished run and clean up
WaitHandle readyHandle = whArr[readyHandleIndex];
AsyncGridResult finishedResult = asyncResults[readyHandle];
asyncResults.Remove(readyHandle);
HeuristicLab.Modeling.IAlgorithm finishedAlgorithm = null;
lock (activeAlgorithms) {
finishedAlgorithm = activeAlgorithms[finishedResult];
activeAlgorithms.Remove(finishedResult);
}
OnChanged();
try {
IEngine finishedEngine = jobManager.EndExecuteEngine(finishedResult);
SetResults(finishedEngine.GlobalScope, finishedAlgorithm.Engine.GlobalScope);
StoreResults(finishedAlgorithm);
}
catch (Exception badEx) {
HeuristicLab.Tracing.Logger.Error("CEDMA Executer: Exception in job execution thread. " + badEx.Message + Environment.NewLine + badEx.StackTrace);
}
}
}
// when there are no active runs then sleep until we try to start a new run (to prevent excessive looping)
Thread.Sleep(StartJobInterval);
}
catch (Exception ex) {
HeuristicLab.Tracing.Logger.Warn("CEDMA Executer: Exception in job-management thread. " + ex.Message + Environment.NewLine + ex.StackTrace);
}
} // end while(true)
}
// wait until any job is finished
private int WaitAny(WaitHandle[] wh, TimeSpan WaitForFinishedJobsTimeout) {
if (wh.Length <= 64) {
return WaitHandle.WaitAny(wh, WaitForFinishedJobsTimeout);
} else {
for (int i = 0; i < wh.Length; i++) {
if (wh[i].WaitOne(WaitForFinishedJobsTimeout)) {
return i;
}
}
return WaitHandle.WaitTimeout;
}
}
public override string[] GetJobs() {
lock (activeAlgorithms) {
string[] retVal = new string[activeAlgorithms.Count];
int i = 0;
foreach (HeuristicLab.Modeling.IAlgorithm a in activeAlgorithms.Values) {
retVal[i++] = a.Name + " " + a.TargetVariable;
}
return retVal;
}
}
}
}