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