Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.cs @ 4094

Last change on this file since 4094 was 4070, checked in by swagner, 14 years ago

Fixed bugs when quickly stopping, resetting and restarting algorithms (#1027)

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