Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs @ 2066

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

Implemented job assignment to resources (#507)

File size: 12.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Linq;
25using System.Text;
26using HeuristicLab.Hive.Server.DataAccess;
27using HeuristicLab.Hive.Contracts.BusinessObjects;
28using System.Linq.Expressions;
29using HeuristicLab.DataAccess.ADOHelper;
30using HeuristicLab.Hive.Server.ADODataAccess.dsHiveServerTableAdapters;
31using System.Data.Common;
32using System.Data.SqlClient;
33using HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper;
34
35namespace HeuristicLab.Hive.Server.ADODataAccess {
36  class JobAdapter :
37    DataAdapterBase<dsHiveServerTableAdapters.JobTableAdapter,
38                      Job,
39                      dsHiveServer.JobRow>,
40    IJobAdapter {
41    #region Fields
42    private ManyToManyRelationHelper<
43      dsHiveServerTableAdapters.RequiredPluginsTableAdapter,
44      dsHiveServer.RequiredPluginsRow> pluginsManyToManyRelationHelper = null;
45
46    private ManyToManyRelationHelper<
47      dsHiveServerTableAdapters.RequiredPluginsTableAdapter,
48      dsHiveServer.RequiredPluginsRow> PluginsManyToManyRelationHelper {
49      get {
50        if (pluginsManyToManyRelationHelper == null) {
51          pluginsManyToManyRelationHelper =
52            new ManyToManyRelationHelper<dsHiveServerTableAdapters.RequiredPluginsTableAdapter,
53              dsHiveServer.RequiredPluginsRow>(new RequiredPluginsAdapterWrapper(), 1);
54        }
55
56        pluginsManyToManyRelationHelper.Session = Session as Session;
57
58        return pluginsManyToManyRelationHelper;
59      }
60    }
61
62    private ManyToManyRelationHelper<
63      dsHiveServerTableAdapters.AssignedResourcesTableAdapter,
64      dsHiveServer.AssignedResourcesRow> assignedManyToManyRelationHelper = null;
65
66    private ManyToManyRelationHelper<
67      dsHiveServerTableAdapters.AssignedResourcesTableAdapter,
68      dsHiveServer.AssignedResourcesRow> AssignedManyToManyRelationHelper {
69      get {
70        if (assignedManyToManyRelationHelper == null) {
71          assignedManyToManyRelationHelper =
72            new ManyToManyRelationHelper<dsHiveServerTableAdapters.AssignedResourcesTableAdapter,
73              dsHiveServer.AssignedResourcesRow>(new AssignedResourcesAdapterWrapper(), 0);
74        }
75
76        assignedManyToManyRelationHelper.Session = Session as Session;
77
78        return assignedManyToManyRelationHelper;
79      }
80    }
81
82    private IClientAdapter clientAdapter = null;
83
84    private IClientAdapter ClientAdapter {
85      get {
86        if (clientAdapter == null)
87          clientAdapter =
88            this.Session.GetDataAdapter<ClientInfo, IClientAdapter>();
89
90        return clientAdapter;
91      }
92    }
93
94    private IJobResultsAdapter resultsAdapter = null;
95
96    private IJobResultsAdapter ResultsAdapter {
97      get {
98        if (resultsAdapter == null) {
99          resultsAdapter =
100            this.Session.GetDataAdapter<JobResult, IJobResultsAdapter>();
101        }
102
103        return resultsAdapter;
104      }
105    }
106
107    private IPluginInfoAdapter pluginInfoAdapter = null;
108
109    private IPluginInfoAdapter PluginInfoAdapter {
110      get {
111        if (pluginInfoAdapter == null) {
112          pluginInfoAdapter =
113            this.Session.GetDataAdapter<HivePluginInfo, IPluginInfoAdapter>();
114        }
115
116        return pluginInfoAdapter;
117      }
118    }
119
120    private IProjectAdapter projectAdapter = null;
121
122    private IProjectAdapter ProjectAdapter {
123      get {
124        if (projectAdapter == null) {
125          projectAdapter =
126            this.Session.GetDataAdapter<Project, IProjectAdapter>();
127        }
128
129        return projectAdapter;
130      }
131    }
132    #endregion
133
134    public JobAdapter(): base(new JobAdapterWrapper()) {
135    }
136
137    #region Overrides
138    protected override Job ConvertRow(dsHiveServer.JobRow row,
139      Job job) {
140      if (row != null && job != null) {
141        job.Id = row.JobId;
142
143        if (!row.IsParentJobIdNull())
144          job.ParentJob = GetById(row.ParentJobId);
145        else
146          job.ParentJob = null;
147
148        if (!row.IsResourceIdNull())
149          job.Client = ClientAdapter.GetById(row.ResourceId);
150        else
151          job.Client = null;
152
153        if (!row.IsUserIdNull())
154          job.UserId = Guid.Empty;
155        else
156          job.UserId = Guid.Empty;
157       
158        if (!row.IsJobStateNull())
159          job.State = (State)Enum.Parse(job.State.GetType(), row.JobState);
160        else
161          job.State = State.nullState;
162
163        if (!row.IsPercentageNull())
164          job.Percentage = row.Percentage;
165        else
166          job.Percentage = 0.0;
167
168        if (!row.IsSerializedJobNull())
169          job.SerializedJob = row.SerializedJob;
170        else
171          job.SerializedJob = null;
172
173        if (!row.IsDateCreatedNull())
174          job.DateCreated = row.DateCreated;
175        else
176          job.DateCreated = DateTime.MinValue;
177
178        if (!row.IsDateCalculatedNull())
179          job.DateCalculated = row.DateCalculated;
180        else
181          job.DateCalculated = DateTime.MinValue;
182
183        if (!row.IsPriorityNull())
184          job.Priority = row.Priority;
185        else
186          job.Priority = default(int);
187
188        if (!row.IsCoresNeededNull())
189          job.CoresNeeded = row.CoresNeeded;
190        else
191          job.CoresNeeded = default(int);
192
193        if (!row.IsMemoryNeededNull())
194          job.MemoryNeeded = row.MemoryNeeded;
195        else
196          job.MemoryNeeded = default(int);
197
198        if (!row.IsProjectIdNull())
199          job.Project = ProjectAdapter.GetById(
200            row.ProjectId);
201        else
202          job.Project = null;
203
204        ICollection<Guid> requiredPlugins =
205          PluginsManyToManyRelationHelper.GetRelationships(job.Id);
206       
207        job.PluginsNeeded.Clear();
208        foreach (Guid requiredPlugin in requiredPlugins) {
209          HivePluginInfo pluginInfo =
210            PluginInfoAdapter.GetById(requiredPlugin);
211
212          job.PluginsNeeded.Add(pluginInfo);
213        }
214
215        job.AssignedResourceIds =
216          new List<Guid>(
217            AssignedManyToManyRelationHelper.GetRelationships(job.Id));
218
219        return job;
220      } else
221        return null;
222    }
223
224    protected override dsHiveServer.JobRow ConvertObj(Job job,
225      dsHiveServer.JobRow row) {
226      if (job != null && row != null) {
227        row.JobId = job.Id;
228       
229        if (job.Client != null) {
230          if (row.IsResourceIdNull()) {
231            row.ResourceId = job.Client.Id;
232          }
233        } else
234          row.SetResourceIdNull();
235
236        if (job.ParentJob != null) {
237          if (row.IsParentJobIdNull()) {
238            row.ParentJobId = job.ParentJob.Id;
239          }
240        } else
241          row.SetParentJobIdNull();
242
243        if (job.UserId != Guid.Empty) {
244          if (row.IsUserIdNull() ||
245           row.UserId != Guid.Empty) {
246            row.UserId = Guid.Empty;
247          }
248        } else
249          row.SetUserIdNull();
250
251        if (job.State != State.nullState)
252          row.JobState = job.State.ToString();
253        else
254          row.SetJobStateNull();
255
256        row.Percentage = job.Percentage;
257
258        row.SerializedJob = job.SerializedJob;
259
260        if (job.DateCreated != DateTime.MinValue)
261          row.DateCreated = job.DateCreated;
262        else
263          row.SetDateCreatedNull();
264
265        if (job.DateCalculated != DateTime.MinValue)
266          row.DateCalculated = job.DateCalculated;
267        else
268          row.SetDateCalculatedNull();
269
270        row.Priority = job.Priority;
271
272        row.CoresNeeded = job.CoresNeeded;
273
274        row.MemoryNeeded = job.MemoryNeeded;
275
276        if (job.Project != null)
277          row.ProjectId = job.Project.Id;
278        else
279          row.SetProjectIdNull();
280      }
281
282      return row;
283    }
284    #endregion
285
286    #region IJobAdapter Members
287    public ICollection<Job> GetAllSubjobs(Job job) {
288      if (job != null) {
289        return
290          base.FindMultiple(
291            delegate() {
292              return Adapter.GetDataByParentJob(job.Id);
293            });
294      }
295
296      return null;
297    }
298
299    public ICollection<Job> GetJobsByState(State state) {
300      return
301         base.FindMultiple(
302           delegate() {
303             return Adapter.GetDataByState(state.ToString());
304           });
305    }
306
307    public ICollection<Job> GetJobsOf(ClientInfo client) {
308      if (client != null) {
309        return
310          base.FindMultiple(
311            delegate() {
312              return Adapter.GetDataByClient(client.Id);
313            });
314      }
315
316      return null;
317    }
318
319    public ICollection<Job> GetActiveJobsOf(ClientInfo client) {
320
321      if (client != null) {
322        return
323          base.FindMultiple(
324            delegate() {
325              return Adapter.GetDataByCalculatingClient(client.Id);
326            });
327      }
328
329      return null;
330    }
331
332    public ICollection<Job> GetJobsOf(Guid userId) {     
333      return
334          base.FindMultiple(
335            delegate() {
336              return Adapter.GetDataByUser(userId);
337            });
338    }
339
340    public ICollection<Job> FindJobs(State state, int cores, int memory,
341      Guid resourceId) {
342      return
343         base.FindMultiple(
344           delegate() {
345             return Adapter.GetDataByStateCoresMemoryResource(
346               state.ToString(),
347               cores,
348               memory,
349               resourceId);
350           });
351    }
352
353    public ICollection<Job> GetJobsByProject(Guid projectId) {
354      return
355         base.FindMultiple(
356           delegate() {
357             return Adapter.GetDataByProjectId(projectId);
358           });
359    }
360
361    protected override void doUpdate(Job obj) {
362      if (obj != null) {
363        ProjectAdapter.Update(obj.Project);
364        ClientAdapter.Update(obj.Client);
365        Update(obj.ParentJob);
366
367        base.doUpdate(obj);
368
369        //update relationships
370        List<Guid> relationships =
371          new List<Guid>();
372        foreach (HivePluginInfo pluginInfo in obj.PluginsNeeded) {
373          //first check if pluginInfo already exists in the db
374          HivePluginInfo found = PluginInfoAdapter.GetByNameVersionBuilddate(
375            pluginInfo.Name, pluginInfo.Version, pluginInfo.BuildDate);
376          if (found != null) {
377            pluginInfo.Id = found.Id;
378          }
379
380          PluginInfoAdapter.Update(pluginInfo);
381          relationships.Add(pluginInfo.Id);
382        }
383
384        PluginsManyToManyRelationHelper.UpdateRelationships(
385          obj.Id, relationships);
386
387        AssignedManyToManyRelationHelper.UpdateRelationships(
388          obj.Id, obj.AssignedResourceIds);
389      }
390    }
391
392    protected override bool doDelete(Job job) {
393      if (job != null) {
394        dsHiveServer.JobRow row =
395          GetRowById(job.Id);
396
397        if (row != null) {
398          //Referential integrity with job results
399          ICollection<JobResult> results =
400            ResultsAdapter.GetResultsOf(job);
401
402          foreach (JobResult result in results) {
403            ResultsAdapter.Delete(result);
404          }
405
406          //delete all relationships
407          PluginsManyToManyRelationHelper.UpdateRelationships(job.Id,
408            new List<Guid>());
409
410          //delete orphaned pluginInfos
411          ICollection<HivePluginInfo> orphanedPluginInfos =
412             PluginInfoAdapter.GetOrphanedPluginInfos();
413          foreach(HivePluginInfo orphanedPlugin in orphanedPluginInfos) {
414            PluginInfoAdapter.Delete(orphanedPlugin);
415          }
416
417          return base.doDelete(job);
418        }
419      }
420
421      return false;
422    }
423
424    #endregion
425  }
426}
Note: See TracBrowser for help on using the repository browser.