Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Data/3.3/StringArray.cs @ 17709

Last change on this file since 17709 was 13841, checked in by jlodewyc, 9 years ago

#2582 More parameter datatypes, splitting fileopening service, approving users, reopen last file, change name tasks and repetitions

File size: 7.4 KB
RevLine 
[2694]1#region License Information
2/* HeuristicLab
[12012]3 * Copyright (C) 2002-2015 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;
23using System.Collections;
[4068]24using System.Collections.Generic;
[3306]25using System.Drawing;
[4068]26using System.Linq;
[2694]27using System.Text;
28using HeuristicLab.Common;
29using HeuristicLab.Core;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Data {
[3048]33  [Item("StringArray", "Represents an array of strings.")]
[3017]34  [StorableClass]
[3254]35  public class StringArray : Item, IEnumerable<string>, IStringConvertibleArray {
[9433]36    private const int maximumToStringLength = 100;
37
[13656]38    public static new Image StaticItemImage
39    {
40      get { return new Bitmap(25, 25); }
[3306]41    }
42
[2694]43    [Storable]
[3054]44    protected string[] array;
[2694]45
[9657]46    [Storable]
47    protected List<string> elementNames;
[13656]48    public virtual IEnumerable<string> ElementNames
49    {
[9657]50      get { return this.elementNames; }
[13656]51      set
52      {
[9657]53        if (ReadOnly) throw new NotSupportedException("ElementNames cannot be set. ValueTypeArray is read-only.");
54        if (value == null || !value.Any())
55          elementNames = new List<string>();
[9695]56        else if (value.Count() > Length)
57          throw new ArgumentException("The number of element names must not exceed the array length.");
[9657]58        else
59          elementNames = new List<string>(value);
60        OnElementNamesChanged();
61      }
62    }
63
[13656]64    public virtual int Length
65    {
[2694]66      get { return array.Length; }
[13656]67      protected set
68      {
[3430]69        if (ReadOnly) throw new NotSupportedException("Length cannot be set. StringArray is read-only.");
[2694]70        if (value != Length) {
71          Array.Resize<string>(ref array, value);
[9657]72          while (elementNames.Count > value)
73            elementNames.RemoveAt(elementNames.Count - 1);
74          OnElementNamesChanged();
[2694]75          OnReset();
76        }
77      }
78    }
[13841]79        public static StringArray Parse(string val)
80        {
81            try
82            {
83                string[] arr = Array.ConvertAll(val.Trim().Split(';'), p => p.Trim());
84                return new StringArray(arr);
85            }
86            catch (FormatException e)
87            {
88                return null;
89            }
90        }
91        public virtual string this[int index]
[13656]92    {
[2694]93      get { return array[index]; }
[13656]94      set
95      {
[3430]96        if (ReadOnly) throw new NotSupportedException("Item cannot be set. StringArray is read-only.");
[2694]97        if (value != array[index]) {
98          if ((value != null) || (array[index] != string.Empty)) {
99            array[index] = value != null ? value : string.Empty;
100            OnItemChanged(index);
101          }
102        }
103      }
104    }
105
[3430]106    [Storable]
107    protected bool readOnly;
[13656]108    public virtual bool ReadOnly
109    {
[3430]110      get { return readOnly; }
111    }
112
[9657]113    [StorableHook(HookType.AfterDeserialization)]
114    private void AfterDeserialization() {
115      if (elementNames == null) { elementNames = new List<string>(); }
116    }
117
[4722]118    [StorableConstructor]
119    protected StringArray(bool deserializing) : base(deserializing) { }
120    protected StringArray(StringArray original, Cloner cloner)
121      : base(original, cloner) {
122      this.array = (string[])original.array.Clone();
123      this.readOnly = original.readOnly;
[9657]124      this.elementNames = new List<string>(original.elementNames);
[4722]125    }
[3048]126    public StringArray() {
[2694]127      array = new string[0];
[3430]128      readOnly = false;
[9657]129      elementNames = new List<string>();
[2694]130    }
[3048]131    public StringArray(int length) {
[2694]132      array = new string[length];
133      for (int i = 0; i < array.Length; i++)
134        array[i] = string.Empty;
[3430]135      readOnly = false;
[9657]136      elementNames = new List<string>();
[2694]137    }
[3048]138    public StringArray(string[] elements) {
[2694]139      if (elements == null) throw new ArgumentNullException();
140      array = new string[elements.Length];
141      for (int i = 0; i < array.Length; i++)
142        array[i] = elements[i] == null ? string.Empty : elements[i];
[3430]143      readOnly = false;
[9657]144      elementNames = new List<string>();
[2694]145    }
146
147    public override IDeepCloneable Clone(Cloner cloner) {
[4722]148      return new StringArray(this, cloner);
[2694]149    }
150
[3430]151    public virtual StringArray AsReadOnly() {
152      StringArray readOnlyStringArray = (StringArray)this.Clone();
153      readOnlyStringArray.readOnly = true;
154      return readOnlyStringArray;
155    }
156
[2694]157    public override string ToString() {
[9433]158      if (array.Length == 0) return "[]";
159
[2694]160      StringBuilder sb = new StringBuilder();
161      sb.Append("[");
[9433]162      sb.Append(array[0]);
163      for (int i = 1; i < array.Length; i++) {
164        sb.Append(";").Append(array[i]);
165        if (sb.Length > maximumToStringLength) {
166          sb.Append("...");
167          break;
168        }
[2694]169      }
170      sb.Append("]");
171      return sb.ToString();
172    }
173
[3430]174    public virtual IEnumerator<string> GetEnumerator() {
[3263]175      return array.Cast<string>().GetEnumerator();
[2694]176    }
177
[3254]178    IEnumerator IEnumerable.GetEnumerator() {
[3430]179      return GetEnumerator();
[3254]180    }
181
[3054]182    protected virtual bool Validate(string value, out string errorMessage) {
[2694]183      if (value == null) {
184        errorMessage = "Invalid Value (string must not be null)";
185        return false;
186      } else {
187        errorMessage = string.Empty;
188        return true;
189      }
190    }
[3054]191    protected virtual string GetValue(int index) {
[2973]192      return this[index];
[2694]193    }
[3054]194    protected virtual bool SetValue(string value, int index) {
[2694]195      if (value != null) {
[2973]196        this[index] = value;
[2694]197        return true;
198      } else {
199        return false;
200      }
201    }
[3054]202
[9657]203    public event EventHandler ElementNamesChanged;
204    protected virtual void OnElementNamesChanged() {
205      EventHandler handler = ElementNamesChanged;
206      if (handler != null)
207        handler(this, EventArgs.Empty);
208    }
209
[2973]210    public event EventHandler<EventArgs<int>> ItemChanged;
[3054]211    protected virtual void OnItemChanged(int index) {
[2694]212      if (ItemChanged != null)
[2973]213        ItemChanged(this, new EventArgs<int>(index));
[9433]214      if (index < maximumToStringLength)
215        OnToStringChanged();
[2694]216    }
[2973]217    public event EventHandler Reset;
[3054]218    protected virtual void OnReset() {
[2694]219      if (Reset != null)
220        Reset(this, EventArgs.Empty);
[2932]221      OnToStringChanged();
[2694]222    }
[3054]223
224    #region IStringConvertibleArray Members
[13656]225    int IStringConvertibleArray.Length
226    {
[3054]227      get { return Length; }
228      set { Length = value; }
229    }
230    bool IStringConvertibleArray.Validate(string value, out string errorMessage) {
231      return Validate(value, out errorMessage);
232    }
233    string IStringConvertibleArray.GetValue(int index) {
234      return GetValue(index);
235    }
236    bool IStringConvertibleArray.SetValue(string value, int index) {
237      return SetValue(value, index);
238    }
[2694]239    #endregion
240  }
241}
Note: See TracBrowser for help on using the repository browser.