[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections;
|
---|
| 24 | using System.Collections.Generic;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using System.Xml;
|
---|
| 27 | using HeuristicLab.Core;
|
---|
[1669] | 28 | using HeuristicLab.Persistence.Default.Decomposers.Storable;
|
---|
[2] | 29 |
|
---|
| 30 | namespace HeuristicLab.Data {
|
---|
[737] | 31 | /// <summary>
|
---|
| 32 | /// A class representing a list of elements
|
---|
| 33 | /// (which are implementing the interface <see cref="IItem"/>) having some constraints.
|
---|
| 34 | /// </summary>
|
---|
[2] | 35 | public class ConstrainedItemList : ConstrainedItemBase, IEnumerable, IEnumerable<IItem> {
|
---|
[1669] | 36 |
|
---|
| 37 | [Storable]
|
---|
[2] | 38 | private List<IItem> list;
|
---|
[1669] | 39 |
|
---|
| 40 | [Storable]
|
---|
[2] | 41 | private bool suspendConstraintCheck;
|
---|
| 42 |
|
---|
[737] | 43 | /// <summary>
|
---|
| 44 | /// Checks whether the test for the constraints is suspended.
|
---|
| 45 | /// </summary>
|
---|
[347] | 46 | public bool ConstraintCheckSuspended {
|
---|
| 47 | get { return suspendConstraintCheck; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[737] | 50 | /// <summary>
|
---|
| 51 | /// Initializes a new instance of <see cref="ConstrainedItemList"/> with the constraint check enabled.
|
---|
| 52 | /// </summary>
|
---|
[2] | 53 | public ConstrainedItemList()
|
---|
| 54 | : base() {
|
---|
| 55 | list = new List<IItem>();
|
---|
| 56 | suspendConstraintCheck = false;
|
---|
| 57 | }
|
---|
| 58 |
|
---|
[737] | 59 | /// <summary>
|
---|
| 60 | /// Creates a new instance of <see cref="ConstrainedItemListView"/>.
|
---|
| 61 | /// </summary>
|
---|
| 62 | /// <returns>The created instance as <see cref="ConstrainedItemListView"/>.</returns>
|
---|
[2] | 63 | public override IView CreateView() {
|
---|
| 64 | return new ConstrainedItemListView(this);
|
---|
| 65 | }
|
---|
[737] | 66 | /// <summary>
|
---|
| 67 | /// Clones the current instance.
|
---|
| 68 | /// </summary>
|
---|
| 69 | /// <remarks>The elements of the current instance are cloned with the
|
---|
| 70 | /// <see cref="HeuristicLab.Core.Auxiliary.Clone"/> method of the class <see cref="Auxiliary"/>.</remarks>
|
---|
| 71 | /// <param name="clonedObjects">A dictionary of all already cloned objects.</param>
|
---|
| 72 | /// <returns>The cloned instance as <see cref="ConstrainedItemList"/>.</returns>
|
---|
[2] | 73 | public override object Clone(IDictionary<Guid, object> clonedObjects) {
|
---|
| 74 | ConstrainedItemList clone = new ConstrainedItemList();
|
---|
| 75 | clonedObjects.Add(Guid, clone);
|
---|
| 76 | foreach (IConstraint constraint in Constraints)
|
---|
| 77 | clone.AddConstraint((IConstraint)Auxiliary.Clone(constraint, clonedObjects));
|
---|
| 78 | clone.suspendConstraintCheck = suspendConstraintCheck;
|
---|
| 79 | foreach (IItem item in list) {
|
---|
| 80 | clone.list.Add((IItem)Auxiliary.Clone(item, clonedObjects));
|
---|
| 81 | }
|
---|
| 82 | return clone;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
[737] | 85 | /// <summary>
|
---|
| 86 | /// The string representation of the current list instance.
|
---|
| 87 | /// </summary>
|
---|
| 88 | /// <returns>The current list as string, each element separated by a semicolon.
|
---|
| 89 | /// "Empty List" if the list has no elements.</returns>
|
---|
[2] | 90 | public override string ToString() {
|
---|
| 91 | if (list.Count > 0) {
|
---|
| 92 | StringBuilder builder = new StringBuilder();
|
---|
| 93 | builder.Append(list[0].ToString());
|
---|
| 94 | for (int i = 1; i < list.Count; i++) {
|
---|
| 95 | builder.Append(";");
|
---|
| 96 | builder.Append(list[i].ToString());
|
---|
| 97 | }
|
---|
| 98 | return builder.ToString();
|
---|
| 99 | } else {
|
---|
| 100 | return "Empty List";
|
---|
| 101 | }
|
---|
| 102 | }
|
---|
| 103 |
|
---|
[737] | 104 | /// <inheritdoc cref="List<T>.IndexOf(T)"/>
|
---|
[2] | 105 | public int IndexOf(IItem item) {
|
---|
| 106 | return list.IndexOf(item);
|
---|
| 107 | }
|
---|
| 108 |
|
---|
[737] | 109 | /// <summary>
|
---|
| 110 | /// Sets <c>suspendConstraintCheck</c> to <c>true</c>.
|
---|
| 111 | /// </summary>
|
---|
[2] | 112 | public void BeginCombinedOperation() {
|
---|
| 113 | suspendConstraintCheck = true;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
[737] | 116 | /// <summary>
|
---|
| 117 | /// Checks whether the current instance fulfills all constraints.
|
---|
| 118 | /// </summary>
|
---|
| 119 | /// <param name="violatedConstraints">Output parameter,
|
---|
| 120 | /// contains all constraints that could not be fulfilled.</param>
|
---|
| 121 | /// <returns><c>true</c> if all constraints could be fulfilled, <c>false</c> otherwise.</returns>
|
---|
[2] | 122 | public bool EndCombinedOperation(out ICollection<IConstraint> violatedConstraints) {
|
---|
[347] | 123 | if (IsValid(out violatedConstraints))
|
---|
| 124 | suspendConstraintCheck = false;
|
---|
| 125 | else
|
---|
| 126 | suspendConstraintCheck = true;
|
---|
| 127 |
|
---|
| 128 | return !suspendConstraintCheck;
|
---|
[2] | 129 | }
|
---|
| 130 |
|
---|
[737] | 131 | /// <summary>
|
---|
| 132 | /// Adds a new <paramref name="item"/> at a specified <paramref name="index"/> to the current instance if all constraints are fulfilled.
|
---|
| 133 | /// </summary>
|
---|
| 134 | /// <remarks>Calls <see cref="OnItemAdded"/> if the insertion was successful.</remarks>
|
---|
| 135 | /// <param name="index">The position where to insert the new element.</param>
|
---|
| 136 | /// <param name="item">The new element to insert.</param>
|
---|
| 137 | /// <param name="violatedConstraints">Output parameter, all constraints that could not be fulfilled.</param>
|
---|
| 138 | /// <returns><c>true</c> if the insertion was successful, <c>false</c> otherwise.</returns>
|
---|
[2] | 139 | public bool TryInsert(int index, IItem item, out ICollection<IConstraint> violatedConstraints) {
|
---|
| 140 | list.Insert(index, item);
|
---|
[732] | 141 | violatedConstraints = new List<IConstraint>();
|
---|
[1203] | 142 | if (suspendConstraintCheck || IsValid(out violatedConstraints)) {
|
---|
[2] | 143 | OnItemAdded(item, index);
|
---|
| 144 | return true;
|
---|
| 145 | } else {
|
---|
| 146 | list.RemoveAt(index);
|
---|
| 147 | return false;
|
---|
| 148 | }
|
---|
| 149 | }
|
---|
| 150 |
|
---|
[737] | 151 | /// <summary>
|
---|
| 152 | /// Removes an element at the specified <paramref name="index"/>
|
---|
| 153 | /// from the current instance if all constraints are fulfilled.
|
---|
| 154 | /// </summary>
|
---|
| 155 | /// <remarks>Calls <see cref="OnItemRemoved"/> if the deletion was successful.</remarks>
|
---|
| 156 | /// <param name="index">The position where to remove the element.</param>
|
---|
| 157 | /// <param name="violatedConstraints">Output parameter, all constraints that could not be fulfilled.</param>
|
---|
| 158 | /// <returns><c>true</c> if the element could be removed successfully, <c>false</c> otherwise.</returns>
|
---|
[2] | 159 | public bool TryRemoveAt(int index, out ICollection<IConstraint> violatedConstraints) {
|
---|
| 160 | IItem item = list[index];
|
---|
| 161 | list.RemoveAt(index);
|
---|
[732] | 162 | violatedConstraints = new List<IConstraint>();
|
---|
[1203] | 163 | if (suspendConstraintCheck || IsValid(out violatedConstraints)) {
|
---|
[2] | 164 | OnItemRemoved(item, index);
|
---|
| 165 | return true;
|
---|
| 166 | } else {
|
---|
| 167 | list.Insert(index, item);
|
---|
| 168 | return false;
|
---|
| 169 | }
|
---|
| 170 | }
|
---|
| 171 |
|
---|
[737] | 172 | /// <summary>
|
---|
| 173 | /// Gets the element of the current instance at the specified <paramref name="index"/>.
|
---|
| 174 | /// </summary>
|
---|
| 175 | /// <param name="index">The position of the searched element.</param>
|
---|
| 176 | /// <returns>The searched element as <see cref="IItem"/>.</returns>
|
---|
[2] | 177 | public IItem this[int index] {
|
---|
| 178 | get { return list[index]; }
|
---|
| 179 | }
|
---|
| 180 |
|
---|
[737] | 181 | /// <summary>
|
---|
| 182 | /// Changes the element at a specified position if all constraints are fulfilled.
|
---|
| 183 | /// </summary>
|
---|
| 184 | /// <param name="index">The position where to change the element.</param>
|
---|
| 185 | /// <param name="item">The element that replaces the current one.</param>
|
---|
| 186 | /// <param name="violatedConstraints">Output parameter, all constraints that could not be fulfilled.</param>
|
---|
| 187 | /// <returns><c>true</c> if the substitution was successful, <c>false</c> otherwise.</returns>
|
---|
[2] | 188 | public bool TrySetAt(int index, IItem item, out ICollection<IConstraint> violatedConstraints) {
|
---|
| 189 | IItem backup = this[index];
|
---|
| 190 | list[index] = item;
|
---|
[732] | 191 | violatedConstraints = new List<IConstraint>();
|
---|
[1203] | 192 | if (suspendConstraintCheck || IsValid(out violatedConstraints)) {
|
---|
[2] | 193 | return true;
|
---|
| 194 | } else {
|
---|
| 195 | list[index] = backup;
|
---|
| 196 | return false;
|
---|
| 197 | }
|
---|
| 198 | }
|
---|
| 199 |
|
---|
[737] | 200 | /// <summary>
|
---|
| 201 | /// Adds a new <paramref name="item"/> to the current list if all constraints are fulfilled.
|
---|
| 202 | /// </summary>
|
---|
| 203 | /// <remarks>Calls <see cref="OnItemAdded"/> if the add was successful.</remarks>
|
---|
| 204 | /// <param name="item">The element to add.</param>
|
---|
| 205 | /// <param name="violatedConstraints">Output parameter, all constraints that could not be fulfilled.</param>
|
---|
| 206 | /// <returns><c>true</c> if the element could be successfully added, <c>false</c> otherwise.</returns>
|
---|
[2] | 207 | public bool TryAdd(IItem item, out ICollection<IConstraint> violatedConstraints) {
|
---|
| 208 | list.Add(item);
|
---|
[732] | 209 | violatedConstraints = new List<IConstraint>();
|
---|
[1203] | 210 | if (suspendConstraintCheck || IsValid(out violatedConstraints)) {
|
---|
[2] | 211 | OnItemAdded(item, list.Count - 1);
|
---|
| 212 | return true;
|
---|
| 213 | } else {
|
---|
| 214 | list.RemoveAt(list.Count - 1);
|
---|
| 215 | return false;
|
---|
| 216 | }
|
---|
| 217 | }
|
---|
[737] | 218 | /// <summary>
|
---|
| 219 | /// Empties the current list.
|
---|
| 220 | /// </summary>
|
---|
| 221 | /// <remarks>Calls <see cref="OnCleared"/>.</remarks>
|
---|
[2] | 222 | public void Clear() {
|
---|
| 223 | list.Clear();
|
---|
| 224 | OnCleared();
|
---|
| 225 | }
|
---|
[737] | 226 | /// <inheritdoc cref="List<T>.Contains"/>
|
---|
[2] | 227 | public bool Contains(IItem item) {
|
---|
| 228 | return list.Contains(item);
|
---|
| 229 | }
|
---|
[737] | 230 | /// <inheritdoc cref="List<T>.CopyTo(T[],int)"/>
|
---|
[2] | 231 | public void CopyTo(IItem[] array, int arrayIndex) {
|
---|
| 232 | list.CopyTo(array, arrayIndex);
|
---|
| 233 | }
|
---|
[737] | 234 | /// <inheritdoc cref="List<T>.Count"/>
|
---|
[2] | 235 | public int Count {
|
---|
| 236 | get { return list.Count; }
|
---|
| 237 | }
|
---|
[737] | 238 | /// <summary>
|
---|
| 239 | /// Checks whether the current instance is read-only.
|
---|
| 240 | /// </summary>
|
---|
| 241 | /// <remarks>Always returns <c>false</c>.</remarks>
|
---|
[2] | 242 | public bool IsReadOnly {
|
---|
| 243 | get { return false; }
|
---|
| 244 | }
|
---|
[737] | 245 | /// <summary>
|
---|
| 246 | /// Removes a specified <paramref name="item"/> from the
|
---|
| 247 | /// current instance if all constraints are fulfilled.
|
---|
| 248 | /// </summary>
|
---|
| 249 | /// <param name="item">The element to remove.</param>
|
---|
| 250 | /// <param name="violatedConstraints">Output parameter, all constraints that could not be fulfilled.</param>
|
---|
| 251 | /// <returns><c>true</c> if the deletion was successful, <c>false</c> otherwise.</returns>
|
---|
[2] | 252 | public bool TryRemove(IItem item, out ICollection<IConstraint> violatedConstraints) {
|
---|
| 253 | int index = list.IndexOf(item);
|
---|
| 254 | if (index >= 0) {
|
---|
| 255 | return TryRemoveAt(index, out violatedConstraints);
|
---|
| 256 | } else {
|
---|
| 257 | violatedConstraints = new List<IConstraint>();
|
---|
| 258 | return false;
|
---|
| 259 | }
|
---|
| 260 | }
|
---|
| 261 |
|
---|
[737] | 262 | /// <inheritdoc cref="List<T>.GetEnumerator"/>
|
---|
[2] | 263 | public IEnumerator<IItem> GetEnumerator() {
|
---|
| 264 | return list.GetEnumerator();
|
---|
| 265 | }
|
---|
| 266 |
|
---|
[737] | 267 | /// <inheritdoc cref="List<T>.GetEnumerator"/>
|
---|
[2] | 268 | IEnumerator IEnumerable.GetEnumerator() {
|
---|
| 269 | return list.GetEnumerator();
|
---|
| 270 | }
|
---|
| 271 |
|
---|
[737] | 272 | /// <summary>
|
---|
| 273 | /// Occurs when a new item is added.
|
---|
| 274 | /// </summary>
|
---|
[2] | 275 | public event EventHandler<ItemIndexEventArgs> ItemAdded;
|
---|
[737] | 276 | /// <summary>
|
---|
| 277 | /// Fires a new <c>ItemAdded</c> event.
|
---|
| 278 | /// </summary>
|
---|
| 279 | /// <remarks>Calls <see cref="HeuristicLab.Core.ItemBase.OnChanged"/>.</remarks>
|
---|
| 280 | /// <param name="item">The element that was added.</param>
|
---|
| 281 | /// <param name="index">The position where the element was added.</param>
|
---|
[2] | 282 | protected virtual void OnItemAdded(IItem item, int index) {
|
---|
| 283 | if (ItemAdded != null)
|
---|
| 284 | ItemAdded(this, new ItemIndexEventArgs(item, index));
|
---|
| 285 | OnChanged();
|
---|
| 286 | }
|
---|
[737] | 287 | /// <summary>
|
---|
| 288 | /// Occurs when an element is removed from the current instance.
|
---|
| 289 | /// </summary>
|
---|
[2] | 290 | public event EventHandler<ItemIndexEventArgs> ItemRemoved;
|
---|
[737] | 291 | /// <summary>
|
---|
| 292 | /// Fires a new <c>ItemRemoved</c> event.
|
---|
| 293 | /// </summary>
|
---|
| 294 | /// <remarks>Calls <see cref="HeuristicLab.Core.ItemBase.OnChanged"/>.</remarks>
|
---|
| 295 | /// <param name="item">The element that has been removed.</param>
|
---|
| 296 | /// <param name="index">The position from where it has been removed.</param>
|
---|
[2] | 297 | protected virtual void OnItemRemoved(IItem item, int index) {
|
---|
| 298 | if (ItemRemoved != null)
|
---|
| 299 | ItemRemoved(this, new ItemIndexEventArgs(item, index));
|
---|
| 300 | OnChanged();
|
---|
| 301 | }
|
---|
[737] | 302 | /// <summary>
|
---|
| 303 | /// Occurs when the current list is emptied.
|
---|
| 304 | /// </summary>
|
---|
[2] | 305 | public event EventHandler Cleared;
|
---|
[737] | 306 | /// <summary>
|
---|
| 307 | /// Fires a new <c>Cleared</c> event.
|
---|
| 308 | /// </summary>
|
---|
| 309 | /// <remarks>Calls <see cref="HeuristicLab.Core.ItemBase.OnChanged"/>.</remarks>
|
---|
[2] | 310 | protected virtual void OnCleared() {
|
---|
| 311 | if (Cleared != null)
|
---|
| 312 | Cleared(this, new EventArgs());
|
---|
| 313 | OnChanged();
|
---|
| 314 | }
|
---|
| 315 | }
|
---|
| 316 | }
|
---|