Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / XPath / Internal / precedingquery.cs / 1 / precedingquery.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; using System.Collections.Generic; using StackNav = ClonableStack; // Algorithm: // Input assumption: qyInput is in DocOrder. // Preceding of a sequence of nodes will be preceding of last node in DocOrder in that sequence. // Because qyInput is in DO last input is last node in DO. -- "last" // If last node is attribute or namespace move last to it element. // Push this last node and all its ancestors into the ancestorStk. The root node will be the top-most element on the stack. // Create descendent iterator from the root. -- "workIterator" // Advancing workIterator we meet all nodes from the ancestorStk in stack order. Nodes in ancestorStk do no belong to the // the 'preceding' axis and must be ignored. // Last node in ancestorStk is a centinel node; when we pop it from ancestorStk, we should stop iterations. internal sealed class PrecedingQuery : BaseAxisQuery { private XPathNodeIterator workIterator; private StackNav ancestorStk; public PrecedingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) { ancestorStk = new StackNav(); } private PrecedingQuery(PrecedingQuery other) : base(other) { this.workIterator = Clone(other.workIterator); this.ancestorStk = other.ancestorStk.Clone(); } public override void Reset() { workIterator = null; ancestorStk.Clear(); base.Reset(); } public override XPathNavigator Advance() { if (workIterator == null) { XPathNavigator last; { XPathNavigator input = qyInput.Advance(); if (input == null) { return null; } last = input.Clone(); do { last.MoveTo(input); } while ((input = qyInput.Advance()) != null); if (last.NodeType == XPathNodeType.Attribute || last.NodeType == XPathNodeType.Namespace) { last.MoveToParent(); } } // Fill ancestorStk : do { ancestorStk.Push(last.Clone()); } while (last.MoveToParent()); // Create workIterator : // last.MoveToRoot(); We are on root already workIterator = last.SelectDescendants(XPathNodeType.All, true); } while (workIterator.MoveNext()) { currentNode = workIterator.Current; if (currentNode.IsSamePosition(ancestorStk.Peek())) { ancestorStk.Pop(); if (ancestorStk.Count == 0) { currentNode = null; workIterator = null; Debug.Assert(qyInput.Advance() == null, "we read all qyInput.Advance() already"); return null; } continue; } if (matches(currentNode)) { position++; return currentNode; } } Debug.Fail("Algorithm error: we missed the centinel node"); return null; } public override XPathNodeIterator Clone() { return new PrecedingQuery(this); } public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } } } } // 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; using System.Collections.Generic; using StackNav = ClonableStack; // Algorithm: // Input assumption: qyInput is in DocOrder. // Preceding of a sequence of nodes will be preceding of last node in DocOrder in that sequence. // Because qyInput is in DO last input is last node in DO. -- "last" // If last node is attribute or namespace move last to it element. // Push this last node and all its ancestors into the ancestorStk. The root node will be the top-most element on the stack. // Create descendent iterator from the root. -- "workIterator" // Advancing workIterator we meet all nodes from the ancestorStk in stack order. Nodes in ancestorStk do no belong to the // the 'preceding' axis and must be ignored. // Last node in ancestorStk is a centinel node; when we pop it from ancestorStk, we should stop iterations. internal sealed class PrecedingQuery : BaseAxisQuery { private XPathNodeIterator workIterator; private StackNav ancestorStk; public PrecedingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base(qyInput, name, prefix, typeTest) { ancestorStk = new StackNav(); } private PrecedingQuery(PrecedingQuery other) : base(other) { this.workIterator = Clone(other.workIterator); this.ancestorStk = other.ancestorStk.Clone(); } public override void Reset() { workIterator = null; ancestorStk.Clear(); base.Reset(); } public override XPathNavigator Advance() { if (workIterator == null) { XPathNavigator last; { XPathNavigator input = qyInput.Advance(); if (input == null) { return null; } last = input.Clone(); do { last.MoveTo(input); } while ((input = qyInput.Advance()) != null); if (last.NodeType == XPathNodeType.Attribute || last.NodeType == XPathNodeType.Namespace) { last.MoveToParent(); } } // Fill ancestorStk : do { ancestorStk.Push(last.Clone()); } while (last.MoveToParent()); // Create workIterator : // last.MoveToRoot(); We are on root already workIterator = last.SelectDescendants(XPathNodeType.All, true); } while (workIterator.MoveNext()) { currentNode = workIterator.Current; if (currentNode.IsSamePosition(ancestorStk.Peek())) { ancestorStk.Pop(); if (ancestorStk.Count == 0) { currentNode = null; workIterator = null; Debug.Assert(qyInput.Advance() == null, "we read all qyInput.Advance() already"); return null; } continue; } if (matches(currentNode)) { position++; return currentNode; } } Debug.Fail("Algorithm error: we missed the centinel node"); return null; } public override XPathNodeIterator Clone() { return new PrecedingQuery(this); } public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } } } } // 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
- ContextStack.cs
- EdmType.cs
- NameObjectCollectionBase.cs
- RtfToken.cs
- DataSourceXmlSerializer.cs
- ItemCheckedEvent.cs
- DataTemplateSelector.cs
- AlternateView.cs
- TextBox.cs
- List.cs
- SrgsItemList.cs
- CharUnicodeInfo.cs
- SrgsNameValueTag.cs
- Wildcard.cs
- ClonableStack.cs
- Convert.cs
- PeerSecurityManager.cs
- RegexGroupCollection.cs
- PathGradientBrush.cs
- DataSourceGroupCollection.cs
- PreloadedPackages.cs
- TextDecorationUnitValidation.cs
- EngineSiteSapi.cs
- DecimalAnimationUsingKeyFrames.cs
- Int16Converter.cs
- FontEmbeddingManager.cs
- LogFlushAsyncResult.cs
- Camera.cs
- XmlSchemaSet.cs
- ArrangedElementCollection.cs
- ChangePassword.cs
- DataContractSerializerElement.cs
- AttachInfo.cs
- RegularExpressionValidator.cs
- NamespaceEmitter.cs
- TaskDesigner.cs
- DrawingAttributes.cs
- WebZone.cs
- CounterSample.cs
- XComponentModel.cs
- AnonymousIdentificationSection.cs
- WebOperationContext.cs
- HitTestDrawingContextWalker.cs
- ToolStripPanelRenderEventArgs.cs
- PointLightBase.cs
- TextElement.cs
- RawStylusSystemGestureInputReport.cs
- InputGestureCollection.cs
- TextCompositionManager.cs
- DescendantQuery.cs
- BinaryEditor.cs
- ListenerAdaptersInstallComponent.cs
- MouseGestureValueSerializer.cs
- DocumentOrderQuery.cs
- KnownTypesProvider.cs
- XmlSiteMapProvider.cs
- FilteredReadOnlyMetadataCollection.cs
- ToolStripButton.cs
- TableLayoutSettings.cs
- BindToObject.cs
- SmtpNegotiateAuthenticationModule.cs
- UpdatePanel.cs
- XmlSchemaCollection.cs
- SqlUnionizer.cs
- XmlHierarchicalEnumerable.cs
- ProcessingInstructionAction.cs
- StateDesigner.cs
- TextInfo.cs
- X509Certificate.cs
- SQLBinary.cs
- WsdlBuildProvider.cs
- StreamSecurityUpgradeAcceptorAsyncResult.cs
- TextElementEnumerator.cs
- UnsafeNativeMethods.cs
- Application.cs
- MarkupCompilePass2.cs
- DurableInstance.cs
- WebPartTransformer.cs
- XPathNodeList.cs
- Token.cs
- ProfessionalColors.cs
- StyleConverter.cs
- Error.cs
- ContextDataSourceContextData.cs
- GestureRecognitionResult.cs
- CustomValidator.cs
- TextDocumentView.cs
- BindingSource.cs
- SingleAnimationUsingKeyFrames.cs
- MetabaseReader.cs
- OpenTypeCommon.cs
- StyleHelper.cs
- PropertyValueUIItem.cs
- DataGridViewImageColumn.cs
- DataGridViewAdvancedBorderStyle.cs
- KeyboardNavigation.cs
- QueryOpcode.cs
- PointCollection.cs
- KeyManager.cs
- SecurityHelper.cs