Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / followingsibling.cs / 1305376 / followingsibling.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; internal sealed class FollSiblingQuery : BaseAxisQuery { StackNav elementStk; List parentStk; XPathNavigator nextInput; public FollSiblingQuery(Query qyInput, string name, string prefix, XPathNodeType type) : base (qyInput, name, prefix, type) { this.elementStk = new StackNav(); this.parentStk = new List (); } private FollSiblingQuery(FollSiblingQuery other) : base(other) { this.elementStk = other.elementStk.Clone(); this.parentStk = new List (other.parentStk); this.nextInput = Clone(other.nextInput); } public override void Reset() { elementStk.Clear(); parentStk.Clear(); nextInput = null; base.Reset(); } private bool Visited(XPathNavigator nav) { XPathNavigator parent = nav.Clone(); parent.MoveToParent(); for (int i = 0; i < parentStk.Count; i++) { if (parent.IsSamePosition(parentStk[i])) { return true; } } parentStk.Add(parent); return false; } private XPathNavigator FetchInput() { XPathNavigator input; do { input = qyInput.Advance(); if (input == null) { return null; } } while (Visited(input)); return input.Clone(); } public override XPathNavigator Advance() { while (true) { if (currentNode == null) { if (nextInput == null) { nextInput = FetchInput(); // This can happen at the begining and at the end } if (elementStk.Count == 0) { if (nextInput == null) { return null; } currentNode = nextInput; nextInput = FetchInput(); } else { currentNode = elementStk.Pop(); } } while (currentNode.IsDescendant(nextInput)) { elementStk.Push(currentNode); currentNode = nextInput; nextInput = qyInput.Advance(); if (nextInput != null) { nextInput = nextInput.Clone(); } } while (currentNode.MoveToNext()) { if (matches(currentNode)) { position++; return currentNode; } } currentNode = null; } } // Advance public override XPathNodeIterator Clone() { return new FollSiblingQuery(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; using System.Collections.Generic; using StackNav = ClonableStack; internal sealed class FollSiblingQuery : BaseAxisQuery { StackNav elementStk; List parentStk; XPathNavigator nextInput; public FollSiblingQuery(Query qyInput, string name, string prefix, XPathNodeType type) : base (qyInput, name, prefix, type) { this.elementStk = new StackNav(); this.parentStk = new List (); } private FollSiblingQuery(FollSiblingQuery other) : base(other) { this.elementStk = other.elementStk.Clone(); this.parentStk = new List (other.parentStk); this.nextInput = Clone(other.nextInput); } public override void Reset() { elementStk.Clear(); parentStk.Clear(); nextInput = null; base.Reset(); } private bool Visited(XPathNavigator nav) { XPathNavigator parent = nav.Clone(); parent.MoveToParent(); for (int i = 0; i < parentStk.Count; i++) { if (parent.IsSamePosition(parentStk[i])) { return true; } } parentStk.Add(parent); return false; } private XPathNavigator FetchInput() { XPathNavigator input; do { input = qyInput.Advance(); if (input == null) { return null; } } while (Visited(input)); return input.Clone(); } public override XPathNavigator Advance() { while (true) { if (currentNode == null) { if (nextInput == null) { nextInput = FetchInput(); // This can happen at the begining and at the end } if (elementStk.Count == 0) { if (nextInput == null) { return null; } currentNode = nextInput; nextInput = FetchInput(); } else { currentNode = elementStk.Pop(); } } while (currentNode.IsDescendant(nextInput)) { elementStk.Push(currentNode); currentNode = nextInput; nextInput = qyInput.Advance(); if (nextInput != null) { nextInput = nextInput.Clone(); } } while (currentNode.MoveToNext()) { if (matches(currentNode)) { position++; return currentNode; } } currentNode = null; } } // Advance public override XPathNodeIterator Clone() { return new FollSiblingQuery(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
- filewebrequest.cs
- SignatureTargetIdManager.cs
- InternalDispatchObject.cs
- AccessDataSource.cs
- AccessViolationException.cs
- RIPEMD160.cs
- WriteLine.cs
- CellParagraph.cs
- WindowsAuthenticationModule.cs
- RubberbandSelector.cs
- CopyNodeSetAction.cs
- URIFormatException.cs
- RbTree.cs
- CachingHintValidation.cs
- RayHitTestParameters.cs
- ColorAnimationUsingKeyFrames.cs
- ComplexPropertyEntry.cs
- ParseHttpDate.cs
- CreateWorkflowOwnerCommand.cs
- ResourceSet.cs
- IntPtr.cs
- LongValidator.cs
- ManagementScope.cs
- PointAnimationUsingKeyFrames.cs
- FusionWrap.cs
- MessagingDescriptionAttribute.cs
- HeaderUtility.cs
- RegexTree.cs
- UnaryOperationBinder.cs
- UnionCodeGroup.cs
- NamedPipeTransportManager.cs
- processwaithandle.cs
- ServicePointManager.cs
- RequestResizeEvent.cs
- CacheRequest.cs
- SqlClientMetaDataCollectionNames.cs
- ListItemConverter.cs
- DateTimeFormat.cs
- Timer.cs
- SqlNode.cs
- FormsAuthenticationConfiguration.cs
- BasicHttpSecurityMode.cs
- RemoteCryptoDecryptRequest.cs
- QueryRewriter.cs
- EtwTrace.cs
- RotationValidation.cs
- SamlConstants.cs
- TextEffect.cs
- WsdlBuildProvider.cs
- ComplexPropertyEntry.cs
- ViewStateException.cs
- WindowsRichEditRange.cs
- CodeSnippetTypeMember.cs
- CrossContextChannel.cs
- TemplatePartAttribute.cs
- SelectedDatesCollection.cs
- UDPClient.cs
- ServiceOperation.cs
- Overlapped.cs
- Encoding.cs
- PowerModeChangedEventArgs.cs
- ITextView.cs
- PointAnimation.cs
- Italic.cs
- PixelFormat.cs
- PerfService.cs
- AnnotationHighlightLayer.cs
- OdbcCommandBuilder.cs
- TitleStyle.cs
- ModelVisual3D.cs
- WindowsListViewGroupSubsetLink.cs
- IdnMapping.cs
- Function.cs
- TextChange.cs
- IntranetCredentialPolicy.cs
- TextEditorCopyPaste.cs
- SizeConverter.cs
- DesignTimeXamlWriter.cs
- CorrelationHandle.cs
- TextContainerChangeEventArgs.cs
- PropertyFilterAttribute.cs
- UnknownBitmapEncoder.cs
- GeometryDrawing.cs
- SqlUnionizer.cs
- CreateParams.cs
- SequenceQuery.cs
- DecryptedHeader.cs
- BrowserCapabilitiesCompiler.cs
- Panel.cs
- TypeElement.cs
- GridLengthConverter.cs
- unitconverter.cs
- HiddenFieldPageStatePersister.cs
- TableHeaderCell.cs
- TryCatchDesigner.xaml.cs
- RawStylusSystemGestureInputReport.cs
- Timeline.cs
- Int64Storage.cs
- ResXResourceSet.cs
- ScriptModule.cs