Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableDictionary.cs @ 3188

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

Restructured persistence code of read-only observable collections (#548)

File size: 7.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.ComponentModel;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Collections {
29  [Serializable]
30  [StorableClass]
31  public class ReadOnlyObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> {
32    [Storable]
33    private IObservableDictionary<TKey, TValue> dict;
34
35    #region Properties
36    public ICollection<TKey> Keys {
37      get { return dict.Keys; }
38    }
39    public ICollection<TValue> Values {
40      get { return dict.Values; }
41    }
42    public int Count {
43      get { return dict.Count; }
44    }
45    bool ICollection<KeyValuePair<TKey, TValue>>.IsReadOnly {
46      get { return true; }
47    }
48
49    public TValue this[TKey key] {
50      get { return dict[key]; }
51    }
52    TValue IDictionary<TKey, TValue>.this[TKey key] {
53      get { return dict[key]; }
54      set { throw new NotSupportedException(); }
55    }
56    #endregion
57
58    #region Constructors
59    protected ReadOnlyObservableDictionary() { }
60    public ReadOnlyObservableDictionary(IObservableDictionary<TKey, TValue> dictionary) {
61      if (dictionary == null) throw new ArgumentNullException();
62      dict = dictionary;
63      RegisterEvents();
64    }
65    #endregion
66
67    #region Access
68    public bool ContainsKey(TKey key) {
69      return dict.ContainsKey(key);
70    }
71    bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) {
72      return dict.Contains(item);
73    }
74
75    public bool TryGetValue(TKey key, out TValue value) {
76      return dict.TryGetValue(key, out value);
77    }
78    #endregion
79
80    #region Manipulation
81    void IDictionary<TKey, TValue>.Add(TKey key, TValue value) {
82      throw new NotSupportedException();
83    }
84    void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) {
85      throw new NotSupportedException();
86    }
87
88    bool IDictionary<TKey, TValue>.Remove(TKey key) {
89      throw new NotSupportedException();
90    }
91    bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) {
92      throw new NotSupportedException();
93    }
94
95    void ICollection<KeyValuePair<TKey, TValue>>.Clear() {
96      throw new NotSupportedException();
97    }
98    #endregion
99
100    #region Conversion
101    void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) {
102      ((ICollection<KeyValuePair<TKey, TValue>>)dict).CopyTo(array, arrayIndex);
103    }
104    #endregion
105
106    #region Enumeration
107    public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() {
108      return dict.GetEnumerator();
109    }
110    IEnumerator IEnumerable.GetEnumerator() {
111      return ((IEnumerable)dict).GetEnumerator();
112    }
113    #endregion
114
115    #region Events
116    [StorableHook(HookType.AfterDeserialization)]
117    protected void RegisterEvents() {
118      dict.ItemsAdded += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_ItemsAdded);
119      dict.ItemsRemoved += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_ItemsRemoved);
120      dict.ItemsReplaced += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_ItemsReplaced);
121      dict.CollectionReset += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_CollectionReset);
122      dict.PropertyChanged += new PropertyChangedEventHandler(dict_PropertyChanged);
123    }
124
125    [field: NonSerialized]
126    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsAdded;
127    protected virtual void OnItemsAdded(IEnumerable<KeyValuePair<TKey, TValue>> items) {
128      if (ItemsAdded != null)
129        ItemsAdded(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items));
130    }
131
132    [field: NonSerialized]
133    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsRemoved;
134    protected virtual void OnItemsRemoved(IEnumerable<KeyValuePair<TKey, TValue>> items) {
135      if (ItemsRemoved != null)
136        ItemsRemoved(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items));
137    }
138
139    [field: NonSerialized]
140    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsReplaced;
141    protected virtual void OnItemsReplaced(IEnumerable<KeyValuePair<TKey, TValue>> items, IEnumerable<KeyValuePair<TKey, TValue>> oldItems) {
142      if (ItemsReplaced != null)
143        ItemsReplaced(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items, oldItems));
144    }
145
146    [field: NonSerialized]
147    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> CollectionReset;
148    protected virtual void OnCollectionReset(IEnumerable<KeyValuePair<TKey, TValue>> items, IEnumerable<KeyValuePair<TKey, TValue>> oldItems) {
149      if (CollectionReset != null)
150        CollectionReset(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items, oldItems));
151    }
152
153    [field: NonSerialized]
154    public event PropertyChangedEventHandler PropertyChanged;
155    protected virtual void OnPropertyChanged(string propertyName) {
156      if (PropertyChanged != null)
157        PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
158    }
159
160    private void dict_ItemsAdded(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
161      OnItemsAdded(e.Items);
162    }
163    private void dict_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
164      OnItemsRemoved(e.Items);
165    }
166    private void dict_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
167      OnItemsReplaced(e.Items, e.OldItems);
168    }
169    private void dict_CollectionReset(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
170      OnCollectionReset(e.Items, e.OldItems);
171    }
172    private void dict_PropertyChanged(object sender, PropertyChangedEventArgs e) {
173      if (e.PropertyName.Equals("Item[]") || e.PropertyName.Equals("Keys") || e.PropertyName.Equals("Values") || e.PropertyName.Equals("Count"))
174        OnPropertyChanged(e.PropertyName);
175    }
176    #endregion
177  }
178}
Note: See TracBrowser for help on using the repository browser.