Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Data/3.3/BoolArray.cs

Last change on this file was 3431, checked in by swagner, 14 years ago

Removed property ReadOnlyView (#969)

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22using System.Text;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Data {
28  [Item("BoolArray", "Represents an array of boolean values.")]
29  [StorableClass]
30  public class BoolArray : ValueTypeArray<bool>, IStringConvertibleArray {
31    public BoolArray() : base() { }
32    public BoolArray(int length) : base(length) { }
33    public BoolArray(bool[] elements) : base(elements) { }
34
35    public override IDeepCloneable Clone(Cloner cloner) {
36      BoolArray clone = new BoolArray(array);
37      cloner.RegisterClonedObject(this, clone);
38      clone.readOnly = readOnly;
39      return clone;
40    }
41
42    protected virtual bool Validate(string value, out string errorMessage) {
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;
54    }
55    protected virtual string GetValue(int index) {
56      return this[index].ToString();
57    }
58    protected virtual bool SetValue(string value, int index) {
59      bool val;
60      if (bool.TryParse(value, out val)) {
61        this[index] = val;
62        return true;
63      } else {
64        return false;
65      }
66    }
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    }
82    #endregion
83  }
84}
Note: See TracBrowser for help on using the repository browser.