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 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PersonalizationProviderHelper.cs
- XmlBinaryReader.cs
- PrivateFontCollection.cs
- StylusPointPropertyUnit.cs
- BuiltInExpr.cs
- UndirectedGraph.cs
- CaretElement.cs
- DiscreteKeyFrames.cs
- SkinBuilder.cs
- UrlEncodedParameterWriter.cs
- TCPClient.cs
- MissingSatelliteAssemblyException.cs
- FilterUserControlBase.cs
- CaseInsensitiveOrdinalStringComparer.cs
- ServiceMemoryGates.cs
- LOSFormatter.cs
- MDIControlStrip.cs
- DrawingGroup.cs
- BaseDataBoundControl.cs
- WebPartUtil.cs
- StringValueSerializer.cs
- StorageSetMapping.cs
- SapiGrammar.cs
- HttpResponseWrapper.cs
- FixedDocumentPaginator.cs
- XslNumber.cs
- DataControlHelper.cs
- FontFamilyConverter.cs
- SectionRecord.cs
- TimelineGroup.cs
- PolicyConversionContext.cs
- PropertyMappingExceptionEventArgs.cs
- WebBrowserContainer.cs
- ProcessHostMapPath.cs
- XmlSchemaImporter.cs
- CultureInfoConverter.cs
- CodeMemberProperty.cs
- ProxyWebPartConnectionCollection.cs
- WebPartRestoreVerb.cs
- QueryStringParameter.cs
- DesigntimeLicenseContext.cs
- ProxyHelper.cs
- GridViewColumnHeader.cs
- CharacterBuffer.cs
- PinnedBufferMemoryStream.cs
- ConstraintCollection.cs
- SymbolTable.cs
- Profiler.cs
- CreateParams.cs
- XmlSchemaSubstitutionGroup.cs
- WebEvents.cs
- DesignUtil.cs
- Viewport3DVisual.cs
- SerializationAttributes.cs
- DataServiceHostFactory.cs
- OracleDateTime.cs
- WindowsFormsHostPropertyMap.cs
- HtmlEmptyTagControlBuilder.cs
- ToolboxItemFilterAttribute.cs
- ProgressBarBrushConverter.cs
- DelegatingConfigHost.cs
- CFGGrammar.cs
- BaseCAMarshaler.cs
- SelectorItemAutomationPeer.cs
- Span.cs
- ConfigXmlDocument.cs
- xdrvalidator.cs
- PlacementWorkspace.cs
- RTLAwareMessageBox.cs
- ToggleProviderWrapper.cs
- AssertSection.cs
- XslVisitor.cs
- DrawingContextWalker.cs
- ContentDefinition.cs
- WorkflowInspectionServices.cs
- QueryRewriter.cs
- RegistrationServices.cs
- ToolBarButtonClickEvent.cs
- SqlFacetAttribute.cs
- MarkupExtensionReturnTypeAttribute.cs
- IOThreadScheduler.cs
- regiisutil.cs
- ImageMapEventArgs.cs
- KeyPressEvent.cs
- TransportContext.cs
- XmlQueryStaticData.cs
- ScriptResourceDefinition.cs
- JsonQNameDataContract.cs
- EntityViewGenerator.cs
- TransformProviderWrapper.cs
- ComPlusServiceLoader.cs
- HttpCookieCollection.cs
- ApplicationSecurityManager.cs
- WebAdminConfigurationHelper.cs
- SrgsElement.cs
- HtmlAnchor.cs
- ReferenceSchema.cs
- Config.cs
- InstanceKeyNotReadyException.cs
- ConstructorExpr.cs