Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / precedingsibling.cs / 1 / precedingsibling.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; using System.Collections.Generic; // This class can be rewritten much more efficient. // Algorithm could be like one for FollowingSibling: // - Build InputArrays: pares (first, sentinel) // -- Cash all input nodes as sentinel // -- Add firts node of its parent for each input node. // -- Sort these pares by first nodes. // - Advance algorithm will look like: // -- For each row in InputArays we will output first node + all its following nodes which are < sentinel // -- Before outputing each node in row #I we will internal class PreSiblingQuery : CacheAxisQuery { public PreSiblingQuery(Query qyInput, string name, string prefix, XPathNodeType typeTest) : base (qyInput, name, prefix, typeTest) {} protected PreSiblingQuery(PreSiblingQuery other) : base(other) {} private bool NotVisited(XPathNavigator nav, ListparentStk){ XPathNavigator nav1 = nav.Clone(); nav1.MoveToParent(); for (int i = 0; i < parentStk.Count; i++) { if (nav1.IsSamePosition(parentStk[i])) { return false; } } parentStk.Add(nav1); return true; } public override object Evaluate(XPathNodeIterator context) { base.Evaluate(context); // Fill up base.outputBuffer List parentStk = new List (); Stack inputStk = new Stack (); while ((currentNode = qyInput.Advance()) != null) { inputStk.Push(currentNode.Clone()); } while (inputStk.Count != 0) { XPathNavigator input = inputStk.Pop(); if (input.NodeType == XPathNodeType.Attribute || input.NodeType == XPathNodeType.Namespace) { continue; } if (NotVisited(input, parentStk)) { XPathNavigator prev = input.Clone(); if (prev.MoveToParent()) { bool test = prev.MoveToFirstChild(); Debug.Assert(test, "We just moved to parent, how we can not have first child?"); while (!prev.IsSamePosition(input)) { if (matches(prev)) { Insert(outputBuffer, prev); } if (!prev.MoveToNext()) { Debug.Fail("We managed to miss sentinel node (input)"); break; } } } } } return this; } public override XPathNodeIterator Clone() { return new PreSiblingQuery(this); } public override QueryProps Properties { get { return base.Properties | QueryProps.Reverse; } } } } // 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
- CopyNamespacesAction.cs
- InputChannelAcceptor.cs
- RowTypePropertyElement.cs
- DynamicDataRouteHandler.cs
- ExceptionAggregator.cs
- DecoderReplacementFallback.cs
- FontInfo.cs
- BehaviorEditorPart.cs
- StringArrayConverter.cs
- SystemWebSectionGroup.cs
- VersionedStream.cs
- XmlSchemaCollection.cs
- __Error.cs
- XsltLoader.cs
- Deflater.cs
- ReflectionServiceProvider.cs
- NotificationContext.cs
- WebBrowserBase.cs
- DirectoryObjectSecurity.cs
- MetadataProperty.cs
- pingexception.cs
- InfoCardMetadataExchangeClient.cs
- TextEditorSpelling.cs
- CuspData.cs
- XslVisitor.cs
- BindingSource.cs
- RuntimeConfigLKG.cs
- ZipIOCentralDirectoryFileHeader.cs
- BaseValidatorDesigner.cs
- AmbientValueAttribute.cs
- Ray3DHitTestResult.cs
- SelectedPathEditor.cs
- SQLInt64.cs
- FrugalList.cs
- BuildProvider.cs
- CustomError.cs
- TextDecoration.cs
- HttpModulesInstallComponent.cs
- WebPartDisplayModeCancelEventArgs.cs
- WSSecurityTokenSerializer.cs
- PipelineModuleStepContainer.cs
- TextComposition.cs
- EntityObject.cs
- SchemaTypeEmitter.cs
- CorrelationQuery.cs
- ExpressionWriter.cs
- DataSourceCollectionBase.cs
- CodeObject.cs
- GridErrorDlg.cs
- RequestSecurityTokenForRemoteTokenFactory.cs
- Attributes.cs
- basenumberconverter.cs
- UnSafeCharBuffer.cs
- RequestCachingSection.cs
- ZipIOModeEnforcingStream.cs
- ListBase.cs
- NamedObject.cs
- XamlPointCollectionSerializer.cs
- CompositeCollectionView.cs
- OracleLob.cs
- CLSCompliantAttribute.cs
- CompositeFontFamily.cs
- Util.cs
- ComAdminInterfaces.cs
- WeakEventManager.cs
- CollectionView.cs
- TextElementEditingBehaviorAttribute.cs
- SiteOfOriginContainer.cs
- AuthenticatedStream.cs
- DataGridHeaderBorder.cs
- RealProxy.cs
- WizardPanel.cs
- BuilderPropertyEntry.cs
- FixedDocumentSequencePaginator.cs
- TargetControlTypeCache.cs
- StatusBarItemAutomationPeer.cs
- ValidatingReaderNodeData.cs
- CancelRequestedQuery.cs
- DocumentOrderQuery.cs
- CollectionChangeEventArgs.cs
- ZipPackage.cs
- ResXFileRef.cs
- DataGridrowEditEndingEventArgs.cs
- LinkDescriptor.cs
- PagesChangedEventArgs.cs
- Expression.cs
- mda.cs
- UrlParameterReader.cs
- XmlSchemaAppInfo.cs
- IFlowDocumentViewer.cs
- WeakKeyDictionary.cs
- ProtocolsSection.cs
- KeyedHashAlgorithm.cs
- RotationValidation.cs
- CompiledRegexRunnerFactory.cs
- RepeaterItem.cs
- DataList.cs
- DependencyObjectCodeDomSerializer.cs
- HttpPostLocalhostServerProtocol.cs
- PersonalizationStateInfoCollection.cs