Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / ProcessingInstructionAction.cs / 1 / ProcessingInstructionAction.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 class ProcessingInstructionAction : ContainerAction { private const int NameEvaluated = 2; private const int NameReady = 3; private Avt nameAvt; // Compile time precalculated AVT private string name; private const char CharX = 'X'; private const char Charx = 'x'; private const char CharM = 'M'; private const char Charm = 'm'; private const char CharL = 'L'; private const char Charl = 'l'; internal ProcessingInstructionAction() {} internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, this.nameAvt, Keywords.s_Name); if(this.nameAvt.IsConstant) { this.name = this.nameAvt.Evaluate(null, null); this.nameAvt = null; if (! IsProcessingInstructionName(this.name)) { // For Now: set to null to ignore action late; this.name = null; } } if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); } } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Name)) { this.nameAvt = Avt.CompileAvt(compiler, 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: if(this.nameAvt == null) { frame.StoredOutput = this.name; if(this.name == null) { // name was static but was bad; frame.Finished(); break; } } else { frame.StoredOutput = this.nameAvt.Evaluate(processor, frame); if (! IsProcessingInstructionName(frame.StoredOutput)) { frame.Finished(); break; } } goto case NameReady; case NameReady: Debug.Assert(frame.StoredOutput != null); if (processor.BeginEvent(XPathNodeType.ProcessingInstruction, string.Empty, frame.StoredOutput, string.Empty, false) == false) { // Come back later frame.State = NameReady; break; } processor.PushActionFrame(frame); frame.State = ProcessingChildren; break; // Allow children to run case ProcessingChildren: if (processor.EndEvent(XPathNodeType.ProcessingInstruction) == false) { frame.State = ProcessingChildren; break; } frame.Finished(); break; default: Debug.Fail("Invalid ElementAction execution state"); frame.Finished(); break; } } internal static bool IsProcessingInstructionName(string name) { if (name == null) { return false; } int nameLength = name.Length; int position = 0; XmlCharType xmlCharType = XmlCharType.Instance; while (position < nameLength && xmlCharType.IsWhiteSpace(name[position])) { position ++; } if (position >= nameLength) { return false; } if (position < nameLength && ! xmlCharType.IsStartNCNameChar(name[position])) { return false; } while (position < nameLength && xmlCharType.IsNCNameChar(name[position])) { position ++; } while (position < nameLength && xmlCharType.IsWhiteSpace(name[position])) { position ++; } if (position < nameLength) { return false; } if (nameLength == 3 && (name[0] == CharX || name[0] == Charx) && (name[1] == CharM || name[1] == Charm) && (name[2] == CharL || name[2] == Charl) ) { return false; } return true; } } } // 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 class ProcessingInstructionAction : ContainerAction { private const int NameEvaluated = 2; private const int NameReady = 3; private Avt nameAvt; // Compile time precalculated AVT private string name; private const char CharX = 'X'; private const char Charx = 'x'; private const char CharM = 'M'; private const char Charm = 'm'; private const char CharL = 'L'; private const char Charl = 'l'; internal ProcessingInstructionAction() {} internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, this.nameAvt, Keywords.s_Name); if(this.nameAvt.IsConstant) { this.name = this.nameAvt.Evaluate(null, null); this.nameAvt = null; if (! IsProcessingInstructionName(this.name)) { // For Now: set to null to ignore action late; this.name = null; } } if (compiler.Recurse()) { CompileTemplate(compiler); compiler.ToParent(); } } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Name)) { this.nameAvt = Avt.CompileAvt(compiler, 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: if(this.nameAvt == null) { frame.StoredOutput = this.name; if(this.name == null) { // name was static but was bad; frame.Finished(); break; } } else { frame.StoredOutput = this.nameAvt.Evaluate(processor, frame); if (! IsProcessingInstructionName(frame.StoredOutput)) { frame.Finished(); break; } } goto case NameReady; case NameReady: Debug.Assert(frame.StoredOutput != null); if (processor.BeginEvent(XPathNodeType.ProcessingInstruction, string.Empty, frame.StoredOutput, string.Empty, false) == false) { // Come back later frame.State = NameReady; break; } processor.PushActionFrame(frame); frame.State = ProcessingChildren; break; // Allow children to run case ProcessingChildren: if (processor.EndEvent(XPathNodeType.ProcessingInstruction) == false) { frame.State = ProcessingChildren; break; } frame.Finished(); break; default: Debug.Fail("Invalid ElementAction execution state"); frame.Finished(); break; } } internal static bool IsProcessingInstructionName(string name) { if (name == null) { return false; } int nameLength = name.Length; int position = 0; XmlCharType xmlCharType = XmlCharType.Instance; while (position < nameLength && xmlCharType.IsWhiteSpace(name[position])) { position ++; } if (position >= nameLength) { return false; } if (position < nameLength && ! xmlCharType.IsStartNCNameChar(name[position])) { return false; } while (position < nameLength && xmlCharType.IsNCNameChar(name[position])) { position ++; } while (position < nameLength && xmlCharType.IsWhiteSpace(name[position])) { position ++; } if (position < nameLength) { return false; } if (nameLength == 3 && (name[0] == CharX || name[0] == Charx) && (name[1] == CharM || name[1] == Charm) && (name[2] == CharL || name[2] == Charl) ) { return false; } return true; } } } // 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
- ForeignKeyConstraint.cs
- MobileFormsAuthentication.cs
- Trace.cs
- XPathScanner.cs
- Part.cs
- CalendarAutoFormatDialog.cs
- NotCondition.cs
- ControlCollection.cs
- ServiceDescriptionSerializer.cs
- TableRowCollection.cs
- SelectionEditingBehavior.cs
- ApplicationProxyInternal.cs
- PeerCollaborationPermission.cs
- RoutingBehavior.cs
- StreamWriter.cs
- ResourcePool.cs
- Assert.cs
- Merger.cs
- Profiler.cs
- ColumnMapVisitor.cs
- CodeDomConfigurationHandler.cs
- QuaternionAnimationBase.cs
- DesignerSerializerAttribute.cs
- HashCryptoHandle.cs
- RecognizeCompletedEventArgs.cs
- PhonemeEventArgs.cs
- MultiSelector.cs
- MachineKeyConverter.cs
- FixedDocumentSequencePaginator.cs
- TraceSource.cs
- HostingEnvironmentSection.cs
- FlowNode.cs
- TemplatePropertyEntry.cs
- TextTreeRootTextBlock.cs
- DataGridItemAutomationPeer.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- FormClosedEvent.cs
- TreeViewAutomationPeer.cs
- EntitySqlQueryCacheKey.cs
- ArrayConverter.cs
- EndSelectCardRequest.cs
- RegularExpressionValidator.cs
- InputMethodStateChangeEventArgs.cs
- FilterUserControlBase.cs
- Calendar.cs
- NativeMethods.cs
- SqlComparer.cs
- KnownBoxes.cs
- DataGridViewLayoutData.cs
- ArcSegment.cs
- ServerIdentity.cs
- C14NUtil.cs
- DataGridCellAutomationPeer.cs
- HwndSourceKeyboardInputSite.cs
- Compilation.cs
- TrackingParameters.cs
- WasNotInstalledException.cs
- XpsSerializerFactory.cs
- HitTestParameters.cs
- SiteMapDataSourceView.cs
- MembershipUser.cs
- CornerRadius.cs
- ResourceDescriptionAttribute.cs
- StrokeNodeEnumerator.cs
- ResolveInfo.cs
- KeyedHashAlgorithm.cs
- SoundPlayerAction.cs
- uribuilder.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- RoleGroup.cs
- KerberosRequestorSecurityTokenAuthenticator.cs
- QilList.cs
- WindowsRichEdit.cs
- NavigationEventArgs.cs
- IntegerFacetDescriptionElement.cs
- MessageContractImporter.cs
- QueryAccessibilityHelpEvent.cs
- Helpers.cs
- StyleModeStack.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- COAUTHIDENTITY.cs
- ManagementObjectCollection.cs
- Variant.cs
- XmlCustomFormatter.cs
- PageTheme.cs
- CompilerGlobalScopeAttribute.cs
- DataGridViewCellEventArgs.cs
- IdentityManager.cs
- adornercollection.cs
- SoapAttributeOverrides.cs
- DodSequenceMerge.cs
- TimeManager.cs
- Stackframe.cs
- Convert.cs
- HtmlString.cs
- StorageEntityTypeMapping.cs
- _NativeSSPI.cs
- Pkcs7Recipient.cs
- WebResponse.cs
- MissingMemberException.cs