[9393] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11170] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[9393] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Data.Linq;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using DT = HeuristicLab.Services.Hive.DataTransfer;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Services.Hive.DataAccess {
|
---|
[9434] | 29 | public class OptimizedHiveDao : IOptimizedHiveDao {
|
---|
[9634] | 30 | private HiveDataContext Db { get; set; }
|
---|
[9393] | 31 |
|
---|
[9634] | 32 | public OptimizedHiveDao(HiveDataContext db) {
|
---|
| 33 | Db = db;
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[9393] | 36 | #region Task Methods
|
---|
[9397] | 37 | public Task GetTaskById(Guid taskId) {
|
---|
| 38 | return GetTaskByIdQuery(Db, taskId).SingleOrDefault();
|
---|
[9393] | 39 | }
|
---|
| 40 |
|
---|
[9434] | 41 | private static readonly Func<HiveDataContext, Guid, IQueryable<Task>> GetTaskByIdQuery = CompiledQuery.Compile((HiveDataContext db, Guid taskId) =>
|
---|
[9393] | 42 | from t in db.Tasks
|
---|
[9397] | 43 | where t.TaskId == taskId
|
---|
[9393] | 44 | select t
|
---|
| 45 | );
|
---|
| 46 |
|
---|
[9399] | 47 | public Task GetTaskByDto(DT.Task taskDto) {
|
---|
| 48 | var task = GetTaskById(taskDto.Id);
|
---|
| 49 | DT.Convert.ToEntity(taskDto, task);
|
---|
| 50 | return task;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
[9397] | 53 | public Tuple<Task, Guid?> GetTaskByIdAndLastStateLogSlaveId(Guid taskId) {
|
---|
| 54 | return GetTaskByIdAndLastStateLogSlaveIdQuery(Db, taskId).SingleOrDefault();
|
---|
[9393] | 55 | }
|
---|
| 56 |
|
---|
[9434] | 57 | private static readonly Func<HiveDataContext, Guid, IQueryable<Tuple<Task, Guid?>>> GetTaskByIdAndLastStateLogSlaveIdQuery = CompiledQuery.Compile((HiveDataContext db, Guid taskId) =>
|
---|
[9635] | 58 | from t in db.Tasks
|
---|
| 59 | let lastStateLog = t.StateLogs.OrderByDescending(sl => sl.DateTime).FirstOrDefault()
|
---|
| 60 | where t.TaskId == taskId
|
---|
| 61 | select new Tuple<Task, Guid?>(t, lastStateLog != null ? lastStateLog.SlaveId : null)
|
---|
[9397] | 62 | );
|
---|
[9393] | 63 |
|
---|
[9397] | 64 | private const string GetWaitingTasksQueryString = @"
|
---|
| 65 | WITH pr AS (
|
---|
| 66 | SELECT ResourceId, ParentResourceId
|
---|
| 67 | FROM [Resource]
|
---|
| 68 | WHERE ResourceId = {0}
|
---|
| 69 | UNION ALL
|
---|
| 70 | SELECT r.ResourceId, r.ParentResourceId
|
---|
| 71 | FROM [Resource] r JOIN pr ON r.ResourceId = pr.ParentResourceId
|
---|
| 72 | )
|
---|
| 73 | SELECT DISTINCT t.TaskId, t.JobId, t.Priority
|
---|
| 74 | FROM pr JOIN AssignedResources ar ON ar.ResourceId = pr.ResourceId
|
---|
| 75 | JOIN Task t ON t.TaskId = ar.TaskId
|
---|
| 76 | WHERE NOT (t.IsParentTask = 1 AND t.FinishWhenChildJobsFinished = 1)
|
---|
| 77 | AND t.TaskState = {1}
|
---|
| 78 | AND t.CoresNeeded <= {2}
|
---|
| 79 | AND t.MemoryNeeded <= {3}
|
---|
| 80 | ";
|
---|
| 81 |
|
---|
| 82 | public IEnumerable<TaskInfoForScheduler> GetWaitingTasks(Slave slave) {
|
---|
[9393] | 83 | //Originally we checked here if there are parent tasks which should be calculated (with GetParentTasks(resourceIds, count, false);).
|
---|
| 84 | //Because there is at the moment no case where this makes sense (there don't exist parent tasks which need to be calculated),
|
---|
| 85 | //we skip this step because it's wasted runtime
|
---|
[9397] | 86 | return Db.ExecuteQuery<TaskInfoForScheduler>(GetWaitingTasksQueryString, slave.ResourceId, Enum.GetName(typeof(TaskState), TaskState.Waiting), slave.FreeCores, slave.FreeMemory);
|
---|
| 87 | }
|
---|
[9393] | 88 |
|
---|
[9397] | 89 | public IQueryable<DT.LightweightTask> GetLightweightTasks(Guid jobId) {
|
---|
| 90 | return GetLightweightTasksQuery(Db, jobId);
|
---|
[9393] | 91 | }
|
---|
| 92 |
|
---|
[9434] | 93 | private static readonly Func<HiveDataContext, Guid, IQueryable<DT.LightweightTask>> GetLightweightTasksQuery = CompiledQuery.Compile((HiveDataContext db, Guid jobId) =>
|
---|
[9397] | 94 | from task in db.Tasks
|
---|
| 95 | where task.JobId == jobId
|
---|
| 96 | select new DT.LightweightTask {
|
---|
| 97 | Id = task.TaskId,
|
---|
| 98 | ExecutionTime = TimeSpan.FromMilliseconds(task.ExecutionTimeMs),
|
---|
| 99 | ParentTaskId = task.ParentTaskId,
|
---|
[9635] | 100 | StateLog = task.StateLogs.OrderBy(sl => sl.DateTime).Select(sl => ConvertStateLog(sl)).ToList(),
|
---|
[9397] | 101 | State = ConvertTaskState(task.State),
|
---|
| 102 | Command = ConvertCommand(task.Command),
|
---|
| 103 | LastTaskDataUpdate = task.JobData.LastUpdate
|
---|
| 104 | }
|
---|
| 105 | );
|
---|
[9393] | 106 |
|
---|
[9434] | 107 | private static readonly Func<StateLog, DT.StateLog> ConvertStateLog = sl => DT.Convert.ToDto(sl);
|
---|
| 108 | private static readonly Func<TaskState, DT.TaskState> ConvertTaskState = ts => DT.Convert.ToDto(ts);
|
---|
| 109 | private static readonly Func<Command?, DT.Command?> ConvertCommand = c => DT.Convert.ToDto(c);
|
---|
[9397] | 110 |
|
---|
| 111 | public void UpdateTask(Task task) {
|
---|
| 112 | Db.SubmitChanges();
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[9393] | 115 | public Task UpdateTaskState(Guid taskId, TaskState taskState, Guid? slaveId, Guid? userId, string exception) {
|
---|
| 116 | Db.StateLogs.InsertOnSubmit(new StateLog {
|
---|
| 117 | TaskId = taskId,
|
---|
| 118 | State = taskState,
|
---|
| 119 | SlaveId = slaveId,
|
---|
| 120 | UserId = userId,
|
---|
| 121 | Exception = exception,
|
---|
| 122 | DateTime = DateTime.Now
|
---|
| 123 | });
|
---|
| 124 |
|
---|
| 125 | var task = GetTaskById(taskId);
|
---|
| 126 | task.State = taskState;
|
---|
| 127 |
|
---|
| 128 | Db.SubmitChanges();
|
---|
| 129 |
|
---|
| 130 | return task;
|
---|
| 131 | }
|
---|
[9397] | 132 |
|
---|
[9434] | 133 | public Guid AddTask(Task task) {
|
---|
| 134 | Db.Tasks.InsertOnSubmit(task);
|
---|
| 135 | Db.SubmitChanges();
|
---|
| 136 | return task.TaskId;
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | public void AssignJobToResource(Guid taskId, IEnumerable<Guid> resourceIds) {
|
---|
| 140 | Db.AssignedResources.InsertAllOnSubmit(resourceIds.Select(resourceId => new AssignedResource { TaskId = taskId, ResourceId = resourceId }));
|
---|
| 141 | Db.SubmitChanges();
|
---|
| 142 | }
|
---|
| 143 |
|
---|
[9397] | 144 | private const string TaskIsAllowedToBeCalculatedBySlaveQueryString = @"
|
---|
| 145 | WITH pr AS (
|
---|
| 146 | SELECT ResourceId, ParentResourceId
|
---|
| 147 | FROM [Resource]
|
---|
| 148 | WHERE ResourceId = {0}
|
---|
| 149 | UNION ALL
|
---|
| 150 | SELECT r.ResourceId, r.ParentResourceId
|
---|
| 151 | FROM [Resource] r JOIN pr ON r.ResourceId = pr.ParentResourceId
|
---|
| 152 | )
|
---|
| 153 | SELECT COUNT(ar.TaskId)
|
---|
| 154 | FROM pr JOIN AssignedResources ar ON pr.ResourceId = ar.ResourceId
|
---|
| 155 | WHERE ar.TaskId = {1}
|
---|
| 156 | ";
|
---|
| 157 |
|
---|
| 158 | public bool TaskIsAllowedToBeCalculatedBySlave(Guid taskId, Guid slaveId) {
|
---|
| 159 | return Db.ExecuteQuery<int>(TaskIsAllowedToBeCalculatedBySlaveQueryString, slaveId, taskId).First() > 0;
|
---|
| 160 | }
|
---|
[9393] | 161 | #endregion
|
---|
| 162 |
|
---|
| 163 | #region TaskData Methods
|
---|
| 164 | public TaskData GetTaskDataById(Guid id) {
|
---|
| 165 | return GetTaskDataByIdQuery(Db, id).SingleOrDefault();
|
---|
| 166 | }
|
---|
| 167 |
|
---|
[9434] | 168 | private static readonly Func<HiveDataContext, Guid, IQueryable<TaskData>> GetTaskDataByIdQuery = CompiledQuery.Compile((HiveDataContext db, Guid id) =>
|
---|
[9393] | 169 | from t in db.TaskDatas
|
---|
| 170 | where t.TaskId == id
|
---|
| 171 | select t
|
---|
| 172 | );
|
---|
| 173 |
|
---|
| 174 | public TaskData GetTaskDataByDto(DT.TaskData dto) {
|
---|
| 175 | var taskData = GetTaskDataById(dto.TaskId);
|
---|
| 176 | DT.Convert.ToEntity(dto, taskData);
|
---|
| 177 | return taskData;
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | public void UpdateTaskData(TaskData taskData) {
|
---|
| 181 | Db.SubmitChanges();
|
---|
| 182 | }
|
---|
| 183 | #endregion
|
---|
| 184 |
|
---|
| 185 | #region Plugin Methods
|
---|
[9399] | 186 | public Plugin GetPluginById(Guid pluginId) {
|
---|
| 187 | return GetPluginByIdQuery(Db, pluginId).SingleOrDefault();
|
---|
| 188 | }
|
---|
[9393] | 189 |
|
---|
[9434] | 190 | private static readonly Func<HiveDataContext, Guid, IQueryable<Plugin>> GetPluginByIdQuery = CompiledQuery.Compile((HiveDataContext db, Guid pluginId) =>
|
---|
[9399] | 191 | from p in db.Plugins
|
---|
| 192 | where p.PluginId == pluginId
|
---|
| 193 | select p
|
---|
| 194 | );
|
---|
[9393] | 195 | #endregion
|
---|
| 196 |
|
---|
| 197 | #region Slave Methods
|
---|
| 198 | public Slave GetSlaveById(Guid id) {
|
---|
| 199 | return GetSlaveByIdQuery(Db, id).SingleOrDefault();
|
---|
| 200 | }
|
---|
| 201 |
|
---|
[9434] | 202 | private static readonly Func<HiveDataContext, Guid, IQueryable<Slave>> GetSlaveByIdQuery = CompiledQuery.Compile((HiveDataContext db, Guid slaveId) =>
|
---|
[9393] | 203 | from s in db.Resources.OfType<Slave>()
|
---|
| 204 | where s.ResourceId == slaveId
|
---|
| 205 | select s
|
---|
| 206 | );
|
---|
| 207 |
|
---|
| 208 | public void UpdateSlave(Slave slave) {
|
---|
| 209 | Db.SubmitChanges();
|
---|
| 210 | }
|
---|
| 211 |
|
---|
[9397] | 212 | private const string DowntimeQueryString = @"
|
---|
| 213 | WITH pr AS (
|
---|
| 214 | SELECT ResourceId, ParentResourceId
|
---|
| 215 | FROM [Resource]
|
---|
| 216 | WHERE ResourceId = {0}
|
---|
| 217 | UNION ALL
|
---|
| 218 | SELECT r.ResourceId, r.ParentResourceId
|
---|
| 219 | FROM [Resource] r JOIN pr ON r.ResourceId = pr.ParentResourceId
|
---|
| 220 | )
|
---|
| 221 | SELECT COUNT(dt.DowntimeId)
|
---|
| 222 | FROM pr JOIN [Downtime] dt ON pr.ResourceId = dt.ResourceId
|
---|
| 223 | WHERE {1} BETWEEN dt.StartDate AND dt.EndDate
|
---|
| 224 | AND dt.DowntimeType = {2}
|
---|
| 225 | ";
|
---|
[9393] | 226 |
|
---|
[9397] | 227 | public bool SlaveHasToShutdownComputer(Guid slaveId) {
|
---|
[9485] | 228 | return Db.ExecuteQuery<int>(DowntimeQueryString, slaveId, DateTime.Now, DowntimeType.Shutdown.ToString()).FirstOrDefault() > 0;
|
---|
[9393] | 229 | }
|
---|
| 230 |
|
---|
[9397] | 231 | public bool SlaveIsAllowedToCalculate(Guid slaveId) {
|
---|
[9485] | 232 | return Db.ExecuteQuery<int>(DowntimeQueryString, slaveId, DateTime.Now, DowntimeType.Offline.ToString()).FirstOrDefault() == 0;
|
---|
[9393] | 233 | }
|
---|
[9397] | 234 | #endregion
|
---|
[9393] | 235 |
|
---|
[9397] | 236 | #region Resource Methods
|
---|
[9434] | 237 | public IEnumerable<Guid> GetAssignedResourceIds(Guid taskId) {
|
---|
| 238 | return GetAssignedResourceIdsQuery(Db, taskId);
|
---|
| 239 | }
|
---|
| 240 |
|
---|
| 241 | private static readonly Func<HiveDataContext, Guid, IQueryable<Guid>> GetAssignedResourceIdsQuery = CompiledQuery.Compile((HiveDataContext db, Guid taskId) =>
|
---|
| 242 | from ar in db.AssignedResources
|
---|
| 243 | where ar.TaskId == taskId
|
---|
| 244 | select ar.ResourceId
|
---|
| 245 | );
|
---|
[9393] | 246 | #endregion
|
---|
| 247 | }
|
---|
| 248 | }
|
---|