Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / DescendantOverDescendantQuery.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OdbcFactory.cs
- Encoder.cs
- TextDecoration.cs
- GenericsNotImplementedException.cs
- HostingEnvironment.cs
- TypefaceMap.cs
- CheckBox.cs
- BufferedGraphicsContext.cs
- StrongNameUtility.cs
- DesigntimeLicenseContext.cs
- ProgressBar.cs
- ConfigurationManager.cs
- DesignerDataTable.cs
- PolicyStatement.cs
- VisualBrush.cs
- SystemUdpStatistics.cs
- HttpListenerException.cs
- LinkButton.cs
- adornercollection.cs
- ScriptingProfileServiceSection.cs
- Input.cs
- ScrollBar.cs
- XmlSchemaAnyAttribute.cs
- DataServiceResponse.cs
- _ScatterGatherBuffers.cs
- OperationCanceledException.cs
- ParameterRefs.cs
- DataViewManagerListItemTypeDescriptor.cs
- SectionVisual.cs
- Message.cs
- DataRelationPropertyDescriptor.cs
- DataGridViewCellLinkedList.cs
- BamlCollectionHolder.cs
- WebPartConnectionsConnectVerb.cs
- DataKey.cs
- AppSecurityManager.cs
- DropTarget.cs
- ResourcesBuildProvider.cs
- IgnoreSectionHandler.cs
- WindowsFormsSectionHandler.cs
- OletxCommittableTransaction.cs
- XmlSchemaInclude.cs
- EmptyReadOnlyDictionaryInternal.cs
- VisualBrush.cs
- SchemaElementLookUpTable.cs
- HtmlEncodedRawTextWriter.cs
- _ConnectStream.cs
- OdbcPermission.cs
- CodePrimitiveExpression.cs
- HttpCachePolicy.cs
- EpmContentSerializerBase.cs
- MessagePropertyDescriptionCollection.cs
- LockRecursionException.cs
- ContextStaticAttribute.cs
- EventRouteFactory.cs
- SystemInfo.cs
- XPathEmptyIterator.cs
- UnionQueryOperator.cs
- FocusManager.cs
- MultiDataTrigger.cs
- ServerTooBusyException.cs
- versioninfo.cs
- ComplexType.cs
- XmlDataImplementation.cs
- TripleDES.cs
- ExpressionReplacer.cs
- CryptoHelper.cs
- KerberosSecurityTokenParameters.cs
- Positioning.cs
- Wizard.cs
- _ProxyRegBlob.cs
- MultipleViewProviderWrapper.cs
- TextCharacters.cs
- ObjectAnimationUsingKeyFrames.cs
- TimeSpanOrInfiniteConverter.cs
- TextMetrics.cs
- TypeContext.cs
- ImpersonateTokenRef.cs
- InputProcessorProfilesLoader.cs
- ProfileModule.cs
- VarInfo.cs
- DbExpressionRules.cs
- XappLauncher.cs
- FloatUtil.cs
- XPathNavigatorReader.cs
- CultureTableRecord.cs
- TailCallAnalyzer.cs
- HtmlTableCell.cs
- PropertyEmitter.cs
- NumericUpDownAcceleration.cs
- Conditional.cs
- MapPathBasedVirtualPathProvider.cs
- SqlUtils.cs
- GridViewRowEventArgs.cs
- EntityChangedParams.cs
- ComponentResourceKey.cs
- PropertySourceInfo.cs
- ModelTreeEnumerator.cs
- ListControlConvertEventArgs.cs
- AssertFilter.cs