Free cookie consent management tool by TermsFeed Policy Generator

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

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

Fixed persistence exceptions by restoring the reference on HeuristicLab.Persistence in HeuristicLab.Collections (#977)

File size: 7.4 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  [StorableClass]
30  [Serializable]
31  public class ReadOnlyObservableDictionary<TKey, TValue> : IObservableDictionary<TKey, TValue> {
32    [Storable]
33    protected 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    [StorableConstructor]
66    protected ReadOnlyObservableDictionary(bool deserializing) { }
67    #endregion
68
69    #region Access
70    public bool ContainsKey(TKey key) {
71      return dict.ContainsKey(key);
72    }
73    bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) {
74      return dict.Contains(item);
75    }
76
77    public bool TryGetValue(TKey key, out TValue value) {
78      return dict.TryGetValue(key, out value);
79    }
80    #endregion
81
82    #region Manipulation
83    void IDictionary<TKey, TValue>.Add(TKey key, TValue value) {
84      throw new NotSupportedException();
85    }
86    void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) {
87      throw new NotSupportedException();
88    }
89
90    bool IDictionary<TKey, TValue>.Remove(TKey key) {
91      throw new NotSupportedException();
92    }
93    bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) {
94      throw new NotSupportedException();
95    }
96
97    void ICollection<KeyValuePair<TKey, TValue>>.Clear() {
98      throw new NotSupportedException();
99    }
100    #endregion
101
102    #region Conversion
103    void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) {
104      ((ICollection<KeyValuePair<TKey, TValue>>)dict).CopyTo(array, arrayIndex);
105    }
106    #endregion
107
108    #region Enumeration
109    public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() {
110      return dict.GetEnumerator();
111    }
112    IEnumerator IEnumerable.GetEnumerator() {
113      return ((IEnumerable)dict).GetEnumerator();
114    }
115    #endregion
116
117    #region Events
118    [StorableHook(HookType.AfterDeserialization)]
119    protected void RegisterEvents() {
120      dict.ItemsAdded += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_ItemsAdded);
121      dict.ItemsRemoved += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_ItemsRemoved);
122      dict.ItemsReplaced += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_ItemsReplaced);
123      dict.CollectionReset += new CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>>(dict_CollectionReset);
124      dict.PropertyChanged += new PropertyChangedEventHandler(dict_PropertyChanged);
125    }
126
127    [field: NonSerialized]
128    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsAdded;
129    protected virtual void OnItemsAdded(IEnumerable<KeyValuePair<TKey, TValue>> items) {
130      CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> handler = ItemsAdded;
131      if (handler != null) handler(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items));
132    }
133
134    [field: NonSerialized]
135    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsRemoved;
136    protected virtual void OnItemsRemoved(IEnumerable<KeyValuePair<TKey, TValue>> items) {
137      CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> handler = ItemsRemoved;
138      if (handler != null) handler(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items));
139    }
140
141    [field: NonSerialized]
142    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsReplaced;
143    protected virtual void OnItemsReplaced(IEnumerable<KeyValuePair<TKey, TValue>> items, IEnumerable<KeyValuePair<TKey, TValue>> oldItems) {
144      CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> handler = ItemsReplaced;
145      if (handler != null) handler(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items, oldItems));
146    }
147
148    [field: NonSerialized]
149    public event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> CollectionReset;
150    protected virtual void OnCollectionReset(IEnumerable<KeyValuePair<TKey, TValue>> items, IEnumerable<KeyValuePair<TKey, TValue>> oldItems) {
151      CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> handler = CollectionReset;
152      if (handler != null) handler(this, new CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>>(items, oldItems));
153    }
154
155    [field: NonSerialized]
156    public event PropertyChangedEventHandler PropertyChanged;
157    protected virtual void OnPropertyChanged(string propertyName) {
158      PropertyChangedEventHandler handler = PropertyChanged;
159      if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
160    }
161
162    private void dict_ItemsAdded(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
163      OnItemsAdded(e.Items);
164    }
165    private void dict_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
166      OnItemsRemoved(e.Items);
167    }
168    private void dict_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
169      OnItemsReplaced(e.Items, e.OldItems);
170    }
171    private void dict_CollectionReset(object sender, CollectionItemsChangedEventArgs<KeyValuePair<TKey, TValue>> e) {
172      OnCollectionReset(e.Items, e.OldItems);
173    }
174    private void dict_PropertyChanged(object sender, PropertyChangedEventArgs e) {
175      if (e.PropertyName.Equals("Item[]") || e.PropertyName.Equals("Keys") || e.PropertyName.Equals("Values") || e.PropertyName.Equals("Count"))
176        OnPropertyChanged(e.PropertyName);
177    }
178    #endregion
179  }
180}
Note: See TracBrowser for help on using the repository browser.