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 / 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
- HostingPreferredMapPath.cs
- assertwrapper.cs
- DbProviderFactories.cs
- UserControl.cs
- SystemIcons.cs
- SponsorHelper.cs
- CodeArgumentReferenceExpression.cs
- StringArrayEditor.cs
- RpcCryptoRequest.cs
- Misc.cs
- XmlObjectSerializerWriteContextComplex.cs
- DebugView.cs
- ScrollChrome.cs
- LinqExpressionNormalizer.cs
- VisualStyleTypesAndProperties.cs
- RewritingPass.cs
- SpecialFolderEnumConverter.cs
- ConfigurationFileMap.cs
- AutoFocusStyle.xaml.cs
- PnrpPeerResolverElement.cs
- Scheduler.cs
- wmiprovider.cs
- Accessible.cs
- SystemKeyConverter.cs
- MobileRedirect.cs
- TreeViewHitTestInfo.cs
- EditorPartCollection.cs
- GridViewSortEventArgs.cs
- DictionaryContent.cs
- DataGridViewComboBoxCell.cs
- TemplateAction.cs
- Point4D.cs
- ProvidersHelper.cs
- MarkupWriter.cs
- ProfileModule.cs
- XmlSigningNodeWriter.cs
- StickyNoteAnnotations.cs
- QilInvokeLateBound.cs
- ListViewUpdatedEventArgs.cs
- SQLBoolean.cs
- IResourceProvider.cs
- Win32PrintDialog.cs
- BuildTopDownAttribute.cs
- SqlVisitor.cs
- Pool.cs
- ToggleButtonAutomationPeer.cs
- QueryOptionExpression.cs
- OdbcError.cs
- NonSerializedAttribute.cs
- dataobject.cs
- GradientSpreadMethodValidation.cs
- ObjectViewFactory.cs
- XmlKeywords.cs
- RotateTransform.cs
- DataGridBoolColumn.cs
- _ProxyChain.cs
- AmbiguousMatchException.cs
- TablePatternIdentifiers.cs
- LongValidatorAttribute.cs
- WorkflowItemPresenter.cs
- TcpTransportSecurity.cs
- TimeSpanFormat.cs
- StreamGeometry.cs
- LocationEnvironment.cs
- ConnectionManager.cs
- XmlSchemaAnnotation.cs
- SourceChangedEventArgs.cs
- DesignerCategoryAttribute.cs
- UidPropertyAttribute.cs
- ConnectionStringSettings.cs
- RegexGroup.cs
- FormsAuthenticationCredentials.cs
- FrameworkRichTextComposition.cs
- DesignerVerb.cs
- DoubleLinkListEnumerator.cs
- EdmComplexPropertyAttribute.cs
- COM2ExtendedTypeConverter.cs
- TemplateControl.cs
- ScalarRestriction.cs
- ResourceExpression.cs
- Environment.cs
- SafeSecurityHelper.cs
- LocalizedNameDescriptionPair.cs
- HealthMonitoringSectionHelper.cs
- DiscoveryReferences.cs
- PassportIdentity.cs
- Native.cs
- ConfigurationValues.cs
- ValueUtilsSmi.cs
- FlowDocumentPaginator.cs
- CommandField.cs
- TableCellCollection.cs
- EntityTypeBase.cs
- PaginationProgressEventArgs.cs
- TypeDelegator.cs
- ServerValidateEventArgs.cs
- OverlappedAsyncResult.cs
- FlagsAttribute.cs
- IndentedTextWriter.cs
- SQLResource.cs