1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 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 |
|
---|
22 | using System.Collections.Generic;
|
---|
23 | using System.Threading.Tasks;
|
---|
24 | using System.Windows.Forms;
|
---|
25 | using HeuristicLab.PluginInfrastructure;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Clients.Hive.JobManager.Views {
|
---|
28 | public partial class HiveResourceSelectorDialog : Form {
|
---|
29 | public HiveResourceSelectorDialog() {
|
---|
30 | InitializeComponent();
|
---|
31 | }
|
---|
32 |
|
---|
33 | public ISet<Resource> GetSelectedResources() { return hiveResourceSelector.SelectedResources; }
|
---|
34 |
|
---|
35 | private void HiveResourceSelectorDialog_Load(object sender, System.EventArgs e) {
|
---|
36 | HiveAdminClient.Instance.Refreshed += new System.EventHandler(Instance_Refreshed);
|
---|
37 | DownloadResources();
|
---|
38 | }
|
---|
39 |
|
---|
40 | private void HiveResourceSelectorDialog_FormClosing(object sender, FormClosingEventArgs e) {
|
---|
41 | HiveAdminClient.Instance.Refreshed -= new System.EventHandler(Instance_Refreshed);
|
---|
42 | }
|
---|
43 |
|
---|
44 | void Instance_Refreshed(object sender, System.EventArgs e) {
|
---|
45 | hiveResourceSelector.Content = HiveAdminClient.Instance.Resources;
|
---|
46 | }
|
---|
47 |
|
---|
48 | private void refreshButton_Click(object sender, System.EventArgs e) {
|
---|
49 | DownloadResources();
|
---|
50 | }
|
---|
51 |
|
---|
52 | private void DownloadResources() {
|
---|
53 | var task = System.Threading.Tasks.Task.Factory.StartNew(DownloadResourcesAsync);
|
---|
54 | task.ContinueWith(t => {
|
---|
55 | hiveResourceSelector.FinishProgressView();
|
---|
56 | ErrorHandling.ShowErrorDialog(this, "An error occurred while downloading the tasks.", t.Exception);
|
---|
57 | }, TaskContinuationOptions.OnlyOnFaulted);
|
---|
58 | }
|
---|
59 |
|
---|
60 | private void DownloadResourcesAsync() {
|
---|
61 | hiveResourceSelector.StartProgressView();
|
---|
62 | HiveAdminClient.Instance.Refresh();
|
---|
63 | hiveResourceSelector.FinishProgressView();
|
---|
64 | }
|
---|
65 | }
|
---|
66 | }
|
---|