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.Linq;
|
---|
26 | using System.Text;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 | using System.Runtime.Serialization;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Collections {
|
---|
31 | [Serializable]
|
---|
32 | public class ObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> {
|
---|
33 | [Storable]
|
---|
34 | private Dictionary<TKey, TValue> dict;
|
---|
35 |
|
---|
36 | #region Properties
|
---|
37 | public ICollection<TKey> Keys {
|
---|
38 | get { return dict.Keys; }
|
---|
39 | }
|
---|
40 | public ICollection<TValue> Values {
|
---|
41 | get { return dict.Values; }
|
---|
42 | }
|
---|
43 | public int Count {
|
---|
44 | get { return dict.Count; }
|
---|
45 | }
|
---|
46 | public IEqualityComparer<TKey> Comparer {
|
---|
47 | get { return dict.Comparer; }
|
---|
48 | }
|
---|
49 | bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly {
|
---|
50 | get { return ((ICollection<KeyValuePair<TKey, TValue>>)dict).IsReadOnly; }
|
---|
51 | }
|
---|
52 |
|
---|
53 | public TValue this[TKey key] {
|
---|
54 | get {
|
---|
55 | return dict[key];
|
---|
56 | }
|
---|
57 | set {
|
---|
58 | if (dict.ContainsKey(key)) {
|
---|
59 | KeyValuePair<TKey, TValue> item = new KeyValuePair<TKey, TValue>(key, dict[key]);
|
---|
60 | dict[key] = value;
|
---|
61 | OnItemsReplaced(new KeyValuePair<TKey, TValue>[] { new KeyValuePair<TKey, TValue>(key, value) }, new KeyValuePair<TKey, TValue>[] { item });
|
---|
62 | } else {
|
---|
63 | dict[key] = value;
|
---|
64 | OnItemsAdded(new KeyValuePair<TKey, TValue>[] { new KeyValuePair<TKey, TValue>(key, value) });
|
---|
65 | }
|
---|
66 | }
|
---|
67 | }
|
---|
68 | #endregion
|
---|
69 |
|
---|
70 | #region Constructors
|
---|
71 | public ObservableDictionary() {
|
---|
72 | dict = new Dictionary<TKey, TValue>();
|
---|
73 | }
|
---|
74 | public ObservableDictionary(int capacity) {
|
---|
75 | dict = new Dictionary<TKey, TValue>(capacity);
|
---|
76 | }
|
---|
77 | public ObservableDictionary(IEqualityComparer<TKey> comparer) {
|
---|
78 | dict = new Dictionary<TKey, TValue>(comparer);
|
---|
79 | }
|
---|
80 | public ObservableDictionary(IDictionary<TKey, TValue> dictionary) {
|
---|
81 | dict = new Dictionary<TKey, TValue>(dictionary);
|
---|
82 | OnItemsAdded(dictionary);
|
---|
83 | }
|
---|
84 | public ObservableDictionary(int capacity, IEqualityComparer<TKey> comparer) {
|
---|
85 | dict = new Dictionary<TKey, TValue>(capacity, comparer);
|
---|
86 | }
|
---|
87 | public ObservableDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) {
|
---|
88 | dict = new Dictionary<TKey, TValue>(dictionary, comparer);
|
---|
89 | OnItemsAdded(dictionary);
|
---|
90 | }
|
---|
91 | #endregion
|
---|
92 |
|
---|
93 | #region Destructors
|
---|
94 | ~ObservableDictionary() {
|
---|
95 | Dispose(false);
|
---|
96 | }
|
---|
97 | protected virtual void Dispose(bool disposing) {
|
---|
98 | if (disposing) {
|
---|
99 | Clear();
|
---|
100 | }
|
---|
101 | }
|
---|
102 | public void Dispose() {
|
---|
103 | Dispose(true);
|
---|
104 | GC.SuppressFinalize(this);
|
---|
105 | }
|
---|
106 | #endregion
|
---|
107 |
|
---|
108 | #region Access
|
---|
109 | public bool ContainsKey(TKey key) {
|
---|
110 | return dict.ContainsKey(key);
|
---|
111 | }
|
---|
112 | public bool ContainsValue(TValue value) {
|
---|
113 | return dict.ContainsValue(value);
|
---|
114 | }
|
---|
115 | bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) {
|
---|
116 | return dict.Contains(item);
|
---|
117 | }
|
---|
118 |
|
---|
119 | public bool TryGetValue(TKey key, out TValue value) {
|
---|
120 | return dict.TryGetValue(key, out value);
|
---|
121 | }
|
---|
122 | #endregion
|
---|
123 |
|
---|
124 | #region Manipulation
|
---|
125 | public void Add(TKey key, TValue value) {
|
---|
126 | dict.Add(key, value);
|
---|
127 | OnItemsAdded(new KeyValuePair<TKey, TValue>[] { new KeyValuePair<TKey, TValue>(key, value) });
|
---|
128 | }
|
---|
129 | void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) {
|
---|
130 | ((ICollection<KeyValuePair<TKey, TValue>>)dict).Add(item);
|
---|
131 | OnItemsAdded(new KeyValuePair<TKey, TValue>[] { item });
|
---|
132 | }
|
---|
133 |
|
---|
134 | public bool Remove(TKey key) {
|
---|
135 | TValue value;
|
---|
136 | if (dict.TryGetValue(key, out value)) {
|
---|
137 | dict.Remove(key);
|
---|
138 | OnItemsRemoved(new KeyValuePair<TKey, TValue>[] { new KeyValuePair<TKey, TValue>(key, value) });
|
---|
139 | return true;
|
---|
140 | }
|
---|
141 | return false;
|
---|
142 | }
|
---|
143 | bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) {
|
---|
144 | if (((ICollection<KeyValuePair<TKey, TValue>>)dict).Remove(item)) {
|
---|
145 | OnItemsRemoved(new KeyValuePair<TKey, TValue>[] { item });
|
---|
146 | return true;
|
---|
147 | }
|
---|
148 | return false;
|
---|
149 | }
|
---|
150 |
|
---|
151 | public void Clear() {
|
---|
152 | KeyValuePair<TKey, TValue>[] items = dict.ToArray();
|
---|
153 | dict.Clear();
|
---|
154 | OnCollectionReset(new KeyValuePair<TKey, TValue>[0], items);
|
---|
155 | }
|
---|
156 | #endregion
|
---|
157 |
|
---|
158 | #region Conversion
|
---|
159 | void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) {
|
---|
160 | ((ICollection<KeyValuePair<TKey, TValue>>)dict).CopyTo(array, arrayIndex);
|
---|
161 | }
|
---|
162 | #endregion
|
---|
163 |
|
---|
164 | #region Enumeration
|
---|
165 | public Dictionary<TKey, TValue>.Enumerator GetEnumerator() {
|
---|
166 | return dict.GetEnumerator();
|
---|
167 | }
|
---|
168 | IEnumerator<KeyValuePair<TKey, TValue>> IEnumerable<KeyValuePair<TKey, TValue>>.GetEnumerator() {
|
---|
169 | return ((IEnumerable<KeyValuePair<TKey, TValue>>)dict).GetEnumerator();
|
---|
170 | }
|
---|
171 | IEnumerator IEnumerable.GetEnumerator() {
|
---|
172 | return ((IEnumerable)dict).GetEnumerator();
|
---|
173 | }
|
---|
174 | #endregion
|
---|
175 |
|
---|
176 | #region Events
|
---|
177 | [field: NonSerialized]
|
---|
178 | public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsAdded;
|
---|
179 | protected virtual void OnItemsAdded(IEnumerable<KeyValuePair<TKey, TValue>> items) {
|
---|
180 | if (ItemsAdded != null)
|
---|
181 | ItemsAdded(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items));
|
---|
182 | }
|
---|
183 |
|
---|
184 | [field: NonSerialized]
|
---|
185 | public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsRemoved;
|
---|
186 | protected virtual void OnItemsRemoved(IEnumerable<KeyValuePair<TKey, TValue>> items) {
|
---|
187 | if (ItemsRemoved != null)
|
---|
188 | ItemsRemoved(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items));
|
---|
189 | }
|
---|
190 |
|
---|
191 | [field: NonSerialized]
|
---|
192 | public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsReplaced;
|
---|
193 | protected virtual void OnItemsReplaced(IEnumerable<KeyValuePair<TKey, TValue>> items, IEnumerable<KeyValuePair<TKey, TValue>> oldItems) {
|
---|
194 | if (ItemsReplaced != null)
|
---|
195 | ItemsReplaced(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items, oldItems));
|
---|
196 | }
|
---|
197 |
|
---|
198 | [field: NonSerialized]
|
---|
199 | public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> CollectionReset;
|
---|
200 | protected virtual void OnCollectionReset(IEnumerable<KeyValuePair<TKey, TValue>> items, IEnumerable<KeyValuePair<TKey, TValue>> oldItems) {
|
---|
201 | if (CollectionReset != null)
|
---|
202 | CollectionReset(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items, oldItems));
|
---|
203 | }
|
---|
204 | #endregion
|
---|
205 | }
|
---|
206 | }
|
---|