Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / NumericExpr.cs / 1305376 / 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
- MetadataUtil.cs
- ByteRangeDownloader.cs
- BlockUIContainer.cs
- CellTreeSimplifier.cs
- XmlWriterTraceListener.cs
- addressfiltermode.cs
- DefaultCommandConverter.cs
- ConnectionStringsSection.cs
- ObjectHelper.cs
- ToolTip.cs
- ExpressionBindingCollection.cs
- SetterBaseCollection.cs
- FixedSOMTable.cs
- ServiceObjectContainer.cs
- StateMachine.cs
- HttpCapabilitiesSectionHandler.cs
- TextBox.cs
- Function.cs
- TimeSpanStorage.cs
- NonClientArea.cs
- JsonReaderDelegator.cs
- InfoCardRSACryptoProvider.cs
- CellNormalizer.cs
- PackageProperties.cs
- LinearGradientBrush.cs
- LinkLabelLinkClickedEvent.cs
- ConnectionStringSettingsCollection.cs
- TypedTableGenerator.cs
- WebPartCatalogAddVerb.cs
- StateDesignerConnector.cs
- HMAC.cs
- MinimizableAttributeTypeConverter.cs
- SourceChangedEventArgs.cs
- COM2ExtendedBrowsingHandler.cs
- EventlogProvider.cs
- ReadContentAsBinaryHelper.cs
- OdbcFactory.cs
- XmlSchemaObjectTable.cs
- ButtonBase.cs
- ProfileSection.cs
- FrameworkElement.cs
- RoleGroupCollection.cs
- OleDbError.cs
- SearchForVirtualItemEventArgs.cs
- CellParagraph.cs
- ElementMarkupObject.cs
- AuthenticationException.cs
- Delegate.cs
- Translator.cs
- InputLangChangeRequestEvent.cs
- SqlConnectionPoolProviderInfo.cs
- LockRecursionException.cs
- TextRangeEdit.cs
- InvalidFilterCriteriaException.cs
- TCPListener.cs
- DataGridViewButtonColumn.cs
- DesignerCalendarAdapter.cs
- TransformGroup.cs
- MSAANativeProvider.cs
- FacetChecker.cs
- Choices.cs
- SecurityPermission.cs
- StorageComplexPropertyMapping.cs
- EventInfo.cs
- BuilderPropertyEntry.cs
- DateTimeUtil.cs
- SqlUDTStorage.cs
- bidPrivateBase.cs
- ServiceSecurityContext.cs
- UIEndRequest.cs
- LogicalChannelCollection.cs
- WindowInteractionStateTracker.cs
- XmlSerializerAssemblyAttribute.cs
- PerformanceCountersElement.cs
- ResourceManager.cs
- XmlCharCheckingWriter.cs
- DateTimeStorage.cs
- SizeAnimation.cs
- ItemsPanelTemplate.cs
- TargetConverter.cs
- __ConsoleStream.cs
- DataSourceBooleanViewSchemaConverter.cs
- SingleSelectRootGridEntry.cs
- XmlHierarchicalEnumerable.cs
- SQLBinary.cs
- HttpWriter.cs
- LinkConverter.cs
- EnumUnknown.cs
- LinearKeyFrames.cs
- ConfigUtil.cs
- TaiwanLunisolarCalendar.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- ConsoleKeyInfo.cs
- ToolboxItemCollection.cs
- SafeBuffer.cs
- WorkflowValidationFailedException.cs
- IisTraceWebEventProvider.cs
- WorkflowDesignerColors.cs
- CompositeDesignerAccessibleObject.cs
- TextParagraph.cs