Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / precedingquery.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TabControlDesigner.cs
- VarRefManager.cs
- CompareInfo.cs
- Set.cs
- SqlException.cs
- PipelineModuleStepContainer.cs
- sqlinternaltransaction.cs
- XamlTreeBuilder.cs
- PropertyNames.cs
- MethodBuilder.cs
- InternalResources.cs
- SmiRequestExecutor.cs
- UInt16Storage.cs
- BinaryMessageEncodingElement.cs
- IOException.cs
- EditingMode.cs
- WindowsIdentity.cs
- WinEventHandler.cs
- SelectedCellsChangedEventArgs.cs
- InfoCardSymmetricAlgorithm.cs
- DataGridViewRowsRemovedEventArgs.cs
- IdentityHolder.cs
- PropertyChangedEventManager.cs
- SqlCrossApplyToCrossJoin.cs
- NotifyInputEventArgs.cs
- DataBindingList.cs
- Oid.cs
- SettingsProperty.cs
- RadioButtonList.cs
- InstanceCreationEditor.cs
- ColumnResizeAdorner.cs
- BuilderPropertyEntry.cs
- Models.cs
- formatter.cs
- HyperLink.cs
- ClientTargetSection.cs
- VectorValueSerializer.cs
- Certificate.cs
- PositiveTimeSpanValidator.cs
- TransferRequestHandler.cs
- PanelStyle.cs
- ClientUtils.cs
- KeyValuePair.cs
- SmtpException.cs
- WebPartConnectionsConfigureVerb.cs
- SQLInt16Storage.cs
- DiscriminatorMap.cs
- Inline.cs
- WorkflowIdleBehavior.cs
- Array.cs
- ReferencedAssembly.cs
- DefaultSerializationProviderAttribute.cs
- NegotiateStream.cs
- InternalPermissions.cs
- DesignerLinkAdapter.cs
- SspiSecurityTokenProvider.cs
- Size3D.cs
- TimeSpanConverter.cs
- CollectionView.cs
- CodeDirectionExpression.cs
- FilteredDataSetHelper.cs
- MobileControlsSection.cs
- MappedMetaModel.cs
- CustomError.cs
- NativeMethodsOther.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- ComponentSerializationService.cs
- AspNetSynchronizationContext.cs
- TreeBuilder.cs
- CodeTryCatchFinallyStatement.cs
- HostingEnvironmentWrapper.cs
- InternalsVisibleToAttribute.cs
- DependencyPropertyChangedEventArgs.cs
- HttpCapabilitiesBase.cs
- NativeMethods.cs
- Parameter.cs
- SmiGettersStream.cs
- SqlParameterCollection.cs
- EntityModelSchemaGenerator.cs
- DeviceContext2.cs
- ConfigurationStrings.cs
- Control.cs
- ColorConvertedBitmap.cs
- ExcCanonicalXml.cs
- ChangeNode.cs
- SqlDataSourceAdvancedOptionsForm.cs
- StringSource.cs
- DateTimeFormatInfo.cs
- ClickablePoint.cs
- WebException.cs
- SHA256CryptoServiceProvider.cs
- TakeQueryOptionExpression.cs
- ResourceFallbackManager.cs
- RelationshipManager.cs
- util.cs
- EffectiveValueEntry.cs
- webbrowsersite.cs
- XsltCompileContext.cs
- Viewport2DVisual3D.cs
- XmlSchemaDatatype.cs