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 / CopyOfAction.cs / 1 / CopyOfAction.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 CopyOfAction : CompiledAction {
private const int ResultStored = 2;
private const int NodeSetCopied = 3;
private int selectKey = Compiler.InvalidQueryKey;
internal override void Compile(Compiler compiler) {
CompileAttributes(compiler);
CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, Keywords.s_Select);
CheckEmpty(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 {
return false;
}
return true;
}
internal override void Execute(Processor processor, ActionFrame frame) {
Debug.Assert(processor != null && frame != null);
switch (frame.State) {
case Initialized:
Debug.Assert(frame.NodeSet != null);
Query query = processor.GetValueQuery(this.selectKey);
object result = query.Evaluate(frame.NodeSet);
if (result is XPathNodeIterator) {
// we cash this query because otherwise current() works incorrectly. Bug#382166.
// To be perfect we should use frame.NewNodeSet here
processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathArrayIterator(query));
frame.State = NodeSetCopied;
break;
}
XPathNavigator nav = result as XPathNavigator;
if (nav != null) {
processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathSingletonIterator(nav));
frame.State = NodeSetCopied;
break;
}
string value = XmlConvert.ToXPathString(result);
if (processor.TextEvent(value)) {
frame.Finished();
} else {
frame.StoredOutput = value;
frame.State = ResultStored;
}
break;
case ResultStored:
Debug.Assert(frame.StoredOutput != null);
processor.TextEvent(frame.StoredOutput);
frame.Finished();
break;
case NodeSetCopied:
Debug.Assert(frame.State == NodeSetCopied);
frame.Finished();
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 CopyOfAction : CompiledAction {
private const int ResultStored = 2;
private const int NodeSetCopied = 3;
private int selectKey = Compiler.InvalidQueryKey;
internal override void Compile(Compiler compiler) {
CompileAttributes(compiler);
CheckRequiredAttribute(compiler, selectKey != Compiler.InvalidQueryKey, Keywords.s_Select);
CheckEmpty(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 {
return false;
}
return true;
}
internal override void Execute(Processor processor, ActionFrame frame) {
Debug.Assert(processor != null && frame != null);
switch (frame.State) {
case Initialized:
Debug.Assert(frame.NodeSet != null);
Query query = processor.GetValueQuery(this.selectKey);
object result = query.Evaluate(frame.NodeSet);
if (result is XPathNodeIterator) {
// we cash this query because otherwise current() works incorrectly. Bug#382166.
// To be perfect we should use frame.NewNodeSet here
processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathArrayIterator(query));
frame.State = NodeSetCopied;
break;
}
XPathNavigator nav = result as XPathNavigator;
if (nav != null) {
processor.PushActionFrame(CopyNodeSetAction.GetAction(), new XPathSingletonIterator(nav));
frame.State = NodeSetCopied;
break;
}
string value = XmlConvert.ToXPathString(result);
if (processor.TextEvent(value)) {
frame.Finished();
} else {
frame.StoredOutput = value;
frame.State = ResultStored;
}
break;
case ResultStored:
Debug.Assert(frame.StoredOutput != null);
processor.TextEvent(frame.StoredOutput);
frame.Finished();
break;
case NodeSetCopied:
Debug.Assert(frame.State == NodeSetCopied);
frame.Finished();
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
- IntSecurity.cs
- QilCloneVisitor.cs
- KeyPullup.cs
- SudsCommon.cs
- EventWaitHandle.cs
- RadioButtonAutomationPeer.cs
- HttpListener.cs
- DynamicILGenerator.cs
- ConfigXmlReader.cs
- FontDriver.cs
- CodeConditionStatement.cs
- AssemblyName.cs
- OracleParameterCollection.cs
- _SSPIWrapper.cs
- HandlerMappingMemo.cs
- EntityContainerAssociationSet.cs
- CodeActivity.cs
- ZipIOExtraField.cs
- ContainerActivationHelper.cs
- UIElement3D.cs
- ResourcesChangeInfo.cs
- Schema.cs
- Separator.cs
- EntityDataSourceStatementEditorForm.cs
- PersonalizationStateInfoCollection.cs
- CodeEntryPointMethod.cs
- IApplicationTrustManager.cs
- ExpressionBuilderContext.cs
- MenuItemStyle.cs
- WebPartTransformer.cs
- WindowsFormsHelpers.cs
- WebPartsSection.cs
- ColumnHeader.cs
- dataprotectionpermissionattribute.cs
- BufferedStream.cs
- WmlValidatorAdapter.cs
- TypeDescriptor.cs
- CapabilitiesUse.cs
- UIElement3D.cs
- WebFormDesignerActionService.cs
- QilStrConcat.cs
- SchemaImporterExtensionsSection.cs
- SecurityHelper.cs
- FormattedTextSymbols.cs
- ExtractorMetadata.cs
- XmlArrayAttribute.cs
- TableLayoutStyle.cs
- Accessible.cs
- Expr.cs
- LassoHelper.cs
- RoutingTable.cs
- DragEvent.cs
- EntityDataSourceStatementEditorForm.cs
- RemoteHelper.cs
- RuleConditionDialog.cs
- InvalidPrinterException.cs
- PrintPreviewDialog.cs
- DataPointer.cs
- Privilege.cs
- StronglyTypedResourceBuilder.cs
- DataGridViewColumnStateChangedEventArgs.cs
- SecurityState.cs
- VersionedStreamOwner.cs
- GridItemCollection.cs
- FileLevelControlBuilderAttribute.cs
- RegexGroup.cs
- ConstantCheck.cs
- RightsManagementEncryptionTransform.cs
- PropertyToken.cs
- PagePropertiesChangingEventArgs.cs
- PersistStreamTypeWrapper.cs
- UnsafeNativeMethodsPenimc.cs
- GlobalItem.cs
- XpsTokenContext.cs
- TextBoxAutomationPeer.cs
- TextBox.cs
- BindingWorker.cs
- ProfilePropertySettingsCollection.cs
- MetabaseReader.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- ListDictionaryInternal.cs
- TraceSection.cs
- Dictionary.cs
- _NetRes.cs
- TextTrailingCharacterEllipsis.cs
- EventMetadata.cs
- UInt16.cs
- SqlDataSourceView.cs
- RawStylusSystemGestureInputReport.cs
- XmlSchemas.cs
- UriParserTemplates.cs
- TemplateBindingExtensionConverter.cs
- CompositeDataBoundControl.cs
- SystemUdpStatistics.cs
- SqlUtils.cs
- CorrelationHandle.cs
- ToolboxComponentsCreatingEventArgs.cs
- ConvertBinder.cs
- CalendarDay.cs