Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Scheduler/DefaultScheduler.cs @ 1377

Last change on this file since 1377 was 1377, checked in by svonolfe, 15 years ago

Created Heuristiclab DB Core (refactoring) #527

File size: 1.7 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Server.Core.InternalInterfaces;
6using HeuristicLab.Hive.Contracts.BusinessObjects;
7using HeuristicLab.Hive.Server.DataAccess;
8using System.Threading;
9
10namespace 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}
Note: See TracBrowser for help on using the repository browser.