Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / XPath / Internal / followingsibling.cs / 1 / 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
- WindowsFormsHelpers.cs
- StreamUpgradeInitiator.cs
- ItemList.cs
- ParallelTimeline.cs
- ToolboxSnapDragDropEventArgs.cs
- DesignerActionListCollection.cs
- BaseResourcesBuildProvider.cs
- RegexCapture.cs
- RawAppCommandInputReport.cs
- HttpRequest.cs
- XmlValidatingReaderImpl.cs
- SafeProcessHandle.cs
- PagerStyle.cs
- DataContractJsonSerializer.cs
- FastEncoderWindow.cs
- MdiWindowListItemConverter.cs
- RichTextBoxConstants.cs
- PartBasedPackageProperties.cs
- HierarchicalDataSourceConverter.cs
- TagPrefixCollection.cs
- UserControlBuildProvider.cs
- AssemblyGen.cs
- ContentPresenter.cs
- Crypto.cs
- SerializationFieldInfo.cs
- DataSourceSerializationException.cs
- LocatorPartList.cs
- ConfigXmlComment.cs
- CodeChecksumPragma.cs
- XsltArgumentList.cs
- DynamicUpdateCommand.cs
- Section.cs
- NamespaceMapping.cs
- SelectionPattern.cs
- WebPartCollection.cs
- JournalNavigationScope.cs
- TemplateBaseAction.cs
- SQLString.cs
- SqlInternalConnection.cs
- CodePageUtils.cs
- ServiceAuthorizationManager.cs
- PersonalizationEntry.cs
- MonitoringDescriptionAttribute.cs
- DnsPermission.cs
- InvariantComparer.cs
- Pen.cs
- SystemResourceHost.cs
- Location.cs
- SingleStorage.cs
- PerspectiveCamera.cs
- RemoteWebConfigurationHost.cs
- TabPage.cs
- XhtmlConformanceSection.cs
- ExpressionDumper.cs
- UnsafeNativeMethods.cs
- ValueType.cs
- MouseGesture.cs
- Vector3D.cs
- BooleanAnimationBase.cs
- RtfFormatStack.cs
- TagPrefixCollection.cs
- RequestChannel.cs
- TaskFileService.cs
- MemberHolder.cs
- DefaultProxySection.cs
- WebAdminConfigurationHelper.cs
- indexingfiltermarshaler.cs
- FrameworkPropertyMetadata.cs
- SectionVisual.cs
- MenuStrip.cs
- Ref.cs
- XmlSerializerVersionAttribute.cs
- Utils.cs
- ListenerConfig.cs
- BuilderPropertyEntry.cs
- DesignerCategoryAttribute.cs
- StrokeNodeOperations.cs
- AttributeData.cs
- DbConnectionHelper.cs
- ping.cs
- XmlSchemas.cs
- OleDbError.cs
- mda.cs
- ListGeneralPage.cs
- HttpDebugHandler.cs
- ReferencedType.cs
- WorkflowElementDialog.cs
- PauseStoryboard.cs
- ResXBuildProvider.cs
- XmlNodeList.cs
- UserControlParser.cs
- RelationshipConverter.cs
- SoapMessage.cs
- MonthChangedEventArgs.cs
- ReferencedAssembly.cs
- ReplyChannelAcceptor.cs
- ReflectionUtil.cs
- TransactionContextManager.cs
- ProgressPage.cs
- ScaleTransform3D.cs