// // System.Data.DataRowCollection.cs // // Author: // Daniel Morgan // Tim Coleman // // (C) Ximian, Inc 2002 // (C) Copyright 2002 Tim Coleman // (C) Copyright 2002 Daniel Morgan // using System; using System.Collections; using System.ComponentModel; namespace System.Data { /// /// Collection of DataRows in a DataTable /// [Serializable] public class DataRowCollection : InternalDataCollectionBase { private DataTable table; /// /// Internal constructor used to build a DataRowCollection. /// internal DataRowCollection (DataTable table) : base () { this.table = table; } /// /// Gets the row at the specified index. /// public DataRow this[int index] { get { if (index >= Count) throw new IndexOutOfRangeException ("There is no row at position " + index + "."); return (DataRow) list[index]; } } /// /// This member overrides InternalDataCollectionBase.List /// protected override ArrayList List { get { return list; } } /// /// Adds the specified DataRow to the DataRowCollection object. /// public void Add (DataRow row) { //TODO: AutoIncrement //TODO: validation if (row == null) throw new ArgumentNullException("row", "'row' argument cannot be null."); if (list.IndexOf(row) != -1) throw new ArgumentException ("This row already belongs to this table."); foreach (DataColumn Col in row.Table.Columns) { if (Col.AutoIncrement) { row [Col] = Col.AutoIncrementValue(); } } list.Add (row); row.AttachRow (); row.Table.ChangedDataRow (row, DataRowAction.Add); } /// /// Creates a row using specified values and adds it to the DataRowCollection. /// public virtual DataRow Add (object[] values) { DataRow row = table.NewRow (); row.ItemArray = values; Add (row); return row; } /// /// Clears the collection of all rows. /// public void Clear () { list.Clear (); } /// /// Gets a value indicating whether the primary key of any row in the collection contains /// the specified value. /// public bool Contains (object key) { return Find (key) != null; } /// /// Gets a value indicating whether the primary key column(s) of any row in the /// collection contains the values specified in the object array. /// public bool Contains (object[] keys) { if (table.PrimaryKey.Length != keys.Length) throw new ArgumentException ("Expecting " + table.PrimaryKey.Length + " value(s) for the key " + "being indexed, but received " + keys.Length + " value(s)."); return Find (keys) != null; } /// /// Gets the row specified by the primary key value. /// [MonoTODO] public DataRow Find (object key) { if (table.PrimaryKey.Length == 0) throw new MissingPrimaryKeyException ("Table doesn't have a primary key."); if (table.PrimaryKey.Length > 1) throw new ArgumentException ("Expecting " + table.PrimaryKey.Length + " value(s) for the key being indexed, but received 1 value(s)."); string primColumnName = table.PrimaryKey [0].ColumnName; Type coltype = null; object newKey = null; foreach (DataRow row in this) { object primValue = row [primColumnName]; if (key == null) { if (primValue == null) return row; else continue; } newKey = Convert.ChangeType (key, Type.GetTypeCode(primValue.GetType ())); if (primValue.Equals (newKey)) return row; } // FIXME: is the correct value null? return null; } /// /// Gets the row containing the specified primary key values. /// [MonoTODO] public DataRow Find (object[] keys) { if (table.PrimaryKey.Length == 0) throw new MissingPrimaryKeyException ("Table doesn't have a primary key."); string [] primColumnNames = new string [table.PrimaryKey.Length]; for (int i = 0; i < primColumnNames.Length; i++) primColumnNames [i] = table.PrimaryKey [i].ColumnName; Type coltype = null; object newKey = null; foreach (DataRow row in this) { bool eq = true; for (int i = 0; i < keys.Length; i++) { object primValue = row [primColumnNames [i]]; object keyValue = keys [i]; if (keyValue == null) { if (primValue == null) return row; else continue; } newKey = Convert.ChangeType (keyValue, Type.GetTypeCode(primValue.GetType ())); if (!primValue.Equals (newKey)) { eq = false; break; } } if (eq) return row; } // FIXME: is the correct value null? return null; } /// /// Inserts a new row into the collection at the specified location. /// public void InsertAt (DataRow row, int pos) { if (pos < 0) throw new IndexOutOfRangeException ("The row insert position " + pos + " is invalid."); if (pos >= list.Count) list.Add (row); else list.Insert (pos, row); } /// /// Removes the specified DataRow from the collection. /// public void Remove (DataRow row) { // FIXME: This is the way the MS.NET handles this kind of situation. Could be better, but what can you do. if (row == null || list.IndexOf (row) == -1) throw new IndexOutOfRangeException ("The given datarow is not in the current DataRowCollection."); list.Remove (row); row.DetachRow (); table.DeletedDataRow (row, DataRowAction.Delete); } /// /// Removes the row at the specified index from the collection. /// public void RemoveAt (int index) { if (index < 0 || index >= list.Count) throw new IndexOutOfRangeException ("There is no row at position " + index + "."); DataRow row = (DataRow)list [index]; list.RemoveAt (index); table.DeletedDataRow (row, DataRowAction.Delete); } /// ///Internal method used to validate a given DataRow with respect ///to the DataRowCollection /// [MonoTODO] internal void ValidateDataRowInternal(DataRow row) { //FIXME: this validates constraints in the order they appear //in the collection. Most probably we need to do it in a //specific order like unique/primary keys first, then Foreignkeys, etc foreach(Constraint constraint in table.Constraints) { constraint.AssertConstraint(row); } } } }