Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / BooleanFunctions.cs / 1305376 / BooleanFunctions.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; using System.Globalization; using System.Xml.Xsl; using FT = MS.Internal.Xml.XPath.Function.FunctionType; internal sealed class BooleanFunctions : ValueQuery { Query arg; FT funcType; public BooleanFunctions(FT funcType, Query arg) { this.arg = arg; this.funcType = funcType; } private BooleanFunctions(BooleanFunctions other) : base(other) { this.arg = Clone(other.arg); this.funcType = other.funcType; } public override void SetXsltContext(XsltContext context) { if (arg != null) { arg.SetXsltContext(context); } } public override object Evaluate(XPathNodeIterator nodeIterator) { switch (funcType) { case FT.FuncBoolean : return toBoolean(nodeIterator); case FT.FuncNot : return Not(nodeIterator); case FT.FuncTrue : return true; case FT.FuncFalse : return false; case FT.FuncLang : return Lang(nodeIterator); } return false; } internal static bool toBoolean(double number) { return number != 0 && ! double.IsNaN(number); } internal static bool toBoolean(string str) { return str.Length > 0; } internal bool toBoolean(XPathNodeIterator nodeIterator) { object result = arg.Evaluate(nodeIterator); if (result is XPathNodeIterator) return arg.Advance() != null; if (result is string ) return toBoolean((string)result); if (result is double ) return toBoolean((double)result); if (result is bool ) return (bool)result; Debug.Assert(result is XPathNavigator, "Unknown value type"); return true; } public override XPathResultType StaticType { get { return XPathResultType.Boolean; } } private bool Not(XPathNodeIterator nodeIterator) { return ! (bool) arg.Evaluate(nodeIterator); } private bool Lang(XPathNodeIterator nodeIterator) { string str = arg.Evaluate(nodeIterator).ToString(); string lang = nodeIterator.Current.XmlLang; return ( lang.StartsWith(str, StringComparison.OrdinalIgnoreCase) && (lang.Length == str.Length || lang[str.Length] == '-') ); } public override XPathNodeIterator Clone() { return new BooleanFunctions(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("name", funcType.ToString()); if (arg != null) { arg.PrintQuery(w); } w.WriteEndElement(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; using System.Globalization; using System.Xml.Xsl; using FT = MS.Internal.Xml.XPath.Function.FunctionType; internal sealed class BooleanFunctions : ValueQuery { Query arg; FT funcType; public BooleanFunctions(FT funcType, Query arg) { this.arg = arg; this.funcType = funcType; } private BooleanFunctions(BooleanFunctions other) : base(other) { this.arg = Clone(other.arg); this.funcType = other.funcType; } public override void SetXsltContext(XsltContext context) { if (arg != null) { arg.SetXsltContext(context); } } public override object Evaluate(XPathNodeIterator nodeIterator) { switch (funcType) { case FT.FuncBoolean : return toBoolean(nodeIterator); case FT.FuncNot : return Not(nodeIterator); case FT.FuncTrue : return true; case FT.FuncFalse : return false; case FT.FuncLang : return Lang(nodeIterator); } return false; } internal static bool toBoolean(double number) { return number != 0 && ! double.IsNaN(number); } internal static bool toBoolean(string str) { return str.Length > 0; } internal bool toBoolean(XPathNodeIterator nodeIterator) { object result = arg.Evaluate(nodeIterator); if (result is XPathNodeIterator) return arg.Advance() != null; if (result is string ) return toBoolean((string)result); if (result is double ) return toBoolean((double)result); if (result is bool ) return (bool)result; Debug.Assert(result is XPathNavigator, "Unknown value type"); return true; } public override XPathResultType StaticType { get { return XPathResultType.Boolean; } } private bool Not(XPathNodeIterator nodeIterator) { return ! (bool) arg.Evaluate(nodeIterator); } private bool Lang(XPathNodeIterator nodeIterator) { string str = arg.Evaluate(nodeIterator).ToString(); string lang = nodeIterator.Current.XmlLang; return ( lang.StartsWith(str, StringComparison.OrdinalIgnoreCase) && (lang.Length == str.Length || lang[str.Length] == '-') ); } public override XPathNodeIterator Clone() { return new BooleanFunctions(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("name", funcType.ToString()); if (arg != null) { arg.PrintQuery(w); } w.WriteEndElement(); } } } // 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
- WebDisplayNameAttribute.cs
- DbConnectionInternal.cs
- SymmetricAlgorithm.cs
- MaterialGroup.cs
- DataControlField.cs
- FontStretches.cs
- GridViewUpdateEventArgs.cs
- AssemblyCache.cs
- DesignerUtils.cs
- RootBuilder.cs
- _SafeNetHandles.cs
- LogicalTreeHelper.cs
- MimeMapping.cs
- PropertyFilterAttribute.cs
- DragStartedEventArgs.cs
- ExpressionNode.cs
- EncoderBestFitFallback.cs
- ConsoleEntryPoint.cs
- _ConnectOverlappedAsyncResult.cs
- PartialTrustHelpers.cs
- ItemsPanelTemplate.cs
- PartialTrustHelpers.cs
- ApplicationActivator.cs
- Token.cs
- StringUtil.cs
- TreeIterator.cs
- CompoundFileStreamReference.cs
- _BasicClient.cs
- PolicyLevel.cs
- SqlWorkflowInstanceStore.cs
- XmlAttributes.cs
- ArgumentOutOfRangeException.cs
- ListSourceHelper.cs
- PointKeyFrameCollection.cs
- MenuStrip.cs
- EntityChangedParams.cs
- TraceInternal.cs
- DbException.cs
- OperationAbortedException.cs
- DataGridViewColumnTypeEditor.cs
- MetafileHeader.cs
- FontDialog.cs
- MenuTracker.cs
- ParameterRefs.cs
- IpcServerChannel.cs
- ConfigurationException.cs
- HtmlGenericControl.cs
- DependencyObjectType.cs
- DbConnectionStringBuilder.cs
- ExceptionWrapper.cs
- MsmqInputMessagePool.cs
- OptionalColumn.cs
- ProgressBarAutomationPeer.cs
- _OSSOCK.cs
- ErrorWrapper.cs
- TextStore.cs
- KeyedByTypeCollection.cs
- Permission.cs
- NamespaceList.cs
- Vertex.cs
- AutomationEventArgs.cs
- TransactionCache.cs
- httpserverutility.cs
- TerminateWorkflow.cs
- IOThreadScheduler.cs
- AspNetHostingPermission.cs
- ServiceOperationParameter.cs
- StringDictionaryCodeDomSerializer.cs
- ErrorTableItemStyle.cs
- PointConverter.cs
- QualifiedCellIdBoolean.cs
- XmlUnspecifiedAttribute.cs
- RegionData.cs
- TabControlCancelEvent.cs
- VectorValueSerializer.cs
- FontResourceCache.cs
- TableCell.cs
- ToolStripRendererSwitcher.cs
- StylusEventArgs.cs
- SqlDataSourceSelectingEventArgs.cs
- SchemaImporterExtensionElementCollection.cs
- RequestQueue.cs
- EntityContainerEmitter.cs
- MultiTouchSystemGestureLogic.cs
- NavigationService.cs
- ViewKeyConstraint.cs
- PeerName.cs
- TypographyProperties.cs
- HttpFileCollectionBase.cs
- StylusDevice.cs
- ConfigDefinitionUpdates.cs
- OletxVolatileEnlistment.cs
- Point3DCollection.cs
- LockRecoveryTask.cs
- ActivityExecutorDelegateInfo.cs
- ParagraphResult.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- StringAnimationBase.cs
- Win32PrintDialog.cs
- FormatConvertedBitmap.cs