BinaryExpressionFingerprint.cs :  » 2.6.4-mono-.net-core » System.Web » System » Web » Mvc » ExpressionUtil » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Web 
System.Web » System » Web » Mvc » ExpressionUtil » BinaryExpressionFingerprint.cs
#pragma warning disable 659 // overrides AddToHashCodeCombiner instead

/* ****************************************************************************
 *
 * Copyright (c) Microsoft Corporation. All rights reserved.
 *
 * This software is subject to the Microsoft Public License (Ms-PL). 
 * A copy of the license can be found in the license.htm file included 
 * in this distribution.
 *
 * You must not remove this notice, or any other, from this software.
 *
 * ***************************************************************************/

namespace System.Web.Mvc.ExpressionUtil{
    using System;
    using System.Diagnostics.CodeAnalysis;
    using System.Linq.Expressions;
    using System.Reflection;

    // BinaryExpression fingerprint class
    // Useful for things like array[index]
    //
    // This particular fingerprint doesn't support the BinaryExpression.Conversion property,
    // which is used in some coalescing operations.
    [SuppressMessage("Microsoft.Usage", "CA2218:OverrideGetHashCodeOnOverridingEquals",
        Justification = "Overrides AddToHashCodeCombiner() instead.")]
    internal sealed class BinaryExpressionFingerprint : ExpressionFingerprint {

        private BinaryExpressionFingerprint(BinaryExpression expression)
            : base(expression) {
            // don't care about UnaryExpression.IsLifted since it's not necessary to uniquely describe the expression,
            // but IsLiftedToNull *is* required

            IsLiftedToNull = expression.IsLiftedToNull;
            Method = expression.Method;
        }

        public bool IsLiftedToNull {
            get;
            private set;
        }

        public ExpressionFingerprint Left {
            get;
            private set;
        }

        public MethodInfo Method {
            get;
            private set;
        }

        public ExpressionFingerprint Right {
            get;
            private set;
        }

        internal override void AddToHashCodeCombiner(HashCodeCombiner combiner) {
            base.AddToHashCodeCombiner(combiner);

            combiner.AddInt32(IsLiftedToNull.GetHashCode());
            combiner.AddFingerprint(Left);
            combiner.AddObject(Method);
            combiner.AddFingerprint(Right);
        }

        public static BinaryExpressionFingerprint Create(BinaryExpression expression, ParserContext parserContext) {
            if (expression.Conversion != null) {
                // we don't support the Conversion property
                return null;
            }

            // if any fingerprinting fails, bail out
            ExpressionFingerprint left = Create(expression.Left, parserContext);
            if (left == null && expression.Left != null) {
                return null;
            }

            ExpressionFingerprint right = Create(expression.Right, parserContext);
            if (right == null && expression.Right != null) {
                return null;
            }

            return new BinaryExpressionFingerprint(expression) {
                Left = left,
                Right = right
            };
        }

        public override bool Equals(object obj) {
            BinaryExpressionFingerprint other = obj as BinaryExpressionFingerprint;
            if (other == null) {
                return false;
            }

            return (this.IsLiftedToNull == other.IsLiftedToNull
                && Object.Equals(this.Left, other.Left)
                && this.Method == other.Method
                && Object.Equals(this.Right, other.Right)
                && base.Equals(other));
        }

        public override Expression ToExpression(ParserContext parserContext) {
            Expression leftExpr = ToExpression(Left, parserContext);
            Expression rightExpr = ToExpression(Right, parserContext);
            return Expression.MakeBinary(NodeType, leftExpr, rightExpr, IsLiftedToNull, Method);
        }

    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.