Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/ChangeValuesToNullCommand.cs @ 16567

Last change on this file since 16567 was 16567, checked in by gkronber, 5 years ago

#2520: changed StorableConstructors and added StorableType attributes in HeuristicLab.DataImporter addon

File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Drawing;
25using System.Linq;
26using System.Windows.Forms;
27using HeuristicLab.DataImporter.Data.CommandBase;
28using HeuristicLab.DataImporter.Data.Model;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30using HEAL.Attic;
31
32namespace HeuristicLab.DataImporter.Data.Command {
33  [StorableType("6FBA7ABF-98AE-43A7-8E62-EAE4CA4E971F")]
34  public class ChangeValuesToNullCommand : ColumnGroupCommandBase {
35    [Storable]
36    private Dictionary<Point, IComparable> cellValues;
37
38    private ICollection<int> oldSortedColumnIndexes;
39    private IEnumerable<SortOrder> oldSortOrder;
40
41    [StorableConstructor]
42    protected ChangeValuesToNullCommand(StorableConstructorFlag _) : base(_) { }
43
44    public ChangeValuesToNullCommand(DataSet dataSet, string columnGroupName, IEnumerable<Point> cellIndexes)
45      : base(dataSet, columnGroupName) {
46      cellValues = new Dictionary<Point, IComparable>();
47      foreach (Point cellIndex in cellIndexes)
48        cellValues.Add(cellIndex, null);
49    }
50
51    public override void Execute() {
52      base.Execute();
53      foreach (Point cellIndex in cellValues.Keys.ToList()) {
54        cellValues[cellIndex] = ColumnGroup.GetColumn(cellIndex.X).GetValue(cellIndex.Y);
55        ColumnGroup.GetColumn(cellIndex.X).ChangeValue(cellIndex.Y, null);
56      }
57      oldSortedColumnIndexes = new List<int>(ColumnGroup.SortedColumnIndexes);
58      oldSortOrder = ColumnGroup.SortOrdersForColumns.ToList();
59      ColumnGroup.FireChanged();
60      this.ColumnGroup = null;
61    }
62
63    public override void UndoExecute() {
64      base.UndoExecute();
65      foreach (Point cellIndex in cellValues.Keys.ToList()) {
66        ColumnGroup.GetColumn(cellIndex.X).ChangeValueOrNull(cellIndex.Y, cellValues[cellIndex]);
67        cellValues[cellIndex] = null;
68      }
69      ColumnGroup.SortOrdersForColumns = oldSortOrder;
70      ColumnGroup.SortedColumnIndexes = oldSortedColumnIndexes;
71      oldSortedColumnIndexes = null;
72      oldSortOrder = null;
73      ColumnGroup.FireChanged();
74      this.ColumnGroup = null;
75    }
76
77    public override string Description {
78      get { return "Column values deleted"; }
79    }
80  }
81}
Note: See TracBrowser for help on using the repository browser.