Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/DoubleArray.cs @ 3376

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

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

File size: 2.9 KB
RevLine 
[2694]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 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.Text;
[3376]23using HeuristicLab.Common;
[2694]24using HeuristicLab.Core;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Data {
[3048]28  [Item("DoubleArray", "Represents an array of double values.")]
[3017]29  [StorableClass]
[3054]30  public class DoubleArray : ValueTypeArray<double>, IStringConvertibleArray {
[3048]31    public DoubleArray() : base() { }
32    public DoubleArray(int length) : base(length) { }
33    public DoubleArray(double[] elements) : base(elements) { }
[2694]34
35    public override IDeepCloneable Clone(Cloner cloner) {
[3054]36      DoubleArray clone = new DoubleArray(array);
[2694]37      cloner.RegisterClonedObject(this, clone);
[3317]38      clone.ReadOnlyView = ReadOnlyView;
[2694]39      return clone;
40    }
41
[3054]42    protected virtual bool Validate(string value, out string errorMessage) {
[2694]43      double val;
44      bool valid = double.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.GetDoubleFormatPattern());
50        sb.Append("\")");
51        errorMessage = sb.ToString();
52      }
53      return valid;
54    }
[3054]55    protected virtual string GetValue(int index) {
[2973]56      return this[index].ToString();
[2694]57    }
[3054]58    protected virtual bool SetValue(string value, int index) {
[2694]59      double val;
60      if (double.TryParse(value, out val)) {
[2973]61        this[index] = val;
[2694]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    }
[2694]82    #endregion
83  }
84}
Note: See TracBrowser for help on using the repository browser.