Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- InvalidProgramException.cs
- SmtpNtlmAuthenticationModule.cs
- InfiniteTimeSpanConverter.cs
- Root.cs
- ProjectedSlot.cs
- TableHeaderCell.cs
- TimeSpanSecondsConverter.cs
- ValidatorUtils.cs
- ObfuscateAssemblyAttribute.cs
- SourceFileBuildProvider.cs
- UnsupportedPolicyOptionsException.cs
- FormViewUpdateEventArgs.cs
- StatusBarItem.cs
- CursorConverter.cs
- ConstraintCollection.cs
- SplashScreenNativeMethods.cs
- RenderDataDrawingContext.cs
- EmptyQuery.cs
- Win32PrintDialog.cs
- CompoundFileStreamReference.cs
- IisTraceListener.cs
- DispatcherHookEventArgs.cs
- ButtonAutomationPeer.cs
- XmlRootAttribute.cs
- LineInfo.cs
- ComponentCollection.cs
- BitmapVisualManager.cs
- Gdiplus.cs
- DataGridItem.cs
- EditorZone.cs
- SHA1.cs
- WriteLine.cs
- ListenerUnsafeNativeMethods.cs
- FloaterParaClient.cs
- MemberPathMap.cs
- ServiceCredentialsElement.cs
- DbConnectionPoolOptions.cs
- ProviderSettingsCollection.cs
- QueryCacheKey.cs
- SchemaTableColumn.cs
- SqlDataSourceEnumerator.cs
- BuildProvider.cs
- ViewSimplifier.cs
- keycontainerpermission.cs
- SessionPageStatePersister.cs
- Funcletizer.cs
- ExternalException.cs
- LambdaCompiler.cs
- CopyCodeAction.cs
- CodeGeneratorOptions.cs
- Size3D.cs
- PathGeometry.cs
- SoapExtensionTypeElement.cs
- ResourceReader.cs
- GridViewCellAutomationPeer.cs
- PartManifestEntry.cs
- ServiceBuildProvider.cs
- DataBinding.cs
- shaper.cs
- StringWriter.cs
- DataTemplateSelector.cs
- WebPartZoneBase.cs
- EntityDataSourceSelectedEventArgs.cs
- MD5.cs
- TypeConverterHelper.cs
- MsmqTransportBindingElement.cs
- TemplateManager.cs
- HeaderedContentControl.cs
- FixedSOMElement.cs
- TaskResultSetter.cs
- NumberFormatInfo.cs
- FileDetails.cs
- diagnosticsswitches.cs
- AuthenticationManager.cs
- ComponentChangingEvent.cs
- XamlGridLengthSerializer.cs
- Trace.cs
- PermissionSet.cs
- IdentityReference.cs
- WebPartDisplayModeCollection.cs
- ResourceBinder.cs
- StorageTypeMapping.cs
- DataRelationCollection.cs
- ServerValidateEventArgs.cs
- Vector3DCollectionConverter.cs
- CategoryAttribute.cs
- UndirectedGraph.cs
- HttpApplicationFactory.cs
- processwaithandle.cs
- ImageCreator.cs
- ToolBarButtonClickEvent.cs
- OciLobLocator.cs
- ReflectTypeDescriptionProvider.cs
- PrintDocument.cs
- StandardMenuStripVerb.cs
- TabControlCancelEvent.cs
- NoneExcludedImageIndexConverter.cs
- PackageRelationship.cs
- InputProcessorProfiles.cs
- WeakReference.cs