Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/DataAnalysisImportDialog.cs @ 16139

Last change on this file since 16139 was 16139, checked in by ddorfmei, 6 years ago

#2931: Merged [16046-16138/trunk] into branch

File size: 9.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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.Globalization;
25using System.IO;
26using System.Linq;
27using System.Text;
28using System.Windows.Forms;
29using HeuristicLab.Core.Views;
30using HeuristicLab.Problems.DataAnalysis;
31
32namespace HeuristicLab.Problems.Instances.DataAnalysis.Views {
33  public partial class DataAnalysisImportDialog : Form {
34
35    private static readonly List<KeyValuePair<DateTimeFormatInfo, string>> POSSIBLE_DATETIME_FORMATS =
36      new List<KeyValuePair<DateTimeFormatInfo, string>>{
37        new KeyValuePair<DateTimeFormatInfo, string>(DateTimeFormatInfo.GetInstance(new CultureInfo("de-DE")), "dd/mm/yyyy hh:MM:ss" ),
38        new KeyValuePair<DateTimeFormatInfo, string>(DateTimeFormatInfo.InvariantInfo, "mm/dd/yyyy hh:MM:ss" ),
39        new KeyValuePair<DateTimeFormatInfo, string>(DateTimeFormatInfo.InvariantInfo, "yyyy/mm/dd hh:MM:ss" ),
40        new KeyValuePair<DateTimeFormatInfo, string>(DateTimeFormatInfo.InvariantInfo, "mm/yyyy/dd hh:MM:ss" )
41    };
42
43    private static readonly List<KeyValuePair<char, string>> POSSIBLE_SEPARATORS =
44      new List<KeyValuePair<char, string>>{
45        new KeyValuePair<char, string>(';', "; (Semicolon)" ),
46        new KeyValuePair<char, string>(',', ", (Comma)" ),
47        new KeyValuePair<char, string>('\t', "\\t (Tab)"),
48        new KeyValuePair<char, string>((char)0, "all whitespaces (including tabs and spaces)")
49    };
50
51    private static readonly List<KeyValuePair<NumberFormatInfo, string>> POSSIBLE_DECIMAL_SEPARATORS =
52      new List<KeyValuePair<NumberFormatInfo, string>>{
53        new KeyValuePair<NumberFormatInfo, string>(NumberFormatInfo.GetInstance(new CultureInfo("de-DE")), ", (Comma)"),
54        new KeyValuePair<NumberFormatInfo, string>(NumberFormatInfo.InvariantInfo, ". (Period)" )
55    };
56
57    private static readonly List<KeyValuePair<Encoding, string>> POSSIBLE_ENCODINGS =
58      new List<KeyValuePair<Encoding, string>> {
59        new KeyValuePair<Encoding, string>(Encoding.Default, "Default"),
60        new KeyValuePair<Encoding, string>(Encoding.ASCII, "ASCII"),
61        new KeyValuePair<Encoding, string>(Encoding.Unicode, "Unicode"),
62        new KeyValuePair<Encoding, string>(Encoding.UTF8, "UTF8")
63      };
64
65    public string Path {
66      get { return ProblemTextBox.Text; }
67    }
68
69    public DataAnalysisImportType ImportType {
70      get {
71        return new DataAnalysisImportType() {
72          Shuffle = ShuffleDataCheckbox.Checked,
73          TrainingPercentage = TrainingTestTrackBar.Value
74        };
75      }
76    }
77
78    public DataAnalysisCSVFormat CSVFormat {
79      get {
80        return new DataAnalysisCSVFormat() {
81          Separator = (char)SeparatorComboBox.SelectedValue,
82          NumberFormatInfo = (NumberFormatInfo)DecimalSeparatorComboBox.SelectedValue,
83          DateTimeFormatInfo = (DateTimeFormatInfo)DateTimeFormatComboBox.SelectedValue,
84          VariableNamesAvailable = CheckboxColumnNames.Checked,
85          Encoding = (Encoding) EncodingComboBox.SelectedValue
86        };
87      }
88    }
89
90    public DataAnalysisImportDialog() {
91      InitializeComponent();
92
93      SeparatorComboBox.DataSource = POSSIBLE_SEPARATORS;
94      SeparatorComboBox.ValueMember = "Key";
95      SeparatorComboBox.DisplayMember = "Value";
96      DecimalSeparatorComboBox.DataSource = POSSIBLE_DECIMAL_SEPARATORS;
97      DecimalSeparatorComboBox.ValueMember = "Key";
98      DecimalSeparatorComboBox.DisplayMember = "Value";
99      DateTimeFormatComboBox.DataSource = POSSIBLE_DATETIME_FORMATS;
100      DateTimeFormatComboBox.ValueMember = "Key";
101      DateTimeFormatComboBox.DisplayMember = "Value";
102      EncodingComboBox.DataSource = POSSIBLE_ENCODINGS;
103      EncodingComboBox.ValueMember = "Key";
104      EncodingComboBox.DisplayMember = "Value";
105
106
107      // set default values based on the current culture
108      var separator = POSSIBLE_SEPARATORS.Where(n => n.Value.Substring(0, 1) == CultureInfo.CurrentCulture.TextInfo.ListSeparator);
109      if (separator.Any())
110        SeparatorComboBox.SelectedItem = separator.First();
111
112      var decimalSeparator = POSSIBLE_DECIMAL_SEPARATORS.Where(n => n.Value.Substring(0,1) == CultureInfo.CurrentCulture.NumberFormat.CurrencyDecimalSeparator);
113      if (decimalSeparator.Any())
114        DecimalSeparatorComboBox.SelectedItem = decimalSeparator.First();
115    }
116
117    private void TrainingTestTrackBar_ValueChanged(object sender, System.EventArgs e) {
118      TrainingLabel.Text = "Training: " + TrainingTestTrackBar.Value + " %";
119      TestLabel.Text = "Test: " + (TrainingTestTrackBar.Maximum - TrainingTestTrackBar.Value) + " %";
120    }
121
122    protected virtual void OpenFileButtonClick(object sender, System.EventArgs e) {
123      if (openFileDialog.ShowDialog(this) != DialogResult.OK) return;
124
125      SeparatorComboBox.Enabled = true;
126      DecimalSeparatorComboBox.Enabled = true;
127      DateTimeFormatComboBox.Enabled = true;
128      EncodingComboBox.Enabled = true;
129      ProblemTextBox.Text = openFileDialog.FileName;
130      TableFileParser csvParser = new TableFileParser();
131      CheckboxColumnNames.Checked = csvParser.AreColumnNamesInFirstLine(ProblemTextBox.Text,
132                                                                      (NumberFormatInfo)DecimalSeparatorComboBox.SelectedValue,
133                                                                      (DateTimeFormatInfo)DateTimeFormatComboBox.SelectedValue,
134                                                                      (char)SeparatorComboBox.SelectedValue);
135      ParseCSVFile();
136    }
137
138    protected virtual void CSVFormatComboBoxSelectionChangeCommitted(object sender, EventArgs e) {
139      if (string.IsNullOrEmpty(ProblemTextBox.Text)) return;
140
141      ParseCSVFile();
142    }
143
144    protected virtual void CheckboxColumnNames_CheckedChanged(object sender, EventArgs e) {
145      if (string.IsNullOrEmpty(ProblemTextBox.Text)) return;
146
147      ParseCSVFile();
148    }
149
150    protected void ParseCSVFile() {
151      PreviewDatasetMatrix.Content = null;
152      try {
153        TableFileParser csvParser = new TableFileParser();
154        csvParser.Encoding = (Encoding)EncodingComboBox.SelectedValue;
155        csvParser.Parse(ProblemTextBox.Text,
156                        (NumberFormatInfo)DecimalSeparatorComboBox.SelectedValue,
157                        (DateTimeFormatInfo)DateTimeFormatComboBox.SelectedValue,
158                        (char)SeparatorComboBox.SelectedValue,
159                        CheckboxColumnNames.Checked, lineLimit: 500);
160        IEnumerable<string> variableNamesWithType = GetVariableNamesWithType(csvParser);
161        PreviewDatasetMatrix.Content = new Dataset(variableNamesWithType, csvParser.Values);
162
163        CheckAdditionalConstraints(csvParser);
164
165        ErrorTextBox.Text = String.Empty;
166        ErrorTextBox.Visible = false;
167        OkButton.Enabled = true;
168      }
169       catch (Exception ex) {
170        if (ex is IOException || ex is InvalidOperationException || ex is ArgumentException) {
171          OkButton.Enabled = false;
172          ErrorTextBox.Text = ex.Message;
173          ErrorTextBox.Visible = true;
174        } else {
175          throw;
176        }
177      }
178    }
179
180    protected virtual void CheckAdditionalConstraints(TableFileParser csvParser) {
181      if (!csvParser.Values.Any(x => x is List<double>)) {
182        throw new ArgumentException("No double column could be found!");
183      }
184    }
185
186    private IEnumerable<string> GetVariableNamesWithType(TableFileParser csvParser) {
187      IList<string> variableNamesWithType = csvParser.VariableNames.ToList();
188      for (int i = 0; i < csvParser.Values.Count; i++) {
189        if (csvParser.Values[i] is List<double>) {
190          variableNamesWithType[i] += " (Double)";
191        } else if (csvParser.Values[i] is List<string>) {
192          variableNamesWithType[i] += " (String)";
193        } else if (csvParser.Values[i] is List<DateTime>) {
194          variableNamesWithType[i] += " (DateTime)";
195        } else {
196          throw new ArgumentException("The variable values must be of type List<double>, List<string> or List<DateTime>");
197        }
198      }
199      return variableNamesWithType;
200    }
201
202    protected void ControlToolTip_DoubleClick(object sender, EventArgs e) {
203      Control control = sender as Control;
204      if (control != null) {
205        using (TextDialog dialog = new TextDialog(control.Name, (string)control.Tag, true)) {
206          dialog.ShowDialog(this);
207        }
208      }
209    }
210  }
211}
Note: See TracBrowser for help on using the repository browser.