Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyNodeSetAction.cs / 1 / CopyNodeSetAction.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.Xml; using System.Xml.XPath; internal sealed class CopyNodeSetAction : Action { private const int BeginEvent = 2; private const int Contents = 3; private const int Namespaces = 4; private const int Attributes = 5; private const int Subtree = 6; private const int EndEvent = 7; private static CopyNodeSetAction s_Action = new CopyNodeSetAction(); internal static CopyNodeSetAction GetAction() { Debug.Assert(s_Action != null); return s_Action; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); while (processor.CanContinue) { switch (frame.State) { case Initialized: if (frame.NextNode(processor)) { frame.State = BeginEvent; goto case BeginEvent; } else { frame.Finished(); break; } case BeginEvent: Debug.Assert(frame.State == BeginEvent); if (SendBeginEvent(processor, frame.Node) == false) { // This one wasn't output break; } frame.State = Contents; continue; case Contents: Debug.Assert(frame.State == Contents); XPathNodeType nodeType = frame.Node.NodeType; if (nodeType == XPathNodeType.Element || nodeType == XPathNodeType.Root) { processor.PushActionFrame(CopyNamespacesAction.GetAction(), frame.NodeSet); frame.State = Namespaces; break; } if (SendTextEvent(processor, frame.Node) == false) { // This one wasn't output break; } frame.State = EndEvent; continue; case Namespaces: processor.PushActionFrame(CopyAttributesAction.GetAction(), frame.NodeSet); frame.State = Attributes; break; case Attributes: if (frame.Node.HasChildren) { processor.PushActionFrame(GetAction(), frame.Node.SelectChildren(XPathNodeType.All)); frame.State = Subtree; break; } frame.State = EndEvent; goto case EndEvent; case Subtree: //frame.Node.MoveToParent(); frame.State = EndEvent; continue; case EndEvent: Debug.Assert(frame.State == EndEvent); if (SendEndEvent(processor, frame.Node) == false) { // This one wasn't output break; } frame.State = Initialized; continue; } break; } } private static bool SendBeginEvent(Processor processor, XPathNavigator node) { return processor.CopyBeginEvent(node, node.IsEmptyElement); } private static bool SendTextEvent(Processor processor, XPathNavigator node) { return processor.CopyTextEvent(node); } private static bool SendEndEvent(Processor processor, XPathNavigator node) { return processor.CopyEndEvent(node); } } } // 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.Xml; using System.Xml.XPath; internal sealed class CopyNodeSetAction : Action { private const int BeginEvent = 2; private const int Contents = 3; private const int Namespaces = 4; private const int Attributes = 5; private const int Subtree = 6; private const int EndEvent = 7; private static CopyNodeSetAction s_Action = new CopyNodeSetAction(); internal static CopyNodeSetAction GetAction() { Debug.Assert(s_Action != null); return s_Action; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); while (processor.CanContinue) { switch (frame.State) { case Initialized: if (frame.NextNode(processor)) { frame.State = BeginEvent; goto case BeginEvent; } else { frame.Finished(); break; } case BeginEvent: Debug.Assert(frame.State == BeginEvent); if (SendBeginEvent(processor, frame.Node) == false) { // This one wasn't output break; } frame.State = Contents; continue; case Contents: Debug.Assert(frame.State == Contents); XPathNodeType nodeType = frame.Node.NodeType; if (nodeType == XPathNodeType.Element || nodeType == XPathNodeType.Root) { processor.PushActionFrame(CopyNamespacesAction.GetAction(), frame.NodeSet); frame.State = Namespaces; break; } if (SendTextEvent(processor, frame.Node) == false) { // This one wasn't output break; } frame.State = EndEvent; continue; case Namespaces: processor.PushActionFrame(CopyAttributesAction.GetAction(), frame.NodeSet); frame.State = Attributes; break; case Attributes: if (frame.Node.HasChildren) { processor.PushActionFrame(GetAction(), frame.Node.SelectChildren(XPathNodeType.All)); frame.State = Subtree; break; } frame.State = EndEvent; goto case EndEvent; case Subtree: //frame.Node.MoveToParent(); frame.State = EndEvent; continue; case EndEvent: Debug.Assert(frame.State == EndEvent); if (SendEndEvent(processor, frame.Node) == false) { // This one wasn't output break; } frame.State = Initialized; continue; } break; } } private static bool SendBeginEvent(Processor processor, XPathNavigator node) { return processor.CopyBeginEvent(node, node.IsEmptyElement); } private static bool SendTextEvent(Processor processor, XPathNavigator node) { return processor.CopyTextEvent(node); } private static bool SendEndEvent(Processor processor, XPathNavigator node) { return processor.CopyEndEvent(node); } } } // 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
- PartitionResolver.cs
- DPTypeDescriptorContext.cs
- ADMembershipProvider.cs
- MailWriter.cs
- OutputScopeManager.cs
- TimeSpanValidatorAttribute.cs
- TaiwanLunisolarCalendar.cs
- DependencyPropertyKey.cs
- WindowsAuthenticationModule.cs
- WorkflowTimerService.cs
- ListBoxItem.cs
- ExpressionReplacer.cs
- BufferedGraphicsManager.cs
- FontResourceCache.cs
- GPRECT.cs
- EntityCollection.cs
- RecordsAffectedEventArgs.cs
- TemplateKeyConverter.cs
- TrimSurroundingWhitespaceAttribute.cs
- ServiceContractListItemList.cs
- Evaluator.cs
- IntellisenseTextBox.cs
- HtmlElement.cs
- GenericRootAutomationPeer.cs
- WindowsListView.cs
- COM2FontConverter.cs
- InkPresenter.cs
- DecoderBestFitFallback.cs
- ServicePoint.cs
- Configuration.cs
- VoiceInfo.cs
- Decorator.cs
- TemplateBaseAction.cs
- Validator.cs
- LayoutEvent.cs
- SrgsSemanticInterpretationTag.cs
- MaterializeFromAtom.cs
- EventDescriptor.cs
- SpecularMaterial.cs
- UnsignedPublishLicense.cs
- AutoGeneratedFieldProperties.cs
- WebHttpDispatchOperationSelectorData.cs
- ActivityDesignerResources.cs
- Token.cs
- UnsafeNativeMethods.cs
- SendKeys.cs
- RadioButton.cs
- WebPartDesigner.cs
- InfoCardTrace.cs
- StylusOverProperty.cs
- PathNode.cs
- SystemColors.cs
- ColumnCollection.cs
- WebPartCancelEventArgs.cs
- Properties.cs
- DataBoundControlActionList.cs
- ProfileManager.cs
- OptimizedTemplateContent.cs
- SchemaMapping.cs
- UnrecognizedAssertionsBindingElement.cs
- ConnectionsZone.cs
- HMACMD5.cs
- StylusPlugin.cs
- QuaternionIndependentAnimationStorage.cs
- RtfToXamlReader.cs
- SrgsRulesCollection.cs
- SaveFileDialog.cs
- DependencyPropertyAttribute.cs
- UndoUnit.cs
- ToolBar.cs
- ErrorHandler.cs
- GroupBox.cs
- DtdParser.cs
- HttpUnhandledOperationInvoker.cs
- LoginName.cs
- wgx_commands.cs
- DataBoundControlHelper.cs
- DifferencingCollection.cs
- BaseCodeDomTreeGenerator.cs
- SqlFunctionAttribute.cs
- FacetValues.cs
- SchemaImporterExtensionsSection.cs
- DispatchWrapper.cs
- SHA256Managed.cs
- ThreadTrace.cs
- CodeMethodInvokeExpression.cs
- dbdatarecord.cs
- StyleTypedPropertyAttribute.cs
- CustomAttributeSerializer.cs
- XmlnsCompatibleWithAttribute.cs
- XsltCompileContext.cs
- DBSqlParserTable.cs
- ButtonAutomationPeer.cs
- UpdateManifestForBrowserApplication.cs
- NamedElement.cs
- XmlCDATASection.cs
- followingquery.cs
- CaseInsensitiveComparer.cs
- DbQueryCommandTree.cs
- ResourceExpressionEditorSheet.cs