Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- SimpleHandlerBuildProvider.cs
- HttpAsyncResult.cs
- ScaleTransform3D.cs
- cookiecollection.cs
- PersianCalendar.cs
- RequestResizeEvent.cs
- SafeCoTaskMem.cs
- UTF7Encoding.cs
- UnionExpr.cs
- DefaultValueTypeConverter.cs
- ActivityExecutionContextCollection.cs
- PerformanceCounterTraceRecord.cs
- TextEditorContextMenu.cs
- Misc.cs
- MenuScrollingVisibilityConverter.cs
- XPathParser.cs
- BooleanAnimationUsingKeyFrames.cs
- XmlExpressionDumper.cs
- OuterGlowBitmapEffect.cs
- ImageDrawing.cs
- Opcode.cs
- RawStylusInput.cs
- ObjectView.cs
- MetaModel.cs
- DependencyPropertyConverter.cs
- BinaryWriter.cs
- SupportsPreviewControlAttribute.cs
- PackageRelationshipSelector.cs
- ColumnPropertiesGroup.cs
- SecUtil.cs
- SchemaAttDef.cs
- PanelDesigner.cs
- MeshGeometry3D.cs
- PropertyChangingEventArgs.cs
- ApplicationSecurityManager.cs
- CqlErrorHelper.cs
- FixedTextSelectionProcessor.cs
- XmlDocumentFragment.cs
- Selection.cs
- SmtpDigestAuthenticationModule.cs
- TogglePatternIdentifiers.cs
- ExtenderProvidedPropertyAttribute.cs
- WorkflowServiceOperationListItem.cs
- TrackingDataItem.cs
- HttpRuntime.cs
- ListBase.cs
- CollectionType.cs
- ToolStripComboBox.cs
- ZoneMembershipCondition.cs
- InplaceBitmapMetadataWriter.cs
- ToolboxCategory.cs
- FontStretch.cs
- MachineKeySection.cs
- VersionedStreamOwner.cs
- GridViewColumnCollection.cs
- SqlOuterApplyReducer.cs
- Int16AnimationBase.cs
- UTF32Encoding.cs
- XsltArgumentList.cs
- _LoggingObject.cs
- WindowsToolbarAsMenu.cs
- TextBoxBase.cs
- DefaultMemberAttribute.cs
- URI.cs
- OdbcStatementHandle.cs
- OutputCacheSettingsSection.cs
- GradientBrush.cs
- SettingsPropertyValue.cs
- IIS7UserPrincipal.cs
- FrameDimension.cs
- MDIControlStrip.cs
- ActivationArguments.cs
- GeneralTransform3D.cs
- TrackingSection.cs
- HandleExceptionArgs.cs
- HttpRuntimeSection.cs
- RegexCompilationInfo.cs
- Operators.cs
- GlyphShapingProperties.cs
- UnknownWrapper.cs
- HyperLink.cs
- VirtualDirectoryMappingCollection.cs
- RotationValidation.cs
- ContentWrapperAttribute.cs
- DataGridViewRowEventArgs.cs
- UrlPath.cs
- PenLineCapValidation.cs
- PeerTransportListenAddressValidatorAttribute.cs
- AmbientValueAttribute.cs
- SoapRpcServiceAttribute.cs
- CachedPathData.cs
- ListControlDataBindingHandler.cs
- GridView.cs
- TextElementCollectionHelper.cs
- NestedContainer.cs
- SolidBrush.cs
- DataTemplateKey.cs
- RegionIterator.cs
- RelationshipSet.cs
- SequentialWorkflowHeaderFooter.cs