[6976] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6976] | 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.Linq;
|
---|
| 24 | using System.ServiceModel.Security;
|
---|
| 25 | using System.Windows.Forms;
|
---|
[7249] | 26 | using HeuristicLab.Clients.Hive.Views;
|
---|
[6976] | 27 | using HeuristicLab.MainForm;
|
---|
| 28 | using HeuristicLab.MainForm.WindowsForms;
|
---|
| 29 | using HeuristicLab.PluginInfrastructure;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Clients.Hive.JobManager.Views {
|
---|
| 32 | /// <summary>
|
---|
| 33 | /// The base class for visual representations of items.
|
---|
| 34 | /// </summary>
|
---|
| 35 | [View("Hive Job Manager")]
|
---|
| 36 | [Content(typeof(HiveClient), true)]
|
---|
| 37 | public partial class HiveJobManagerView : AsynchronousContentView {
|
---|
| 38 |
|
---|
| 39 | public new HiveClient Content {
|
---|
| 40 | get { return (HiveClient)base.Content; }
|
---|
| 41 | set { base.Content = value; }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | /// <summary>
|
---|
| 45 | /// Initializes a new instance of <see cref="ItemBaseView"/>.
|
---|
| 46 | /// </summary>
|
---|
| 47 | public HiveJobManagerView() {
|
---|
| 48 | InitializeComponent();
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | protected override void RegisterContentEvents() {
|
---|
| 52 | base.RegisterContentEvents();
|
---|
| 53 | Content.Refreshing += new EventHandler(Content_Refreshing);
|
---|
| 54 | Content.Refreshed += new EventHandler(Content_Refreshed);
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | protected override void DeregisterContentEvents() {
|
---|
| 58 | Content.Refreshing -= new EventHandler(Content_Refreshing);
|
---|
| 59 | Content.Refreshed -= new EventHandler(Content_Refreshed);
|
---|
| 60 | base.DeregisterContentEvents();
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | protected override void OnContentChanged() {
|
---|
| 64 | base.OnContentChanged();
|
---|
| 65 | if (Content == null) {
|
---|
| 66 | hiveExperimentListView.Content = null;
|
---|
| 67 | } else {
|
---|
| 68 | hiveExperimentListView.Content = Content.Jobs;
|
---|
| 69 | if (Content != null)
|
---|
| 70 | Content.RefreshAsync(new Action<Exception>((Exception ex) => HandleServiceException(ex)));
|
---|
| 71 | }
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | protected override void SetEnabledStateOfControls() {
|
---|
| 75 | base.SetEnabledStateOfControls();
|
---|
| 76 | refreshButton.Enabled = Content != null;
|
---|
| 77 | hiveExperimentListView.Enabled = Content != null;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | private void Content_Refreshing(object sender, EventArgs e) {
|
---|
| 81 | if (InvokeRequired) {
|
---|
| 82 | Invoke(new EventHandler(Content_Refreshing), sender, e);
|
---|
| 83 | } else {
|
---|
| 84 | Cursor = Cursors.AppStarting;
|
---|
| 85 | refreshButton.Enabled = false;
|
---|
| 86 | hiveExperimentListView.Enabled = false;
|
---|
| 87 | }
|
---|
| 88 | }
|
---|
| 89 | private void Content_Refreshed(object sender, EventArgs e) {
|
---|
| 90 | if (InvokeRequired) {
|
---|
| 91 | Invoke(new EventHandler(Content_Refreshed), sender, e);
|
---|
| 92 | } else {
|
---|
| 93 | hiveExperimentListView.Content = Content.Jobs;
|
---|
| 94 | refreshButton.Enabled = true;
|
---|
| 95 | hiveExperimentListView.Enabled = true;
|
---|
| 96 | Cursor = Cursors.Default;
|
---|
| 97 | }
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | private void refreshButton_Click(object sender, EventArgs e) {
|
---|
| 101 | Content.RefreshAsync(new Action<Exception>((Exception ex) => HandleServiceException(ex)));
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | private void HandleServiceException(Exception ex) {
|
---|
[7256] | 105 | if (this.InvokeRequired) {
|
---|
| 106 | Invoke(new Action<Exception>(HandleServiceException), ex);
|
---|
[6976] | 107 | } else {
|
---|
[7256] | 108 | if (ex is MessageSecurityException) {
|
---|
| 109 | MessageBox.Show("A Message Security error has occured. This normally means that your user name or password is wrong.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 110 | } else if (ex is AnonymousUserException) {
|
---|
| 111 | using (HiveInformationDialog dialog = new HiveInformationDialog()) {
|
---|
| 112 | dialog.ShowDialog(this);
|
---|
| 113 | }
|
---|
| 114 | } else {
|
---|
| 115 | ErrorHandling.ShowErrorDialog(this, "Refresh failed.", ex);
|
---|
| 116 | }
|
---|
[6976] | 117 | }
|
---|
| 118 | }
|
---|
| 119 |
|
---|
| 120 | protected override void OnClosing(FormClosingEventArgs e) {
|
---|
[9442] | 121 | if (Content != null && Content.Jobs != null && Content.Jobs.Any(x => x.IsProgressing)) {
|
---|
[9222] | 122 | DialogResult result = MessageBox.Show("There are still unfinished down/uploads. Are you sure you want to close the window?", "HeuristicLab Hive Job Manager", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
|
---|
| 123 |
|
---|
| 124 | if (result == DialogResult.No) {
|
---|
| 125 | e.Cancel = true;
|
---|
| 126 | }
|
---|
[9219] | 127 | } else {
|
---|
| 128 | base.OnClosing(e);
|
---|
[6976] | 129 | }
|
---|
| 130 | }
|
---|
[9230] | 131 |
|
---|
| 132 | protected override void OnClosed(FormClosedEventArgs e) {
|
---|
[9442] | 133 | if (Content != null && Content.Jobs != null) {
|
---|
[9230] | 134 | Content.ClearHiveClient();
|
---|
| 135 | Content = null;
|
---|
| 136 | }
|
---|
| 137 | base.OnClosed(e);
|
---|
| 138 | }
|
---|
[6976] | 139 | }
|
---|
| 140 | }
|
---|