Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / Xslt / KeyMatchBuilder.cs / 1 / KeyMatchBuilder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Collections; using System.Collections.Generic; using System.Xml; using System.Xml.XPath; using MS.Internal.Xml; using System.Xml.Xsl.XPath; using System.Xml.Xsl.Qil; namespace System.Xml.Xsl.Xslt { internal class KeyMatchBuilder : XPathBuilder, XPathPatternParser.IPatternBuilder { private int depth = 0; PathConvertor convertor; public KeyMatchBuilder(IXPathEnvironment env) : base(env) { convertor = new PathConvertor(env.Factory); } public override void StartBuild() { Debug.Assert(0 <= depth && depth <= 1, "this shouldn't happen"); if (depth == 0) { base.StartBuild(); } depth ++; } public override QilNode EndBuild(QilNode result) { depth --; Debug.Assert(0 <= depth && depth <= 1, "this shouldn't happen"); if (result == null) { // special door to clean builder state in exception handlers return base.EndBuild(result); } if (depth == 0) { Debug.Assert(base.numFixupLast == 0); Debug.Assert(base.numFixupPosition == 0); result = convertor.ConvertReletive2Absolute(result, base.fixupCurrent); result = base.EndBuild(result); } return result; } // -------------------------------------- GetPredicateBuilder() --------------------------------------- public virtual IXPathBuilderGetPredicateBuilder(QilNode ctx) { return this; } // This code depends on particula shapes that XPathBuilder generates. // It works only on pathes. // ToDo: We can do better here. internal class PathConvertor : QilReplaceVisitor { new XPathQilFactory f; QilNode fixup; public PathConvertor(XPathQilFactory f) : base (f.BaseFactory) { this.f = f; } public QilNode ConvertReletive2Absolute(QilNode node, QilNode fixup) { Debug.Assert(node != null); Debug.Assert(fixup != null); this.fixup = fixup; return this.Visit(node); } // transparantly passing through Union and DocOrder protected override QilNode Visit(QilNode n) { if ( n.NodeType == QilNodeType.Union || n.NodeType == QilNodeType.DocOrderDistinct || n.NodeType == QilNodeType.Filter || n.NodeType == QilNodeType.Loop ) { return base.Visit(n); } return n; } // Filers that travers Content being converted to global travers: // Filter($j= ... Filter($i = Content(fixup), ...)) -> Filter($j= ... Filter($i = Loop($j = DesendentOrSelf(Root(fixup)), Content($j), ...))) protected override QilNode VisitLoop(QilLoop n) { if (n.Variable.Binding.NodeType == QilNodeType.Root || n.Variable.Binding.NodeType == QilNodeType.Deref) { // This is absolute path already. We shouldn't touch it return n; } if (n.Variable.Binding.NodeType == QilNodeType.Content) { // This is "begin" of reletive path. Let's rewrite it as absolute: QilUnary content = (QilUnary)n.Variable.Binding; Debug.Assert(content.Child == this.fixup, "Unexpected content node"); QilIterator it = f.For(f.DescendantOrSelf(f.Root(this.fixup))); content.Child = it; n.Variable.Binding = f.Loop(it, content); return n; } n.Variable.Binding = Visit(n.Variable.Binding); return n; } protected override QilNode VisitFilter(QilLoop n) { return VisitLoop(n); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Collections; using System.Collections.Generic; using System.Xml; using System.Xml.XPath; using MS.Internal.Xml; using System.Xml.Xsl.XPath; using System.Xml.Xsl.Qil; namespace System.Xml.Xsl.Xslt { internal class KeyMatchBuilder : XPathBuilder, XPathPatternParser.IPatternBuilder { private int depth = 0; PathConvertor convertor; public KeyMatchBuilder(IXPathEnvironment env) : base(env) { convertor = new PathConvertor(env.Factory); } public override void StartBuild() { Debug.Assert(0 <= depth && depth <= 1, "this shouldn't happen"); if (depth == 0) { base.StartBuild(); } depth ++; } public override QilNode EndBuild(QilNode result) { depth --; Debug.Assert(0 <= depth && depth <= 1, "this shouldn't happen"); if (result == null) { // special door to clean builder state in exception handlers return base.EndBuild(result); } if (depth == 0) { Debug.Assert(base.numFixupLast == 0); Debug.Assert(base.numFixupPosition == 0); result = convertor.ConvertReletive2Absolute(result, base.fixupCurrent); result = base.EndBuild(result); } return result; } // -------------------------------------- GetPredicateBuilder() --------------------------------------- public virtual IXPathBuilderGetPredicateBuilder(QilNode ctx) { return this; } // This code depends on particula shapes that XPathBuilder generates. // It works only on pathes. // ToDo: We can do better here. internal class PathConvertor : QilReplaceVisitor { new XPathQilFactory f; QilNode fixup; public PathConvertor(XPathQilFactory f) : base (f.BaseFactory) { this.f = f; } public QilNode ConvertReletive2Absolute(QilNode node, QilNode fixup) { Debug.Assert(node != null); Debug.Assert(fixup != null); this.fixup = fixup; return this.Visit(node); } // transparantly passing through Union and DocOrder protected override QilNode Visit(QilNode n) { if ( n.NodeType == QilNodeType.Union || n.NodeType == QilNodeType.DocOrderDistinct || n.NodeType == QilNodeType.Filter || n.NodeType == QilNodeType.Loop ) { return base.Visit(n); } return n; } // Filers that travers Content being converted to global travers: // Filter($j= ... Filter($i = Content(fixup), ...)) -> Filter($j= ... Filter($i = Loop($j = DesendentOrSelf(Root(fixup)), Content($j), ...))) protected override QilNode VisitLoop(QilLoop n) { if (n.Variable.Binding.NodeType == QilNodeType.Root || n.Variable.Binding.NodeType == QilNodeType.Deref) { // This is absolute path already. We shouldn't touch it return n; } if (n.Variable.Binding.NodeType == QilNodeType.Content) { // This is "begin" of reletive path. Let's rewrite it as absolute: QilUnary content = (QilUnary)n.Variable.Binding; Debug.Assert(content.Child == this.fixup, "Unexpected content node"); QilIterator it = f.For(f.DescendantOrSelf(f.Root(this.fixup))); content.Child = it; n.Variable.Binding = f.Loop(it, content); return n; } n.Variable.Binding = Visit(n.Variable.Binding); return n; } protected override QilNode VisitFilter(QilLoop n) { return VisitLoop(n); } } } } // 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
- OdbcRowUpdatingEvent.cs
- AstTree.cs
- Trustee.cs
- CustomAttribute.cs
- FileVersion.cs
- SingletonInstanceContextProvider.cs
- FileDialog.cs
- Transform3DGroup.cs
- GestureRecognitionResult.cs
- UniformGrid.cs
- PatternMatcher.cs
- SqlFactory.cs
- XmlLoader.cs
- TransformPattern.cs
- CodePageUtils.cs
- MenuItemStyleCollection.cs
- OdbcException.cs
- GeometryCollection.cs
- SslSecurityTokenParameters.cs
- GridViewActionList.cs
- HtmlLinkAdapter.cs
- ValueProviderWrapper.cs
- ComponentCommands.cs
- CodeParameterDeclarationExpressionCollection.cs
- Rules.cs
- OleDbPropertySetGuid.cs
- SqlClientPermission.cs
- MethodExpr.cs
- Variant.cs
- WebPartManagerInternals.cs
- StylusPlugInCollection.cs
- AxisAngleRotation3D.cs
- HttpApplication.cs
- UnsafeNativeMethods.cs
- SourceFileBuildProvider.cs
- ServiceXNameTypeConverter.cs
- DSASignatureDeformatter.cs
- InstanceHandle.cs
- SelectorItemAutomationPeer.cs
- AccessedThroughPropertyAttribute.cs
- WindowsTab.cs
- PropertyValueUIItem.cs
- WebPartEditVerb.cs
- RawAppCommandInputReport.cs
- infer.cs
- SyncMethodInvoker.cs
- HWStack.cs
- DataSourceHelper.cs
- BmpBitmapEncoder.cs
- X509CertificateCollection.cs
- XmlObjectSerializerContext.cs
- SizeChangedInfo.cs
- PenThread.cs
- TemplateEditingService.cs
- Run.cs
- KeyValuePair.cs
- XmlSerializerVersionAttribute.cs
- HttpsHostedTransportConfiguration.cs
- HttpCacheVary.cs
- Menu.cs
- CLSCompliantAttribute.cs
- ClassValidator.cs
- Rect3D.cs
- MULTI_QI.cs
- IdentityElement.cs
- AssemblyAssociatedContentFileAttribute.cs
- SqlDependencyListener.cs
- AuthenticationException.cs
- ImportCatalogPart.cs
- CroppedBitmap.cs
- HitTestWithGeometryDrawingContextWalker.cs
- DataGridColumnFloatingHeader.cs
- ModuleElement.cs
- DispatcherOperation.cs
- HelloOperation11AsyncResult.cs
- StreamWithDictionary.cs
- ThousandthOfEmRealPoints.cs
- IntSecurity.cs
- DictionaryKeyPropertyAttribute.cs
- WorkflowDesignerColors.cs
- LinqDataSourceDeleteEventArgs.cs
- CustomAttributeSerializer.cs
- SettingsProviderCollection.cs
- ProfileParameter.cs
- SqlWebEventProvider.cs
- MobileTemplatedControlDesigner.cs
- LabelAutomationPeer.cs
- StaticSiteMapProvider.cs
- FlowDocumentScrollViewer.cs
- FragmentQueryKB.cs
- EventDescriptorCollection.cs
- FontWeights.cs
- TraceListeners.cs
- DescendentsWalker.cs
- XmlTextAttribute.cs
- UpdateManifestForBrowserApplication.cs
- Atom10FormatterFactory.cs
- InvalidOleVariantTypeException.cs
- DataControlField.cs
- cookiecontainer.cs