Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / DescendantOverDescendantQuery.cs / 1305376 / DescendantOverDescendantQuery.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; // DescendantOverDescendantQuery: for each input it looks for the topmost descendents that matches to ns:name // This is posible when query which has this query as its input (child query) is descendent as well. // Work of this query doesn't depend on DOD of its input. // It doesn't garate DOD of the output even when input is DOD. internal sealed class DescendantOverDescendantQuery : DescendantBaseQuery { private int level = 0; public DescendantOverDescendantQuery(Query qyParent, bool matchSelf, string name, string prefix, XPathNodeType typeTest, bool abbrAxis) : base(qyParent, name, prefix, typeTest, matchSelf, abbrAxis) {} private DescendantOverDescendantQuery(DescendantOverDescendantQuery other) : base(other) { this.level = other.level; } public override void Reset() { level = 0; base.Reset(); } public override XPathNavigator Advance() { while (true) { if (level == 0) { currentNode = qyInput.Advance(); position = 0; if (currentNode == null) { return null; } if (matchSelf && matches(currentNode)) { position = 1; return currentNode; } currentNode = currentNode.Clone(); if (! MoveToFirstChild()) { continue; } } else { if (!MoveUpUntillNext()) { continue; } } do { if (matches(currentNode)) { position++; return currentNode; } } while (MoveToFirstChild()); } } private bool MoveToFirstChild() { if (currentNode.MoveToFirstChild()) { level++; return true; } return false; } private bool MoveUpUntillNext() { // move up untill we can move next while (! currentNode.MoveToNext()) { -- level; if (level == 0) { return false; } bool result = currentNode.MoveToParent(); Debug.Assert(result, "Algorithm error, We always should be able to move up if level > 0"); } return true; } public override XPathNodeIterator Clone() { return new DescendantOverDescendantQuery(this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; // DescendantOverDescendantQuery: for each input it looks for the topmost descendents that matches to ns:name // This is posible when query which has this query as its input (child query) is descendent as well. // Work of this query doesn't depend on DOD of its input. // It doesn't garate DOD of the output even when input is DOD. internal sealed class DescendantOverDescendantQuery : DescendantBaseQuery { private int level = 0; public DescendantOverDescendantQuery(Query qyParent, bool matchSelf, string name, string prefix, XPathNodeType typeTest, bool abbrAxis) : base(qyParent, name, prefix, typeTest, matchSelf, abbrAxis) {} private DescendantOverDescendantQuery(DescendantOverDescendantQuery other) : base(other) { this.level = other.level; } public override void Reset() { level = 0; base.Reset(); } public override XPathNavigator Advance() { while (true) { if (level == 0) { currentNode = qyInput.Advance(); position = 0; if (currentNode == null) { return null; } if (matchSelf && matches(currentNode)) { position = 1; return currentNode; } currentNode = currentNode.Clone(); if (! MoveToFirstChild()) { continue; } } else { if (!MoveUpUntillNext()) { continue; } } do { if (matches(currentNode)) { position++; return currentNode; } } while (MoveToFirstChild()); } } private bool MoveToFirstChild() { if (currentNode.MoveToFirstChild()) { level++; return true; } return false; } private bool MoveUpUntillNext() { // move up untill we can move next while (! currentNode.MoveToNext()) { -- level; if (level == 0) { return false; } bool result = currentNode.MoveToParent(); Debug.Assert(result, "Algorithm error, We always should be able to move up if level > 0"); } return true; } public override XPathNodeIterator Clone() { return new DescendantOverDescendantQuery(this); } } } // 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
- XPathNavigator.cs
- PersistenceMetadataNamespace.cs
- AddInStore.cs
- SrgsNameValueTag.cs
- TransportationConfigurationTypeInstallComponent.cs
- DataGridViewAccessibleObject.cs
- CuspData.cs
- BaseCollection.cs
- HtmlAnchor.cs
- XmlIlVisitor.cs
- Int16.cs
- mda.cs
- JapaneseCalendar.cs
- VariableQuery.cs
- ConsoleTraceListener.cs
- ShaderEffect.cs
- OperationInvokerBehavior.cs
- ConditionedDesigner.cs
- NegatedCellConstant.cs
- ImageBrush.cs
- DefaultParameterValueAttribute.cs
- OrderByQueryOptionExpression.cs
- XPathChildIterator.cs
- EncoderParameters.cs
- XmlSerializableServices.cs
- IImplicitResourceProvider.cs
- NameTable.cs
- TdsParserStateObject.cs
- EmptyImpersonationContext.cs
- Crc32Helper.cs
- Simplifier.cs
- FileDialog_Vista_Interop.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- Underline.cs
- ChangeToolStripParentVerb.cs
- PersonalizationProviderCollection.cs
- ToolStripContainerActionList.cs
- SqlMetaData.cs
- X509CertificateStore.cs
- StopStoryboard.cs
- WindowsAuthenticationModule.cs
- ObjectSet.cs
- EncryptedPackageFilter.cs
- ObjectStateEntry.cs
- ImmutableCollection.cs
- DriveInfo.cs
- TaskFileService.cs
- FilePrompt.cs
- Rotation3DAnimationBase.cs
- NumberFunctions.cs
- LiteralText.cs
- _SingleItemRequestCache.cs
- CaseStatementProjectedSlot.cs
- HttpDebugHandler.cs
- DataConnectionHelper.cs
- ModelItemKeyValuePair.cs
- WebWorkflowRole.cs
- InternalResources.cs
- MetadataProperty.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- MatrixTransform.cs
- TypeDescriptionProviderAttribute.cs
- BooleanAnimationUsingKeyFrames.cs
- InvokeCompletedEventArgs.cs
- CodeDOMUtility.cs
- OleDbParameter.cs
- NumberEdit.cs
- VisualBasicExpressionConverter.cs
- StylusShape.cs
- ProviderException.cs
- ResourceDescriptionAttribute.cs
- ISAPIApplicationHost.cs
- ListCardsInFileRequest.cs
- LongValidator.cs
- CustomError.cs
- AmbiguousMatchException.cs
- HwndProxyElementProvider.cs
- VectorKeyFrameCollection.cs
- ToolStripArrowRenderEventArgs.cs
- DataGridItemCollection.cs
- COM2Enum.cs
- PrePrepareMethodAttribute.cs
- LayoutDump.cs
- PrintingPermission.cs
- FixedFlowMap.cs
- SQLDoubleStorage.cs
- XmlHierarchicalDataSourceView.cs
- EntityCollectionChangedParams.cs
- CustomAttribute.cs
- SafeProcessHandle.cs
- CodeSnippetStatement.cs
- ItemsChangedEventArgs.cs
- XmlSchemaObject.cs
- WizardForm.cs
- FileDialogPermission.cs
- DesigntimeLicenseContext.cs
- Calendar.cs
- DataControlFieldCell.cs
- LineServices.cs
- ComAwareEventInfo.cs