[12468] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[12468] | 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 |
|
---|
| 22 | using System;
|
---|
[15630] | 23 | using System.Collections.Generic;
|
---|
[12468] | 24 | using System.Data.Linq;
|
---|
| 25 | using System.Linq;
|
---|
| 26 |
|
---|
| 27 | namespace 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) {
|
---|
[12691] | 32 | return GetByIdQuery(DataContext, id);
|
---|
[12468] | 33 | }
|
---|
[15630] | 34 |
|
---|
| 35 | public void DeleteByState(JobState state) {
|
---|
| 36 | DataContext.ExecuteCommand(DeleteByStateQueryString, Enum.GetName(typeof(JobState), state));
|
---|
| 37 | }
|
---|
[12691] | 38 |
|
---|
[15630] | 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 |
|
---|
[12691] | 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());
|
---|
[15630] | 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());
|
---|
[12691] | 64 | #endregion
|
---|
[15630] | 65 |
|
---|
| 66 | #region String queries
|
---|
| 67 | private const string DeleteByStateQueryString = @"
|
---|
| 68 | DELETE FROM [Job]
|
---|
| 69 | WHERE JobState = {0}
|
---|
| 70 | ";
|
---|
| 71 | #endregion
|
---|
[12468] | 72 | }
|
---|
| 73 | }
|
---|