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
- SchemaMapping.cs
- ClientSettings.cs
- DetailsViewRow.cs
- CompiledAction.cs
- GPRECT.cs
- AddInSegmentDirectoryNotFoundException.cs
- AddingNewEventArgs.cs
- TextElementAutomationPeer.cs
- VisualProxy.cs
- DataGridColumn.cs
- HtmlElementCollection.cs
- xmlsaver.cs
- OleDbFactory.cs
- ListSourceHelper.cs
- StylusOverProperty.cs
- SamlAssertion.cs
- IntranetCredentialPolicy.cs
- TextSimpleMarkerProperties.cs
- HitTestWithPointDrawingContextWalker.cs
- StringKeyFrameCollection.cs
- SurrogateSelector.cs
- ValidationPropertyAttribute.cs
- BindingMemberInfo.cs
- DesignTimeData.cs
- CreateUserErrorEventArgs.cs
- DateTimePickerDesigner.cs
- DiscriminatorMap.cs
- UnicodeEncoding.cs
- Misc.cs
- UIElementCollection.cs
- OpCellTreeNode.cs
- UIElementIsland.cs
- Instrumentation.cs
- ViewCellSlot.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- TextPointerBase.cs
- ReadOnlyDataSource.cs
- SpecialFolderEnumConverter.cs
- CursorConverter.cs
- IsolatedStorage.cs
- NativeMethods.cs
- CommandID.cs
- securitymgrsite.cs
- XmlSchemaSet.cs
- OperatingSystemVersionCheck.cs
- AsymmetricKeyExchangeFormatter.cs
- autovalidator.cs
- DynamicMethod.cs
- ContainerActivationHelper.cs
- ExtentCqlBlock.cs
- ImageProxy.cs
- BaseUriHelper.cs
- latinshape.cs
- InvariantComparer.cs
- ControlBindingsConverter.cs
- ObjectNavigationPropertyMapping.cs
- WorkflowInstanceRecord.cs
- TableCell.cs
- unsafenativemethodstextservices.cs
- TreeNodeBindingCollection.cs
- WindowsAuthenticationModule.cs
- ToolStripTextBox.cs
- WindowsButton.cs
- AutomationElementIdentifiers.cs
- DbModificationCommandTree.cs
- COM2ComponentEditor.cs
- XmlnsDefinitionAttribute.cs
- CultureTableRecord.cs
- DirectoryObjectSecurity.cs
- Tracer.cs
- RawStylusActions.cs
- DateTime.cs
- TextServicesDisplayAttribute.cs
- BamlStream.cs
- Codec.cs
- ManipulationVelocities.cs
- EventProviderTraceListener.cs
- AttachedAnnotationChangedEventArgs.cs
- SafeCryptoHandles.cs
- Assembly.cs
- XpsFilter.cs
- ControlAdapter.cs
- ErrorLog.cs
- XmlNode.cs
- LingerOption.cs
- SettingsAttributes.cs
- CodeTypeParameterCollection.cs
- XPathLexer.cs
- ScalarType.cs
- ConfigurationElement.cs
- NavigationPropertyEmitter.cs
- GridViewDesigner.cs
- SafeCertificateContext.cs
- SecureStringHasher.cs
- PageContent.cs
- FunctionMappingTranslator.cs
- Calendar.cs
- FactoryMaker.cs
- GeneralTransform3D.cs
- ExceptionHandlersDesigner.cs