[2676] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2676] | 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.Text;
|
---|
[3376] | 23 | using HeuristicLab.Common;
|
---|
[2676] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.Data {
|
---|
[3048] | 28 | [Item("BoolArray", "Represents an array of boolean values.")]
|
---|
[3017] | 29 | [StorableClass]
|
---|
[3054] | 30 | public class BoolArray : ValueTypeArray<bool>, IStringConvertibleArray {
|
---|
[3048] | 31 | public BoolArray() : base() { }
|
---|
| 32 | public BoolArray(int length) : base(length) { }
|
---|
| 33 | public BoolArray(bool[] elements) : base(elements) { }
|
---|
[2676] | 34 |
|
---|
| 35 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[3054] | 36 | BoolArray clone = new BoolArray(array);
|
---|
[2676] | 37 | cloner.RegisterClonedObject(this, clone);
|
---|
[3430] | 38 | clone.readOnly = readOnly;
|
---|
[2676] | 39 | return clone;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[3054] | 42 | protected virtual bool Validate(string value, out string errorMessage) {
|
---|
[2694] | 43 | bool val;
|
---|
| 44 | bool valid = bool.TryParse(value, out val);
|
---|
| 45 | errorMessage = string.Empty;
|
---|
| 46 | if (!valid) {
|
---|
| 47 | StringBuilder sb = new StringBuilder();
|
---|
| 48 | sb.Append("Invalid Value (Valid Value Format: \"");
|
---|
| 49 | sb.Append(FormatPatterns.GetBoolFormatPattern());
|
---|
| 50 | sb.Append("\")");
|
---|
| 51 | errorMessage = sb.ToString();
|
---|
| 52 | }
|
---|
| 53 | return valid;
|
---|
[2676] | 54 | }
|
---|
[3054] | 55 | protected virtual string GetValue(int index) {
|
---|
[2973] | 56 | return this[index].ToString();
|
---|
[2677] | 57 | }
|
---|
[3054] | 58 | protected virtual bool SetValue(string value, int index) {
|
---|
[2694] | 59 | bool val;
|
---|
| 60 | if (bool.TryParse(value, out val)) {
|
---|
[2973] | 61 | this[index] = val;
|
---|
[2676] | 62 | return true;
|
---|
| 63 | } else {
|
---|
| 64 | return false;
|
---|
| 65 | }
|
---|
| 66 | }
|
---|
[3054] | 67 |
|
---|
| 68 | #region IStringConvertibleArray Members
|
---|
| 69 | int IStringConvertibleArray.Length {
|
---|
| 70 | get { return Length; }
|
---|
| 71 | set { Length = value; }
|
---|
| 72 | }
|
---|
| 73 | bool IStringConvertibleArray.Validate(string value, out string errorMessage) {
|
---|
| 74 | return Validate(value, out errorMessage);
|
---|
| 75 | }
|
---|
| 76 | string IStringConvertibleArray.GetValue(int index) {
|
---|
| 77 | return GetValue(index);
|
---|
| 78 | }
|
---|
| 79 | bool IStringConvertibleArray.SetValue(string value, int index) {
|
---|
| 80 | return SetValue(value, index);
|
---|
| 81 | }
|
---|
[2676] | 82 | #endregion
|
---|
| 83 | }
|
---|
| 84 | }
|
---|