Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DataTableMappingCollection.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 614b979a1b97515016bf054dc50e3f18fab2a454 (plain)
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
219
220
221
222
223
224
225
//
// System.Data.Common.DataTableMappingCollection.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//   Tim Coleman (tim@timcoleman.com)
//
// (C) Ximian, Inc
// Copyright (C) 2002 Tim Coleman
//

using System;
using System.Collections;

namespace System.Data.Common
{
	/// <summary>
	/// A collection of DataTableMapping objects. This class cannot be inherited.
	/// </summary>
	public sealed class DataTableMappingCollection : MarshalByRefObject, ITableMappingCollection, IList, ICollection, IEnumerable
	{
		#region Fields

		ArrayList mappings;
		Hashtable sourceTables;
		Hashtable dataSetTables;

		#endregion

		#region Constructors 

		public DataTableMappingCollection() 
		{
			mappings = new ArrayList ();
			sourceTables = new Hashtable ();
			dataSetTables = new Hashtable ();
		}

		#endregion

		#region Properties

		public int Count 
		{
			get { return mappings.Count; }
		}

		public DataTableMapping this[int index] {
			get { return (DataTableMapping)(mappings[index]); }
			set { 
				DataTableMapping mapping = (DataTableMapping)(mappings[index]);
				sourceTables[mapping.SourceTable] = value;
				dataSetTables[mapping.DataSetTable] = value;
				mappings[index] = value; 
			}
		}

		[MonoTODO]
		public DataTableMapping this[string sourceTable] {
			get { return (DataTableMapping)(sourceTables[sourceTable]); }
			set { this[mappings.IndexOf(sourceTables[sourceTable])] = value; }
		}

	
		object IList.this[int index] {
			get { return (object)(this[index]); }
			set { 
				if (!(value is DataTableMapping))
					throw new ArgumentException (); 
				this[index] = (DataTableMapping)value;
			 } 
		}

		bool IList.IsReadOnly {
			get { return false; }
		}

		bool IList.IsFixedSize {
			get { return false; }
		}

		object ICollection.SyncRoot {
			get { return mappings.SyncRoot; }
		}

		bool ICollection.IsSynchronized {
			get { return mappings.IsSynchronized; }
		}

		object ITableMappingCollection.this[string sourceTable] {
			get { return this[sourceTable]; }
			set { 
				if (!(value is DataTableMapping))
					throw new ArgumentException ();
				this[sourceTable] = (DataTableMapping)(value);
			}
		}

		#endregion

		#region Methods

		public int Add (object value) 
		{
			if (!(value is System.Data.Common.DataTableMapping))
				throw new SystemException ("The object passed in was not a DataTableMapping object.");

			sourceTables[((DataTableMapping)value).SourceTable] = value;	
			dataSetTables[((DataTableMapping)value).DataSetTable] = value;	
			return mappings.Add (value);
		}

		public DataTableMapping Add (string sourceTable, string dataSetTable) 
		{
			DataTableMapping mapping = new DataTableMapping (sourceTable, dataSetTable);
			Add (mapping);
			return mapping;
		}

		public void AddRange(DataTableMapping[] values) 
		{
			foreach (DataTableMapping dataTableMapping in values)
				this.Add (dataTableMapping);
		}

		public void Clear() 
		{
			sourceTables.Clear ();
			dataSetTables.Clear ();
			mappings.Clear ();
		}

		public bool Contains (object value) 
		{
			return mappings.Contains (value);
		}

		public bool Contains (string value) 
		{
			return sourceTables.Contains (value);
		}

		[MonoTODO]
		public void CopyTo(Array array, int index) 
		{
			throw new NotImplementedException ();
		}

		public DataTableMapping GetByDataSetTable (string dataSetTable) 
		{
			return (DataTableMapping)(dataSetTables[dataSetTable]);
		}

		public static DataTableMapping GetTableMappingBySchemaAction (DataTableMappingCollection tableMappings, string sourceTable, string dataSetTable, MissingMappingAction mappingAction) 
		{
			if (tableMappings.Contains (sourceTable))
				return tableMappings[sourceTable];
			if (mappingAction == MissingMappingAction.Error)
				throw new InvalidOperationException ();
			if (mappingAction == MissingMappingAction.Ignore)
				return null;
			return new DataTableMapping (sourceTable, dataSetTable);
		}

		public IEnumerator GetEnumerator ()
		{
			return mappings.GetEnumerator ();
		}

		public int IndexOf (object value) 
		{
			return mappings.IndexOf (value);
		}

		public int IndexOf (string sourceTable) 
		{
			return IndexOf (sourceTables[sourceTable]);
		}

		public int IndexOfDataSetTable (string dataSetTable) 
		{
			return IndexOf ((DataTableMapping)(dataSetTables[dataSetTable]));
		}

		[MonoTODO]
		public void Insert (int index, object value) 
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		ITableMapping ITableMappingCollection.Add (string sourceTableName, string dataSetTableName)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		ITableMapping ITableMappingCollection.GetByDataSetTable (string dataSetTableName)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void Remove (object value) 
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void RemoveAt (int index) 
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void RemoveAt (string index) 
		{
			throw new NotImplementedException ();
		}
		


		#endregion
	}
}