OperatorInfo.cs :  » Script » IronRuby » Microsoft » Scripting » Actions » 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 » Script » IronRuby 
IronRuby » Microsoft » Scripting » Actions » OperatorInfo.cs
/* ****************************************************************************
 *
 * Copyright (c) Microsoft Corporation. 
 *
 * This source code is subject to terms and conditions of the Microsoft Public License. A 
 * copy of the license can be found in the License.html file at the root of this distribution. If 
 * you cannot locate the  Microsoft Public License, please send an email to 
 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
 * by the terms of the Microsoft Public License.
 *
 * You must not remove this notice, or any other, from this software.
 *
 *
 * ***************************************************************************/

#if !CLR2
using System.Linq.Expressions;
#else
using Microsoft.Scripting.Ast;
#endif

using System.Collections.Generic;
using Microsoft.Scripting.Runtime;

namespace Microsoft.Scripting.Actions{
    /// <summary>
    /// OperatorInfo provides a mapping from DLR ExpressionType to their associated .NET methods.
    /// </summary>
    internal class OperatorInfo {
        private static Dictionary<ExpressionType, OperatorInfo> _infos = MakeOperatorTable(); // table of ExpressionType, names, and alt names for looking up methods.

        private readonly ExpressionType _operator;
        private readonly string _name;
        private readonly string _altName;

        private OperatorInfo(ExpressionType op, string name, string altName) {
            _operator = op;
            _name = name;
            _altName = altName;
        }

        /// <summary>
        /// Given an operator returns the OperatorInfo associated with the operator or null
        /// </summary>
        public static OperatorInfo GetOperatorInfo(ExpressionType op) {
            OperatorInfo res;
            _infos.TryGetValue(op, out res);
            return res;
        }

        public static OperatorInfo GetOperatorInfo(string name) {
            foreach (OperatorInfo info in _infos.Values) {
                if (info.Name == name || info.AlternateName == name) {
                    return info;
                }
            }
            return null;
        }


        /// <summary>
        /// The operator the OperatorInfo provides info for.
        /// </summary>
        public ExpressionType Operator {
            get { return _operator; }
        }
        
        /// <summary>
        /// The primary method name associated with the method.  This method name is
        /// usally in the form of op_Operator (e.g. op_Addition).
        /// </summary>
        public string Name {
            get { return _name; }
        }

        /// <summary>
        /// The secondary method name associated with the method.  This method name is
        /// usually a standard .NET method name with pascal casing (e.g. Add).
        /// </summary>
        public string AlternateName {
            get { return _altName; }
        }

