Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / ForEachAction.cs / 1305376 / ForEachAction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Collections; using System.Xml; using System.Xml.XPath; internal class ForEachAction : ContainerAction { private const int ProcessedSort = 2; private const int ProcessNextNode = 3; private const int PositionAdvanced = 4; private const int ContentsProcessed = 5; private int selectKey = Compiler.InvalidQueryKey; private ContainerAction sortContainer; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, "select"); compiler.CanHaveApplyImports = false; if (compiler.Recurse()) { CompileSortElements(compiler); CompileTemplate(compiler); compiler.ToParent(); } } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Ref.Equal(name, compiler.Atoms.Select)) { this.selectKey = compiler.AddQuery(value); } else { return false; } return true; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: if (sortContainer != null) { processor.InitSortArray(); processor.PushActionFrame(sortContainer, frame.NodeSet); frame.State = ProcessedSort; break; } goto case ProcessedSort; case ProcessedSort: frame.InitNewNodeSet(processor.StartQuery(frame.NodeSet, this.selectKey)); if (sortContainer != null) { Debug.Assert(processor.SortArray.Count != 0); frame.SortNewNodeSet(processor, processor.SortArray); } frame.State = ProcessNextNode; goto case ProcessNextNode; case ProcessNextNode: Debug.Assert(frame.State == ProcessNextNode); Debug.Assert(frame.NewNodeSet != null); if (frame.NewNextNode(processor)) { frame.State = PositionAdvanced; goto case PositionAdvanced; } else { frame.Finished(); break; } case PositionAdvanced: processor.PushActionFrame(frame, frame.NewNodeSet); frame.State = ContentsProcessed; break; case ContentsProcessed: frame.State = ProcessNextNode; goto case ProcessNextNode; } } protected void CompileSortElements(Compiler compiler) { NavigatorInput input = compiler.Input; do { switch(input.NodeType) { case XPathNodeType.Element: if (Ref.Equal(input.NamespaceURI, input.Atoms.UriXsl) && Ref.Equal(input.LocalName, input.Atoms.Sort)) { if (sortContainer == null) { sortContainer = new ContainerAction(); } sortContainer.AddAction(compiler.CreateSortAction()); continue; } return; case XPathNodeType.Text: return; case XPathNodeType.SignificantWhitespace: this.AddEvent(compiler.CreateTextEvent()); continue; default : continue; } } while (input.Advance()); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Collections; using System.Xml; using System.Xml.XPath; internal class ForEachAction : ContainerAction { private const int ProcessedSort = 2; private const int ProcessNextNode = 3; private const int PositionAdvanced = 4; private const int ContentsProcessed = 5; private int selectKey = Compiler.InvalidQueryKey; private ContainerAction sortContainer; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, "select"); compiler.CanHaveApplyImports = false; if (compiler.Recurse()) { CompileSortElements(compiler); CompileTemplate(compiler); compiler.ToParent(); } } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Ref.Equal(name, compiler.Atoms.Select)) { this.selectKey = compiler.AddQuery(value); } else { return false; } return true; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); switch (frame.State) { case Initialized: if (sortContainer != null) { processor.InitSortArray(); processor.PushActionFrame(sortContainer, frame.NodeSet); frame.State = ProcessedSort; break; } goto case ProcessedSort; case ProcessedSort: frame.InitNewNodeSet(processor.StartQuery(frame.NodeSet, this.selectKey)); if (sortContainer != null) { Debug.Assert(processor.SortArray.Count != 0); frame.SortNewNodeSet(processor, processor.SortArray); } frame.State = ProcessNextNode; goto case ProcessNextNode; case ProcessNextNode: Debug.Assert(frame.State == ProcessNextNode); Debug.Assert(frame.NewNodeSet != null); if (frame.NewNextNode(processor)) { frame.State = PositionAdvanced; goto case PositionAdvanced; } else { frame.Finished(); break; } case PositionAdvanced: processor.PushActionFrame(frame, frame.NewNodeSet); frame.State = ContentsProcessed; break; case ContentsProcessed: frame.State = ProcessNextNode; goto case ProcessNextNode; } } protected void CompileSortElements(Compiler compiler) { NavigatorInput input = compiler.Input; do { switch(input.NodeType) { case XPathNodeType.Element: if (Ref.Equal(input.NamespaceURI, input.Atoms.UriXsl) && Ref.Equal(input.LocalName, input.Atoms.Sort)) { if (sortContainer == null) { sortContainer = new ContainerAction(); } sortContainer.AddAction(compiler.CreateSortAction()); continue; } return; case XPathNodeType.Text: return; case XPathNodeType.SignificantWhitespace: this.AddEvent(compiler.CreateTextEvent()); continue; default : continue; } } while (input.Advance()); } } } // 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
- FolderNameEditor.cs
- WebPartVerbsEventArgs.cs
- ClockGroup.cs
- XamlSerializerUtil.cs
- ConstructorExpr.cs
- elementinformation.cs
- Pair.cs
- DesignBindingConverter.cs
- Misc.cs
- PagePropertiesChangingEventArgs.cs
- DocumentXPathNavigator.cs
- CriticalExceptions.cs
- SqlCacheDependencyDatabase.cs
- BulletedList.cs
- ScrollEventArgs.cs
- HtmlElementEventArgs.cs
- FormViewActionList.cs
- SafeMarshalContext.cs
- namescope.cs
- BufferedGraphicsManager.cs
- SHA1Managed.cs
- WebServiceErrorEvent.cs
- SchemaCollectionPreprocessor.cs
- BaseParser.cs
- OrderedDictionary.cs
- JsonClassDataContract.cs
- Qualifier.cs
- BmpBitmapEncoder.cs
- RequestDescription.cs
- HtmlTextArea.cs
- DetailsViewRowCollection.cs
- ErrorStyle.cs
- designeractionbehavior.cs
- DataGridColumnStyleMappingNameEditor.cs
- ObjectResult.cs
- Thumb.cs
- HMACSHA256.cs
- WinFormsComponentEditor.cs
- VirtualizedContainerService.cs
- BrushMappingModeValidation.cs
- CommunicationException.cs
- webbrowsersite.cs
- CategoryList.cs
- StorageModelBuildProvider.cs
- RegexReplacement.cs
- GenericXmlSecurityTokenAuthenticator.cs
- TypeResolvingOptionsAttribute.cs
- IdleTimeoutMonitor.cs
- EncoderParameters.cs
- OpenTypeCommon.cs
- PeerCollaboration.cs
- SelectionRangeConverter.cs
- COM2ExtendedUITypeEditor.cs
- NullReferenceException.cs
- SoapElementAttribute.cs
- ExpressionBindings.cs
- MessageSecurityOverMsmqElement.cs
- UnSafeCharBuffer.cs
- SqlAliaser.cs
- StateDesigner.LayoutSelectionGlyph.cs
- SqlServer2KCompatibilityCheck.cs
- CompositeCollectionView.cs
- UpdateCommand.cs
- UIAgentCrashedException.cs
- WebPartEditorApplyVerb.cs
- TreeIterators.cs
- ValidationHelpers.cs
- ErrorsHelper.cs
- BitmapImage.cs
- BamlTreeNode.cs
- UnsafeNativeMethods.cs
- AspNetSynchronizationContext.cs
- ImageIndexConverter.cs
- EncoderBestFitFallback.cs
- FileSecurity.cs
- NativeObjectSecurity.cs
- PeerNearMe.cs
- RawStylusInputReport.cs
- MarkerProperties.cs
- XmlFormatWriterGenerator.cs
- RemoteX509AsymmetricSecurityKey.cs
- XPathNavigator.cs
- ActivityCollectionMarkupSerializer.cs
- CorrelationResolver.cs
- Gdiplus.cs
- AsymmetricSignatureFormatter.cs
- PersonalizationProviderCollection.cs
- PathFigure.cs
- SortKey.cs
- StrongNameKeyPair.cs
- DoubleKeyFrameCollection.cs
- relpropertyhelper.cs
- FigureParaClient.cs
- StateRuntime.cs
- LocalIdKeyIdentifierClause.cs
- EntityConnection.cs
- UnknownBitmapEncoder.cs
- CompensableActivity.cs
- CompilationSection.cs
- IdentitySection.cs