-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFeatureTableCollection.cs
More file actions
218 lines (175 loc) · 6.42 KB
/
FeatureTableCollection.cs
File metadata and controls
218 lines (175 loc) · 6.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Portions copyright 2005 - 2006: Morten Nielsen (www.iter.dk)
// Portions copyright 2006 - 2008: Rory Plaire (codekaizen@gmail.com)
//
// This file is part of SharpMap.
// SharpMap is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// SharpMap is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public License
// along with SharpMap; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using SharpMap.Data;
namespace SharpMap.Data
{
/// <summary>
/// Represents the collection of tables for the FeatureDataSet.
/// </summary>
[Serializable]
public class FeatureTableCollection : IList<FeatureDataTable>
{
private readonly DataTableCollection _tables;
public FeatureTableCollection(DataTableCollection tables)
{
_tables = tables;
_tables.CollectionChanged += tablesChanged;
_tables.CollectionChanging += tablesChanging;
}
public event CollectionChangeEventHandler CollectionChanged;
public event CollectionChangeEventHandler CollectionChanging;
public FeatureDataTable this[String name]
{
get { return _tables[name] as FeatureDataTable; }
}
public FeatureDataTable this[String name, String tableNamespace]
{
get { return _tables[name, tableNamespace] as FeatureDataTable; }
}
#region IList<FeatureDataTable> Members
public Int32 IndexOf(FeatureDataTable item)
{
return _tables.IndexOf(item);
}
public void RemoveAt(Int32 index)
{
_tables.RemoveAt(index);
}
public FeatureDataTable this[Int32 index]
{
get { return _tables[index] as FeatureDataTable; }
}
#endregion
#region ICollection<FeatureDataTable> Members
public void Add(FeatureDataTable item)
{
_tables.Add(item);
}
public void Clear()
{
_tables.Clear();
}
public Boolean Contains(FeatureDataTable item)
{
if (item == null) throw new ArgumentNullException("item");
return _tables.Contains(item.TableName);
}
public Boolean Contains(String name)
{
return _tables.Contains(name);
}
public Boolean Contains(String name, String tableNamespace)
{
return _tables.Contains(name, tableNamespace);
}
public void CopyTo(FeatureDataTable[] array, Int32 arrayIndex)
{
_tables.CopyTo(array, arrayIndex);
}
public Int32 Count
{
get { return _tables.Count; }
}
public Boolean IsReadOnly
{
get { return _tables.IsReadOnly; }
}
public Boolean Remove(FeatureDataTable item)
{
Boolean contained = _tables.Contains(item.TableName);
_tables.Remove(item);
return contained;
}
public void Remove(String name)
{
_tables.Remove(name);
}
public void Remove(String name, String tableNamespace)
{
_tables.Remove(name, tableNamespace);
}
#endregion
#region IEnumerable<FeatureDataTable> Members
public IEnumerator<FeatureDataTable> GetEnumerator()
{
foreach (DataTable table in _tables)
{
yield return table as FeatureDataTable;
}
}
#endregion
#region IList<FeatureDataTable> Members
void IList<FeatureDataTable>.Insert(Int32 index, FeatureDataTable item)
{
throw new NotSupportedException();
}
FeatureDataTable IList<FeatureDataTable>.this[Int32 index]
{
get { return this[index]; }
set { throw new NotSupportedException(); }
}
#endregion
#region IEnumerable Members
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
#endregion
#region Private helper methods
private void OnTablesChanged(CollectionChangeAction collectionChangeAction, Object collection)
{
CollectionChangeEventHandler e = CollectionChanged;
fireEvent(collectionChangeAction, collection, e);
}
private void OnTablesChanging(CollectionChangeAction collectionChangeAction, Object collection)
{
CollectionChangeEventHandler e = CollectionChanging;
fireEvent(collectionChangeAction, collection, e);
}
private void fireEvent(CollectionChangeAction collectionChangeAction, Object collection,
CollectionChangeEventHandler e)
{
if (e != null)
{
CollectionChangeEventArgs args = new CollectionChangeEventArgs(collectionChangeAction, collection);
e(this, args);
}
}
private void tablesChanged(Object sender, CollectionChangeEventArgs e)
{
OnTablesChanged(e.Action, e.Element);
}
private void tablesChanging(Object sender, CollectionChangeEventArgs e)
{
if (e.Action == CollectionChangeAction.Add)
{
if (!(e.Element is FeatureDataTable))
{
throw new InvalidOperationException("The table being added to the FeatureDataSet " +
"must be of type FeatureDataTable.");
}
}
OnTablesChanging(e.Action, e.Element);
}
#endregion
}
}