1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Server.Core.InternalInterfaces;
|
---|
6 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
7 | using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
|
---|
8 | using System.Threading;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Hive.Server.Scheduler {
|
---|
11 | class DefaultScheduler: IScheduler {
|
---|
12 |
|
---|
13 | IJobAdapter jobAdapter;
|
---|
14 | IClientAdapter clientAdapter;
|
---|
15 |
|
---|
16 | private static Mutex jobLock =
|
---|
17 | new Mutex();
|
---|
18 |
|
---|
19 | #region IScheduler Members
|
---|
20 |
|
---|
21 | public DefaultScheduler() {
|
---|
22 | jobAdapter = ServiceLocator.GetJobAdapter();
|
---|
23 | clientAdapter = ServiceLocator.GetClientAdapter();
|
---|
24 | }
|
---|
25 |
|
---|
26 | public bool ExistsJobForClient(HeuristicLab.Hive.Contracts.BusinessObjects.HeartBeatData hbData) {
|
---|
27 | List<Job> allOfflineJobs = new List<Job>(jobAdapter.GetJobsByState(State.offline));
|
---|
28 | return (allOfflineJobs.Count > 0);
|
---|
29 | }
|
---|
30 |
|
---|
31 | public HeuristicLab.Hive.Contracts.BusinessObjects.Job GetNextJobForClient(Guid clientId) {
|
---|
32 |
|
---|
33 | /// Critical section ///
|
---|
34 | jobLock.WaitOne();
|
---|
35 |
|
---|
36 | LinkedList<Job> allOfflineJobs = new LinkedList<Job>(jobAdapter.GetJobsByState(State.offline));
|
---|
37 |
|
---|
38 | Job job2Calculate = null;
|
---|
39 | if (allOfflineJobs != null && allOfflineJobs.Count > 0) {
|
---|
40 | job2Calculate = allOfflineJobs.First.Value;
|
---|
41 | job2Calculate.State = State.calculating;
|
---|
42 | job2Calculate.Client = clientAdapter.GetById(clientId);
|
---|
43 | job2Calculate.Client.State = State.calculating;
|
---|
44 |
|
---|
45 | job2Calculate.DateCalculated = DateTime.Now;
|
---|
46 | jobAdapter.Update(job2Calculate);
|
---|
47 | }
|
---|
48 | jobLock.ReleaseMutex();
|
---|
49 | /// End Critical section ///
|
---|
50 |
|
---|
51 | return job2Calculate;
|
---|
52 | }
|
---|
53 |
|
---|
54 | #endregion
|
---|
55 | }
|
---|
56 | }
|
---|