Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / NumericExpr.cs / 1 / NumericExpr.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; internal sealed class NumericExpr : ValueQuery { private Operator.Op op; private Query opnd1; private Query opnd2; public NumericExpr(Operator.Op op, Query opnd1, Query opnd2) { Debug.Assert( op == Operator.Op.PLUS || op == Operator.Op.MINUS || op == Operator.Op.MUL || op == Operator.Op.DIV || op == Operator.Op.MOD ); Debug.Assert(opnd1 != null && opnd2 != null); if (opnd1.StaticType != XPathResultType.Number) { opnd1 = new NumberFunctions(Function.FunctionType.FuncNumber, opnd1); } if (opnd2.StaticType != XPathResultType.Number) { opnd2 = new NumberFunctions(Function.FunctionType.FuncNumber, opnd2); } this.op = op; this.opnd1 = opnd1; this.opnd2 = opnd2; } private NumericExpr(NumericExpr other) : base(other) { this.op = other.op; this.opnd1 = Clone(other.opnd1); this.opnd2 = Clone(other.opnd2); } public override void SetXsltContext(XsltContext context){ opnd1.SetXsltContext(context); opnd2.SetXsltContext(context); } public override object Evaluate(XPathNodeIterator nodeIterator) { return GetValue(this.op, XmlConvert.ToXPathDouble(opnd1.Evaluate(nodeIterator)), XmlConvert.ToXPathDouble(opnd2.Evaluate(nodeIterator)) ); } private static double GetValue(Operator.Op op, double n1, double n2) { Debug.Assert(op == Operator.Op.PLUS || op == Operator.Op.MINUS || op == Operator.Op.MOD || op == Operator.Op.DIV || op == Operator.Op.MUL); switch (op) { case Operator.Op.PLUS : return n1 + n2; case Operator.Op.MINUS : return n1 - n2; case Operator.Op.MOD : return n1 % n2; case Operator.Op.DIV : return n1 / n2; case Operator.Op.MUL : return n1 * n2; } return 0; } public override XPathResultType StaticType { get { return XPathResultType.Number; } } public override XPathNodeIterator Clone() { return new NumericExpr(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("op", op.ToString()); opnd1.PrintQuery(w); opnd2.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; internal sealed class NumericExpr : ValueQuery { private Operator.Op op; private Query opnd1; private Query opnd2; public NumericExpr(Operator.Op op, Query opnd1, Query opnd2) { Debug.Assert( op == Operator.Op.PLUS || op == Operator.Op.MINUS || op == Operator.Op.MUL || op == Operator.Op.DIV || op == Operator.Op.MOD ); Debug.Assert(opnd1 != null && opnd2 != null); if (opnd1.StaticType != XPathResultType.Number) { opnd1 = new NumberFunctions(Function.FunctionType.FuncNumber, opnd1); } if (opnd2.StaticType != XPathResultType.Number) { opnd2 = new NumberFunctions(Function.FunctionType.FuncNumber, opnd2); } this.op = op; this.opnd1 = opnd1; this.opnd2 = opnd2; } private NumericExpr(NumericExpr other) : base(other) { this.op = other.op; this.opnd1 = Clone(other.opnd1); this.opnd2 = Clone(other.opnd2); } public override void SetXsltContext(XsltContext context){ opnd1.SetXsltContext(context); opnd2.SetXsltContext(context); } public override object Evaluate(XPathNodeIterator nodeIterator) { return GetValue(this.op, XmlConvert.ToXPathDouble(opnd1.Evaluate(nodeIterator)), XmlConvert.ToXPathDouble(opnd2.Evaluate(nodeIterator)) ); } private static double GetValue(Operator.Op op, double n1, double n2) { Debug.Assert(op == Operator.Op.PLUS || op == Operator.Op.MINUS || op == Operator.Op.MOD || op == Operator.Op.DIV || op == Operator.Op.MUL); switch (op) { case Operator.Op.PLUS : return n1 + n2; case Operator.Op.MINUS : return n1 - n2; case Operator.Op.MOD : return n1 % n2; case Operator.Op.DIV : return n1 / n2; case Operator.Op.MUL : return n1 * n2; } return 0; } public override XPathResultType StaticType { get { return XPathResultType.Number; } } public override XPathNodeIterator Clone() { return new NumericExpr(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("op", op.ToString()); opnd1.PrintQuery(w); opnd2.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
- TextMetrics.cs
- ConcurrentDictionary.cs
- SafePEFileHandle.cs
- AggregationMinMaxHelpers.cs
- SystemIPv4InterfaceProperties.cs
- RadioButton.cs
- Style.cs
- InertiaTranslationBehavior.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- HtmlInputSubmit.cs
- precedingquery.cs
- ipaddressinformationcollection.cs
- WebZone.cs
- RtfControlWordInfo.cs
- GeometryModel3D.cs
- ChangePassword.cs
- FileEnumerator.cs
- QueryCacheEntry.cs
- SafeThreadHandle.cs
- EntityTypeEmitter.cs
- XPathAncestorIterator.cs
- WindowsToolbar.cs
- Timeline.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- StrokeCollection.cs
- FixedSOMTextRun.cs
- MetafileHeader.cs
- RowToParametersTransformer.cs
- SqlParameter.cs
- GuidTagList.cs
- UrlRoutingModule.cs
- initElementDictionary.cs
- StyleSelector.cs
- ListSourceHelper.cs
- _LazyAsyncResult.cs
- ViewCellRelation.cs
- DefinitionBase.cs
- DefaultIfEmptyQueryOperator.cs
- updateconfighost.cs
- WebPartZoneCollection.cs
- CapabilitiesAssignment.cs
- XmlDictionaryString.cs
- NTAccount.cs
- WebPartConnectionsConfigureVerb.cs
- DefaultHttpHandler.cs
- SizeFConverter.cs
- WindowsListViewGroup.cs
- ServiceDeploymentInfo.cs
- SQLRoleProvider.cs
- FormViewCommandEventArgs.cs
- DataGridViewRow.cs
- SimpleFieldTemplateUserControl.cs
- regiisutil.cs
- ControlUtil.cs
- UnaryExpression.cs
- SecondaryIndexDefinition.cs
- webeventbuffer.cs
- BamlRecords.cs
- LeafCellTreeNode.cs
- DispatcherOperation.cs
- SafeReadContext.cs
- PointAnimationUsingKeyFrames.cs
- NullableIntMinMaxAggregationOperator.cs
- DataBinding.cs
- RemoteDebugger.cs
- ThreadPoolTaskScheduler.cs
- BaseValidator.cs
- SelfIssuedAuthAsymmetricKey.cs
- GeometryHitTestResult.cs
- HtmlUtf8RawTextWriter.cs
- TraceSection.cs
- SystemIPGlobalStatistics.cs
- _RequestLifetimeSetter.cs
- TraversalRequest.cs
- FrameworkElementAutomationPeer.cs
- EnumValAlphaComparer.cs
- Encoding.cs
- ColumnCollection.cs
- MemberHolder.cs
- DebugView.cs
- DescendantQuery.cs
- Point3DKeyFrameCollection.cs
- XmlnsDefinitionAttribute.cs
- Debug.cs
- DataBoundLiteralControl.cs
- AdornerHitTestResult.cs
- SqlClientWrapperSmiStream.cs
- XmlObjectSerializerReadContextComplex.cs
- Certificate.cs
- OleDbMetaDataFactory.cs
- BitmapPalettes.cs
- ErrorTableItemStyle.cs
- AppDomainProtocolHandler.cs
- MethodAccessException.cs
- GlobalEventManager.cs
- DbProviderFactories.cs
- Listbox.cs
- XmlValueConverter.cs
- SamlSerializer.cs
- DependencyPropertyHelper.cs