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
- DocumentPageView.cs
- HotCommands.cs
- SignHashRequest.cs
- updateconfighost.cs
- WpfGeneratedKnownProperties.cs
- COM2ColorConverter.cs
- HtmlElement.cs
- SmiMetaData.cs
- ClientEventManager.cs
- TextReturnReader.cs
- InvalidAsynchronousStateException.cs
- OpenTypeMethods.cs
- Scene3D.cs
- ZipPackagePart.cs
- ComponentCommands.cs
- LoginCancelEventArgs.cs
- ConfigXmlAttribute.cs
- ImageIndexConverter.cs
- GridViewEditEventArgs.cs
- InProcStateClientManager.cs
- CFGGrammar.cs
- CompilationUtil.cs
- Metadata.cs
- ComboBoxItem.cs
- NTAccount.cs
- DataColumnMapping.cs
- XmlSchemaRedefine.cs
- GenericWebPart.cs
- RegexGroup.cs
- RtType.cs
- LingerOption.cs
- UserUseLicenseDictionaryLoader.cs
- mansign.cs
- Clipboard.cs
- LogFlushAsyncResult.cs
- SQLConvert.cs
- CloseCollectionAsyncResult.cs
- XamlNamespaceHelper.cs
- _NestedMultipleAsyncResult.cs
- WebPartPersonalization.cs
- CodeGenerator.cs
- VectorAnimationUsingKeyFrames.cs
- WebConfigurationFileMap.cs
- ParameterReplacerVisitor.cs
- XamlToRtfParser.cs
- ConfigPathUtility.cs
- XamlReader.cs
- Cell.cs
- UInt16Converter.cs
- KeyManager.cs
- precedingquery.cs
- DbProviderManifest.cs
- infer.cs
- TreeView.cs
- PolicyException.cs
- ContainsRowNumberChecker.cs
- InputMethodStateChangeEventArgs.cs
- SparseMemoryStream.cs
- MetadataItem_Static.cs
- WriteStateInfoBase.cs
- CommandField.cs
- TextDecoration.cs
- ResourceDescriptionAttribute.cs
- XPathDocument.cs
- KeyGestureValueSerializer.cs
- CursorConverter.cs
- ResourceDisplayNameAttribute.cs
- ColorPalette.cs
- DiagnosticTrace.cs
- Region.cs
- CommentAction.cs
- NativeMethodsCLR.cs
- FixUpCollection.cs
- ContainerControl.cs
- NativeMethods.cs
- EntityContainer.cs
- ResolveNameEventArgs.cs
- RadioButtonStandardAdapter.cs
- DayRenderEvent.cs
- IPGlobalProperties.cs
- TypeDescriptor.cs
- SpStreamWrapper.cs
- CancellationToken.cs
- Transform3DCollection.cs
- SqlComparer.cs
- assemblycache.cs
- _CacheStreams.cs
- DataRelationPropertyDescriptor.cs
- HtmlHead.cs
- IDispatchConstantAttribute.cs
- StructuredCompositeActivityDesigner.cs
- TableColumn.cs
- MouseEventArgs.cs
- SrgsDocumentParser.cs
- ToolStripContextMenu.cs
- ImageListStreamer.cs
- IconConverter.cs
- ContentType.cs
- SAPICategories.cs
- TcpChannelHelper.cs