Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/IntArray.cs @ 3430

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

Added ReadOnly property to all items of HeuristicLab.Data (#969)

File size: 2.9 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("IntArray", "Represents an array of integer values.")]
29  [StorableClass]
30  public class IntArray : ValueTypeArray<int>, IStringConvertibleArray {
31    public IntArray() : base() { }
32    public IntArray(int length) : base(length) { }
33    public IntArray(int[] elements) : base(elements) { }
34
35    public override IDeepCloneable Clone(Cloner cloner) {
36      IntArray clone = new IntArray(array);
37      cloner.RegisterClonedObject(this, clone);
38      clone.ReadOnlyView = ReadOnlyView;
39      clone.readOnly = readOnly;
40      return clone;
41    }
42
43    protected virtual bool Validate(string value, out string errorMessage) {
44      int val;
45      bool valid = int.TryParse(value, out val);
46      errorMessage = string.Empty;
47      if (!valid) {
48        StringBuilder sb = new StringBuilder();
49        sb.Append("Invalid Value (Valid Value Format: \"");
50        sb.Append(FormatPatterns.GetIntFormatPattern());
51        sb.Append("\")");
52        errorMessage = sb.ToString();
53      }
54      return valid;
55    }
56    protected virtual string GetValue(int index) {
57      return this[index].ToString();
58    }
59    protected virtual bool SetValue(string value, int index) {
60      int val;
61      if (int.TryParse(value, out val)) {
62        this[index] = val;
63        return true;
64      } else {
65        return false;
66      }
67    }
68
69    #region IStringConvertibleArray Members
70    int IStringConvertibleArray.Length {
71      get { return Length; }
72      set { Length = value; }
73    }
74    bool IStringConvertibleArray.Validate(string value, out string errorMessage) {
75      return Validate(value, out errorMessage);
76    }
77    string IStringConvertibleArray.GetValue(int index) {
78      return GetValue(index);
79    }
80    bool IStringConvertibleArray.SetValue(string value, int index) {
81      return SetValue(value, index);
82    }
83    #endregion
84  }
85}
Note: See TracBrowser for help on using the repository browser.