Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyAction.cs / 1 / CopyAction.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; using MS.Internal.Xml.XPath; internal class CopyAction : ContainerAction { // Local execution states private const int CopyText = 4; private const int NamespaceCopy = 5; private const int ContentsCopy = 6; private const int ProcessChildren = 7; private const int ChildrenOnly = 8; private string useAttributeSets; private bool empty; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); } if (this.containedActions == null) this.empty = true; } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.UseAttributeSets)) { this.useAttributeSets = value; AddAction(compiler.CreateUseAttributeSetsAction()); } else { return false; } return true; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); while (processor.CanContinue) { switch (frame.State) { case Initialized: if (Processor.IsRoot(frame.Node)) { processor.PushActionFrame(frame); frame.State = ChildrenOnly; break; } if (processor.CopyBeginEvent(frame.Node, this.empty) == false) { // This event wasn't processed break; } frame.State = NamespaceCopy; continue; case NamespaceCopy: frame.State = ContentsCopy; if ( frame.Node.NodeType == XPathNodeType.Element ) { processor.PushActionFrame(CopyNamespacesAction.GetAction(), frame.NodeSet); break; } continue; case ContentsCopy: if (frame.Node.NodeType == XPathNodeType.Element && !this.empty) { //Debug.Assert(frame.Node.HasValue == false); processor.PushActionFrame(frame); frame.State = ProcessChildren; break; } else { if (processor.CopyTextEvent(frame.Node)) { frame.State = ProcessChildren; continue; } else { // This event wasn't processed break; } } case ProcessChildren: if (processor.CopyEndEvent(frame.Node)) { frame.Finished(); } break; case ChildrenOnly: frame.Finished(); break; default: Debug.Fail("Invalid CopyAction execution state"); break; } break; } } } } // 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; using MS.Internal.Xml.XPath; internal class CopyAction : ContainerAction { // Local execution states private const int CopyText = 4; private const int NamespaceCopy = 5; private const int ContentsCopy = 6; private const int ProcessChildren = 7; private const int ChildrenOnly = 8; private string useAttributeSets; private bool empty; internal override void Compile(Compiler compiler) { CompileAttributes(compiler); if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); } if (this.containedActions == null) this.empty = true; } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.UseAttributeSets)) { this.useAttributeSets = value; AddAction(compiler.CreateUseAttributeSetsAction()); } else { return false; } return true; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); while (processor.CanContinue) { switch (frame.State) { case Initialized: if (Processor.IsRoot(frame.Node)) { processor.PushActionFrame(frame); frame.State = ChildrenOnly; break; } if (processor.CopyBeginEvent(frame.Node, this.empty) == false) { // This event wasn't processed break; } frame.State = NamespaceCopy; continue; case NamespaceCopy: frame.State = ContentsCopy; if ( frame.Node.NodeType == XPathNodeType.Element ) { processor.PushActionFrame(CopyNamespacesAction.GetAction(), frame.NodeSet); break; } continue; case ContentsCopy: if (frame.Node.NodeType == XPathNodeType.Element && !this.empty) { //Debug.Assert(frame.Node.HasValue == false); processor.PushActionFrame(frame); frame.State = ProcessChildren; break; } else { if (processor.CopyTextEvent(frame.Node)) { frame.State = ProcessChildren; continue; } else { // This event wasn't processed break; } } case ProcessChildren: if (processor.CopyEndEvent(frame.Node)) { frame.Finished(); } break; case ChildrenOnly: frame.Finished(); break; default: Debug.Fail("Invalid CopyAction execution state"); break; } break; } } } } // 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
- RenderDataDrawingContext.cs
- InvalidProgramException.cs
- StylusPointPropertyInfoDefaults.cs
- ClockController.cs
- TypeUsage.cs
- WebControl.cs
- SoapFormatExtensions.cs
- WebPartEventArgs.cs
- ControlIdConverter.cs
- MultipleViewProviderWrapper.cs
- Scalars.cs
- Model3D.cs
- AssemblyBuilder.cs
- TextDecorationUnitValidation.cs
- WebBrowser.cs
- InlineObject.cs
- TabControlAutomationPeer.cs
- DataRow.cs
- XmlUnspecifiedAttribute.cs
- TextParaClient.cs
- EntityViewGenerationAttribute.cs
- ActiveXSerializer.cs
- ReversePositionQuery.cs
- FontWeights.cs
- BigInt.cs
- SolidColorBrush.cs
- PerfService.cs
- CheckedPointers.cs
- Accessors.cs
- ErrorFormatter.cs
- CompilerInfo.cs
- ReachFixedDocumentSerializerAsync.cs
- ValueOfAction.cs
- ReferencedCategoriesDocument.cs
- TrackingCondition.cs
- SingletonInstanceContextProvider.cs
- BStrWrapper.cs
- ItemList.cs
- EastAsianLunisolarCalendar.cs
- PropertyPathConverter.cs
- FixedTextView.cs
- TextBox.cs
- Popup.cs
- Select.cs
- MenuItemBindingCollection.cs
- NullableDecimalAverageAggregationOperator.cs
- LinqDataSourceInsertEventArgs.cs
- ConfigurationStrings.cs
- FlowDocumentReader.cs
- MimeTypeAttribute.cs
- TreeNode.cs
- TextElementEnumerator.cs
- UpdateException.cs
- PoisonMessageException.cs
- ImageAnimator.cs
- SessionStateModule.cs
- ClientConfigurationHost.cs
- SelectingProviderEventArgs.cs
- FilterException.cs
- MimeMapping.cs
- PermissionAttributes.cs
- ConfigurationValues.cs
- SymDocumentType.cs
- SrgsRule.cs
- TraceSwitch.cs
- GridViewDeleteEventArgs.cs
- X509WindowsSecurityToken.cs
- WebPartTransformer.cs
- DataTableMappingCollection.cs
- WindowsSolidBrush.cs
- DesignTimeSiteMapProvider.cs
- TreeWalker.cs
- SiteMapNode.cs
- Symbol.cs
- ServiceNameElement.cs
- DefaultMemberAttribute.cs
- MinMaxParagraphWidth.cs
- WorkflowRuntimeElement.cs
- Timeline.cs
- QuestionEventArgs.cs
- WebRequestModuleElement.cs
- Binding.cs
- EventLogEntry.cs
- UriTemplateHelpers.cs
- _AuthenticationState.cs
- DataServices.cs
- httpapplicationstate.cs
- AuthenticationException.cs
- JulianCalendar.cs
- StrongTypingException.cs
- PaperSize.cs
- RijndaelManaged.cs
- AgileSafeNativeMemoryHandle.cs
- SiteMembershipCondition.cs
- Walker.cs
- DeviceContexts.cs
- PrintDialog.cs
- _BaseOverlappedAsyncResult.cs
- DesigntimeLicenseContext.cs
- TextEditorCopyPaste.cs