Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Core/3.3/DataSetView.cs @ 2106

Last change on this file since 2106 was 2000, checked in by gkronber, 15 years ago

Refactoring: changed CEDMA backend to use a single data set per RDF results database. #656 (CEDMA server should handle only one data set (problem) at a time)

File size: 4.5 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Drawing;
26using System.Data;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using HeuristicLab.Core;
31using HeuristicLab.CEDMA.DB.Interfaces;
32using HeuristicLab.PluginInfrastructure;
33
34namespace 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      if (dataSet.Activated) {
61        activateButton.Enabled = false;
62        editorGroupBox.Enabled = false;
63        viewComboBox.Enabled = true;
64        resultsButton.Enabled = true;
65        progressBar.Enabled = true;
66      } else {
67        activateButton.Enabled = true;
68        editorGroupBox.Enabled = true;
69        viewComboBox.Enabled = false;
70        resultsButton.Enabled = false;
71        progressBar.Enabled = false;
72      }
73    }
74
75    private void PopulateViewComboBox() {
76      DiscoveryService service = new DiscoveryService();
77      IResultsViewFactory[] factories = service.GetInstances<IResultsViewFactory>();
78      viewComboBox.DataSource = factories;
79      viewComboBox.ValueMember = "Name";
80    }
81
82    private void activateButton_Click(object sender, EventArgs e) {
83      DataSet.Activate();
84      activateButton.Enabled = false;
85    }
86
87    private void resultsButton_Click(object sender, EventArgs e) {
88      if (results == null)
89        ReloadResults();
90      try {
91        IResultsViewFactory factory = (IResultsViewFactory)viewComboBox.SelectedItem;
92        BackgroundWorker worker = new BackgroundWorker();
93        worker.WorkerReportsProgress = true;
94        worker.WorkerSupportsCancellation = true;
95        worker.ProgressChanged += delegate(object progressChangedSender, ProgressChangedEventArgs progressChangedArgs) {
96          progressBar.Value = progressChangedArgs.ProgressPercentage;
97        };
98        worker.DoWork += delegate(object doWorkSender, DoWorkEventArgs doWorkArgs) {
99          int n = results.GetEntries().Count();
100          int i = 0;
101          // preload list
102          foreach (var entry in results.GetEntries()) {
103            i++;
104            if((((i*100) / n) % 10) == 0) worker.ReportProgress((i * 100) / n);
105          }
106          worker.ReportProgress(100);
107        };
108        resultsButton.Enabled = false;
109        worker.RunWorkerAsync();
110        worker.RunWorkerCompleted += delegate(object completedSender, RunWorkerCompletedEventArgs compledArgs) {
111          resultsButton.Enabled = true;
112          progressBar.Value = 0;
113          IControl control = factory.CreateView(results);
114          PluginManager.ControlManager.ShowControl(control);
115        };
116      }
117      catch (Exception ex) {
118        string text = "Couldn't load selected view: " + viewComboBox.SelectedItem + "\n" + ex.Message;
119        MessageBox.Show(text, "Unable to create view", MessageBoxButtons.OK, MessageBoxIcon.Error);
120      }
121    }
122
123    private void ReloadResults() {
124      results = dataSet.GetResults();
125    }
126  }
127}
128
Note: See TracBrowser for help on using the repository browser.