Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Collections/3.3/ObservableDictionary.cs @ 2573

Last change on this file since 2573 was 2573, checked in by swagner, 14 years ago

Worked on HeuristicLab.Collections plugin (#819)

  • added ObservableKeyedCollectionBase
  • minor fixes
File size: 5.5 KB
Line 
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
22using System;
23using System.Collections;
24using System.Collections.Generic;
25using System.Linq;
26using System.Text;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using System.Runtime.Serialization;
29
30namespace HeuristicLab.Collections {
31  [Serializable]
32  public class ObservableDictionary<TKey, TValue> : CollectionChangedEventsBase<KeyValuePair<TKey, TValue>>, IDictionary<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    }
83    public ObservableDictionary(int capacity, IEqualityComparer<TKey> comparer) {
84      dict = new Dictionary<TKey, TValue>(capacity, comparer);
85    }
86    public ObservableDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) {
87      dict = new Dictionary<TKey, TValue>(dictionary, comparer);
88    }
89    #endregion
90
91    #region Access
92    public bool ContainsKey(TKey key) {
93      return dict.ContainsKey(key);
94    }
95    public bool ContainsValue(TValue value) {
96      return dict.ContainsValue(value);
97    }
98    bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) {
99      return dict.Contains(item);
100    }
101
102    public bool TryGetValue(TKey key, out TValue value) {
103      return dict.TryGetValue(key, out value);
104    }
105    #endregion
106
107    #region Manipulation
108    public void Add(TKey key, TValue value) {
109      dict.Add(key, value);
110      OnItemsAdded(new KeyValuePair<TKey, TValue>[] { new KeyValuePair<TKey, TValue>(key, value) });
111    }
112    void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) {
113      ((ICollection<KeyValuePair<TKey, TValue>>)dict).Add(item);
114      OnItemsAdded(new KeyValuePair<TKey, TValue>[] { item });
115    }
116
117    public bool Remove(TKey key) {
118      TValue value;
119      if (dict.TryGetValue(key, out value)) {
120        dict.Remove(key);
121        OnItemsRemoved(new KeyValuePair<TKey, TValue>[] { new KeyValuePair<TKey, TValue>(key, value) });
122        return true;
123      }
124      return false;
125    }
126    bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) {
127      if (((ICollection<KeyValuePair<TKey, TValue>>)dict).Remove(item)) {
128        OnItemsRemoved(new KeyValuePair<TKey, TValue>[] { item });
129        return true;
130      }
131      return false;
132    }
133
134    public void Clear() {
135      KeyValuePair<TKey, TValue>[] items = dict.ToArray();
136      dict.Clear();
137      OnCollectionReset(new KeyValuePair<TKey, TValue>[0], items);
138    }
139    #endregion
140
141    #region Conversion
142    void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) {
143      ((ICollection<KeyValuePair<TKey, TValue>>)dict).CopyTo(array, arrayIndex);
144    }
145    #endregion
146
147    #region Enumeration
148    public Dictionary<TKey, TValue>.Enumerator GetEnumerator() {
149      return dict.GetEnumerator();
150    }
151    IEnumerator<KeyValuePair<TKey, TValue>> IEnumerable<KeyValuePair<TKey, TValue>>.GetEnumerator() {
152      return ((IEnumerable<KeyValuePair<TKey, TValue>>)dict).GetEnumerator();
153    }
154    IEnumerator IEnumerable.GetEnumerator() {
155      return ((IEnumerable)dict).GetEnumerator();
156    }
157    #endregion
158  }
159}
Note: See TracBrowser for help on using the repository browser.