Changeset 16141 for branches/2817-BinPackingSpeedup/HeuristicLab.Clients.Hive.JobManager/3.3/MenuItems
- Timestamp:
- 09/14/18 11:47:37 (6 years ago)
- Location:
- branches/2817-BinPackingSpeedup
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2817-BinPackingSpeedup
- Property svn:mergeinfo changed
-
branches/2817-BinPackingSpeedup/HeuristicLab.Clients.Hive.JobManager
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.JobManager merged eligible /stable/HeuristicLab.Clients.Hive.JobManager merged eligible /trunk/HeuristicLab.Clients.Hive.JobManager merged eligible /branches/1721-RandomForestPersistence/HeuristicLab.Clients.Hive.JobManager 10321-10322 /branches/Algorithms.GradientDescent/HeuristicLab.Clients.Hive.JobManager 5516-5520 /branches/Async/HeuristicLab.Clients.Hive.JobManager 13329-15286 /branches/Benchmarking/sources/HeuristicLab.Clients.Hive.JobManager 6917-7005 /branches/CloningRefactoring/HeuristicLab.Clients.Hive.JobManager 4656-4721 /branches/CodeEditor/HeuristicLab.Clients.Hive.JobManager 11700-11806 /branches/DataAnalysis Refactoring/HeuristicLab.Clients.Hive.JobManager 5471-5808 /branches/DataAnalysis SolutionEnsembles/HeuristicLab.Clients.Hive.JobManager 5815-6180 /branches/DataAnalysis/HeuristicLab.Clients.Hive.JobManager 4458-4459,4462,4464 /branches/DataPreprocessing/HeuristicLab.Clients.Hive.JobManager 10085-11101 /branches/GP.Grammar.Editor/HeuristicLab.Clients.Hive.JobManager 6284-6795 /branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Clients.Hive.JobManager 5060 /branches/HLScript/HeuristicLab.Clients.Hive.JobManager 10331-10358 /branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Clients.Hive.JobManager 11570-12508 /branches/HeuristicLab.Problems.DataAnalysis.Trading/HeuristicLab.Clients.Hive.JobManager 6123-9799 /branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Clients.Hive.JobManager 11130-12721 /branches/HiveProjectManagement/HeuristicLab.Clients.Hive.JobManager 15377-15760 /branches/HiveStatistics/sources/HeuristicLab.Clients.Hive.JobManager 12440-12877 /branches/LogResidualEvaluator/HeuristicLab.Clients.Hive.JobManager 10202-10483 /branches/NET40/sources/HeuristicLab.Clients.Hive.JobManager 5138-5162 /branches/NSGA-II Changes/HeuristicLab.Clients.Hive.JobManager 12033-12122 /branches/ParallelEngine/HeuristicLab.Clients.Hive.JobManager 5175-5192 /branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Clients.Hive.JobManager 7568-7810 /branches/QAPAlgorithms/HeuristicLab.Clients.Hive.JobManager 6350-6627 /branches/Restructure trunk solution/HeuristicLab.Clients.Hive.JobManager 6828 /branches/RuntimeOptimizer/HeuristicLab.Clients.Hive.JobManager 8943-9078 /branches/ScatterSearch (trunk integration)/HeuristicLab.Clients.Hive.JobManager 7787-8333 /branches/SlaveShutdown/HeuristicLab.Clients.Hive.JobManager 8944-8956 /branches/SpectralKernelForGaussianProcesses/HeuristicLab.Clients.Hive.JobManager 10204-10479 /branches/SuccessProgressAnalysis/HeuristicLab.Clients.Hive.JobManager 5370-5682 /branches/Trunk/HeuristicLab.Clients.Hive.JobManager 6829-6865 /branches/UnloadJobs/HeuristicLab.Clients.Hive.JobManager 9168-9215 /branches/VNS/HeuristicLab.Clients.Hive.JobManager 5594-5752 /branches/crossvalidation-2434/HeuristicLab.Clients.Hive.JobManager 12948-12950 /branches/histogram/HeuristicLab.Clients.Hive.JobManager 5959-6341 /branches/symbreg-factors-2650/HeuristicLab.Clients.Hive.JobManager 14232-14825
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
branches/2817-BinPackingSpeedup/HeuristicLab.Clients.Hive.JobManager/3.3/MenuItems/JobManagerMenuItem.cs
r16140 r16141 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 using System.Windows.Forms; 25 using HeuristicLab.Clients.Access; 24 26 using HeuristicLab.MainForm; 25 27 using HeuristicLab.Optimizer; 26 28 27 29 namespace HeuristicLab.Clients.Hive.JobManager { 28 public class JobManagerMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider {30 public class JobManagerMenuItem : MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider { 29 31 public override string Name { 30 32 get { return "&Job Manager"; } 31 33 } 34 32 35 public override IEnumerable<string> Structure { 33 36 get { return new string[] { "&Services", "&Hive" }; } 34 37 } 38 35 39 public override void Execute() { 36 MainFormManager.MainForm.ShowContent(HiveClient.Instance); 40 if (HiveRoles.CheckHiveUserPermissions()) { 41 MainFormManager.MainForm.ShowContent(HiveClient.Instance); 42 } else if (!UserInformation.Instance.UserExists) { 43 MessageBox.Show( 44 "Couldn't fetch user information from the server." + Environment.NewLine + 45 "Please verify that you have an existing user and that your user name and password is correct.", 46 "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error); 47 } else { 48 MessageBox.Show( 49 "You do not seem to have the permissions to use the Hive Job Manager." + Environment.NewLine + 50 "If that's not the case or you have any questions please write an email to support@heuristiclab.com", 51 "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error); 52 } 37 53 } 54 38 55 public override int Position { 39 56 get { return 10000; } 40 57 } 58 41 59 public override Keys ShortCutKeys { 42 60 get { return Keys.Control | Keys.H; } -
branches/2817-BinPackingSpeedup/HeuristicLab.Clients.Hive.JobManager/3.3/MenuItems/RunInHiveMenuItem.cs
r16140 r16141 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 24 25 using System.Threading; 26 using System.Windows.Forms; 27 using HeuristicLab.Clients.Hive.JobManager.Views; 25 28 using HeuristicLab.Core; 26 29 using HeuristicLab.MainForm; … … 82 85 task.ItemTask.ComputeInParallel = content is Experiment || content is BatchRun; 83 86 84 progress = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToContent(this.content, "Uploading to Hive..."); 85 rJob.Progress = progress; 86 progress.ProgressStateChanged += progress_ProgressStateChanged; 87 var hiveResourceSelectorDialog = new HiveResourceSelectorDialog(rJob.Job.Id, rJob.Job.ProjectId); 87 88 88 HiveClient.StartJob(new Action<Exception>(HandleEx), rJob, new CancellationToken()); 89 if (HiveClient.Instance.Projects.Count == 1) { 90 var project = HiveClient.Instance.Projects.FirstOrDefault(); 91 if (project != null && project.Id != Guid.Empty) 92 hiveResourceSelectorDialog.SelectedProjectId = project.Id; 93 } 94 95 if (hiveResourceSelectorDialog.ShowDialog((UserControl)activeView) == DialogResult.OK) { 96 var selectedProject = hiveResourceSelectorDialog.SelectedProject; 97 if (selectedProject != null) { 98 rJob.Job.ProjectId = selectedProject.Id; 99 rJob.Job.ResourceIds = hiveResourceSelectorDialog.SelectedResources.Select(x => x.Id).ToList(); 100 101 progress = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToContent(this.content, "Uploading to Hive..."); 102 rJob.Progress = progress; 103 progress.ProgressStateChanged += progress_ProgressStateChanged; 104 105 HiveClient.StartJob(new Action<Exception>(HandleEx), rJob, new CancellationToken()); 106 } 107 } 89 108 } 90 109
Note: See TracChangeset
for help on using the changeset viewer.