[2572] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2572] | 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 |
|
---|
[13597] | 22 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2572] | 23 | using System;
|
---|
| 24 | using System.Collections;
|
---|
| 25 | using System.Collections.Generic;
|
---|
[2620] | 26 | using System.ComponentModel;
|
---|
[13597] | 27 | using System.Linq;
|
---|
[2572] | 28 |
|
---|
| 29 | namespace HeuristicLab.Collections {
|
---|
[3560] | 30 | [StorableClass]
|
---|
[2572] | 31 | [Serializable]
|
---|
[2574] | 32 | public class ObservableCollection<T> : IObservableCollection<T> {
|
---|
[3560] | 33 | [Storable]
|
---|
[3286] | 34 | protected List<T> list;
|
---|
[2572] | 35 |
|
---|
| 36 | #region Properties
|
---|
| 37 | public int Capacity {
|
---|
| 38 | get { return list.Capacity; }
|
---|
[2620] | 39 | set {
|
---|
| 40 | if (list.Capacity != value) {
|
---|
| 41 | list.Capacity = value;
|
---|
| 42 | OnPropertyChanged("Capacity");
|
---|
| 43 | }
|
---|
| 44 | }
|
---|
[2572] | 45 | }
|
---|
| 46 | public int Count {
|
---|
| 47 | get { return list.Count; }
|
---|
| 48 | }
|
---|
[2618] | 49 | bool ICollection<T>.IsReadOnly {
|
---|
[2572] | 50 | get { return ((ICollection<T>)list).IsReadOnly; }
|
---|
| 51 | }
|
---|
| 52 | #endregion
|
---|
| 53 |
|
---|
| 54 | #region Constructors
|
---|
| 55 | public ObservableCollection() {
|
---|
| 56 | list = new List<T>();
|
---|
| 57 | }
|
---|
| 58 | public ObservableCollection(int capacity) {
|
---|
| 59 | list = new List<T>(capacity);
|
---|
| 60 | }
|
---|
| 61 | public ObservableCollection(IEnumerable<T> collection) {
|
---|
| 62 | list = new List<T>(collection);
|
---|
| 63 | }
|
---|
[3560] | 64 | [StorableConstructor]
|
---|
| 65 | protected ObservableCollection(bool deserializing) { }
|
---|
[2572] | 66 | #endregion
|
---|
| 67 |
|
---|
| 68 | #region Access
|
---|
| 69 | public bool Contains(T item) {
|
---|
| 70 | return list.Contains(item);
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | public bool Exists(Predicate<T> match) {
|
---|
| 74 | return list.Exists(match);
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | public T Find(Predicate<T> match) {
|
---|
| 78 | return list.Find(match);
|
---|
| 79 | }
|
---|
| 80 | public ICollection<T> FindAll(Predicate<T> match) {
|
---|
| 81 | return list.FindAll(match);
|
---|
| 82 | }
|
---|
| 83 | public T FindLast(Predicate<T> match) {
|
---|
| 84 | return list.FindLast(match);
|
---|
| 85 | }
|
---|
| 86 | #endregion
|
---|
| 87 |
|
---|
| 88 | #region Manipulation
|
---|
| 89 | public void Add(T item) {
|
---|
[2620] | 90 | int capacity = list.Capacity;
|
---|
[2572] | 91 | list.Add(item);
|
---|
[2620] | 92 | if (list.Capacity != capacity)
|
---|
| 93 | OnPropertyChanged("Capacity");
|
---|
| 94 | OnPropertyChanged("Count");
|
---|
[2572] | 95 | OnItemsAdded(new T[] { item });
|
---|
| 96 | }
|
---|
| 97 | public void AddRange(IEnumerable<T> collection) {
|
---|
[2620] | 98 | int capacity = list.Capacity;
|
---|
[13597] | 99 | ICollection<T> items = collection as ICollection<T> ?? collection.ToList();
|
---|
| 100 | list.AddRange(items);
|
---|
| 101 | if (items.Count > 0) {
|
---|
[2620] | 102 | if (list.Capacity != capacity)
|
---|
| 103 | OnPropertyChanged("Capacity");
|
---|
| 104 | OnPropertyChanged("Count");
|
---|
[13597] | 105 | OnItemsAdded(items);
|
---|
[2620] | 106 | }
|
---|
[2572] | 107 | }
|
---|
| 108 |
|
---|
| 109 | public bool Remove(T item) {
|
---|
| 110 | if (list.Remove(item)) {
|
---|
[2620] | 111 | OnPropertyChanged("Count");
|
---|
[2572] | 112 | OnItemsRemoved(new T[] { item });
|
---|
| 113 | return true;
|
---|
| 114 | }
|
---|
| 115 | return false;
|
---|
| 116 | }
|
---|
| 117 | public void RemoveRange(IEnumerable<T> collection) {
|
---|
[2573] | 118 | if (collection == null) throw new ArgumentNullException();
|
---|
[2572] | 119 | List<T> items = new List<T>();
|
---|
| 120 | foreach (T item in collection) {
|
---|
| 121 | if (list.Remove(item))
|
---|
| 122 | items.Add(item);
|
---|
| 123 | }
|
---|
[2620] | 124 | if (items.Count > 0) {
|
---|
| 125 | OnPropertyChanged("Count");
|
---|
[2572] | 126 | OnItemsRemoved(items);
|
---|
[2620] | 127 | }
|
---|
[2572] | 128 | }
|
---|
| 129 | public int RemoveAll(Predicate<T> match) {
|
---|
| 130 | List<T> items = list.FindAll(match);
|
---|
[2620] | 131 | int result = 0;
|
---|
| 132 | if (items.Count > 0) {
|
---|
| 133 | result = list.RemoveAll(match);
|
---|
| 134 | OnPropertyChanged("Count");
|
---|
| 135 | OnItemsRemoved(items);
|
---|
| 136 | }
|
---|
[2572] | 137 | return result;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | public void Clear() {
|
---|
[2620] | 141 | if (list.Count > 0) {
|
---|
| 142 | T[] items = list.ToArray();
|
---|
| 143 | list.Clear();
|
---|
| 144 | OnPropertyChanged("Count");
|
---|
| 145 | OnCollectionReset(new T[0], items);
|
---|
| 146 | }
|
---|
[2572] | 147 | }
|
---|
| 148 | #endregion
|
---|
| 149 |
|
---|
| 150 | #region Conversion
|
---|
[2618] | 151 | public ReadOnlyObservableCollection<T> AsReadOnly() {
|
---|
| 152 | return new ReadOnlyObservableCollection<T>(this);
|
---|
[2572] | 153 | }
|
---|
| 154 | public T[] ToArray() {
|
---|
| 155 | return list.ToArray();
|
---|
| 156 | }
|
---|
| 157 | public void CopyTo(T[] array, int arrayIndex) {
|
---|
| 158 | list.CopyTo(array, arrayIndex);
|
---|
| 159 | }
|
---|
| 160 | public ICollection<TOutput> ConvertAll<TOutput>(Converter<T, TOutput> converter) {
|
---|
| 161 | return list.ConvertAll<TOutput>(converter);
|
---|
| 162 | }
|
---|
| 163 | #endregion
|
---|
| 164 |
|
---|
| 165 | #region Processing
|
---|
| 166 | public void ForEach(Action<T> action) {
|
---|
| 167 | list.ForEach(action);
|
---|
| 168 | }
|
---|
| 169 | public bool TrueForAll(Predicate<T> match) {
|
---|
| 170 | return list.TrueForAll(match);
|
---|
| 171 | }
|
---|
| 172 | #endregion
|
---|
| 173 |
|
---|
| 174 | #region Enumeration
|
---|
| 175 | public IEnumerator<T> GetEnumerator() {
|
---|
| 176 | return ((IEnumerable<T>)list).GetEnumerator();
|
---|
| 177 | }
|
---|
| 178 | IEnumerator IEnumerable.GetEnumerator() {
|
---|
| 179 | return ((IEnumerable)list).GetEnumerator();
|
---|
| 180 | }
|
---|
| 181 | #endregion
|
---|
| 182 |
|
---|
| 183 | #region Helpers
|
---|
| 184 | public void TrimExcess() {
|
---|
[2620] | 185 | int capacity = list.Capacity;
|
---|
[2572] | 186 | list.TrimExcess();
|
---|
[2620] | 187 | if (list.Capacity != capacity)
|
---|
| 188 | OnPropertyChanged("Capacity");
|
---|
[2572] | 189 | }
|
---|
| 190 | #endregion
|
---|
[2574] | 191 |
|
---|
| 192 | #region Events
|
---|
| 193 | [field: NonSerialized]
|
---|
| 194 | public event CollectionItemsChangedEventHandler<T> ItemsAdded;
|
---|
| 195 | protected virtual void OnItemsAdded(IEnumerable<T> items) {
|
---|
[3317] | 196 | CollectionItemsChangedEventHandler<T> handler = ItemsAdded;
|
---|
| 197 | if (handler != null) handler(this, new CollectionItemsChangedEventArgs<T>(items));
|
---|
[2574] | 198 | }
|
---|
| 199 |
|
---|
| 200 | [field: NonSerialized]
|
---|
| 201 | public event CollectionItemsChangedEventHandler<T> ItemsRemoved;
|
---|
| 202 | protected virtual void OnItemsRemoved(IEnumerable<T> items) {
|
---|
[3317] | 203 | CollectionItemsChangedEventHandler<T> handler = ItemsRemoved;
|
---|
| 204 | if (handler != null) handler(this, new CollectionItemsChangedEventArgs<T>(items));
|
---|
[2574] | 205 | }
|
---|
| 206 |
|
---|
| 207 | [field: NonSerialized]
|
---|
| 208 | public event CollectionItemsChangedEventHandler<T> CollectionReset;
|
---|
| 209 | protected virtual void OnCollectionReset(IEnumerable<T> items, IEnumerable<T> oldItems) {
|
---|
[3317] | 210 | CollectionItemsChangedEventHandler<T> handler = CollectionReset;
|
---|
| 211 | if (handler != null) handler(this, new CollectionItemsChangedEventArgs<T>(items, oldItems));
|
---|
[2574] | 212 | }
|
---|
[2620] | 213 |
|
---|
| 214 | [field: NonSerialized]
|
---|
| 215 | public event PropertyChangedEventHandler PropertyChanged;
|
---|
| 216 | protected virtual void OnPropertyChanged(string propertyName) {
|
---|
[3317] | 217 | PropertyChangedEventHandler handler = PropertyChanged;
|
---|
| 218 | if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
|
---|
[2620] | 219 | }
|
---|
[2574] | 220 | #endregion
|
---|
[2572] | 221 | }
|
---|
| 222 | }
|
---|