[6134] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9615] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6134] | 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;
|
---|
[6133] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Windows.Forms;
|
---|
| 26 | using HeuristicLab.DataImporter.Data.CommandBase;
|
---|
| 27 | using HeuristicLab.DataImporter.Data.Model;
|
---|
[16566] | 28 | using HEAL.Attic;
|
---|
[6133] | 29 |
|
---|
| 30 | namespace HeuristicLab.DataImporter.Command {
|
---|
[16566] | 31 | [StorableType("A67CC5A7-4C36-418A-BC86-59DA37E38531")]
|
---|
[6133] | 32 | public abstract class ChangeColumnCommandBase : ColumnGroupCommandWithAffectedColumnsBase {
|
---|
| 33 | [Storable]
|
---|
| 34 | protected Type columnType;
|
---|
| 35 |
|
---|
| 36 | protected List<ColumnBase> newColumns;
|
---|
| 37 | protected List<ColumnBase> oldColumns;
|
---|
| 38 | protected List<int> positions;
|
---|
| 39 | protected ICollection<int> oldSortedColumnIndexes;
|
---|
| 40 | protected IEnumerable<SortOrder> oldSortOrder;
|
---|
| 41 |
|
---|
[9614] | 42 | [StorableConstructor]
|
---|
[16567] | 43 | protected ChangeColumnCommandBase(StorableConstructorFlag _) : base(_) {
|
---|
[6133] | 44 | newColumns = new List<ColumnBase>();
|
---|
| 45 | oldColumns = new List<ColumnBase>();
|
---|
| 46 | positions = new List<int>();
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | protected ChangeColumnCommandBase(DataSet dataSet, string columnGroupName, int[] affectedColumns, Type newColumnType) :
|
---|
| 50 | base(dataSet, columnGroupName, affectedColumns) {
|
---|
| 51 | if (!newColumnType.IsSubclassOf(typeof(ColumnBase)))
|
---|
| 52 | throw new CommandExecutionException("Given columntype no subtype of ColumnBase.", this);
|
---|
| 53 |
|
---|
| 54 | this.columnType = newColumnType;
|
---|
| 55 | newColumns = new List<ColumnBase>();
|
---|
| 56 | oldColumns = new List<ColumnBase>();
|
---|
| 57 | positions = new List<int>();
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | public override void Execute() {
|
---|
| 61 | base.Execute();
|
---|
| 62 | ColumnBase newCol;
|
---|
| 63 | ColumnBase oldCol;
|
---|
| 64 | oldSortOrder = ColumnGroup.SortOrdersForColumns.ToList();
|
---|
| 65 | oldSortedColumnIndexes = new List<int>(ColumnGroup.SortedColumnIndexes);
|
---|
| 66 | for (int j = 0; j < AffectedColumns.Length; j++) {
|
---|
| 67 | oldCol = ColumnGroup.Columns.ElementAt(AffectedColumns[j]);
|
---|
| 68 | if (oldCol.GetType() != columnType) {
|
---|
| 69 | positions.Add(AffectedColumns[j]);
|
---|
| 70 | oldColumns.Add(oldCol);
|
---|
| 71 | newCol = (ColumnBase)Activator.CreateInstance(columnType, new object[] { oldCol.Name, oldCol.TotalValuesCount });
|
---|
| 72 | for (int i = 0; i < oldCol.TotalValuesCount; i++)
|
---|
| 73 | newCol.AddValueOrNull(oldCol.GetValue(i));
|
---|
| 74 | newColumns.Add(newCol);
|
---|
| 75 | }
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | for (int i = 0; i < positions.Count; i++)
|
---|
| 79 | ColumnGroup.ReplaceColumn(positions[i], newColumns[i]);
|
---|
| 80 | ColumnGroup.FireChanged();
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | public override void UndoExecute() {
|
---|
| 84 | base.UndoExecute();
|
---|
| 85 | for (int i = 0; i < positions.Count; i++)
|
---|
| 86 | ColumnGroup.ReplaceColumn(positions[i], oldColumns[i]);
|
---|
| 87 | ColumnGroup.SortOrdersForColumns = oldSortOrder;
|
---|
| 88 | ColumnGroup.SortedColumnIndexes = oldSortedColumnIndexes;
|
---|
| 89 | oldSortedColumnIndexes = null;
|
---|
| 90 | oldSortOrder = null;
|
---|
| 91 | oldColumns.Clear();
|
---|
| 92 | newColumns.Clear();
|
---|
| 93 | positions.Clear();
|
---|
| 94 | ColumnGroup.FireChanged();
|
---|
| 95 | }
|
---|
| 96 | }
|
---|
| 97 | }
|
---|