Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / XPath / Internal / BooleanFunctions.cs / 1 / 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
- DataGridViewCellToolTipTextNeededEventArgs.cs
- EncoderParameter.cs
- WindowsListViewGroup.cs
- AssociatedControlConverter.cs
- LessThan.cs
- FixedSOMPageConstructor.cs
- SerialErrors.cs
- SqlPersonalizationProvider.cs
- PageThemeBuildProvider.cs
- InvalidDataException.cs
- CompressionTracing.cs
- PointUtil.cs
- DynamicILGenerator.cs
- UntrustedRecipientException.cs
- ClientTargetCollection.cs
- DataGridViewImageColumn.cs
- ExecutedRoutedEventArgs.cs
- WebPartTransformerAttribute.cs
- PopupRootAutomationPeer.cs
- LOSFormatter.cs
- XPSSignatureDefinition.cs
- FunctionQuery.cs
- MetadataUtilsSmi.cs
- TransformPattern.cs
- InputMethodStateTypeInfo.cs
- ScrollEventArgs.cs
- SerializerProvider.cs
- PopupControlService.cs
- InkCanvasInnerCanvas.cs
- DataServiceException.cs
- cookiecontainer.cs
- HMACSHA256.cs
- SeekStoryboard.cs
- Color.cs
- EventSinkHelperWriter.cs
- NameNode.cs
- ListItem.cs
- AutoResetEvent.cs
- IxmlLineInfo.cs
- FocusManager.cs
- ExtendLockCommand.cs
- StretchValidation.cs
- ExpressionBuilder.cs
- Timer.cs
- GlobalEventManager.cs
- FileChangesMonitor.cs
- VisualStyleRenderer.cs
- ClickablePoint.cs
- UIntPtr.cs
- BuildProviderUtils.cs
- coordinatorscratchpad.cs
- QuotedStringFormatReader.cs
- Nodes.cs
- OrthographicCamera.cs
- HtmlHistory.cs
- Image.cs
- PropertyPathWorker.cs
- DynamicObject.cs
- XmlCDATASection.cs
- WindowsFont.cs
- ExecutionContext.cs
- ArithmeticLiteral.cs
- XamlReaderHelper.cs
- DataErrorValidationRule.cs
- TrailingSpaceComparer.cs
- PropertyToken.cs
- ListViewInsertedEventArgs.cs
- RSAPKCS1KeyExchangeFormatter.cs
- HtmlWindowCollection.cs
- DataRelation.cs
- TextPattern.cs
- InfoCardTraceRecord.cs
- MD5.cs
- ScriptRegistrationManager.cs
- GeneralTransform.cs
- WebDescriptionAttribute.cs
- SQLDecimal.cs
- HttpRawResponse.cs
- ByeMessageCD1.cs
- MultiPageTextView.cs
- AdjustableArrowCap.cs
- ViewStateChangedEventArgs.cs
- DataServicePagingProviderWrapper.cs
- ComponentChangingEvent.cs
- NodeFunctions.cs
- WebPartVerbsEventArgs.cs
- _Connection.cs
- SiblingIterators.cs
- SkinBuilder.cs
- EditBehavior.cs
- COM2ComponentEditor.cs
- Nullable.cs
- SoapSchemaImporter.cs
- MissingMemberException.cs
- OleDbFactory.cs
- UnsignedPublishLicense.cs
- Bitmap.cs
- Selection.cs
- EventRecord.cs
- TraceProvider.cs