1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 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.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.DataImporter.Data;
|
---|
27 | using HeuristicLab.DataImporter.Data.CommandBase;
|
---|
28 | using HeuristicLab.DataImporter.Data.Model;
|
---|
29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.DataImporter.Command {
|
---|
32 | [StorableClass]
|
---|
33 | [ViewableCommandInfoAttribute("Delete Rows", 1, ColumnGroupState.AnySelectedColumnContainsNull,
|
---|
34 | "Handle Missing Values", Position = 4)]
|
---|
35 | public class DeleteRowsWithMissingValuesCommand : ColumnGroupCommandWithAffectedColumnsBase {
|
---|
36 | private List<ColumnBase> oldColumns;
|
---|
37 | private ICollection<int> oldSortedColumnIndices;
|
---|
38 |
|
---|
39 | private DeleteRowsWithMissingValuesCommand()
|
---|
40 | : base(null, string.Empty, null) {
|
---|
41 | oldColumns = new List<ColumnBase>();
|
---|
42 | }
|
---|
43 |
|
---|
44 | public DeleteRowsWithMissingValuesCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns)
|
---|
45 | : base(dataSet, columnGroupName, affectedColumns) {
|
---|
46 | oldColumns = new List<ColumnBase>();
|
---|
47 | }
|
---|
48 |
|
---|
49 | public override void Execute() {
|
---|
50 | base.Execute();
|
---|
51 | ColumnGroup tempColumnGroup = new ColumnGroup();
|
---|
52 | Dictionary<int, object> positions = new Dictionary<int, object>();
|
---|
53 | ColumnBase column;
|
---|
54 |
|
---|
55 | for (int col = 0; col < AffectedColumns.Length; col++) {
|
---|
56 | column = ColumnGroup.GetColumn(AffectedColumns[col]);
|
---|
57 | for (int row = 0; row < ColumnGroup.RowCount; row++) {
|
---|
58 | if (column.GetValue(row) == null && !positions.ContainsKey(row))
|
---|
59 | positions[row] = null;
|
---|
60 | }
|
---|
61 | }
|
---|
62 |
|
---|
63 | foreach (ColumnBase x in ColumnGroup.Columns) {
|
---|
64 | oldColumns.Add(x);
|
---|
65 | tempColumnGroup.AddColumn(x.CreateCopyOfColumnWithoutValues());
|
---|
66 | }
|
---|
67 |
|
---|
68 | for (int i = 0; i < ColumnGroup.RowCount; i++)
|
---|
69 | if (!positions.ContainsKey(i))
|
---|
70 | tempColumnGroup.AddRow(ColumnGroup.GetRow(i));
|
---|
71 |
|
---|
72 | oldSortedColumnIndices = new List<int>(ColumnGroup.SortedColumnIndexes);
|
---|
73 | for (int i = 0; i < ColumnGroup.Columns.Count(); i++) {
|
---|
74 | tempColumnGroup.Columns.ElementAt(i).SortOrder = ColumnGroup.GetColumn(i).SortOrder;
|
---|
75 | ColumnGroup.ReplaceColumn(i, tempColumnGroup.Columns.ElementAt(i));
|
---|
76 | }
|
---|
77 |
|
---|
78 | ColumnGroup.SortedColumnIndexes = oldSortedColumnIndices;
|
---|
79 | ColumnGroup.FireChanged();
|
---|
80 | ColumnGroup = null;
|
---|
81 | }
|
---|
82 |
|
---|
83 | public override void UndoExecute() {
|
---|
84 | base.UndoExecute();
|
---|
85 | for (int i = 0; i < ColumnGroup.Columns.Count(); i++)
|
---|
86 | ColumnGroup.ReplaceColumn(i, oldColumns[i]);
|
---|
87 | ColumnGroup.SortedColumnIndexes = oldSortedColumnIndices;
|
---|
88 | oldColumns.Clear();
|
---|
89 | oldSortedColumnIndices = null;
|
---|
90 | ColumnGroup.FireChanged();
|
---|
91 | ColumnGroup = null;
|
---|
92 | }
|
---|
93 |
|
---|
94 | public override string Description {
|
---|
95 | get { return "Delete rows with missing values"; }
|
---|
96 | }
|
---|
97 | }
|
---|
98 | }
|
---|