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 / ApplyTemplatesAction.cs / 1 / ApplyTemplatesAction.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 ApplyTemplatesAction : ContainerAction {
private const int ProcessedChildren = 2;
private const int ProcessNextNode = 3;
private const int PositionAdvanced = 4;
private const int TemplateProcessed = 5;
private int selectKey = Compiler.InvalidQueryKey;
private XmlQualifiedName mode;
//
//
//
//
//
private static ApplyTemplatesAction s_BuiltInRule = new ApplyTemplatesAction();
internal static ApplyTemplatesAction BuiltInRule() {
Debug.Assert(s_BuiltInRule != null);
return s_BuiltInRule;
}
internal static ApplyTemplatesAction BuiltInRule(XmlQualifiedName mode) {
return(mode == null || mode.IsEmpty) ? BuiltInRule() : new ApplyTemplatesAction(mode);
}
internal ApplyTemplatesAction() {}
private ApplyTemplatesAction(XmlQualifiedName mode) {
Debug.Assert(mode != null);
this.mode = mode;
}
internal override void Compile(Compiler compiler) {
CompileAttributes(compiler);
CompileContent(compiler);
}
internal override bool CompileAttribute(Compiler compiler) {
string name = compiler.Input.LocalName;
string value = compiler.Input.Value;
if (Keywords.Equals(name, compiler.Atoms.Select )) {
this.selectKey = compiler.AddQuery(value);
}
else if (Keywords.Equals(name, compiler.Atoms.Mode )) {
Debug.Assert(this.mode == null);
if (compiler.AllowBuiltInMode && value == "*") {
this.mode = Compiler.BuiltInMode;
}
else {
this.mode = compiler.CreateXPathQName(value);
}
}
else {
return false;
}
return true;
}
private void CompileContent(Compiler compiler) {
NavigatorInput input = compiler.Input;
if (compiler.Recurse()) {
do {
switch (input.NodeType) {
case XPathNodeType.Element:
compiler.PushNamespaceScope();
string nspace = input.NamespaceURI;
string name = input.LocalName;
if (Keywords.Equals(nspace, input.Atoms.XsltNamespace)) {
if (Keywords.Equals(name, input.Atoms.Sort)) {
AddAction(compiler.CreateSortAction());
}
else if (Keywords.Equals(name, input.Atoms.WithParam)) {
WithParamAction par = compiler.CreateWithParamAction();
CheckDuplicateParams(par.Name);
AddAction(par);
}
else {
throw compiler.UnexpectedKeyword();
}
}
else {
throw compiler.UnexpectedKeyword();
}
compiler.PopScope();
break;
case XPathNodeType.Comment:
case XPathNodeType.ProcessingInstruction:
case XPathNodeType.Whitespace:
case XPathNodeType.SignificantWhitespace:
break;
default:
throw XsltException.Create(Res.Xslt_InvalidContents, Keywords.s_ApplyTemplates);
}
}
while (compiler.Advance());
compiler.ToParent();
}
}
internal override void Execute(Processor processor, ActionFrame frame) {
Debug.Assert(processor != null && frame != null);
switch (frame.State) {
case Initialized:
processor.ResetParams();
processor.InitSortArray();
if (this.containedActions != null && this.containedActions.Count > 0) {
processor.PushActionFrame(frame);
frame.State = ProcessedChildren;
break;
}
goto case ProcessedChildren;
case ProcessedChildren:
if (this.selectKey == Compiler.InvalidQueryKey) {
if (! frame.Node.HasChildren) {
frame.Finished();
break;
}
frame.InitNewNodeSet(frame.Node.SelectChildren(XPathNodeType.All));
}
else {
frame.InitNewNodeSet(processor.StartQuery(frame.NodeSet, this.selectKey));
}
if (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:
Debug.Assert(frame.State == PositionAdvanced);
processor.PushTemplateLookup(frame.NewNodeSet, this.mode, /*importsOf:*/null);
frame.State = TemplateProcessed;
break;
case TemplateProcessed:
frame.State = ProcessNextNode;
goto case ProcessNextNode;
default:
Debug.Fail("Invalid ApplyTemplatesAction execution state");
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.Collections;
using System.Xml;
using System.Xml.XPath;
internal class ApplyTemplatesAction : ContainerAction {
private const int ProcessedChildren = 2;
private const int ProcessNextNode = 3;
private const int PositionAdvanced = 4;
private const int TemplateProcessed = 5;
private int selectKey = Compiler.InvalidQueryKey;
private XmlQualifiedName mode;
//
//
//
//
//
private static ApplyTemplatesAction s_BuiltInRule = new ApplyTemplatesAction();
internal static ApplyTemplatesAction BuiltInRule() {
Debug.Assert(s_BuiltInRule != null);
return s_BuiltInRule;
}
internal static ApplyTemplatesAction BuiltInRule(XmlQualifiedName mode) {
return(mode == null || mode.IsEmpty) ? BuiltInRule() : new ApplyTemplatesAction(mode);
}
internal ApplyTemplatesAction() {}
private ApplyTemplatesAction(XmlQualifiedName mode) {
Debug.Assert(mode != null);
this.mode = mode;
}
internal override void Compile(Compiler compiler) {
CompileAttributes(compiler);
CompileContent(compiler);
}
internal override bool CompileAttribute(Compiler compiler) {
string name = compiler.Input.LocalName;
string value = compiler.Input.Value;
if (Keywords.Equals(name, compiler.Atoms.Select )) {
this.selectKey = compiler.AddQuery(value);
}
else if (Keywords.Equals(name, compiler.Atoms.Mode )) {
Debug.Assert(this.mode == null);
if (compiler.AllowBuiltInMode && value == "*") {
this.mode = Compiler.BuiltInMode;
}
else {
this.mode = compiler.CreateXPathQName(value);
}
}
else {
return false;
}
return true;
}
private void CompileContent(Compiler compiler) {
NavigatorInput input = compiler.Input;
if (compiler.Recurse()) {
do {
switch (input.NodeType) {
case XPathNodeType.Element:
compiler.PushNamespaceScope();
string nspace = input.NamespaceURI;
string name = input.LocalName;
if (Keywords.Equals(nspace, input.Atoms.XsltNamespace)) {
if (Keywords.Equals(name, input.Atoms.Sort)) {
AddAction(compiler.CreateSortAction());
}
else if (Keywords.Equals(name, input.Atoms.WithParam)) {
WithParamAction par = compiler.CreateWithParamAction();
CheckDuplicateParams(par.Name);
AddAction(par);
}
else {
throw compiler.UnexpectedKeyword();
}
}
else {
throw compiler.UnexpectedKeyword();
}
compiler.PopScope();
break;
case XPathNodeType.Comment:
case XPathNodeType.ProcessingInstruction:
case XPathNodeType.Whitespace:
case XPathNodeType.SignificantWhitespace:
break;
default:
throw XsltException.Create(Res.Xslt_InvalidContents, Keywords.s_ApplyTemplates);
}
}
while (compiler.Advance());
compiler.ToParent();
}
}
internal override void Execute(Processor processor, ActionFrame frame) {
Debug.Assert(processor != null && frame != null);
switch (frame.State) {
case Initialized:
processor.ResetParams();
processor.InitSortArray();
if (this.containedActions != null && this.containedActions.Count > 0) {
processor.PushActionFrame(frame);
frame.State = ProcessedChildren;
break;
}
goto case ProcessedChildren;
case ProcessedChildren:
if (this.selectKey == Compiler.InvalidQueryKey) {
if (! frame.Node.HasChildren) {
frame.Finished();
break;
}
frame.InitNewNodeSet(frame.Node.SelectChildren(XPathNodeType.All));
}
else {
frame.InitNewNodeSet(processor.StartQuery(frame.NodeSet, this.selectKey));
}
if (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:
Debug.Assert(frame.State == PositionAdvanced);
processor.PushTemplateLookup(frame.NewNodeSet, this.mode, /*importsOf:*/null);
frame.State = TemplateProcessed;
break;
case TemplateProcessed:
frame.State = ProcessNextNode;
goto case ProcessNextNode;
default:
Debug.Fail("Invalid ApplyTemplatesAction execution state");
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
- ConfigurationFileMap.cs
- SiteOfOriginPart.cs
- AstNode.cs
- EntityClientCacheEntry.cs
- ActiveXHost.cs
- StaticDataManager.cs
- QilSortKey.cs
- SoapWriter.cs
- TreeNode.cs
- XmlTypeAttribute.cs
- DisplayNameAttribute.cs
- IteratorFilter.cs
- FilterException.cs
- LineBreak.cs
- AuthenticationModuleElement.cs
- GetReadStreamResult.cs
- PostBackOptions.cs
- DisplayInformation.cs
- DataBoundControl.cs
- CachedFontFamily.cs
- PipeStream.cs
- FlagsAttribute.cs
- UnsafeNativeMethodsMilCoreApi.cs
- Token.cs
- MinMaxParagraphWidth.cs
- ToolStripSplitStackLayout.cs
- IntersectQueryOperator.cs
- XmlChildEnumerator.cs
- BackgroundFormatInfo.cs
- LocationSectionRecord.cs
- PropertyEmitterBase.cs
- ActionNotSupportedException.cs
- WaveHeader.cs
- OperationDescription.cs
- basenumberconverter.cs
- BridgeDataRecord.cs
- WindowAutomationPeer.cs
- MachineKeyConverter.cs
- CqlBlock.cs
- SizeFConverter.cs
- IpcChannelHelper.cs
- GetPageCompletedEventArgs.cs
- PathNode.cs
- SchemaNames.cs
- TypeNameConverter.cs
- Normalization.cs
- XmlText.cs
- DecoderBestFitFallback.cs
- Thumb.cs
- DependentList.cs
- SecureStringHasher.cs
- RadioButton.cs
- PerformanceCounterLib.cs
- ImageKeyConverter.cs
- RectAnimation.cs
- TempFiles.cs
- BaseAppDomainProtocolHandler.cs
- TableCellsCollectionEditor.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- CodeTypeMember.cs
- DispatcherOperation.cs
- FilteredReadOnlyMetadataCollection.cs
- ConfigurationPropertyAttribute.cs
- ExpandoObject.cs
- CounterSampleCalculator.cs
- SerializationInfo.cs
- Light.cs
- sitestring.cs
- DbModificationCommandTree.cs
- PropertyValueChangedEvent.cs
- XmlElementCollection.cs
- ContainerVisual.cs
- DataProtection.cs
- WindowsStartMenu.cs
- OleDbSchemaGuid.cs
- OpenTypeLayoutCache.cs
- ModelFactory.cs
- ToolbarAUtomationPeer.cs
- XmlSchemaDocumentation.cs
- PageCodeDomTreeGenerator.cs
- Parsers.cs
- CssStyleCollection.cs
- SecurityException.cs
- JavascriptCallbackResponseProperty.cs
- SafeNativeMethods.cs
- CallSiteOps.cs
- FilterException.cs
- DynamicRenderer.cs
- StoryFragments.cs
- PasswordRecovery.cs
- PropertyHelper.cs
- BindableAttribute.cs
- WebServiceHandlerFactory.cs
- WebPartConnectionsDisconnectVerb.cs
- ToolStripTemplateNode.cs
- DataGridDetailsPresenterAutomationPeer.cs
- HttpListener.cs
- AtomEntry.cs
- LinqTreeNodeEvaluator.cs
- MouseButtonEventArgs.cs