#region License Information
/* HeuristicLab
* Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Data {
[Item("BoolMatrix", "Represents a matrix of boolean values.")]
[StorableClass]
public class BoolMatrix : ValueTypeMatrix {
[StorableConstructor]
protected BoolMatrix(bool deserializing) : base(deserializing) { }
protected BoolMatrix(BoolMatrix original, Cloner cloner)
: base(original, cloner) {
}
public BoolMatrix() : base() { }
public BoolMatrix(int rows, int columns) : base(rows, columns) { }
public BoolMatrix(int rows, int columns, IEnumerable columnNames) : base(rows, columns, columnNames) { }
public BoolMatrix(int rows, int columns, IEnumerable columnNames, IEnumerable rowNames) : base(rows, columns, columnNames, rowNames) { }
public BoolMatrix(bool[,] elements) : base(elements) { }
public BoolMatrix(bool[,] elements, IEnumerable columnNames) : base(elements, columnNames) { }
public BoolMatrix(bool[,] elements, IEnumerable columnNames, IEnumerable rowNames) : base(elements, columnNames, rowNames) { }
public override IDeepCloneable Clone(Cloner cloner) {
return new BoolMatrix(this, cloner);
}
protected override bool Validate(string value, out string errorMessage) {
bool val;
bool valid = bool.TryParse(value, out val);
errorMessage = string.Empty;
if (!valid) {
StringBuilder sb = new StringBuilder();
sb.Append("Invalid Value (Valid Value Format: \"");
sb.Append(FormatPatterns.GetBoolFormatPattern());
sb.Append("\")");
errorMessage = sb.ToString();
}
return valid;
}
protected override string GetValue(int rowIndex, int columIndex) {
return this[rowIndex, columIndex].ToString();
}
protected override bool SetValue(string value, int rowIndex, int columnIndex) {
bool val;
if (bool.TryParse(value, out val)) {
this[rowIndex, columnIndex] = val;
return true;
} else {
return false;
}
}
protected override bool SetValue(IEnumerable rowColumnValues) {
if (ReadOnly) throw new NotSupportedException("Item cannot be set. StringMatrix is read-only.");
List> newValues = new List>();
bool parsed;
foreach (var curValue in rowColumnValues) {
if (bool.TryParse(curValue.Value, out parsed)) {
newValues.Add(new Tuple(curValue.Position, parsed));
} else {
return false;
}
}
Position pos;
foreach (var curValue in newValues) {
pos = curValue.Item1;
matrix[pos.Row, pos.Column] = curValue.Item2;
}
OnItemsChanged(rowColumnValues.Select(x => x.Position));
return true;
}
}
}