Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs @ 2064

Last change on this file since 2064 was 2064, checked in by gkronber, 15 years ago

Fixed a few bugs in bridge from grid to hive. #642 (Hive backend for CEDMA)

File size: 5.0 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Text;
25using System.Windows.Forms;
26using HeuristicLab.PluginInfrastructure;
27using System.Net;
28using System.ServiceModel;
29using HeuristicLab.CEDMA.DB.Interfaces;
30using HeuristicLab.CEDMA.DB;
31using System.ServiceModel.Description;
32using System.Linq;
33using HeuristicLab.CEDMA.Core;
34using HeuristicLab.GP.StructureIdentification;
35using HeuristicLab.Data;
36using HeuristicLab.Grid;
37using System.Diagnostics;
38using HeuristicLab.Core;
39using System.Threading;
40using HeuristicLab.Modeling;
41
42namespace HeuristicLab.CEDMA.Server {
43  public class GridExecuter : ExecuterBase {
44    private JobManager jobManager;
45    private Dictionary<AsyncGridResult, IAlgorithm> activeAlgorithms;
46
47    private TimeSpan StartJobInterval {
48      get { return TimeSpan.FromMilliseconds(500); }
49    }
50
51    private TimeSpan WaitForFinishedJobsTimeout {
52      get { return TimeSpan.FromMilliseconds(100); }
53    }
54
55    public GridExecuter(IDispatcher dispatcher, IStore store, IGridServer server)
56      : base(dispatcher, store) {
57      this.jobManager = new JobManager(server);
58      activeAlgorithms = new Dictionary<AsyncGridResult, IAlgorithm>();
59      jobManager.Reset();
60    }
61
62    protected override void StartJobs() {
63      Dictionary<WaitHandle, AsyncGridResult> asyncResults = new Dictionary<WaitHandle,AsyncGridResult>();
64      while (true) {
65        try {
66          // start new jobs as long as there are less than MaxActiveJobs
67          while (asyncResults.Count < MaxActiveJobs) {
68            Thread.Sleep(StartJobInterval);
69            // get an execution from the dispatcher and execute in grid via job-manager
70            IAlgorithm algorithm = Dispatcher.GetNextJob();
71            if (algorithm != null) {
72              AtomicOperation op = new AtomicOperation(algorithm.Engine.OperatorGraph.InitialOperator, algorithm.Engine.GlobalScope);
73              ProcessingEngine procEngine = new ProcessingEngine(algorithm.Engine.GlobalScope, op);
74              procEngine.OperatorGraph.AddOperator(algorithm.Engine.OperatorGraph.InitialOperator);
75              procEngine.OperatorGraph.InitialOperator = algorithm.Engine.OperatorGraph.InitialOperator;
76              AsyncGridResult asyncResult = jobManager.BeginExecuteEngine(procEngine);
77              asyncResults.Add(asyncResult.WaitHandle, asyncResult);
78              lock (activeAlgorithms) {
79                activeAlgorithms.Add(asyncResult, algorithm);
80              }
81            }
82          }
83          // wait until any job is finished
84          WaitHandle[] whArr = asyncResults.Keys.ToArray();
85          int readyHandleIndex = WaitHandle.WaitAny(whArr, WaitForFinishedJobsTimeout);
86          if (readyHandleIndex != WaitHandle.WaitTimeout) {
87            WaitHandle readyHandle = whArr[readyHandleIndex];
88            IAlgorithm finishedAlgorithm = null;
89            AsyncGridResult finishedResult = null;
90            lock (activeAlgorithms) {
91              finishedResult = asyncResults[readyHandle];
92              finishedAlgorithm = activeAlgorithms[finishedResult];
93              activeAlgorithms.Remove(finishedResult);
94              asyncResults.Remove(readyHandle);
95            }
96            try {
97              IEngine finishedEngine = jobManager.EndExecuteEngine(finishedResult);
98              SetResults(finishedEngine.GlobalScope, finishedAlgorithm.Engine.GlobalScope);
99              StoreResults(finishedAlgorithm);
100            }
101            catch (Exception badEx) {
102              Trace.WriteLine("CEDMA Executer: Exception in job execution thread. " + badEx.Message);
103            }
104          }
105        }
106        catch (Exception ex) {
107          Trace.WriteLine("CEDMA Executer: Exception in job-management thread. " + ex.Message);
108        }
109      }
110    }
111
112    public override string[] GetJobs() {
113      lock (activeAlgorithms) {
114        string[] retVal = new string[activeAlgorithms.Count];
115        int i = 0;
116        foreach (IAlgorithm a in activeAlgorithms.Values) {
117          retVal[i++] = a.Name + " " + a.Dataset.GetVariableName(a.TargetVariable);
118        }
119        return retVal;
120      }
121    }
122  }
123}
Note: See TracBrowser for help on using the repository browser.