[2851] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2851] | 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;
|
---|
[2916] | 23 | using System.Collections.Generic;
|
---|
[5419] | 24 | using System.Linq;
|
---|
[2851] | 25 | using System.Windows.Forms;
|
---|
| 26 | using HeuristicLab.Common;
|
---|
[3262] | 27 | using HeuristicLab.Core;
|
---|
[2851] | 28 | using HeuristicLab.Core.Views;
|
---|
| 29 | using HeuristicLab.MainForm;
|
---|
[3758] | 30 | using HeuristicLab.PluginInfrastructure;
|
---|
[2851] | 31 |
|
---|
[2852] | 32 | namespace HeuristicLab.Optimization.Views {
|
---|
[2851] | 33 | /// <summary>
|
---|
[5809] | 34 | /// The base class for visual representations of algorithms.
|
---|
[2851] | 35 | /// </summary>
|
---|
[2917] | 36 | [View("Algorithm View")]
|
---|
[2851] | 37 | [Content(typeof(Algorithm), true)]
|
---|
| 38 | [Content(typeof(IAlgorithm), false)]
|
---|
| 39 | public partial class AlgorithmView : NamedItemView {
|
---|
| 40 | private TypeSelectorDialog problemTypeSelectorDialog;
|
---|
| 41 |
|
---|
| 42 | public new IAlgorithm Content {
|
---|
| 43 | get { return (IAlgorithm)base.Content; }
|
---|
| 44 | set { base.Content = value; }
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | /// <summary>
|
---|
| 48 | /// Initializes a new instance of <see cref="ItemBaseView"/>.
|
---|
| 49 | /// </summary>
|
---|
| 50 | public AlgorithmView() {
|
---|
| 51 | InitializeComponent();
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[5237] | 54 | protected override void Dispose(bool disposing) {
|
---|
| 55 | if (disposing) {
|
---|
| 56 | if (problemTypeSelectorDialog != null) problemTypeSelectorDialog.Dispose();
|
---|
| 57 | if (components != null) components.Dispose();
|
---|
| 58 | }
|
---|
| 59 | base.Dispose(disposing);
|
---|
| 60 | }
|
---|
| 61 |
|
---|
[2916] | 62 | protected override void OnInitialized(EventArgs e) {
|
---|
| 63 | // Set order of tab pages according to z order.
|
---|
| 64 | // NOTE: This is required due to a bug in the VS designer.
|
---|
| 65 | List<Control> tabPages = new List<Control>();
|
---|
| 66 | for (int i = 0; i < tabControl.Controls.Count; i++) {
|
---|
| 67 | tabPages.Add(tabControl.Controls[i]);
|
---|
| 68 | }
|
---|
| 69 | tabControl.Controls.Clear();
|
---|
| 70 | foreach (Control control in tabPages)
|
---|
| 71 | tabControl.Controls.Add(control);
|
---|
| 72 |
|
---|
| 73 | base.OnInitialized(e);
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[2851] | 76 | protected override void DeregisterContentEvents() {
|
---|
| 77 | Content.ExceptionOccurred -= new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred);
|
---|
[3262] | 78 | Content.ExecutionStateChanged -= new EventHandler(Content_ExecutionStateChanged);
|
---|
[2851] | 79 | Content.ExecutionTimeChanged -= new EventHandler(Content_ExecutionTimeChanged);
|
---|
| 80 | Content.Prepared -= new EventHandler(Content_Prepared);
|
---|
[4070] | 81 | Content.Started -= new EventHandler(Content_Started);
|
---|
| 82 | Content.Paused -= new EventHandler(Content_Paused);
|
---|
| 83 | Content.Stopped -= new EventHandler(Content_Stopped);
|
---|
[2851] | 84 | Content.ProblemChanged -= new EventHandler(Content_ProblemChanged);
|
---|
[4102] | 85 | Content.StoreAlgorithmInEachRunChanged -= new EventHandler(Content_StoreAlgorithmInEachRunChanged);
|
---|
[2851] | 86 | base.DeregisterContentEvents();
|
---|
| 87 | }
|
---|
| 88 | protected override void RegisterContentEvents() {
|
---|
| 89 | base.RegisterContentEvents();
|
---|
| 90 | Content.ExceptionOccurred += new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred);
|
---|
[3262] | 91 | Content.ExecutionStateChanged += new EventHandler(Content_ExecutionStateChanged);
|
---|
[2851] | 92 | Content.ExecutionTimeChanged += new EventHandler(Content_ExecutionTimeChanged);
|
---|
| 93 | Content.Prepared += new EventHandler(Content_Prepared);
|
---|
[4070] | 94 | Content.Started += new EventHandler(Content_Started);
|
---|
| 95 | Content.Paused += new EventHandler(Content_Paused);
|
---|
| 96 | Content.Stopped += new EventHandler(Content_Stopped);
|
---|
[2851] | 97 | Content.ProblemChanged += new EventHandler(Content_ProblemChanged);
|
---|
[4102] | 98 | Content.StoreAlgorithmInEachRunChanged += new EventHandler(Content_StoreAlgorithmInEachRunChanged);
|
---|
[2851] | 99 | }
|
---|
| 100 |
|
---|
| 101 | protected override void OnContentChanged() {
|
---|
| 102 | base.OnContentChanged();
|
---|
| 103 | if (Content == null) {
|
---|
| 104 | parameterCollectionView.Content = null;
|
---|
| 105 | problemViewHost.Content = null;
|
---|
[2882] | 106 | resultsView.Content = null;
|
---|
[3275] | 107 | runsView.Content = null;
|
---|
[4102] | 108 | storeAlgorithmInEachRunCheckBox.Checked = true;
|
---|
[2851] | 109 | executionTimeTextBox.Text = "-";
|
---|
| 110 | } else {
|
---|
[4540] | 111 | Locked = ReadOnly = Content.ExecutionState == ExecutionState.Started;
|
---|
[2851] | 112 | parameterCollectionView.Content = Content.Parameters;
|
---|
[2949] | 113 | problemViewHost.ViewType = null;
|
---|
[2851] | 114 | problemViewHost.Content = Content.Problem;
|
---|
[3226] | 115 | resultsView.Content = Content.Results.AsReadOnly();
|
---|
[3275] | 116 | runsView.Content = Content.Runs;
|
---|
[4102] | 117 | storeAlgorithmInEachRunCheckBox.Checked = Content.StoreAlgorithmInEachRun;
|
---|
[3262] | 118 | executionTimeTextBox.Text = Content.ExecutionTime.ToString();
|
---|
[2851] | 119 | }
|
---|
| 120 | }
|
---|
| 121 |
|
---|
[3904] | 122 | protected override void SetEnabledStateOfControls() {
|
---|
| 123 | base.SetEnabledStateOfControls();
|
---|
[3454] | 124 | parameterCollectionView.Enabled = Content != null;
|
---|
| 125 | newProblemButton.Enabled = Content != null && !ReadOnly;
|
---|
| 126 | openProblemButton.Enabled = Content != null && !ReadOnly;
|
---|
| 127 | problemViewHost.Enabled = Content != null;
|
---|
| 128 | resultsView.Enabled = Content != null;
|
---|
| 129 | runsView.Enabled = Content != null;
|
---|
[4102] | 130 | storeAlgorithmInEachRunCheckBox.Enabled = Content != null && !ReadOnly;
|
---|
[3454] | 131 | executionTimeTextBox.Enabled = Content != null;
|
---|
| 132 | SetEnabledStateOfExecutableButtons();
|
---|
[3367] | 133 | }
|
---|
| 134 |
|
---|
[2955] | 135 | protected override void OnClosed(FormClosedEventArgs e) {
|
---|
[5419] | 136 | if ((Content != null) && (Content.ExecutionState == ExecutionState.Started)) {
|
---|
| 137 | //The content must be stopped if no other view showing the content is available
|
---|
| 138 | var optimizers = MainFormManager.MainForm.Views.OfType<IContentView>().Where(v => v != this).Select(v => v.Content).OfType<IOptimizer>();
|
---|
[5420] | 139 | if (!optimizers.Contains(Content)) {
|
---|
| 140 | var nestedOptimizers = optimizers.SelectMany(opt => opt.NestedOptimizers);
|
---|
| 141 | if (!nestedOptimizers.Contains(Content)) Content.Stop();
|
---|
| 142 | }
|
---|
[5419] | 143 | }
|
---|
[2955] | 144 | base.OnClosed(e);
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[2851] | 147 | #region Content Events
|
---|
[2998] | 148 | protected virtual void Content_ProblemChanged(object sender, EventArgs e) {
|
---|
[2851] | 149 | if (InvokeRequired)
|
---|
| 150 | Invoke(new EventHandler(Content_ProblemChanged), sender, e);
|
---|
| 151 | else {
|
---|
[2949] | 152 | problemViewHost.ViewType = null;
|
---|
[2851] | 153 | problemViewHost.Content = Content.Problem;
|
---|
| 154 | }
|
---|
| 155 | }
|
---|
[4070] | 156 | protected virtual void Content_ExecutionStateChanged(object sender, EventArgs e) {
|
---|
| 157 | if (InvokeRequired)
|
---|
| 158 | Invoke(new EventHandler(Content_ExecutionStateChanged), sender, e);
|
---|
| 159 | else
|
---|
| 160 | startButton.Enabled = pauseButton.Enabled = stopButton.Enabled = resetButton.Enabled = false;
|
---|
| 161 | }
|
---|
[4102] | 162 | protected virtual void Content_ExecutionTimeChanged(object sender, EventArgs e) {
|
---|
| 163 | if (InvokeRequired)
|
---|
| 164 | Invoke(new EventHandler(Content_ExecutionTimeChanged), sender, e);
|
---|
| 165 | else
|
---|
[4216] | 166 | executionTimeTextBox.Text = Content == null ? "-" : Content.ExecutionTime.ToString();
|
---|
[4102] | 167 | }
|
---|
| 168 | protected virtual void Content_StoreAlgorithmInEachRunChanged(object sender, EventArgs e) {
|
---|
| 169 | if (InvokeRequired)
|
---|
| 170 | Invoke(new EventHandler(Content_StoreAlgorithmInEachRunChanged), sender, e);
|
---|
| 171 | else
|
---|
| 172 | storeAlgorithmInEachRunCheckBox.Checked = Content.StoreAlgorithmInEachRun;
|
---|
| 173 | }
|
---|
[3262] | 174 | protected virtual void Content_Prepared(object sender, EventArgs e) {
|
---|
[2851] | 175 | if (InvokeRequired)
|
---|
[3262] | 176 | Invoke(new EventHandler(Content_Prepared), sender, e);
|
---|
[4070] | 177 | else {
|
---|
[3262] | 178 | resultsView.Content = Content.Results.AsReadOnly();
|
---|
[4070] | 179 | ReadOnly = Locked = false;
|
---|
| 180 | SetEnabledStateOfExecutableButtons();
|
---|
| 181 | }
|
---|
[3262] | 182 | }
|
---|
[4070] | 183 | protected virtual void Content_Started(object sender, EventArgs e) {
|
---|
[3262] | 184 | if (InvokeRequired)
|
---|
[4070] | 185 | Invoke(new EventHandler(Content_Started), sender, e);
|
---|
[2851] | 186 | else {
|
---|
[4070] | 187 | ReadOnly = Locked = true;
|
---|
[3454] | 188 | SetEnabledStateOfExecutableButtons();
|
---|
[2851] | 189 | }
|
---|
| 190 | }
|
---|
[4070] | 191 | protected virtual void Content_Paused(object sender, EventArgs e) {
|
---|
| 192 | if (InvokeRequired)
|
---|
| 193 | Invoke(new EventHandler(Content_Paused), sender, e);
|
---|
| 194 | else {
|
---|
| 195 | ReadOnly = Locked = false;
|
---|
| 196 | SetEnabledStateOfExecutableButtons();
|
---|
| 197 | }
|
---|
| 198 | }
|
---|
| 199 | protected virtual void Content_Stopped(object sender, EventArgs e) {
|
---|
| 200 | if (InvokeRequired)
|
---|
| 201 | Invoke(new EventHandler(Content_Stopped), sender, e);
|
---|
| 202 | else {
|
---|
| 203 | ReadOnly = Locked = false;
|
---|
| 204 | SetEnabledStateOfExecutableButtons();
|
---|
| 205 | }
|
---|
| 206 | }
|
---|
[2851] | 207 | protected virtual void Content_ExceptionOccurred(object sender, EventArgs<Exception> e) {
|
---|
| 208 | if (InvokeRequired)
|
---|
| 209 | Invoke(new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred), sender, e);
|
---|
| 210 | else
|
---|
[3758] | 211 | ErrorHandling.ShowErrorDialog(this, e.Value);
|
---|
[2851] | 212 | }
|
---|
| 213 | #endregion
|
---|
| 214 |
|
---|
[3299] | 215 | #region Control Events
|
---|
[2998] | 216 | protected virtual void newProblemButton_Click(object sender, EventArgs e) {
|
---|
[2851] | 217 | if (problemTypeSelectorDialog == null) {
|
---|
| 218 | problemTypeSelectorDialog = new TypeSelectorDialog();
|
---|
| 219 | problemTypeSelectorDialog.Caption = "Select Problem";
|
---|
[3407] | 220 | problemTypeSelectorDialog.TypeSelector.Caption = "Available Problems";
|
---|
[3588] | 221 | problemTypeSelectorDialog.TypeSelector.Configure(Content.ProblemType, false, true);
|
---|
[2851] | 222 | }
|
---|
| 223 | if (problemTypeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
[3407] | 224 | try {
|
---|
| 225 | Content.Problem = (IProblem)problemTypeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
|
---|
| 226 | }
|
---|
| 227 | catch (Exception ex) {
|
---|
[3758] | 228 | ErrorHandling.ShowErrorDialog(this, ex);
|
---|
[3407] | 229 | }
|
---|
[2851] | 230 | }
|
---|
| 231 | }
|
---|
[2998] | 232 | protected virtual void openProblemButton_Click(object sender, EventArgs e) {
|
---|
[2851] | 233 | openFileDialog.Title = "Open Problem";
|
---|
| 234 | if (openFileDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
[3454] | 235 | newProblemButton.Enabled = openProblemButton.Enabled = false;
|
---|
[3177] | 236 | problemViewHost.Enabled = false;
|
---|
[2954] | 237 |
|
---|
[3500] | 238 | ContentManager.LoadAsync(openFileDialog.FileName, delegate(IStorableContent content, Exception error) {
|
---|
[2954] | 239 | try {
|
---|
[3500] | 240 | if (error != null) throw error;
|
---|
| 241 | IProblem problem = content as IProblem;
|
---|
[2954] | 242 | if (problem == null)
|
---|
[4068] | 243 | Invoke(new Action(() =>
|
---|
[3548] | 244 | MessageBox.Show(this, "The selected file does not contain a problem.", "Invalid File", MessageBoxButtons.OK, MessageBoxIcon.Error)));
|
---|
[2954] | 245 | else if (!Content.ProblemType.IsInstanceOfType(problem))
|
---|
[3548] | 246 | Invoke(new Action(() =>
|
---|
| 247 | MessageBox.Show(this, "The selected file contains a problem type which is not supported by this algorithm.", "Invalid Problem Type", MessageBoxButtons.OK, MessageBoxIcon.Error)));
|
---|
[2954] | 248 | else
|
---|
| 249 | Content.Problem = problem;
|
---|
[3500] | 250 | }
|
---|
| 251 | catch (Exception ex) {
|
---|
[3758] | 252 | Invoke(new Action(() => ErrorHandling.ShowErrorDialog(this, ex)));
|
---|
[3500] | 253 | }
|
---|
| 254 | finally {
|
---|
| 255 | Invoke(new Action(delegate() {
|
---|
| 256 | problemViewHost.Enabled = true;
|
---|
| 257 | newProblemButton.Enabled = openProblemButton.Enabled = true;
|
---|
| 258 | }));
|
---|
| 259 | }
|
---|
| 260 | });
|
---|
[2851] | 261 | }
|
---|
| 262 | }
|
---|
[4102] | 263 | protected virtual void storeAlgorithmInEachRunCheckBox_CheckedChanged(object sender, EventArgs e) {
|
---|
| 264 | if (Content != null) Content.StoreAlgorithmInEachRun = storeAlgorithmInEachRunCheckBox.Checked;
|
---|
| 265 | }
|
---|
[2851] | 266 | protected virtual void startButton_Click(object sender, EventArgs e) {
|
---|
| 267 | Content.Start();
|
---|
| 268 | }
|
---|
[3262] | 269 | protected virtual void pauseButton_Click(object sender, EventArgs e) {
|
---|
| 270 | Content.Pause();
|
---|
| 271 | }
|
---|
[2851] | 272 | protected virtual void stopButton_Click(object sender, EventArgs e) {
|
---|
| 273 | Content.Stop();
|
---|
| 274 | }
|
---|
| 275 | protected virtual void resetButton_Click(object sender, EventArgs e) {
|
---|
[3716] | 276 | Content.Prepare(false);
|
---|
[2851] | 277 | }
|
---|
[4522] | 278 | protected virtual void problemTabPage_DragEnterOver(object sender, DragEventArgs e) {
|
---|
[3299] | 279 | e.Effect = DragDropEffects.None;
|
---|
[5837] | 280 | if (!ReadOnly && (e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) != null) && Content.ProblemType.IsAssignableFrom(e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat).GetType())) {
|
---|
[3694] | 281 | if ((e.KeyState & 32) == 32) e.Effect = DragDropEffects.Link; // ALT key
|
---|
[3299] | 282 | else if ((e.KeyState & 4) == 4) e.Effect = DragDropEffects.Move; // SHIFT key
|
---|
[5744] | 283 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Copy)) e.Effect = DragDropEffects.Copy;
|
---|
| 284 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Move)) e.Effect = DragDropEffects.Move;
|
---|
| 285 | else if (e.AllowedEffect.HasFlag(DragDropEffects.Link)) e.Effect = DragDropEffects.Link;
|
---|
[3299] | 286 | }
|
---|
| 287 | }
|
---|
[4522] | 288 | protected virtual void problemTabPage_DragDrop(object sender, DragEventArgs e) {
|
---|
[3299] | 289 | if (e.Effect != DragDropEffects.None) {
|
---|
[5837] | 290 | IProblem problem = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat) as IProblem;
|
---|
[5744] | 291 | if (e.Effect.HasFlag(DragDropEffects.Copy)) problem = (IProblem)problem.Clone();
|
---|
[3299] | 292 | Content.Problem = problem;
|
---|
| 293 | }
|
---|
| 294 | }
|
---|
[2851] | 295 | #endregion
|
---|
| 296 |
|
---|
| 297 | #region Helpers
|
---|
[3454] | 298 | private void SetEnabledStateOfExecutableButtons() {
|
---|
| 299 | if (Content == null) {
|
---|
| 300 | startButton.Enabled = pauseButton.Enabled = stopButton.Enabled = resetButton.Enabled = false;
|
---|
| 301 | } else {
|
---|
| 302 | startButton.Enabled = (Content.ExecutionState == ExecutionState.Prepared) || (Content.ExecutionState == ExecutionState.Paused);
|
---|
| 303 | pauseButton.Enabled = Content.ExecutionState == ExecutionState.Started;
|
---|
| 304 | stopButton.Enabled = (Content.ExecutionState == ExecutionState.Started) || (Content.ExecutionState == ExecutionState.Paused);
|
---|
| 305 | resetButton.Enabled = Content.ExecutionState != ExecutionState.Started;
|
---|
| 306 | }
|
---|
[2851] | 307 | }
|
---|
| 308 | #endregion
|
---|
| 309 | }
|
---|
| 310 | }
|
---|