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