Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/Daos/JobDao.cs @ 15630

Last change on this file since 15630 was 15630, checked in by jzenisek, 7 years ago

#2839

  • updated Heartbeat processing (regarding: checking against AssignedJobResources and handling of the updated Job deletion routine)
  • updated Job deletion routine(still in progress at GenerateStatistics)
File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Data.Linq;
25using System.Linq;
26
27namespace HeuristicLab.Services.Hive.DataAccess.Daos {
28  public class JobDao : GenericDao<Guid, Job> {
29    public JobDao(DataContext dataContext) : base(dataContext) { }
30
31    public override Job GetById(Guid id) {
32      return GetByIdQuery(DataContext, id);
33    }
34   
35    public void DeleteByState(JobState state) {
36      DataContext.ExecuteCommand(DeleteByStateQueryString, Enum.GetName(typeof(JobState), state));
37    }
38
39    public IEnumerable<Job> GetByState(JobState state) {
40      return GetByStateQuery(DataContext, state);
41    }
42
43    public IEnumerable<Guid> GetJobIdsByState(JobState state) {
44      return GetJobIdsByStateQuery(DataContext, state);
45    }
46
47
48    #region Compiled queries
49    private static readonly Func<DataContext, Guid, Job> GetByIdQuery =
50      CompiledQuery.Compile((DataContext db, Guid jobId) =>
51        (from job in db.GetTable<Job>()
52         where job.JobId == jobId
53         select job).SingleOrDefault());
54    private static readonly Func<DataContext, JobState, IEnumerable<Job>> GetByStateQuery =
55      CompiledQuery.Compile((DataContext db, JobState jobState) =>
56        (from job in db.GetTable<Job>()
57         where job.State == jobState
58         select job).ToList());
59    private static readonly Func<DataContext, JobState, IEnumerable<Guid>> GetJobIdsByStateQuery =
60      CompiledQuery.Compile((DataContext db, JobState jobState) =>
61        (from job in db.GetTable<Job>()
62         where job.State == jobState
63         select job.JobId).ToList());
64    #endregion
65
66    #region String queries
67    private const string DeleteByStateQueryString = @"
68      DELETE FROM [Job]
69      WHERE JobState = {0}
70    ";
71    #endregion
72  }
73}
Note: See TracBrowser for help on using the repository browser.