Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/ModifiableDataset.cs @ 13040

Last change on this file since 13040 was 13040, checked in by bburlacu, 9 years ago

#2489: Added cloning of string values and exception when an unknown variable type is encountered.

File size: 8.1 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23
24using System;
25using System.Collections;
26using System.Collections.Generic;
27using System.Linq;
28using HeuristicLab.Common;
29using HeuristicLab.Core;
30using HeuristicLab.Data;
31using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
32
33namespace HeuristicLab.Problems.DataAnalysis {
34  [Item("ModifiableDataset", "Represents a dataset containing data that should be analyzed, which can be modified by adding or replacing variables and values.")]
35  [StorableClass]
36  public sealed class ModifiableDataset : Dataset, IStringConvertibleMatrix {
37    [StorableConstructor]
38    private ModifiableDataset(bool deserializing) : base(deserializing) { }
39
40    private ModifiableDataset(ModifiableDataset original, Cloner cloner) : base(original, cloner) {
41      var variables = variableValues.Keys.ToList();
42      foreach (var v in variables) {
43        var type = GetVariableType(v);
44        if (type == typeof(DateTime)) {
45          variableValues[v] = GetDateTimeValues(v).ToList();
46        } else if (type == typeof(double)) {
47          variableValues[v] = GetDoubleValues(v).ToList();
48        } else if (type == typeof(string)) {
49          variableValues[v] = GetStringValues(v).ToList();
50        } else {
51          throw new ArgumentException("Unsupported type " + type + " for variable " + v);
52        }
53      }
54    }
55    public override IDeepCloneable Clone(Cloner cloner) { return new ModifiableDataset(this, cloner); }
56    public ModifiableDataset() : base() { }
57
58    public ModifiableDataset(Dataset dataset) : base(dataset) { }
59    public ModifiableDataset(IEnumerable<string> variableNames, IEnumerable<IList> variableValues) : base(variableNames, variableValues) { }
60
61    public void ReplaceRow(int row, IEnumerable<object> values) {
62      var list = values.ToList();
63      if (list.Count != variableNames.Count)
64        throw new ArgumentException("The number of values must be equal to the number of variable names.");
65      // check if all the values are of the correct type
66      for (int i = 0; i < list.Count; ++i) {
67        if (list[i].GetType() != GetVariableType(variableNames[i])) {
68          throw new ArgumentException("The type of the provided value does not match the variable type.");
69        }
70      }
71      // replace values
72      for (int i = 0; i < list.Count; ++i) {
73        variableValues[variableNames[i]][row] = list[i];
74      }
75      OnReset();
76    }
77
78    public void AddRow(IEnumerable<object> values) {
79      var list = values.ToList();
80      if (list.Count != variableNames.Count)
81        throw new ArgumentException("The number of values must be equal to the number of variable names.");
82      // check if all the values are of the correct type
83      for (int i = 0; i < list.Count; ++i) {
84        if (list[i].GetType() != GetVariableType(variableNames[i])) {
85          throw new ArgumentException("The type of the provided value does not match the variable type.");
86        }
87      }
88      // add values
89      for (int i = 0; i < list.Count; ++i) {
90        variableValues[variableNames[i]].Add(list[i]);
91      }
92      rows++;
93      OnRowsChanged();
94      OnReset();
95    }
96
97    // adds a new variable to the dataset
98    public void AddVariable<T>(string variableName, IEnumerable<T> values) {
99      if (variableValues.ContainsKey(variableName))
100        throw new ArgumentException("Variable " + variableName + " is already present in the dataset.");
101      int count = values.Count();
102      if (count != rows)
103        throw new ArgumentException("The number of values must exactly match the number of rows in the dataset.");
104      variableValues[variableName] = new List<T>(values);
105      variableNames.Add(variableName);
106      OnColumnsChanged();
107      OnColumnNamesChanged();
108      OnReset();
109    }
110
111    public void RemoveVariable(string variableName) {
112      if (!variableValues.ContainsKey(variableName))
113        throw new ArgumentException("The variable " + variableName + " does not exist in the dataset.");
114      variableValues.Remove(variableName);
115      variableNames.Remove(variableName);
116      OnColumnsChanged();
117      OnColumnNamesChanged();
118      OnReset();
119    }
120
121    // slow, avoid to use this
122    public void RemoveRow(int row) {
123      foreach (var list in variableValues.Values)
124        list.RemoveAt(row);
125      rows--;
126      OnRowsChanged();
127      OnReset();
128    }
129
130    public void SetVariableValue(object value, string variableName, int row) {
131      IList list;
132      variableValues.TryGetValue(variableName, out list);
133      if (list == null)
134        throw new ArgumentException("The variable " + variableName + " does not exist in the dataset.");
135      if (row < 0 || list.Count < row)
136        throw new ArgumentOutOfRangeException("Invalid row value");
137      if (GetVariableType(variableName) != value.GetType())
138        throw new ArgumentException("The type of the provided value does not match the variable type.");
139
140      list[row] = value;
141      OnItemChanged(row, variableNames.IndexOf(variableName));
142    }
143
144    private Type GetVariableType(string variableName) {
145      IList list;
146      variableValues.TryGetValue(variableName, out list);
147      if (list == null)
148        throw new ArgumentException("The variable " + variableName + " does not exist in the dataset.");
149      return list.GetType().GetGenericArguments()[0];
150    }
151
152    bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
153      var variableName = variableNames[columnIndex];
154      // if value represents a double
155      double dv;
156      if (double.TryParse(value, out dv)) {
157        SetVariableValue(dv, variableName, rowIndex);
158        return true;
159      }
160      // if value represents a DateTime object
161      DateTime dt;
162      if (DateTime.TryParse(value, out dt)) {
163        SetVariableValue(dt, variableName, rowIndex);
164        return true;
165      }
166      // if value is simply a string
167      SetVariableValue(value, variableName, rowIndex);
168      return true;
169    }
170
171    bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
172      errorMessage = string.Empty;
173      return true;
174    }
175
176    #region event handlers
177    public override event EventHandler RowsChanged;
178    private void OnRowsChanged() {
179      var handler = RowsChanged;
180      if (handler != null)
181        handler(this, EventArgs.Empty);
182    }
183
184    public override event EventHandler ColumnsChanged;
185    private void OnColumnsChanged() {
186      var handler = ColumnsChanged;
187      if (handler != null)
188        handler(this, EventArgs.Empty);
189    }
190
191    public override event EventHandler ColumnNamesChanged;
192    private void OnColumnNamesChanged() {
193      var handler = ColumnNamesChanged;
194      if (handler != null)
195        handler(this, EventArgs.Empty);
196    }
197
198    public override event EventHandler Reset;
199    private void OnReset() {
200      var handler = Reset;
201      if (handler != null)
202        handler(this, EventArgs.Empty);
203    }
204
205    public override event EventHandler<EventArgs<int, int>> ItemChanged;
206    private void OnItemChanged(int rowIndex, int columnIndex) {
207      var handler = ItemChanged;
208      if (handler != null) {
209        handler(this, new EventArgs<int, int>(rowIndex, columnIndex));
210      }
211    }
212    #endregion
213  }
214}
Note: See TracBrowser for help on using the repository browser.