        private static Dictionary<ExpressionType, OperatorInfo> MakeOperatorTable() {
            var res = new Dictionary<ExpressionType, OperatorInfo>();

            // alternate names from: http://msdn2.microsoft.com/en-us/library/2sk3x8a7(vs.71).aspx
            //   different in:
            //    comparisons all support alternative names, Xor is "ExclusiveOr" not "Xor"

            // unary ExpressionType as defined in Partition I Architecture 9.3.1:
            res[ExpressionType.Decrement]          = new OperatorInfo(ExpressionType.Decrement,           "op_Decrement",                 "Decrement");      // --
            res[ExpressionType.Increment]          = new OperatorInfo(ExpressionType.Increment,           "op_Increment",                 "Increment");      // ++
            res[ExpressionType.Negate]             = new OperatorInfo(ExpressionType.Negate,              "op_UnaryNegation",             "Negate");         // - (unary)
            res[ExpressionType.UnaryPlus]          = new OperatorInfo(ExpressionType.UnaryPlus,           "op_UnaryPlus",                 "Plus");           // + (unary)
            res[ExpressionType.Not]                = new OperatorInfo(ExpressionType.Not,                 "op_LogicalNot",                null);             // !
            res[ExpressionType.IsTrue]             = new OperatorInfo(ExpressionType.IsTrue,              "op_True",                      null);             // not defined
            res[ExpressionType.IsFalse]            = new OperatorInfo(ExpressionType.IsFalse,             "op_False",                     null);             // not defined
            //res.Add(new OperatorInfo(ExpressionType.AddressOf,           "op_AddressOf",                 null);             // & (unary)
            res[ExpressionType.OnesComplement]     = new OperatorInfo(ExpressionType.OnesComplement,      "op_OnesComplement",            "OnesComplement"); // ~
            //res.Add(new OperatorInfo(ExpressionType.PointerDereference,  "op_PointerDereference",        null);             // * (unary)

            // binary ExpressionType as defined in Partition I Architecture 9.3.2:
            res[ExpressionType.Add]                = new OperatorInfo(ExpressionType.Add,                 "op_Addition",                  "Add");            // +
            res[ExpressionType.Subtract]           = new OperatorInfo(ExpressionType.Subtract,            "op_Subtraction",               "Subtract");       // -
            res[ExpressionType.Multiply]           = new OperatorInfo(ExpressionType.Multiply,            "op_Multiply",                  "Multiply");       // *
            res[ExpressionType.Divide]             = new OperatorInfo(ExpressionType.Divide,              "op_Division",                  "Divide");         // /
            res[ExpressionType.Modulo]             = new OperatorInfo(ExpressionType.Modulo,              "op_Modulus",                   "Mod");            // %
            res[ExpressionType.ExclusiveOr]        = new OperatorInfo(ExpressionType.ExclusiveOr,         "op_ExclusiveOr",               "ExclusiveOr");    // ^
            res[ExpressionType.And]                = new OperatorInfo(ExpressionType.And,                 "op_BitwiseAnd",                "BitwiseAnd");     // &
            res[ExpressionType.Or]                 = new OperatorInfo(ExpressionType.Or,                  "op_BitwiseOr",                 "BitwiseOr");      // |
            res[ExpressionType.And]                = new OperatorInfo(ExpressionType.And,                 "op_LogicalAnd",                "And");            // &&
            res[ExpressionType.Or]                 = new OperatorInfo(ExpressionType.Or,                  "op_LogicalOr",                 "Or");             // ||
            res[ExpressionType.LeftShift]          = new OperatorInfo(ExpressionType.LeftShift,           "op_LeftShift",                 "LeftShift");      // <<
            res[ExpressionType.RightShift]         = new OperatorInfo(ExpressionType.RightShift,          "op_RightShift",                "RightShift");     // >>
            res[ExpressionType.Equal]              = new OperatorInfo(ExpressionType.Equal,               "op_Equality",                  "Equals");         // ==   
            res[ExpressionType.GreaterThan]        = new OperatorInfo(ExpressionType.GreaterThan,         "op_GreaterThan",               "GreaterThan");    // >
            res[ExpressionType.LessThan]           = new OperatorInfo(ExpressionType.LessThan,            "op_LessThan",                  "LessThan");       // <
            res[ExpressionType.NotEqual]           = new OperatorInfo(ExpressionType.NotEqual,            "op_Inequality",                "NotEquals");      // != 
            res[ExpressionType.GreaterThanOrEqual] = new OperatorInfo(ExpressionType.GreaterThanOrEqual,  "op_GreaterThanOrEqual",        "GreaterThanOrEqual");        // >=
            res[ExpressionType.LessThanOrEqual]    = new OperatorInfo(ExpressionType.LessThanOrEqual,     "op_LessThanOrEqual",           "LessThanOrEqual");        // <=
            res[ExpressionType.MultiplyAssign]     = new OperatorInfo(ExpressionType.MultiplyAssign,      "op_MultiplicationAssignment",  "InPlaceMultiply");       // *=
            res[ExpressionType.SubtractAssign]     = new OperatorInfo(ExpressionType.SubtractAssign,      "op_SubtractionAssignment",     "InPlaceSubtract");       // -=
            res[ExpressionType.ExclusiveOrAssign]  = new OperatorInfo(ExpressionType.ExclusiveOrAssign,   "op_ExclusiveOrAssignment",     "InPlaceExclusiveOr");            // ^=
            res[ExpressionType.LeftShiftAssign]    = new OperatorInfo(ExpressionType.LeftShiftAssign,     "op_LeftShiftAssignment",       "InPlaceLeftShift");      // <<=
            res[ExpressionType.RightShiftAssign]   = new OperatorInfo(ExpressionType.RightShiftAssign,    "op_RightShiftAssignment",      "InPlaceRightShift");     // >>=
            res[ExpressionType.ModuloAssign]       = new OperatorInfo(ExpressionType.ModuloAssign,        "op_ModulusAssignment",         "InPlaceMod");            // %=
            res[ExpressionType.AddAssign]          = new OperatorInfo(ExpressionType.AddAssign,           "op_AdditionAssignment",        "InPlaceAdd");            // += 
            res[ExpressionType.AndAssign]          = new OperatorInfo(ExpressionType.AndAssign,           "op_BitwiseAndAssignment",      "InPlaceBitwiseAnd");     // &=
            res[ExpressionType.OrAssign]           = new OperatorInfo(ExpressionType.OrAssign,            "op_BitwiseOrAssignment",       "InPlaceBitwiseOr");      // |=
            res[ExpressionType.DivideAssign]       = new OperatorInfo(ExpressionType.DivideAssign,        "op_DivisionAssignment",        "InPlaceDivide");         // /=

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