Exemple #1
0
        private bool Logic(OperatorNode obj)
        {
            bool lhs = ScriptTypeUtil.EvalToBoolean(obj.Lhs.Accept(this));

            //Note: Short cut Rhs
            if (lhs && obj.Token.TokenValue == "||")
            {
                return(true);
            }
            if (!lhs && obj.Token.TokenValue == "&&")
            {
                return(false);
            }
            //Note: Eval Rhs
            bool rhs = ScriptTypeUtil.EvalToBoolean(obj.Rhs.Accept(this));

            if (obj.Token.TokenValue == "||")
            {
                return(lhs || rhs);
            }
            if (obj.Token.TokenValue == "&&")
            {
                return(lhs && rhs);
            }

            ExceptionHelper.ThrowBinaryOperatorInvalid(obj.Token.TokenValue, lhs, rhs);
            return(false);
        }
Exemple #2
0
        public override object Visit(TernaryNode obj)
        {
            object condition = obj.Condition.Accept(this);
            bool   b         = ScriptTypeUtil.EvalToBoolean(condition);

            return(b ? obj.TrueValue.Accept(this) : obj.FalseValue.Accept(this));
        }
Exemple #3
0
        public override object Visit(AutoIntArrayNode obj)
        {
            object begin = obj.Begin.Accept(this);
            object end   = obj.End.Accept(this);
            long   a     = ScriptTypeUtil.ConvertToLong(begin);
            long   b     = ScriptTypeUtil.ConvertToLong(end);
            int    step  = (a <= b ? 1 : -1);
            long   len   = Math.Abs(a - b) + 1;

            long[] array = new long[len];
            for (long idx = 0; idx < len; idx++)
            {
                array[idx] = a + step * idx;
            }
            return(array);
        }
Exemple #4
0
        public override object Visit(UnaryNode obj)
        {
            object val = obj.OperandNode.Accept(this);

            if (obj.Token.TokenValue == "!")
            {
                bool b = ScriptTypeUtil.EvalToBoolean(val);
                return(!b);
            }

            if (val == null)
            {
                ExceptionHelper.ThrowEvalNull();
            }

            if (obj.Token.TokenValue == "+")
            {
                return(val);
            }

            if (obj.Token.TokenValue == "-")
            {
                if (ScriptTypeUtil.IsDecimal(val))
                {
                    decimal result = ScriptTypeUtil.ConvertToDecimal(val);
                    return(-result);
                }

                if (ScriptTypeUtil.IsLong(val))
                {
                    long result = ScriptTypeUtil.ConvertToLong(val);
                    return(-result);
                }
            }

            ExceptionHelper.ThrowUnaryOperatorInvalid(obj.Token.TokenValue, val);
            return(null);
        }
Exemple #5
0
        private bool Compare(OperatorNode obj)
        {
            object lhs = obj.Lhs.Accept(this);
            object rhs = obj.Rhs.Accept(this);

            if (ScriptTypeUtil.IsNumber(lhs) && ScriptTypeUtil.IsNumber(rhs))
            {
                decimal lNumber = ScriptTypeUtil.ConvertToDecimal(lhs);
                decimal rNumber = ScriptTypeUtil.ConvertToDecimal(rhs);
                switch (obj.Token.TokenValue)
                {
                case ">":
                    return(lNumber > rNumber);

                case "<":
                    return(lNumber < rNumber);

                case ">=":
                    return(lNumber >= rNumber);

                case "<=":
                    return(lNumber <= rNumber);

                case "==":
                    return(lNumber == rNumber);

                case "<>":
                case "!=":
                    return(lNumber != rNumber);
                }
            }

            //Note: If compare equality, null is OK.

            switch (obj.Token.TokenValue)
            {
            case "==":
                if (lhs == null)
                {
                    return(rhs == null);
                }
                else
                {
                    return(lhs.Equals(rhs));
                }

            case "<>":
            case "!=":
                if (lhs == null)
                {
                    return(rhs != null);
                }
                else
                {
                    return(!(lhs.Equals(rhs)));
                }
            }

            ExceptionHelper.ThrowBinaryOperatorInvalid(obj.Token.TokenValue, lhs, rhs);
            return(false);
        }
Exemple #6
0
        private object Arithmetic(OperatorNode obj)
        {
            object lhs = obj.Lhs.Accept(this);
            object rhs = obj.Rhs.Accept(this);

            //Note:string concat
            if (obj.Token.TokenValue == "+" && (lhs is string || rhs is string))
            {
                string result = string.Empty;
                if (lhs != null)
                {
                    result += lhs.ToString();
                }
                if (rhs != null)
                {
                    result += rhs.ToString();
                }
                return(result);
            }

            //Note:string multiple
            if (obj.Token.TokenValue == "*" && lhs is string && ScriptTypeUtil.IsLong(rhs))
            {
                StringBuilder result = new StringBuilder();
                for (int i = 0; i < (long)rhs; i++)
                {
                    result.Append(lhs);
                }
                return(result.ToString());
            }

            //Note:Only number is valid currently, everything will convert to decimal
            decimal lNumber = ScriptTypeUtil.ConvertToDecimal(lhs);
            decimal rNumber = ScriptTypeUtil.ConvertToDecimal(rhs);

            switch (obj.Token.TokenValue)
            {
            case "+":
                return(lNumber + rNumber);

            case "-":
                return(lNumber - rNumber);

            case "*":
                return(lNumber * rNumber);

            case "/":
                return(lNumber / rNumber);

            case "%":
                return(lNumber % rNumber);

            case "^":
                double b = double.Parse(lNumber.ToString());
                double x = double.Parse(rNumber.ToString());
                return((decimal)Math.Pow(b, x));
            }

            ExceptionHelper.ThrowBinaryOperatorInvalid(obj.Token.TokenValue, lhs, rhs);
            return(null);
        }
 public bool EvalToBool(object val)
 {
     return(ScriptTypeUtil.EvalToBoolean(val));
 }