[8598] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8598] | 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;
|
---|
| 24 | using System.Collections.Generic;
|
---|
[13414] | 25 | using System.ComponentModel;
|
---|
[8877] | 26 | using System.Globalization;
|
---|
| 27 | using System.IO;
|
---|
[8598] | 28 | using System.Linq;
|
---|
[8877] | 29 | using System.Text;
|
---|
[8598] | 30 | using HeuristicLab.Problems.DataAnalysis;
|
---|
[8877] | 31 | using HeuristicLab.Random;
|
---|
[8598] | 32 |
|
---|
| 33 | namespace HeuristicLab.Problems.Instances.DataAnalysis {
|
---|
[8877] | 34 | public abstract class DataAnalysisInstanceProvider<TData, ImportType> : ProblemInstanceProvider<TData>
|
---|
| 35 | where TData : class, IDataAnalysisProblemData
|
---|
| 36 | where ImportType : DataAnalysisImportType {
|
---|
[8598] | 37 |
|
---|
[13414] | 38 | public event ProgressChangedEventHandler ProgressChanged;
|
---|
[8878] | 39 |
|
---|
[8877] | 40 | public TData ImportData(string path, ImportType type, DataAnalysisCSVFormat csvFormat) {
|
---|
| 41 | TableFileParser csvFileParser = new TableFileParser();
|
---|
[13414] | 42 | long fileSize = new FileInfo(path).Length;
|
---|
| 43 | csvFileParser.ProgressChanged += (sender, e) => {
|
---|
| 44 | OnProgressChanged(e / (double)fileSize);
|
---|
| 45 | };
|
---|
[9608] | 46 | csvFileParser.Parse(path, csvFormat.NumberFormatInfo, csvFormat.DateTimeFormatInfo, csvFormat.Separator, csvFormat.VariableNamesAvailable);
|
---|
[8877] | 47 | return ImportData(path, type, csvFileParser);
|
---|
| 48 | }
|
---|
[8598] | 49 |
|
---|
[13414] | 50 | protected virtual void OnProgressChanged(double d) {
|
---|
| 51 | var handler = ProgressChanged;
|
---|
| 52 | if (handler != null)
|
---|
[13584] | 53 | handler(this, new ProgressChangedEventArgs((int)(100 * d), null));
|
---|
[13414] | 54 | }
|
---|
| 55 |
|
---|
[8878] | 56 | protected virtual TData ImportData(string path, ImportType type, TableFileParser csvFileParser) {
|
---|
| 57 | throw new NotSupportedException();
|
---|
| 58 | }
|
---|
[8877] | 59 |
|
---|
[8598] | 60 | protected List<IList> Shuffle(List<IList> values) {
|
---|
| 61 | int count = values.First().Count;
|
---|
[8877] | 62 | int[] indices = Enumerable.Range(0, count).Shuffle(new FastRandom()).ToArray();
|
---|
[9217] | 63 | List<IList> shuffled = new List<IList>(values.Count);
|
---|
[8598] | 64 | for (int col = 0; col < values.Count; col++) {
|
---|
| 65 |
|
---|
| 66 | if (values[col] is List<double>)
|
---|
[9217] | 67 | shuffled.Add(new List<double>());
|
---|
[8598] | 68 | else if (values[col] is List<DateTime>)
|
---|
[9217] | 69 | shuffled.Add(new List<DateTime>());
|
---|
[8598] | 70 | else if (values[col] is List<string>)
|
---|
[9217] | 71 | shuffled.Add(new List<string>());
|
---|
[8598] | 72 | else
|
---|
| 73 | throw new InvalidOperationException();
|
---|
| 74 |
|
---|
| 75 | for (int i = 0; i < count; i++) {
|
---|
[9217] | 76 | shuffled[col].Add(values[col][indices[i]]);
|
---|
[8598] | 77 | }
|
---|
| 78 | }
|
---|
[9217] | 79 | return shuffled;
|
---|
[8598] | 80 | }
|
---|
| 81 |
|
---|
[8877] | 82 | public override bool CanExportData {
|
---|
| 83 | get { return true; }
|
---|
| 84 | }
|
---|
| 85 | public override void ExportData(TData instance, string path) {
|
---|
| 86 | var strBuilder = new StringBuilder();
|
---|
| 87 | var colSep = CultureInfo.CurrentCulture.TextInfo.ListSeparator;
|
---|
| 88 | foreach (var variable in instance.Dataset.VariableNames) {
|
---|
| 89 | strBuilder.Append(variable.Replace(colSep, String.Empty) + colSep);
|
---|
[8598] | 90 | }
|
---|
[8877] | 91 | strBuilder.Remove(strBuilder.Length - colSep.Length, colSep.Length);
|
---|
| 92 | strBuilder.AppendLine();
|
---|
| 93 |
|
---|
| 94 | var dataset = instance.Dataset;
|
---|
| 95 |
|
---|
| 96 | for (int i = 0; i < dataset.Rows; i++) {
|
---|
| 97 | for (int j = 0; j < dataset.Columns; j++) {
|
---|
| 98 | if (j > 0) strBuilder.Append(colSep);
|
---|
| 99 | strBuilder.Append(dataset.GetValue(i, j));
|
---|
| 100 | }
|
---|
| 101 | strBuilder.AppendLine();
|
---|
| 102 | }
|
---|
[13584] | 103 | using (var fileStream = new FileStream(path, FileMode.Create)) {
|
---|
[13901] | 104 | Encoding encoding = Encoding.GetEncoding(Encoding.Default.CodePage,
|
---|
| 105 | new EncoderReplacementFallback("*"),
|
---|
| 106 | new DecoderReplacementFallback("*"));
|
---|
| 107 | using (var writer = new StreamWriter(fileStream, encoding)) {
|
---|
[13584] | 108 | writer.Write(strBuilder);
|
---|
| 109 | }
|
---|
[8877] | 110 | }
|
---|
[8598] | 111 | }
|
---|
| 112 | }
|
---|
| 113 | }
|
---|