| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- //
- // System.Data.Common.DataTableMappingCollection.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // (C) Ximian, Inc
- // Copyright (C) Tim Coleman, 2002-2003
- //
- using System;
- using System.Collections;
- using System.ComponentModel;
- namespace System.Data.Common {
- [ListBindable (false)]
- 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 // Constructors
- #region Properties
- [DataSysDescription ("The number of items in the collection")]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public int Count {
- get { return mappings.Count; }
- }
- [Browsable (false)]
- [DataSysDescription ("The specified DataTableMapping object")]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- 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;
- }
- }
- [Browsable (false)]
- [DataSysDescription ("The specified DataTableMapping object")]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- 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 ICollection.IsSynchronized {
- get { return mappings.IsSynchronized; }
- }
- object ICollection.SyncRoot {
- get { return mappings.SyncRoot; }
- }
- bool IList.IsFixedSize {
- get { return false; }
- }
- bool IList.IsReadOnly {
- get { return false; }
- }
- object ITableMappingCollection.this [string sourceTable] {
- get { return this [sourceTable]; }
- set {
- if (!(value is DataTableMapping))
- throw new ArgumentException ();
- this [sourceTable] = (DataTableMapping) value;
- }
- }
- #endregion // Properties
- #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;
- }
- #if NET_1_2
- [MonoTODO]
- public void AddRange (Array values)
- {
- throw new NotImplementedException ();
- }
- #endif
- 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);
- }
- public void CopyTo (Array array, int index)
- {
- mappings.CopyTo (array, index);
- }
- public DataTableMapping GetByDataSetTable (string dataSetTable)
- {
- return (DataTableMapping)(dataSetTables[dataSetTable]);
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- 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]));
- }
- public void Insert (int index, object value)
- {
- mappings.Insert (index, value);
- }
- ITableMapping ITableMappingCollection.Add (string sourceTableName, string dataSetTableName)
- {
- ITableMapping tableMapping = new DataTableMapping (sourceTableName, dataSetTableName);
- Add (tableMapping);
- return tableMapping;
- }
- ITableMapping ITableMappingCollection.GetByDataSetTable (string dataSetTableName)
- {
- return this [mappings.IndexOf (dataSetTables [dataSetTableName])];
- }
- public void Remove (object value)
- {
- mappings.Remove ((DataTableMapping) value);
- }
- public void RemoveAt (int index)
- {
- mappings.RemoveAt (index);
- }
- public void RemoveAt (string sourceTable)
- {
- RemoveAt (mappings.IndexOf (sourceTables[sourceTable]));
- }
- #endregion // Methods
- }
- }
|