Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- IgnoreDataMemberAttribute.cs
- StubHelpers.cs
- __ComObject.cs
- UIElement3DAutomationPeer.cs
- OptimalBreakSession.cs
- TextUtf8RawTextWriter.cs
- ILGenerator.cs
- PointConverter.cs
- MarshalByRefObject.cs
- BinaryCommonClasses.cs
- PublisherMembershipCondition.cs
- EmbeddedObject.cs
- SchemaElementDecl.cs
- Hyperlink.cs
- VerificationException.cs
- ProjectionAnalyzer.cs
- Console.cs
- UrlAuthorizationModule.cs
- Point3D.cs
- TextEditorCopyPaste.cs
- MediaPlayer.cs
- RequestCache.cs
- PropertyPathWorker.cs
- Odbc32.cs
- CounterCreationData.cs
- GenericWebPart.cs
- SelectorAutomationPeer.cs
- NameValuePair.cs
- BitmapEffectState.cs
- TcpTransportSecurityElement.cs
- ReadOnlyDataSource.cs
- WebServiceEndpoint.cs
- DataSourceCache.cs
- TraceSource.cs
- Label.cs
- Message.cs
- processwaithandle.cs
- ImageSourceTypeConverter.cs
- PagerSettings.cs
- PeerInvitationResponse.cs
- _NestedMultipleAsyncResult.cs
- CalendarDay.cs
- MenuItemStyleCollection.cs
- MapPathBasedVirtualPathProvider.cs
- FamilyMap.cs
- SimpleLine.cs
- ActivationServices.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- PerfCounterSection.cs
- Metafile.cs
- ProcessInfo.cs
- CmsUtils.cs
- OlePropertyStructs.cs
- AccessControlList.cs
- DetailsViewPageEventArgs.cs
- Char.cs
- Encoding.cs
- Parsers.cs
- DateTimeFormatInfoScanner.cs
- Border.cs
- XmlMessageFormatter.cs
- AtomServiceDocumentSerializer.cs
- ControlBindingsCollection.cs
- BackgroundFormatInfo.cs
- ListViewItemMouseHoverEvent.cs
- LogArchiveSnapshot.cs
- ComplexType.cs
- OperationInfo.cs
- SystemResourceKey.cs
- CompilerResults.cs
- Int32.cs
- Menu.cs
- SoapMessage.cs
- ErrorHandlingAcceptor.cs
- SecureStringHasher.cs
- indexingfiltermarshaler.cs
- SmiEventSink.cs
- RemoveStoryboard.cs
- SrgsRuleRef.cs
- ActivityExecutionContext.cs
- SoapSchemaImporter.cs
- CodeEntryPointMethod.cs
- SymmetricKey.cs
- ConfigurationSectionGroupCollection.cs
- InternalCache.cs
- ExpressionValueEditor.cs
- TransformCryptoHandle.cs
- Page.cs
- ApplySecurityAndSendAsyncResult.cs
- SHA1CryptoServiceProvider.cs
- DriveNotFoundException.cs
- TextWriter.cs
- MethodAccessException.cs
- MemoryMappedViewAccessor.cs
- IndicShape.cs
- ListView.cs
- GPRECT.cs
- IUnknownConstantAttribute.cs
- MenuItem.cs
- IMembershipProvider.cs