Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / Internal / DescendantOverDescendantQuery.cs / 1 / DescendantOverDescendantQuery.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; // DescendantOverDescendantQuery: for each input it looks for the topmost descendents that matches to ns:name // This is posible when query which has this query as its input (child query) is descendent as well. // Work of this query doesn't depend on DOD of its input. // It doesn't garate DOD of the output even when input is DOD. internal sealed class DescendantOverDescendantQuery : DescendantBaseQuery { private int level = 0; public DescendantOverDescendantQuery(Query qyParent, bool matchSelf, string name, string prefix, XPathNodeType typeTest, bool abbrAxis) : base(qyParent, name, prefix, typeTest, matchSelf, abbrAxis) {} private DescendantOverDescendantQuery(DescendantOverDescendantQuery other) : base(other) { this.level = other.level; } public override void Reset() { level = 0; base.Reset(); } public override XPathNavigator Advance() { while (true) { if (level == 0) { currentNode = qyInput.Advance(); position = 0; if (currentNode == null) { return null; } if (matchSelf && matches(currentNode)) { position = 1; return currentNode; } currentNode = currentNode.Clone(); if (! MoveToFirstChild()) { continue; } } else { if (!MoveUpUntillNext()) { continue; } } do { if (matches(currentNode)) { position++; return currentNode; } } while (MoveToFirstChild()); } } private bool MoveToFirstChild() { if (currentNode.MoveToFirstChild()) { level++; return true; } return false; } private bool MoveUpUntillNext() { // move up untill we can move next while (! currentNode.MoveToNext()) { -- level; if (level == 0) { return false; } bool result = currentNode.MoveToParent(); Debug.Assert(result, "Algorithm error, We always should be able to move up if level > 0"); } return true; } public override XPathNodeIterator Clone() { return new DescendantOverDescendantQuery(this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PathNode.cs
- ListBindableAttribute.cs
- CalendarTable.cs
- ISessionStateStore.cs
- DbParameterHelper.cs
- CommandEventArgs.cs
- TagMapInfo.cs
- DebugHandleTracker.cs
- WsdlBuildProvider.cs
- ParameterToken.cs
- DoubleAnimationClockResource.cs
- DataServiceRequestException.cs
- CommandConverter.cs
- ConfigXmlReader.cs
- SoapConverter.cs
- CommentGlyph.cs
- StorageScalarPropertyMapping.cs
- FlagsAttribute.cs
- CharStorage.cs
- SequenceFullException.cs
- DictionarySectionHandler.cs
- StructuredType.cs
- RolePrincipal.cs
- StackOverflowException.cs
- TabItemWrapperAutomationPeer.cs
- ParameterCollection.cs
- UnicodeEncoding.cs
- Debug.cs
- ListBase.cs
- PeerApplicationLaunchInfo.cs
- DataObjectMethodAttribute.cs
- CreatingCookieEventArgs.cs
- Renderer.cs
- XPathSelfQuery.cs
- ResourceType.cs
- mediapermission.cs
- SuspendDesigner.cs
- Image.cs
- DataGridViewLinkColumn.cs
- Command.cs
- ManagementException.cs
- Transform.cs
- FormViewDeleteEventArgs.cs
- XmlEncoding.cs
- NotCondition.cs
- DynamicUpdateCommand.cs
- TimeManager.cs
- ZoneIdentityPermission.cs
- UpDownEvent.cs
- Timer.cs
- TextOnlyOutput.cs
- MasterPageCodeDomTreeGenerator.cs
- ComboBoxRenderer.cs
- DataExpression.cs
- SkewTransform.cs
- XmlSerializerVersionAttribute.cs
- TypedDataSourceCodeGenerator.cs
- MinimizableAttributeTypeConverter.cs
- RadioButton.cs
- AttributeCollection.cs
- SafeArrayTypeMismatchException.cs
- CodeExporter.cs
- BuilderInfo.cs
- InstanceContextMode.cs
- FontFamily.cs
- DbConnectionPoolGroupProviderInfo.cs
- ProcessHostServerConfig.cs
- ExtensibleClassFactory.cs
- XmlDomTextWriter.cs
- XomlCompilerResults.cs
- WebPartConnectionsConfigureVerb.cs
- BaseServiceProvider.cs
- WebPartConnectionsConfigureVerb.cs
- XmlNamespaceManager.cs
- ExtentKey.cs
- RSAOAEPKeyExchangeFormatter.cs
- WorkflowInstance.cs
- InternalConfigConfigurationFactory.cs
- BamlWriter.cs
- NavigationPropertyAccessor.cs
- IPCCacheManager.cs
- XmlSyndicationContent.cs
- HwndSourceKeyboardInputSite.cs
- DescendentsWalker.cs
- ClientRoleProvider.cs
- _NegotiateClient.cs
- VersionedStream.cs
- WebServiceParameterData.cs
- UnaryNode.cs
- DataSetSchema.cs
- WbmpConverter.cs
- RuntimeEnvironment.cs
- KeyPressEvent.cs
- WrapperSecurityCommunicationObject.cs
- ExpressionBindingCollection.cs
- CustomAttributeSerializer.cs
- TypeConverterMarkupExtension.cs
- ConfigurationManagerHelper.cs
- Baml2006ReaderSettings.cs
- FixedSOMContainer.cs