Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / ConstraintEnumerator.cs / 1305376 / ConstraintEnumerator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Diagnostics; using System.Collections; using System.ComponentModel; ////// ConstraintEnumerator is an object for enumerating all constraints in a DataSet /// internal class ConstraintEnumerator { System.Collections.IEnumerator tables; System.Collections.IEnumerator constraints; Constraint currentObject; public ConstraintEnumerator(DataSet dataSet) { tables = (dataSet != null) ? dataSet.Tables.GetEnumerator() : null; currentObject = null; } public bool GetNext() { Constraint candidate; currentObject = null; while (tables != null) { if (constraints == null) { if (!tables.MoveNext()) { tables = null; return false; } constraints = ((DataTable)tables.Current).Constraints.GetEnumerator(); } if (!constraints.MoveNext()) { constraints = null; continue; } Debug.Assert(constraints.Current is Constraint, "ConstraintEnumerator, contains object which is not constraint"); candidate = (Constraint)constraints.Current; if (IsValidCandidate(candidate)) { currentObject = candidate; return true; } } return false; } public Constraint GetConstraint() { // If currentObject is null we are before first GetNext or after last GetNext--consumer is bad Debug.Assert (currentObject != null, "GetObject should never be called w/ null currentObject."); return currentObject; } protected virtual bool IsValidCandidate(Constraint constraint) { return true; } protected Constraint CurrentObject { get { return currentObject; } } } internal class ForeignKeyConstraintEnumerator : ConstraintEnumerator { public ForeignKeyConstraintEnumerator(DataSet dataSet) : base(dataSet) { } protected override bool IsValidCandidate(Constraint constraint) { return(constraint is ForeignKeyConstraint); } public ForeignKeyConstraint GetForeignKeyConstraint() { // If CurrentObject is null we are before first GetNext or after last GetNext--consumer is bad Debug.Assert (CurrentObject != null, "GetObject should never be called w/ null currentObject."); return(ForeignKeyConstraint)CurrentObject; } } internal sealed class ChildForeignKeyConstraintEnumerator : ForeignKeyConstraintEnumerator { // this is the table to do comparisons against DataTable table; public ChildForeignKeyConstraintEnumerator(DataSet dataSet, DataTable inTable) : base(dataSet) { this.table = inTable; } protected override bool IsValidCandidate(Constraint constraint) { return((constraint is ForeignKeyConstraint) && (((ForeignKeyConstraint)constraint).Table == table)); } } internal sealed class ParentForeignKeyConstraintEnumerator : ForeignKeyConstraintEnumerator { // this is the table to do comparisons against DataTable table; public ParentForeignKeyConstraintEnumerator(DataSet dataSet, DataTable inTable) : base(dataSet) { this.table = inTable; } protected override bool IsValidCandidate(Constraint constraint) { return((constraint is ForeignKeyConstraint) && (((ForeignKeyConstraint)constraint).RelatedTable == table)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Diagnostics; using System.Collections; using System.ComponentModel; ////// ConstraintEnumerator is an object for enumerating all constraints in a DataSet /// internal class ConstraintEnumerator { System.Collections.IEnumerator tables; System.Collections.IEnumerator constraints; Constraint currentObject; public ConstraintEnumerator(DataSet dataSet) { tables = (dataSet != null) ? dataSet.Tables.GetEnumerator() : null; currentObject = null; } public bool GetNext() { Constraint candidate; currentObject = null; while (tables != null) { if (constraints == null) { if (!tables.MoveNext()) { tables = null; return false; } constraints = ((DataTable)tables.Current).Constraints.GetEnumerator(); } if (!constraints.MoveNext()) { constraints = null; continue; } Debug.Assert(constraints.Current is Constraint, "ConstraintEnumerator, contains object which is not constraint"); candidate = (Constraint)constraints.Current; if (IsValidCandidate(candidate)) { currentObject = candidate; return true; } } return false; } public Constraint GetConstraint() { // If currentObject is null we are before first GetNext or after last GetNext--consumer is bad Debug.Assert (currentObject != null, "GetObject should never be called w/ null currentObject."); return currentObject; } protected virtual bool IsValidCandidate(Constraint constraint) { return true; } protected Constraint CurrentObject { get { return currentObject; } } } internal class ForeignKeyConstraintEnumerator : ConstraintEnumerator { public ForeignKeyConstraintEnumerator(DataSet dataSet) : base(dataSet) { } protected override bool IsValidCandidate(Constraint constraint) { return(constraint is ForeignKeyConstraint); } public ForeignKeyConstraint GetForeignKeyConstraint() { // If CurrentObject is null we are before first GetNext or after last GetNext--consumer is bad Debug.Assert (CurrentObject != null, "GetObject should never be called w/ null currentObject."); return(ForeignKeyConstraint)CurrentObject; } } internal sealed class ChildForeignKeyConstraintEnumerator : ForeignKeyConstraintEnumerator { // this is the table to do comparisons against DataTable table; public ChildForeignKeyConstraintEnumerator(DataSet dataSet, DataTable inTable) : base(dataSet) { this.table = inTable; } protected override bool IsValidCandidate(Constraint constraint) { return((constraint is ForeignKeyConstraint) && (((ForeignKeyConstraint)constraint).Table == table)); } } internal sealed class ParentForeignKeyConstraintEnumerator : ForeignKeyConstraintEnumerator { // this is the table to do comparisons against DataTable table; public ParentForeignKeyConstraintEnumerator(DataSet dataSet, DataTable inTable) : base(dataSet) { this.table = inTable; } protected override bool IsValidCandidate(Constraint constraint) { return((constraint is ForeignKeyConstraint) && (((ForeignKeyConstraint)constraint).RelatedTable == table)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- xmlsaver.cs
- XmlCharType.cs
- UnicastIPAddressInformationCollection.cs
- SpeechAudioFormatInfo.cs
- NumericExpr.cs
- SymbolEqualComparer.cs
- PenLineJoinValidation.cs
- BCryptSafeHandles.cs
- ErrorWebPart.cs
- MatrixAnimationBase.cs
- PathFigureCollection.cs
- SystemEvents.cs
- Configuration.cs
- RenderDataDrawingContext.cs
- Accessible.cs
- PointValueSerializer.cs
- FormattedTextSymbols.cs
- DashStyles.cs
- filewebresponse.cs
- FixedTextSelectionProcessor.cs
- DataErrorValidationRule.cs
- InputBinder.cs
- DeadLetterQueue.cs
- ConnectionStringsSection.cs
- GridProviderWrapper.cs
- AssociatedControlConverter.cs
- CodeCompiler.cs
- CLSCompliantAttribute.cs
- LiteralControl.cs
- ContentValidator.cs
- XmlAnyAttributeAttribute.cs
- SocketPermission.cs
- ConfigurationSectionHelper.cs
- TextElement.cs
- DispatcherObject.cs
- XmlTypeAttribute.cs
- UserPersonalizationStateInfo.cs
- RankException.cs
- PermissionSet.cs
- BooleanExpr.cs
- RawStylusActions.cs
- LogFlushAsyncResult.cs
- JoinElimination.cs
- HostProtectionPermission.cs
- HttpInputStream.cs
- ComponentSerializationService.cs
- TriState.cs
- DataServiceConfiguration.cs
- AddInDeploymentState.cs
- NativeMethods.cs
- Size3DConverter.cs
- RectConverter.cs
- IdentitySection.cs
- MatrixValueSerializer.cs
- ProgramPublisher.cs
- ValidationPropertyAttribute.cs
- ListControlStringCollectionEditor.cs
- ShaderEffect.cs
- SingleStorage.cs
- OleDbWrapper.cs
- DateTimeFormat.cs
- OracleConnectionStringBuilder.cs
- PropertyOverridesDialog.cs
- Drawing.cs
- FeatureSupport.cs
- CancellationTokenRegistration.cs
- GeneralTransformGroup.cs
- ProcessProtocolHandler.cs
- DefaultTextStore.cs
- TaskFileService.cs
- DataGridViewCellEventArgs.cs
- SessionViewState.cs
- CommandHelper.cs
- XhtmlBasicTextBoxAdapter.cs
- ManagementInstaller.cs
- Point4D.cs
- Boolean.cs
- StylusSystemGestureEventArgs.cs
- SocketAddress.cs
- WaitHandleCannotBeOpenedException.cs
- ContainerControl.cs
- MD5CryptoServiceProvider.cs
- DataTableNewRowEvent.cs
- XmlSchemaComplexContentExtension.cs
- TargetControlTypeAttribute.cs
- Catch.cs
- ListViewInsertionMark.cs
- Table.cs
- ObjectDataSourceDisposingEventArgs.cs
- DocumentCollection.cs
- XmlCharCheckingWriter.cs
- XPathNodeList.cs
- BaseParser.cs
- FilterException.cs
- ThicknessAnimationBase.cs
- WebResourceAttribute.cs
- FontStyleConverter.cs
- MouseBinding.cs
- WorkflowLayouts.cs
- StaticSiteMapProvider.cs