1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Drawing;
|
---|
26 | using System.Data;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using System.Windows.Forms;
|
---|
30 | using HeuristicLab.Core;
|
---|
31 | using HeuristicLab.CEDMA.DB.Interfaces;
|
---|
32 | using HeuristicLab.PluginInfrastructure;
|
---|
33 |
|
---|
34 | namespace HeuristicLab.CEDMA.Core {
|
---|
35 | public partial class DataSetView : ViewBase {
|
---|
36 | private DataSet dataSet;
|
---|
37 | public DataSet DataSet {
|
---|
38 | get { return dataSet; }
|
---|
39 | set { dataSet = value; }
|
---|
40 | }
|
---|
41 | private Results results;
|
---|
42 | public DataSetView() {
|
---|
43 | InitializeComponent();
|
---|
44 | Caption = "Data Set";
|
---|
45 | }
|
---|
46 | public DataSetView(DataSet dataSet)
|
---|
47 | : this() {
|
---|
48 | DataSet = dataSet;
|
---|
49 | UpdateControls();
|
---|
50 | }
|
---|
51 |
|
---|
52 | protected override void UpdateControls() {
|
---|
53 | base.UpdateControls();
|
---|
54 | editorGroupBox.Controls.Clear();
|
---|
55 | Control problemControl = (Control)DataSet.Problem.CreateView();
|
---|
56 | problemControl.Dock = DockStyle.Fill;
|
---|
57 | editorGroupBox.Controls.Add(problemControl);
|
---|
58 | PopulateViewComboBox();
|
---|
59 | resultsButton.Enabled = viewComboBox.SelectedItem != null;
|
---|
60 | }
|
---|
61 |
|
---|
62 | private void PopulateViewComboBox() {
|
---|
63 | DiscoveryService service = new DiscoveryService();
|
---|
64 | IResultsViewFactory[] factories = service.GetInstances<IResultsViewFactory>();
|
---|
65 | viewComboBox.DataSource = factories;
|
---|
66 | viewComboBox.ValueMember = "Name";
|
---|
67 | }
|
---|
68 |
|
---|
69 | private void activateButton_Click(object sender, EventArgs e) {
|
---|
70 | DataSet.Activate();
|
---|
71 | activateButton.Enabled = false;
|
---|
72 | }
|
---|
73 |
|
---|
74 | private void resultsButton_Click(object sender, EventArgs e) {
|
---|
75 | if (results == null)
|
---|
76 | ReloadResults();
|
---|
77 | try {
|
---|
78 | IResultsViewFactory factory = (IResultsViewFactory)viewComboBox.SelectedItem;
|
---|
79 | BackgroundWorker worker = new BackgroundWorker();
|
---|
80 | worker.WorkerReportsProgress = true;
|
---|
81 | worker.WorkerSupportsCancellation = true;
|
---|
82 | worker.ProgressChanged += delegate(object progressChangedSender, ProgressChangedEventArgs progressChangedArgs) {
|
---|
83 | progressBar.Value = progressChangedArgs.ProgressPercentage;
|
---|
84 | };
|
---|
85 | worker.DoWork += delegate(object doWorkSender, DoWorkEventArgs doWorkArgs) {
|
---|
86 | int n = results.GetEntries().Count();
|
---|
87 | int i = 0;
|
---|
88 | // preload list
|
---|
89 | foreach (var entry in results.GetEntries()) {
|
---|
90 | i++;
|
---|
91 | if((((i*100) / n) % 10) == 0) worker.ReportProgress((i * 100) / n);
|
---|
92 | }
|
---|
93 | worker.ReportProgress(100);
|
---|
94 | };
|
---|
95 | resultsButton.Enabled = false;
|
---|
96 | worker.RunWorkerAsync();
|
---|
97 | worker.RunWorkerCompleted += delegate(object completedSender, RunWorkerCompletedEventArgs compledArgs) {
|
---|
98 | resultsButton.Enabled = true;
|
---|
99 | progressBar.Value = 0;
|
---|
100 | IControl control = factory.CreateView(results);
|
---|
101 | PluginManager.ControlManager.ShowControl(control);
|
---|
102 | };
|
---|
103 | }
|
---|
104 | catch (Exception ex) {
|
---|
105 | string text = "Couldn't load selected view: " + viewComboBox.SelectedItem + "\n" + ex.Message;
|
---|
106 | MessageBox.Show(text, "Unable to create view", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
107 | }
|
---|
108 | }
|
---|
109 |
|
---|
110 | private void ReloadResults() {
|
---|
111 | results = dataSet.GetResults();
|
---|
112 | }
|
---|
113 | }
|
---|
114 | }
|
---|
115 |
|
---|