Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2522_RefactorPluginInfrastructure/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveResourceSelectorDialog.cs @ 15973

Last change on this file since 15973 was 15973, checked in by gkronber, 6 years ago

#2522: merged trunk changes from r13402:15972 to branch resolving conflicts where necessary

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