Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- SdlChannelSink.cs
- CollectionDataContract.cs
- BmpBitmapDecoder.cs
- _Rfc2616CacheValidators.cs
- Base64Stream.cs
- XmlEncoding.cs
- ParamArrayAttribute.cs
- TypeUtils.cs
- Select.cs
- BasicExpandProvider.cs
- DynamicScriptObject.cs
- ConfigurationException.cs
- SchemaConstraints.cs
- TableColumnCollectionInternal.cs
- EncoderBestFitFallback.cs
- Simplifier.cs
- XhtmlBasicPageAdapter.cs
- Label.cs
- ManifestResourceInfo.cs
- Thickness.cs
- RuntimeResourceSet.cs
- DeploymentExceptionMapper.cs
- MetadataUtil.cs
- ImageKeyConverter.cs
- CharacterBuffer.cs
- WebHttpBindingElement.cs
- StylusPointProperties.cs
- ComponentDispatcherThread.cs
- ColumnMapTranslator.cs
- ActivityStateRecord.cs
- IPEndPoint.cs
- SecurityPolicySection.cs
- CompositionAdorner.cs
- PrintPreviewGraphics.cs
- RequestSecurityTokenResponseCollection.cs
- ProfileProvider.cs
- CoTaskMemHandle.cs
- QilList.cs
- HtmlInputButton.cs
- ConditionChanges.cs
- Enum.cs
- TextTreeNode.cs
- PromptStyle.cs
- TrackBarRenderer.cs
- TagMapInfo.cs
- SqlVisitor.cs
- WebPermission.cs
- CollectionChangedEventManager.cs
- DesignerCategoryAttribute.cs
- QueryOutputWriter.cs
- BamlWriter.cs
- StringArrayEditor.cs
- ColumnResizeAdorner.cs
- SafeEventLogReadHandle.cs
- WebPart.cs
- GPRECTF.cs
- XmlToDatasetMap.cs
- WorkflowMarkupElementEventArgs.cs
- XmlSchemaAll.cs
- TiffBitmapEncoder.cs
- DoubleSumAggregationOperator.cs
- DbConnectionPool.cs
- NamespaceQuery.cs
- TextTreeTextBlock.cs
- PackageDigitalSignature.cs
- BulletDecorator.cs
- StateMachineSubscription.cs
- InternalRelationshipCollection.cs
- ObjectDataSourceMethodEventArgs.cs
- PartitionResolver.cs
- HttpWebRequestElement.cs
- ToolStripContainerDesigner.cs
- serverconfig.cs
- FixedFlowMap.cs
- ECDiffieHellmanPublicKey.cs
- ManipulationPivot.cs
- XmlSerializerFactory.cs
- WriteableBitmap.cs
- TypeHelper.cs
- StorageConditionPropertyMapping.cs
- ExpanderAutomationPeer.cs
- Component.cs
- TreeSet.cs
- FastEncoder.cs
- MsmqInputMessagePool.cs
- CryptoHelper.cs
- PersonalizationAdministration.cs
- DataGridToolTip.cs
- NumberFunctions.cs
- EventLogPropertySelector.cs
- XmlParserContext.cs
- XmlEncoding.cs
- OracleRowUpdatedEventArgs.cs
- ButtonField.cs
- SqlDataSourceRefreshSchemaForm.cs
- StrokeIntersection.cs
- UnhandledExceptionEventArgs.cs
- ListViewGroup.cs
- DataServiceRequestOfT.cs
- SoapSchemaMember.cs