[6134] | 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;
|
---|
[6133] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using System.Drawing;
|
---|
| 27 | using System.Windows.Forms;
|
---|
| 28 | using System.Xml;
|
---|
| 29 | using HeuristicLab.DataImporter.Data;
|
---|
| 30 | using HeuristicLab.DataImporter.Data.CommandBase;
|
---|
| 31 | using HeuristicLab.DataImporter.Data.Model;
|
---|
| 32 | using HeuristicLab.DataImporter.Command.View;
|
---|
| 33 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 34 |
|
---|
| 35 | namespace HeuristicLab.DataImporter.Command {
|
---|
| 36 | [StorableClass]
|
---|
| 37 | [ViewableCommandInfoAttribute("Search and Replace", 1, ColumnGroupState.ColumnSelected, "Change Values",
|
---|
| 38 | Position = 0, OptionsView = typeof(SearchAndReplaceCommandView))]
|
---|
| 39 | public class SearchAndReplaceCommand : SearchWithMatchOperationCommandBase {
|
---|
| 40 | private Dictionary<Point, IComparable> changedCells;
|
---|
| 41 | private List<int> oldSorteColumnIndices;
|
---|
| 42 | private Dictionary<ColumnBase, SortOrder> oldSortOrder;
|
---|
| 43 |
|
---|
| 44 | private SearchAndReplaceCommand()
|
---|
| 45 | : base(null, string.Empty, null) {
|
---|
| 46 | changedCells = new Dictionary<Point, IComparable>();
|
---|
| 47 | oldSorteColumnIndices = new List<int>();
|
---|
| 48 | oldSortOrder = new Dictionary<ColumnBase, SortOrder>();
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | public SearchAndReplaceCommand(DataSet dataSet, string columnGroupName, int[] affectedColumns)
|
---|
| 52 | : base(dataSet, columnGroupName, affectedColumns) {
|
---|
| 53 | changedCells = new Dictionary<Point, IComparable>();
|
---|
| 54 | oldSorteColumnIndices = new List<int>();
|
---|
| 55 | oldSortOrder = new Dictionary<ColumnBase, SortOrder>();
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | public override string Description {
|
---|
| 59 | get { return "Search and Replace"; }
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | [Storable]
|
---|
| 63 | private string replaceValue;
|
---|
| 64 | public string ReplaceValue {
|
---|
| 65 | get { return this.replaceValue; }
|
---|
| 66 | set { this.replaceValue = string.IsNullOrEmpty(value) ? null : value.Trim(); }
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | public override void Execute() {
|
---|
| 70 | base.Execute();
|
---|
| 71 | Point[] affectedCells = this.GetAffectedCells();
|
---|
| 72 | ColumnBase column;
|
---|
| 73 | foreach (Point cell in affectedCells) {
|
---|
| 74 | column = this.ColumnGroup.GetColumn(cell.X);
|
---|
| 75 | changedCells[cell] = column.GetValue(cell.Y);
|
---|
| 76 | column.ChangeValueOrLeaveOldValue(cell.Y, ReplaceValue);
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | foreach (ColumnBase col in this.ColumnGroup.Columns)
|
---|
| 80 | oldSortOrder.Add(col, col.SortOrder);
|
---|
| 81 |
|
---|
| 82 | oldSorteColumnIndices = new List<int>(this.ColumnGroup.SortedColumnIndexes);
|
---|
| 83 | this.ColumnGroup.ResetSorting();
|
---|
| 84 |
|
---|
| 85 | this.ColumnGroup.FireChanged();
|
---|
| 86 | ColumnGroup = null;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | public override void UndoExecute() {
|
---|
| 90 | base.UndoExecute();
|
---|
| 91 | //needed because otherwise unchanged cells with the same replaceValue would also be affected
|
---|
| 92 | ColumnBase column;
|
---|
| 93 | foreach (KeyValuePair<Point, IComparable> cell in changedCells) {
|
---|
| 94 | column = this.ColumnGroup.GetColumn(cell.Key.X);
|
---|
| 95 | column.ChangeValueOrLeaveOldValue(cell.Key.Y, cell.Value);
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | this.ColumnGroup.SortedColumnIndexes = this.oldSorteColumnIndices;
|
---|
| 99 | foreach (KeyValuePair<ColumnBase, SortOrder> pair in oldSortOrder)
|
---|
| 100 | pair.Key.SortOrder = pair.Value;
|
---|
| 101 |
|
---|
| 102 | oldSortOrder.Clear();
|
---|
| 103 | oldSorteColumnIndices.Clear();
|
---|
| 104 | changedCells.Clear();
|
---|
| 105 | this.ColumnGroup.FireChanged();
|
---|
| 106 | ColumnGroup = null;
|
---|
| 107 | }
|
---|
| 108 | }
|
---|
| 109 | }
|
---|