Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Collections/3.3/ReadOnlyObservableArray.cs @ 3190

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

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

File size: 5.5 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 ReadOnlyObservableArray<T> : IObservableArray<T> {
32    [Storable]
33    private IObservableArray<T> array;
34
35    #region Properties
36    public int Length {
37      get { return array.Length; }
38    }
39    int ICollection<T>.Count {
40      get { return array.Count; }
41    }
42    bool ICollection<T>.IsReadOnly {
43      get { return true; }
44    }
45
46    public T this[int index] {
47      get { return array[index]; }
48    }
49    T IList<T>.this[int index] {
50      get { return array[index]; }
51      set { throw new NotSupportedException(); }
52    }
53    #endregion
54
55    #region Constructors
56    protected ReadOnlyObservableArray() { }
57    public ReadOnlyObservableArray(IObservableArray<T> array) {
58      if (array == null) throw new ArgumentNullException();
59      this.array = array;
60      RegisterEvents();
61    }
62    #endregion
63
64    #region Access
65    public bool Contains(T item) {
66      return array.Contains(item);
67    }
68
69    public int IndexOf(T item) {
70      return array.IndexOf(item);
71    }
72    #endregion
73
74    #region Manipulation
75    void ICollection<T>.Add(T item) {
76      throw new NotSupportedException();
77    }
78
79    void IList<T>.Insert(int index, T item) {
80      throw new NotSupportedException();
81    }
82
83    bool ICollection<T>.Remove(T item) {
84      throw new NotSupportedException();
85    }
86    void IList<T>.RemoveAt(int index) {
87      throw new NotSupportedException();
88    }
89
90    void ICollection<T>.Clear() {
91      throw new NotSupportedException();
92    }
93    #endregion
94
95    #region Conversion
96    public void CopyTo(T[] array, int arrayIndex) {
97      this.array.CopyTo(array, arrayIndex);
98    }
99    #endregion
100
101    #region Enumeration
102    public IEnumerator<T> GetEnumerator() {
103      return array.GetEnumerator();
104    }
105    IEnumerator IEnumerable.GetEnumerator() {
106      return array.GetEnumerator();
107    }
108    #endregion
109
110    #region Events
111    [StorableHook(HookType.AfterDeserialization)]
112    protected void RegisterEvents() {
113      array.ItemsReplaced += new CollectionItemsChangedEventHandler<IndexedItem<T>>(array_ItemsReplaced);
114      array.ItemsMoved += new CollectionItemsChangedEventHandler<IndexedItem<T>>(array_ItemsMoved);
115      array.CollectionReset += new CollectionItemsChangedEventHandler<IndexedItem<T>>(array_CollectionReset);
116      array.PropertyChanged += new PropertyChangedEventHandler(array_PropertyChanged);
117    }
118
119    [field: NonSerialized]
120    public event CollectionItemsChangedEventHandler<IndexedItem<T>> ItemsReplaced;
121    protected virtual void OnItemsReplaced(IEnumerable<IndexedItem<T>> items, IEnumerable<IndexedItem<T>> oldItems) {
122      if (ItemsReplaced != null)
123        ItemsReplaced(this, new CollectionItemsChangedEventArgs<IndexedItem<T>>(items, oldItems));
124    }
125
126    [field: NonSerialized]
127    public event CollectionItemsChangedEventHandler<IndexedItem<T>> ItemsMoved;
128    protected virtual void OnItemsMoved(IEnumerable<IndexedItem<T>> items, IEnumerable<IndexedItem<T>> oldItems) {
129      if (ItemsMoved != null)
130        ItemsMoved(this, new CollectionItemsChangedEventArgs<IndexedItem<T>>(items, oldItems));
131    }
132
133    [field: NonSerialized]
134    public event CollectionItemsChangedEventHandler<IndexedItem<T>> CollectionReset;
135    protected virtual void OnCollectionReset(IEnumerable<IndexedItem<T>> items, IEnumerable<IndexedItem<T>> oldItems) {
136      if (CollectionReset != null)
137        CollectionReset(this, new CollectionItemsChangedEventArgs<IndexedItem<T>>(items, oldItems));
138    }
139
140    [field: NonSerialized]
141    public event PropertyChangedEventHandler PropertyChanged;
142    protected virtual void OnPropertyChanged(string propertyName) {
143      if (PropertyChanged != null)
144        PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
145    }
146
147    private void array_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
148      OnItemsReplaced(e.Items, e.OldItems);
149    }
150    private void array_ItemsMoved(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
151      OnItemsMoved(e.Items, e.OldItems);
152    }
153    private void array_CollectionReset(object sender, CollectionItemsChangedEventArgs<IndexedItem<T>> e) {
154      OnCollectionReset(e.Items, e.OldItems);
155    }
156    private void array_PropertyChanged(object sender, PropertyChangedEventArgs e) {
157      if (e.PropertyName.Equals("Item[]") || e.PropertyName.Equals("Length"))
158        OnPropertyChanged(e.PropertyName);
159    }
160    #endregion
161  }
162}
Note: See TracBrowser for help on using the repository browser.