Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/StringMatrix.cs @ 17946

Last change on this file since 17946 was 17253, checked in by abeham, 5 years ago

#2521: worked on refactoring PTSP

File size: 12.1 KB
RevLine 
[2694]1#region License Information
2/* HeuristicLab
[17226]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2694]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;
[3308]24using System.Collections.Generic;
[3306]25using System.Drawing;
[3308]26using System.Linq;
[2694]27using System.Text;
[17253]28using HEAL.Attic;
[2694]29using HeuristicLab.Common;
30using HeuristicLab.Core;
31
32namespace HeuristicLab.Data {
[3048]33  [Item("StringMatrix", "Represents a matrix of strings.")]
[16723]34  [StorableType("0BFE5727-D2CF-418C-94BE-A8A0BBA195D8")]
[3430]35  public class StringMatrix : Item, IEnumerable<string>, IStringConvertibleMatrix {
[9433]36    private const int maximumToStringLength = 100;
37
[7201]38    public static new Image StaticItemImage {
[5287]39      get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }
[3306]40    }
41
[2694]42    [Storable]
[3054]43    protected string[,] matrix;
[2694]44
[3308]45    [Storable]
[3430]46    protected List<string> columnNames;
47    public virtual IEnumerable<string> ColumnNames {
[3308]48      get { return this.columnNames; }
49      set {
[3430]50        if (ReadOnly) throw new NotSupportedException("ColumnNames cannot be set. StringMatrix is read-only.");
[3308]51        if (value == null || value.Count() == 0)
52          columnNames = new List<string>();
53        else if (value.Count() != Columns)
[3310]54          throw new ArgumentException("A column name must be specified for each column .");
[3308]55        else
56          columnNames = new List<string>(value);
[5150]57        OnColumnNamesChanged();
[3308]58      }
59    }
[3310]60    [Storable]
[3430]61    protected List<string> rowNames;
62    public virtual IEnumerable<string> RowNames {
[3310]63      get { return this.rowNames; }
64      set {
[3430]65        if (ReadOnly) throw new NotSupportedException("RowNames cannot be set. StringMatrix is read-only.");
[3310]66        if (value == null || value.Count() == 0)
67          rowNames = new List<string>();
68        else if (value.Count() != Rows)
69          throw new ArgumentException("A row name must be specified for each row.");
70        else
71          rowNames = new List<string>(value);
[5150]72        OnRowNamesChanged();
[3310]73      }
74    }
[3320]75    [Storable]
[3430]76    protected bool sortableView;
77    public virtual bool SortableView {
[3320]78      get { return sortableView; }
79      set {
[3430]80        if (ReadOnly) throw new NotSupportedException("SortableView cannot be set. StringMatrix is read-only.");
[3320]81        if (value != sortableView) {
82          sortableView = value;
83          OnSortableViewChanged();
84        }
85      }
86    }
[3308]87
[3054]88    public virtual int Rows {
89      get { return matrix.GetLength(0); }
90      protected set {
[3430]91        if (ReadOnly) throw new NotSupportedException("Rows cannot be set. StringMatrix is read-only.");
[2694]92        if (value != Rows) {
[3054]93          string[,] newMatrix = new string[value, Columns];
94          Array.Copy(matrix, newMatrix, Math.Min(value * Columns, matrix.Length));
95          matrix = newMatrix;
[3320]96          while (rowNames.Count > value)
97            rowNames.RemoveAt(rowNames.Count - 1);
98          while (rowNames.Count < value)
99            rowNames.Add("Row " + rowNames.Count);
[5150]100          OnRowsChanged();
101          OnRowNamesChanged();
[2694]102          OnReset();
103        }
104      }
105    }
[3054]106    public virtual int Columns {
107      get { return matrix.GetLength(1); }
108      protected set {
[3430]109        if (ReadOnly) throw new NotSupportedException("Columns cannot be set. StringMatrix is read-only.");
[2694]110        if (value != Columns) {
[3054]111          string[,] newMatrix = new string[Rows, value];
[2694]112          for (int i = 0; i < Rows; i++)
[3054]113            Array.Copy(matrix, i * Columns, newMatrix, i * value, Math.Min(value, Columns));
114          matrix = newMatrix;
[3320]115          while (columnNames.Count > value)
116            columnNames.RemoveAt(columnNames.Count - 1);
117          while (columnNames.Count < value)
118            columnNames.Add("Column " + columnNames.Count);
[5150]119          OnColumnsChanged();
120          OnColumnNamesChanged();
[2694]121          OnReset();
122        }
123      }
124    }
[3054]125    public virtual string this[int rowIndex, int columnIndex] {
126      get { return matrix[rowIndex, columnIndex]; }
[2694]127      set {
[3430]128        if (ReadOnly) throw new NotSupportedException("Item cannot be set. StringMatrix is read-only.");
[3054]129        if (value != matrix[rowIndex, columnIndex]) {
130          if ((value != null) || (matrix[rowIndex, columnIndex] != string.Empty)) {
131            matrix[rowIndex, columnIndex] = value != null ? value : string.Empty;
[2694]132            OnItemChanged(rowIndex, columnIndex);
133          }
134        }
135      }
136    }
137
[3430]138    [Storable]
139    protected bool readOnly;
140    public virtual bool ReadOnly {
141      get { return readOnly; }
142    }
143
[4722]144    [StorableConstructor]
[16723]145    protected StringMatrix(StorableConstructorFlag _) : base(_) { }
[4722]146    protected StringMatrix(StringMatrix original, Cloner cloner)
147      : base(original, cloner) {
148      this.matrix = (string[,])original.matrix.Clone();
149      this.columnNames = new List<string>(original.columnNames);
150      this.rowNames = new List<string>(original.rowNames);
151      this.sortableView = original.sortableView;
152      this.readOnly = original.readOnly;
153    }
[3048]154    public StringMatrix() {
[3054]155      matrix = new string[0, 0];
[3308]156      columnNames = new List<string>();
[3310]157      rowNames = new List<string>();
[3320]158      sortableView = false;
[3430]159      readOnly = false;
[2694]160    }
[3048]161    public StringMatrix(int rows, int columns) {
[3054]162      matrix = new string[rows, columns];
163      for (int i = 0; i < matrix.GetLength(0); i++) {
164        for (int j = 0; j < matrix.GetLength(1); j++)
165          matrix[i, j] = string.Empty;
[2694]166      }
[3308]167      columnNames = new List<string>();
[3310]168      rowNames = new List<string>();
[3320]169      sortableView = false;
[3430]170      readOnly = false;
[2694]171    }
[3308]172    protected StringMatrix(int rows, int columns, IEnumerable<string> columnNames)
173      : this(rows, columns) {
174      ColumnNames = columnNames;
175    }
[3310]176    protected StringMatrix(int rows, int columns, IEnumerable<string> columnNames, IEnumerable<string> rowNames)
[5150]177      : this(rows, columns, columnNames) {
[3310]178      RowNames = rowNames;
179    }
[17253]180    public StringMatrix(string[,] elements, bool @readonly = false) {
[2694]181      if (elements == null) throw new ArgumentNullException();
[3054]182      matrix = new string[elements.GetLength(0), elements.GetLength(1)];
183      for (int i = 0; i < matrix.GetLength(0); i++) {
184        for (int j = 0; j < matrix.GetLength(1); j++)
185          matrix[i, j] = elements[i, j] == null ? string.Empty : elements[i, j];
[2694]186      }
[3308]187      columnNames = new List<string>();
[3310]188      rowNames = new List<string>();
[3320]189      sortableView = false;
[17253]190      readOnly = @readonly;
[2694]191    }
[17253]192    protected StringMatrix(string[,] elements, IEnumerable<string> columnNames, bool @readonly = false)
193      : this(elements, @readonly) {
[3308]194      ColumnNames = columnNames;
195    }
[17253]196    protected StringMatrix(string[,] elements, IEnumerable<string> columnNames, IEnumerable<string> rowNames, bool @readonly = false)
197      : this(elements, columnNames, @readonly ) {
[3310]198      RowNames = rowNames;
199    }
[2694]200
201    public override IDeepCloneable Clone(Cloner cloner) {
[4722]202      return new StringMatrix(this, cloner);
[2694]203    }
204
[3430]205    public virtual StringMatrix AsReadOnly() {
[17253]206      if (ReadOnly) return this;
207      var clone = (StringMatrix)this.Clone();
208      clone.readOnly = true;
209      return clone;
[3430]210    }
211
[16723]212    public string[,] CloneAsMatrix() {
213      return (string[,])matrix.Clone();
214    }
215
216    public virtual IEnumerable<string> GetRow(int row) {
217      for (var col = 0; col < Columns; col++) {
218        yield return matrix[row, col];
219      }
220    }
221
222    public virtual IEnumerable<string> GetColumn(int col) {
223      for (var row = 0; row < Rows; row++) {
224        yield return matrix[row, col];
225      }
226    }
227
[2694]228    public override string ToString() {
[9433]229      if (matrix.Length == 0) return "[]";
230
[2694]231      StringBuilder sb = new StringBuilder();
232      sb.Append("[");
[9433]233      for (int i = 0; i < Rows; i++) {
234        sb.Append("[").Append(matrix[i, 0]);
235        for (int j = 1; j < Columns; j++)
236          sb.Append(";").Append(matrix[i, j]);
237        sb.Append("]");
238
239        if (sb.Length > maximumToStringLength) {
240          sb.Append("[...]");
241          break;
[2694]242        }
243      }
244      sb.Append("]");
[9433]245
[2694]246      return sb.ToString();
247    }
248
[3430]249    public virtual IEnumerator<string> GetEnumerator() {
250      return matrix.Cast<string>().GetEnumerator();
[2694]251    }
252
[3430]253    IEnumerator IEnumerable.GetEnumerator() {
254      return GetEnumerator();
255    }
256
[3054]257    protected virtual bool Validate(string value, out string errorMessage) {
[2694]258      if (value == null) {
259        errorMessage = "Invalid Value (string must not be null)";
260        return false;
261      } else {
262        errorMessage = string.Empty;
263        return true;
264      }
265    }
[3054]266    protected virtual string GetValue(int rowIndex, int columIndex) {
[2694]267      return this[rowIndex, columIndex];
268    }
[3054]269    protected virtual bool SetValue(string value, int rowIndex, int columnIndex) {
[2694]270      if (value != null) {
271        this[rowIndex, columnIndex] = value;
272        return true;
273      } else {
274        return false;
275      }
276    }
[3054]277
[5150]278    #region events
279    public event EventHandler ColumnsChanged;
280    protected virtual void OnColumnsChanged() {
281      EventHandler handler = ColumnsChanged;
282      if (handler != null)
283        handler(this, EventArgs.Empty);
284    }
285    public event EventHandler RowsChanged;
286    protected virtual void OnRowsChanged() {
287      EventHandler handler = RowsChanged;
288      if (handler != null)
289        handler(this, EventArgs.Empty);
290    }
[3320]291    public event EventHandler ColumnNamesChanged;
292    protected virtual void OnColumnNamesChanged() {
293      EventHandler handler = ColumnNamesChanged;
294      if (handler != null)
295        handler(this, EventArgs.Empty);
296    }
297    public event EventHandler RowNamesChanged;
298    protected virtual void OnRowNamesChanged() {
299      EventHandler handler = RowNamesChanged;
300      if (handler != null)
301        handler(this, EventArgs.Empty);
302    }
303    public event EventHandler SortableViewChanged;
304    protected virtual void OnSortableViewChanged() {
305      EventHandler handler = SortableViewChanged;
306      if (handler != null)
307        handler(this, EventArgs.Empty);
308    }
[2973]309    public event EventHandler<EventArgs<int, int>> ItemChanged;
[3054]310    protected virtual void OnItemChanged(int rowIndex, int columnIndex) {
[2694]311      if (ItemChanged != null)
312        ItemChanged(this, new EventArgs<int, int>(rowIndex, columnIndex));
[9433]313
314      //approximation to avoid firing of unnecessary ToStringChangedEvents
315      //columnIndex is not used, because always full rows are returned in the ToString method
316      if (rowIndex * Columns < maximumToStringLength)
317        OnToStringChanged();
[2694]318    }
[2973]319    public event EventHandler Reset;
[3054]320    protected virtual void OnReset() {
[2694]321      if (Reset != null)
322        Reset(this, EventArgs.Empty);
[2932]323      OnToStringChanged();
[2694]324    }
[5150]325    #endregion
[3054]326
327    #region IStringConvertibleMatrix Members
328    int IStringConvertibleMatrix.Rows {
329      get { return Rows; }
330      set { Rows = value; }
331    }
332    int IStringConvertibleMatrix.Columns {
333      get { return Columns; }
334      set { Columns = value; }
335    }
336    bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
337      return Validate(value, out errorMessage);
338    }
339    string IStringConvertibleMatrix.GetValue(int rowIndex, int columIndex) {
340      return GetValue(rowIndex, columIndex);
341    }
342    bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
343      return SetValue(value, rowIndex, columnIndex);
344    }
[2694]345    #endregion
346  }
347}
Note: See TracBrowser for help on using the repository browser.