[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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Data {
|
---|
[3048] | 30 | [Item("StringArray", "Represents an array of strings.")]
|
---|
[2727] | 31 | [Creatable("Test")]
|
---|
[3017] | 32 | [StorableClass]
|
---|
[3054] | 33 | public class StringArray : Item, IEnumerable, IStringConvertibleArray {
|
---|
[2694] | 34 | [Storable]
|
---|
[3054] | 35 | protected string[] array;
|
---|
[2694] | 36 |
|
---|
[3054] | 37 | public virtual int Length {
|
---|
[2694] | 38 | get { return array.Length; }
|
---|
[3054] | 39 | protected set {
|
---|
[2694] | 40 | if (value != Length) {
|
---|
| 41 | Array.Resize<string>(ref array, value);
|
---|
| 42 | OnReset();
|
---|
| 43 | }
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
[3054] | 46 | public virtual string this[int index] {
|
---|
[2694] | 47 | get { return array[index]; }
|
---|
| 48 | set {
|
---|
| 49 | if (value != array[index]) {
|
---|
| 50 | if ((value != null) || (array[index] != string.Empty)) {
|
---|
| 51 | array[index] = value != null ? value : string.Empty;
|
---|
| 52 | OnItemChanged(index);
|
---|
| 53 | }
|
---|
| 54 | }
|
---|
| 55 | }
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[3048] | 58 | public StringArray() {
|
---|
[2694] | 59 | array = new string[0];
|
---|
| 60 | }
|
---|
[3048] | 61 | public StringArray(int length) {
|
---|
[2694] | 62 | array = new string[length];
|
---|
| 63 | for (int i = 0; i < array.Length; i++)
|
---|
| 64 | array[i] = string.Empty;
|
---|
| 65 | }
|
---|
[3048] | 66 | public StringArray(string[] elements) {
|
---|
[2694] | 67 | if (elements == null) throw new ArgumentNullException();
|
---|
| 68 | array = new string[elements.Length];
|
---|
| 69 | for (int i = 0; i < array.Length; i++)
|
---|
| 70 | array[i] = elements[i] == null ? string.Empty : elements[i];
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[3054] | 74 | StringArray clone = new StringArray();
|
---|
[2694] | 75 | cloner.RegisterClonedObject(this, clone);
|
---|
[3054] | 76 | clone.array = (string[])array.Clone();
|
---|
[2694] | 77 | return clone;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | public override string ToString() {
|
---|
| 81 | StringBuilder sb = new StringBuilder();
|
---|
| 82 | sb.Append("[");
|
---|
| 83 | if (array.Length > 0) {
|
---|
| 84 | sb.Append(array[0]);
|
---|
| 85 | for (int i = 1; i < array.Length; i++)
|
---|
| 86 | sb.Append(";").Append(array[i]);
|
---|
| 87 | }
|
---|
| 88 | sb.Append("]");
|
---|
| 89 | return sb.ToString();
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[3054] | 92 | public virtual IEnumerator GetEnumerator() {
|
---|
[2694] | 93 | return array.GetEnumerator();
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[3054] | 96 | protected virtual bool Validate(string value, out string errorMessage) {
|
---|
[2694] | 97 | if (value == null) {
|
---|
| 98 | errorMessage = "Invalid Value (string must not be null)";
|
---|
| 99 | return false;
|
---|
| 100 | } else {
|
---|
| 101 | errorMessage = string.Empty;
|
---|
| 102 | return true;
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
[3054] | 105 | protected virtual string GetValue(int index) {
|
---|
[2973] | 106 | return this[index];
|
---|
[2694] | 107 | }
|
---|
[3054] | 108 | protected virtual bool SetValue(string value, int index) {
|
---|
[2694] | 109 | if (value != null) {
|
---|
[2973] | 110 | this[index] = value;
|
---|
[2694] | 111 | return true;
|
---|
| 112 | } else {
|
---|
| 113 | return false;
|
---|
| 114 | }
|
---|
| 115 | }
|
---|
[3054] | 116 |
|
---|
[2973] | 117 | public event EventHandler<EventArgs<int>> ItemChanged;
|
---|
[3054] | 118 | protected virtual void OnItemChanged(int index) {
|
---|
[2694] | 119 | if (ItemChanged != null)
|
---|
[2973] | 120 | ItemChanged(this, new EventArgs<int>(index));
|
---|
[2932] | 121 | OnToStringChanged();
|
---|
[2694] | 122 | }
|
---|
[2973] | 123 | public event EventHandler Reset;
|
---|
[3054] | 124 | protected virtual void OnReset() {
|
---|
[2694] | 125 | if (Reset != null)
|
---|
| 126 | Reset(this, EventArgs.Empty);
|
---|
[2932] | 127 | OnToStringChanged();
|
---|
[2694] | 128 | }
|
---|
[3054] | 129 |
|
---|
| 130 | #region IStringConvertibleArray Members
|
---|
| 131 | int IStringConvertibleArray.Length {
|
---|
| 132 | get { return Length; }
|
---|
| 133 | set { Length = value; }
|
---|
| 134 | }
|
---|
| 135 | bool IStringConvertibleArray.Validate(string value, out string errorMessage) {
|
---|
| 136 | return Validate(value, out errorMessage);
|
---|
| 137 | }
|
---|
| 138 | string IStringConvertibleArray.GetValue(int index) {
|
---|
| 139 | return GetValue(index);
|
---|
| 140 | }
|
---|
| 141 | bool IStringConvertibleArray.SetValue(string value, int index) {
|
---|
| 142 | return SetValue(value, index);
|
---|
| 143 | }
|
---|
[2694] | 144 | #endregion
|
---|
| 145 | }
|
---|
| 146 | }
|
---|