#region License Information
/* HeuristicLab
* Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using HeuristicLab.Collections;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.MainForm;
using HeuristicLab.MainForm.WindowsForms;
using HeuristicLab.Optimization;
using HeuristicLab.PluginInfrastructure;
namespace HeuristicLab.Clients.Hive.JobManager.Views {
///
/// The base class for visual representations of items.
///
[View("Hive Job View")]
[Content(typeof(RefreshableJob), true)]
public partial class RefreshableHiveJobView : HeuristicLab.Core.Views.ItemView {
private Progress progress;
private ProgressView progressView;
private HiveResourceSelectorDialog hiveResourceSelectorDialog;
public new RefreshableJob Content {
get { return (RefreshableJob)base.Content; }
set { base.Content = value; }
}
///
/// Initializes a new instance of .
///
public RefreshableHiveJobView() {
InitializeComponent();
progress = new Progress() {
CanBeCanceled = false,
ProgressState = ProgressState.Finished
};
}
protected override void RegisterContentEvents() {
base.RegisterContentEvents();
Content.RefreshAutomaticallyChanged += new EventHandler(Content_RefreshAutomaticallyChanged);
Content.JobChanged += new EventHandler(Content_HiveExperimentChanged);
Content.IsControllableChanged += new EventHandler(Content_IsControllableChanged);
Content.JobStatisticsChanged += new EventHandler(Content_JobStatisticsChanged);
Content.ExceptionOccured += new EventHandler>(Content_ExceptionOccured);
Content.StateLogListChanged += new EventHandler(Content_StateLogListChanged);
Content.IsProgressingChanged += new EventHandler(Content_IsProgressingChanged);
Content.HiveTasksChanged += new EventHandler(Content_HiveTasksChanged);
Content.ExecutionStateChanged += new EventHandler(Content_ExecutionStateChanged);
Content.ExecutionTimeChanged += new EventHandler(Content_ExecutionTimeChanged);
Content.IsAllowedPrivilegedChanged += new EventHandler(Content_IsAllowedPrivilegedChanged);
Content.Loaded += new EventHandler(Content_Loaded);
Content.TaskReceived += new EventHandler(Content_TaskReceived);
progressView = new ProgressView(this, progress);
}
protected override void DeregisterContentEvents() {
Content.RefreshAutomaticallyChanged -= new EventHandler(Content_RefreshAutomaticallyChanged);
Content.JobChanged -= new EventHandler(Content_HiveExperimentChanged);
Content.IsControllableChanged -= new EventHandler(Content_IsControllableChanged);
Content.JobStatisticsChanged -= new EventHandler(Content_JobStatisticsChanged);
Content.ExceptionOccured -= new EventHandler>(Content_ExceptionOccured);
Content.StateLogListChanged -= new EventHandler(Content_StateLogListChanged);
Content.IsProgressingChanged -= new EventHandler(Content_IsProgressingChanged);
Content.HiveTasksChanged -= new EventHandler(Content_HiveTasksChanged);
Content.ExecutionStateChanged -= new EventHandler(Content_ExecutionStateChanged);
Content.ExecutionTimeChanged -= new EventHandler(Content_ExecutionTimeChanged);
Content.Loaded -= new EventHandler(Content_Loaded);
Content.TaskReceived -= new EventHandler(Content_TaskReceived);
if (progressView != null) {
progressView.Content = null;
progressView.Dispose();
progressView = null;
}
base.DeregisterContentEvents();
}
private void RegisterHiveExperimentEvents() {
Content.Job.PropertyChanged += new PropertyChangedEventHandler(HiveExperiment_PropertyChanged);
}
private void DeregisterHiveExperimentEvents() {
Content.Job.PropertyChanged -= new PropertyChangedEventHandler(HiveExperiment_PropertyChanged);
}
private void RegisterHiveJobEvents() {
Content.HiveTasks.ItemsAdded += new CollectionItemsChangedEventHandler(HiveTasks_ItemsAdded);
Content.HiveTasks.ItemsRemoved += new CollectionItemsChangedEventHandler(HiveTasks_ItemsRemoved);
Content.HiveTasks.CollectionReset += new CollectionItemsChangedEventHandler(HiveTasks_CollectionReset);
}
private void DeregisterHiveJobEvents() {
Content.HiveTasks.ItemsAdded -= new CollectionItemsChangedEventHandler(HiveTasks_ItemsAdded);
Content.HiveTasks.ItemsRemoved -= new CollectionItemsChangedEventHandler(HiveTasks_ItemsRemoved);
Content.HiveTasks.CollectionReset -= new CollectionItemsChangedEventHandler(HiveTasks_CollectionReset);
}
protected override void OnContentChanged() {
base.OnContentChanged();
if (Content == null) {
nameTextBox.Text = string.Empty;
executionTimeTextBox.Text = string.Empty;
resourceNamesTextBox.Text = string.Empty;
isPrivilegedCheckBox.Checked = false;
logView.Content = null;
refreshAutomaticallyCheckBox.Checked = false;
runCollectionViewHost.Content = null;
} else {
nameTextBox.Text = Content.Job.Name;
executionTimeTextBox.Text = Content.ExecutionTime.ToString();
resourceNamesTextBox.Text = Content.Job.ResourceNames;
isPrivilegedCheckBox.Checked = Content.Job.IsPrivileged;
refreshAutomaticallyCheckBox.Checked = Content.RefreshAutomatically;
logView.Content = Content.Log;
runCollectionViewHost.Content = GetAllRunsFromJob(Content);
}
hiveExperimentPermissionListView.Content = null; // has to be filled by refresh button
Content_JobStatisticsChanged(this, EventArgs.Empty);
Content_HiveExperimentChanged(this, EventArgs.Empty);
Content_HiveTasksChanged(this, EventArgs.Empty);
Content_IsProgressingChanged(this, EventArgs.Empty);
Content_StateLogListChanged(this, EventArgs.Empty);
HiveExperiment_PropertyChanged(this, new PropertyChangedEventArgs("Id"));
SetEnabledStateOfControls();
}
protected override void SetEnabledStateOfControls() {
base.SetEnabledStateOfControls();
executionTimeTextBox.Enabled = Content != null;
jobsTextBox.ReadOnly = true;
calculatingTextBox.ReadOnly = true;
finishedTextBox.ReadOnly = true;
if (Content != null) {
bool alreadyUploaded = Content.Id != Guid.Empty;
bool jobsLoaded = Content.HiveTasks != null && Content.HiveTasks.All(x => x.Task.Id != Guid.Empty);
tabControl.Enabled = !Content.IsProgressing;
this.nameTextBox.ReadOnly = !Content.IsControllable || Content.ExecutionState != ExecutionState.Prepared || alreadyUploaded || Content.IsProgressing;
this.resourceNamesTextBox.ReadOnly = !Content.IsControllable || Content.ExecutionState != ExecutionState.Prepared || alreadyUploaded || Content.IsProgressing;
this.searchButton.Enabled = Content.IsControllable && Content.ExecutionState == ExecutionState.Prepared && !alreadyUploaded && !Content.IsProgressing;
this.jobsTreeView.ReadOnly = !Content.IsControllable || Content.ExecutionState != ExecutionState.Prepared || alreadyUploaded || Content.IsProgressing;
this.isPrivilegedCheckBox.Enabled = Content.IsAllowedPrivileged && Content.IsControllable && !(Content.ExecutionState != ExecutionState.Prepared || alreadyUploaded) && !Content.IsProgressing;
this.refreshAutomaticallyCheckBox.Enabled = Content.IsControllable && alreadyUploaded && jobsLoaded && Content.ExecutionState == ExecutionState.Started && !Content.IsProgressing;
this.refreshButton.Enabled = Content.IsDownloadable && alreadyUploaded && !Content.IsProgressing;
this.Locked = !Content.IsControllable || Content.ExecutionState == ExecutionState.Started || Content.IsProgressing;
}
SetEnabledStateOfExecutableButtons();
tabControl_SelectedIndexChanged(this, EventArgs.Empty); // ensure sharing tabpage is disabled
}
protected override void OnClosed(FormClosedEventArgs e) {
if (Content != null) {
if (Content.RefreshAutomatically)
Content.StopResultPolling();
}
base.OnClosed(e);
}
#region Content Events
void Content_TaskReceived(object sender, EventArgs e) {
runCollectionViewHost.Content = GetAllRunsFromJob(Content);
}
private void HiveTasks_ItemsAdded(object sender, CollectionItemsChangedEventArgs e) {
if (InvokeRequired)
Invoke(new CollectionItemsChangedEventHandler(HiveTasks_ItemsAdded), sender, e);
else {
SetEnabledStateOfControls();
}
}
private void HiveTasks_ItemsRemoved(object sender, CollectionItemsChangedEventArgs e) {
if (InvokeRequired)
Invoke(new CollectionItemsChangedEventHandler(HiveTasks_ItemsRemoved), sender, e);
else {
SetEnabledStateOfControls();
}
}
private void HiveTasks_CollectionReset(object sender, CollectionItemsChangedEventArgs e) {
if (InvokeRequired)
Invoke(new CollectionItemsChangedEventHandler(HiveTasks_CollectionReset), sender, e);
else {
SetEnabledStateOfControls();
}
}
private void Content_ExecutionStateChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_ExecutionStateChanged), sender, e);
else
SetEnabledStateOfControls();
}
private void Content_Prepared(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_Prepared), sender, e);
else {
nameTextBox.Enabled = true;
Locked = false;
SetEnabledStateOfControls();
}
}
private void Content_Started(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_Started), sender, e);
else {
nameTextBox.Enabled = false;
SetEnabledStateOfControls();
}
}
private void Content_Paused(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_Paused), sender, e);
else {
nameTextBox.Enabled = true;
SetEnabledStateOfControls();
}
}
private void Content_Stopped(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_Stopped), sender, e);
else {
nameTextBox.Enabled = true;
Locked = false;
SetEnabledStateOfControls();
}
}
private void Content_ExecutionTimeChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_ExecutionTimeChanged), sender, e);
else
executionTimeTextBox.Text = Content.ExecutionTime.ToString();
}
private void Content_RefreshAutomaticallyChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_RefreshAutomaticallyChanged), sender, e);
else {
refreshAutomaticallyCheckBox.Checked = Content.RefreshAutomatically;
SetEnabledStateOfControls();
}
}
private void Content_HiveTasksChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_HiveTasksChanged), sender, e);
else {
if (Content != null && Content.HiveTasks != null) {
jobsTreeView.Content = Content.HiveTasks;
RegisterHiveJobEvents();
} else {
jobsTreeView.Content = null;
}
SetEnabledStateOfControls();
}
}
void Content_Loaded(object sender, EventArgs e) {
runCollectionViewHost.Content = GetAllRunsFromJob(Content);
}
private void Content_HiveExperimentChanged(object sender, EventArgs e) {
if (Content != null && Content.Job != null) {
RegisterHiveExperimentEvents();
Content_IsProgressingChanged(sender, e);
}
}
private void Content_IsControllableChanged(object sender, EventArgs e) {
SetEnabledStateOfControls();
}
private void Content_JobStatisticsChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_JobStatisticsChanged), sender, e);
else {
if (Content != null) {
jobsTextBox.Text = (Content.Job.JobCount - Content.Job.CalculatingCount - Content.Job.FinishedCount).ToString();
calculatingTextBox.Text = Content.Job.CalculatingCount.ToString();
finishedTextBox.Text = Content.Job.FinishedCount.ToString();
} else {
jobsTextBox.Text = "0";
calculatingTextBox.Text = "0";
finishedTextBox.Text = "0";
}
}
}
private void Content_ExceptionOccured(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler>(Content_ExceptionOccured), sender, e);
else {
//don't show the error dialog when downloading tasks, the HiveClient will throw an exception and the dialog will be shown then
if (sender.GetType() != typeof(ConcurrentTaskDownloader) && sender.GetType() != typeof(TaskDownloader)) {
ErrorHandling.ShowErrorDialog(this, e.Value);
}
}
}
private void Content_StateLogListChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_StateLogListChanged), sender, e);
else {
UpdateStateLogList();
}
}
private void Content_IsAllowedPrivilegedChanged(object sender, EventArgs e) {
if (InvokeRequired)
Invoke(new EventHandler(Content_IsAllowedPrivilegedChanged), sender, e);
else {
SetEnabledStateOfControls();
}
}
private void UpdateStateLogList() {
if (Content != null && this.Content.Job != null) {
stateLogViewHost.Content = this.Content.StateLogList;
} else {
stateLogViewHost.Content = null;
}
}
private void HiveExperiment_PropertyChanged(object sender, PropertyChangedEventArgs e) {
if (this.Content != null && e.PropertyName == "Id") this.hiveExperimentPermissionListView.HiveExperimentId = this.Content.Job.Id;
}
#endregion
#region Control events
private void searchButton_Click(object sender, EventArgs e) {
if (hiveResourceSelectorDialog == null)
hiveResourceSelectorDialog = new HiveResourceSelectorDialog();
if (hiveResourceSelectorDialog.ShowDialog(this) == DialogResult.OK) {
StringBuilder sb = new StringBuilder();
foreach (Resource resource in hiveResourceSelectorDialog.GetSelectedResources()) {
sb.Append(resource.Name);
sb.Append(";");
}
resourceNamesTextBox.Text = sb.ToString();
if (Content.Job.ResourceNames != resourceNamesTextBox.Text)
Content.Job.ResourceNames = resourceNamesTextBox.Text;
}
}
private void startButton_Click(object sender, EventArgs e) {
if (nameTextBox.Text.Trim() == string.Empty) {
MessageBox.Show("Please enter a name for the job before uploading it!", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
} else if (Content.ExecutionState == ExecutionState.Paused) {
var task = System.Threading.Tasks.Task.Factory.StartNew(ResumeJobAsync, Content);
task.ContinueWith((t) => {
progress.Finish();
MessageBox.Show("An error occured resuming the job. See the log for more information.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error);
Content.Log.LogException(t.Exception);
}, TaskContinuationOptions.OnlyOnFaulted);
} else {
HiveClient.StartJob((Exception ex) => ErrorHandling.ShowErrorDialog(this, "Start failed.", ex), Content, new CancellationToken());
}
}
private void pauseButton_Click(object sender, EventArgs e) {
var task = System.Threading.Tasks.Task.Factory.StartNew(PauseJobAsync, Content);
task.ContinueWith((t) => {
progress.Finish();
MessageBox.Show("An error occured pausing the job. See the log for more information.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error);
Content.Log.LogException(t.Exception);
}, TaskContinuationOptions.OnlyOnFaulted);
}
private void stopButton_Click(object sender, EventArgs e) {
var task = System.Threading.Tasks.Task.Factory.StartNew(StopJobAsync, Content);
task.ContinueWith((t) => {
progress.Finish();
MessageBox.Show("An error occured stopping the job. See the log for more information.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error);
Content.Log.LogException(t.Exception);
}, TaskContinuationOptions.OnlyOnFaulted);
}
private void resetButton_Click(object sender, EventArgs e) { }
private void PauseJobAsync(object job) {
progress.Status = "Pausing job...";
progress.ProgressState = ProgressState.Started;
HiveClient.PauseJob((RefreshableJob)job);
progress.Finish();
}
private void StopJobAsync(object job) {
progress.Status = "Stopping job...";
progress.ProgressState = ProgressState.Started;
HiveClient.StopJob((RefreshableJob)job);
progress.Finish();
}
private void ResumeJobAsync(object job) {
progress.Status = "Resuming job...";
progress.ProgressState = ProgressState.Started;
HiveClient.ResumeJob((RefreshableJob)job);
progress.Finish();
}
private void nameTextBox_Validated(object sender, EventArgs e) {
if (Content.Job.Name != nameTextBox.Text)
Content.Job.Name = nameTextBox.Text;
}
private void resourceNamesTextBox_Validated(object sender, EventArgs e) {
if (Content.Job.ResourceNames != resourceNamesTextBox.Text)
Content.Job.ResourceNames = resourceNamesTextBox.Text;
}
private void refreshAutomaticallyCheckBox_CheckedChanged(object sender, EventArgs e) {
if (Content != null) Content.RefreshAutomatically = refreshAutomaticallyCheckBox.Checked;
}
private void isPrivilegedCheckBox_Validated(object sender, EventArgs e) {
if (Content != null) Content.Job.IsPrivileged = isPrivilegedCheckBox.Checked;
}
private void refreshButton_Click(object sender, EventArgs e) {
var invoker = new Action(HiveClient.LoadJob);
invoker.BeginInvoke(Content, (ar) => {
try {
invoker.EndInvoke(ar);
}
catch (Exception ex) {
ThreadPool.QueueUserWorkItem(delegate(object exception) { ErrorHandling.ShowErrorDialog(this, (Exception)exception); }, ex);
}
}, null);
}
private void refreshPermissionsButton_Click(object sender, EventArgs e) {
if (this.Content.Job.Id == Guid.Empty) {
MessageBox.Show("You have to upload the Job first before you can share it.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
} else {
hiveExperimentPermissionListView.Content = HiveClient.GetJobPermissions(this.Content.Job.Id);
}
}
#endregion
#region Helpers
private void SetEnabledStateOfExecutableButtons() {
if (Content == null) {
startButton.Enabled = pauseButton.Enabled = stopButton.Enabled = resetButton.Enabled = false;
} else {
startButton.Enabled = Content.IsControllable && Content.HiveTasks != null && Content.HiveTasks.Count > 0 && (Content.ExecutionState == ExecutionState.Prepared || Content.ExecutionState == ExecutionState.Paused) && !Content.IsProgressing;
pauseButton.Enabled = Content.IsControllable && Content.ExecutionState == ExecutionState.Started && !Content.IsProgressing;
stopButton.Enabled = Content.IsControllable && Content.ExecutionState == ExecutionState.Started && !Content.IsProgressing;
resetButton.Enabled = false;
}
}
#endregion
#region Progress reporting
private void Content_IsProgressingChanged(object sender, EventArgs e) {
if (this.InvokeRequired) {
Invoke(new EventHandler(Content_IsProgressingChanged), sender, e);
} else {
if (Content != null && Content.Progress != null && Content.IsProgressing) {
progressView.Content = Content.Progress;
} else if (Content != null) {
progressView.Content = progress;
}
}
}
#endregion
#region Drag & Drop
private void jobsTreeView_DragOver(object sender, DragEventArgs e) {
jobsTreeView_DragEnter(sender, e);
}
private void jobsTreeView_DragEnter(object sender, DragEventArgs e) {
e.Effect = DragDropEffects.None;
var obj = e.Data.GetData(Constants.DragDropDataFormat);
if (obj is IOptimizer) {
if (Content.Id != Guid.Empty) e.Effect = DragDropEffects.None;
else if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link; // ALT key
else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
}
}
private void jobsTreeView_DragDrop(object sender, DragEventArgs e) {
if (e.Effect != DragDropEffects.None) {
var obj = e.Data.GetData(Constants.DragDropDataFormat);
var optimizer = obj as IOptimizer;
if (optimizer != null) {
IOptimizer newOptimizer = null;
if (e.Effect.HasFlag(DragDropEffects.Copy)) {
newOptimizer = (IOptimizer)optimizer.Clone();
newOptimizer.Runs.Clear();
} else {
newOptimizer = optimizer;
}
if (newOptimizer.ExecutionState != ExecutionState.Prepared) {
newOptimizer.Prepare();
}
Content.HiveTasks.Add(new OptimizerHiveTask(newOptimizer));
}
}
}
#endregion
private void tabControl_SelectedIndexChanged(object sender, EventArgs e) {
if (tabControl.SelectedTab == permissionTabPage) {
if (!Content.IsSharable) {
MessageBox.Show("Unable to load permissions. You have insufficient access privileges.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Information);
tabControl.SelectedTab = tasksTabPage;
}
}
}
private RunCollection GetAllRunsFromJob(RefreshableJob job) {
if (job != null) {
RunCollection runs = new RunCollection();
foreach (HiveTask hiveTask in job.HiveTasks) {
TaskUtil.GetAllRunsFromHiveTask(runs, hiveTask);
}
return runs;
} else {
return null;
}
}
}
}