Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/3.2/AddJobForm.cs @ 3508

Last change on this file since 3508 was 3011, checked in by kgrading, 14 years ago

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File size: 5.8 KB
RevLine 
[3011]1#region License Information
[1030]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;
[1018]23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Data;
26using System.Drawing;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using HeuristicLab.Hive.Contracts.Interfaces;
31using HeuristicLab.Hive.Contracts.BusinessObjects;
32using HeuristicLab.Hive.Contracts;
[1120]33using HeuristicLab.Hive.JobBase;
34using HeuristicLab.Core;
[2026]35using System.ServiceModel;
[1018]36
[1089]37namespace HeuristicLab.Hive.Server.ServerConsole {
[1164]38
39  public delegate void addDelegate();
40
[1018]41  public partial class AddJobForm : Form {
42
[1164]43    public event addDelegate addJobEvent;
44
[3011]45    ResponseList<ProjectDto> projects = null;
[1018]46    IJobManager jobManager;
[1937]47    IClientManager clientManager;
[3011]48    ResponseList<ClientGroupDto> clientGroups;
[1018]49
[1937]50    Dictionary<Guid, string> clients = null;
51
[1018]52    public AddJobForm() {
53      InitializeComponent();
[1937]54
55      clients = new Dictionary<Guid, string>();
[1037]56      AddJob();
[1937]57
[1018]58    }
59
[1037]60    private void AddJob() {
[2026]61      try {
62
[1018]63      jobManager =
64        ServiceLocator.GetJobManager();
[1937]65      projects = jobManager.GetAllProjects();
[1956]66      clientManager =
67        ServiceLocator.GetClientManager();
68      clientGroups = clientManager.GetAllClientGroups();
[1937]69      cbProject.Items.Add("none");
70      cbProject.SelectedIndex = 0;
[3011]71      foreach (ProjectDto project in projects.List) {
[1937]72        cbProject.Items.Add(project.Name);
[1018]73      }
[1937]74
[1956]75      AddClientGroups();
[1937]76
[1956]77      foreach (KeyValuePair<Guid, string> kvp in clients) {
78        lbGroupsOut.Items.Add(kvp.Value + " (" + kvp.Key + ")");
79      }
[2026]80      }
81      catch (FaultException fe) {
82        MessageBox.Show(fe.Message);
83      }
[1956]84
[1018]85    }
86
[1937]87    private void AddClientGroups() {
[3011]88     foreach (ClientGroupDto cg in clientGroups.List) {
[1956]89       if (cg.Id != Guid.Empty)
[1937]90       clients.Add(cg.Id, cg.Name);
91        AddClientOrGroup(cg);
92      }
93    }
94
[3011]95    private void AddClientOrGroup(ClientGroupDto clientGroup) {
96      foreach (ResourceDto resource in clientGroup.Resources) {
97        if (resource is ClientGroupDto) {
[1956]98          if (resource.Id != Guid.Empty)
[1937]99          clients.Add(resource.Id, resource.Name);
[3011]100          AddClientOrGroup(resource as ClientGroupDto);
[1937]101        }
102      }
103   
104    }
105
[1037]106    private void BtnAdd_Click(object sender, EventArgs e) {
[1030]107      try {
108        lblError.Text = "";
109        int numJobs = Convert.ToInt32(tbNumJobs.Text);
110        if (numJobs > 0) {
111          for (int i = 0; i < numJobs; i++) {
[3011]112            JobDto job = new JobDto { State = State.offline, CoresNeeded = 1 };
[1956]113           
114            // if project selected (0 -> none)
[1937]115            if (cbProject.SelectedIndex != 0) {
[1956]116              job.Project = projects.List[cbProject.SelectedIndex - 1];
[1030]117            }
[1956]118
119            if (!cbAllGroups.Checked) {
120              List<Guid> groupsToCalculate = new List<Guid>();
121              foreach (string item in lbGroupsIn.Items) {
122                int start = item.IndexOf("(");
123                int end = item.IndexOf(")");
124                string substring = item.Substring(start + 1, end - start - 1);
125                Guid guid = new Guid(substring);
126                groupsToCalculate.Add(guid);
127              }
128              job.AssignedResourceIds = groupsToCalculate;
129            }
[2082]130
[2092]131            SerializedJob computableJob =
132              new SerializedJob();
[2082]133            computableJob.JobInfo = job;
[2092]134            computableJob.SerializedJobData = PersistenceManager.SaveToGZip(new TestJob());
[2082]135            Response resp = jobManager.AddNewJob(computableJob);
[1018]136          }
[1164]137          if (addJobEvent != null) {
138            addJobEvent();
139          }
[1030]140          this.Close();
141        } else {
142          lblError.Text = "Wrong number of Jobs";
[1018]143        }
[1030]144
[1018]145      }
[1030]146      catch {
147        lblError.Text = "There should be a number";
148      }
[1018]149    }
150
[1037]151    private void BtnClose_Click(object sender, EventArgs e) {
[1018]152      this.Close();
153    }
[1037]154
[1937]155    private void cbAllGroups_CheckedChanged(object sender, EventArgs e) {
156      foreach (Control control in gbGroups.Controls) {
157        control.Enabled = !cbAllGroups.Checked;
158      }
159    }
[1037]160
[1956]161    private void btnAddGroup_Click(object sender, EventArgs e) {
162      AddGroup();
163    }
[1937]164
[1956]165    private void btnRemoveGroup_Click(object sender, EventArgs e) {
166      RemoveGroup();
167    }
168
169    private void lbGroupsOut_SelectedIndexChanged(object sender, EventArgs e) {
170      AddGroup();
171    }
172
173    private void lbGroupsIn_SelectedIndexChanged(object sender, EventArgs e) {
174      RemoveGroup();
175    }
176
177    private void AddGroup() {
178      if (lbGroupsOut.SelectedItem != null) {
179        lbGroupsIn.Items.Add(lbGroupsOut.SelectedItem);
180        lbGroupsOut.Items.RemoveAt(lbGroupsOut.SelectedIndex);
181      }
182 
183    }
184
185    private void RemoveGroup() {
186      if (lbGroupsIn.SelectedItem != null) {
187        lbGroupsOut.Items.Add(lbGroupsIn.SelectedItem);
188        lbGroupsIn.Items.RemoveAt(lbGroupsIn.SelectedIndex);
189      }
190    }
191
192    private void btnLoad_Click(object sender, EventArgs e) {
193
194    }
195
196
[1018]197  }
198}
Note: See TracBrowser for help on using the repository browser.