示例#1
0
        int precedence(RPNToken token)
        {
            int order = 0;

            //Order of operators
            if (token.sType == RPNTokenType.FUNCTION)
            {
                order = 7;
            }
            else
            {
                switch (token.Operation)
                {
                case RPNOperandType.END_PARENTHESES:
                case RPNOperandType.START_PARENTHESES:
                    order = 1;
                    break;

                case RPNOperandType.PLUS:
                case RPNOperandType.MINUS:

                case RPNOperandType.LESS:
                case RPNOperandType.GREATER:
                case RPNOperandType.LESSOREQUAL:
                case RPNOperandType.GREATEOREQUAL:
                case RPNOperandType.NOTEQUAL:
                case RPNOperandType.EQUAL:
                case RPNOperandType.OR:
                case RPNOperandType.AND:
                case RPNOperandType.NOT:
                    order = 3;
                    break;

                case RPNOperandType.MULITIPLY:
                case RPNOperandType.DIVIDE:
                case RPNOperandType.DIV:
                case RPNOperandType.MOD:

                    order = 4;
                    break;

                case RPNOperandType.EXPONENTIATION:
                    order = 5;
                    break;

                case RPNOperandType.JUSTMINUS:
                case RPNOperandType.JUSTPLUS:
                    order = 6;
                    break;

                default:
                    order = 0;
                    break;
                }
            }
            return(order);
        }
示例#2
0
        public static bool GetTokens(string expr, List <RPNToken> Tokens)
        {
            int      i   = 0;
            string   tok = string.Empty;
            RPNToken token;

            bool IsGood = true;

            Tokens.Clear();

            while (i <= expr.Length)
            {
                tok   = string.Empty;
                token = new RPNToken();

                if (i > expr.Length - 1)
                {
                    break;
                }

                if (RPNUtils.IsWhiteSpace(expr[i]))
                {
                    while (RPNUtils.IsWhiteSpace(expr[i]))
                    {
                        i++;
                        if (i > expr.Length - 1)
                        {
                            break;
                        }
                    }
                }

                if (i > expr.Length - 1)
                {
                    break;
                }

                if (expr[i] == '\'')
                {
                    do
                    {
                        tok += expr[i];
                        i++;
                        if (i > expr.Length - 1)
                        {
                            throw new Exception($"Invalid string [{tok}] , Expression [{expr}]");
                        }
                    } while (!(expr[i] == '\''));

                    if (i <= expr.Length - 1)
                    {
                        tok += expr[i];
                        i++;
                    }
                    else
                    {
                        throw new Exception($"Invalid string [{tok}] , Expression [{expr}]");
                    }

                    token.sType  = RPNTokenType.STRING;
                    token.sToken = tok;
                    Tokens.Add(token);
                }

                if (i > expr.Length - 1)
                {
                    break;
                }

                if (expr[i] == '[')
                {
                    while (!(expr[i] == ']'))
                    {
                        tok += expr[i];
                        i++;
                        if (i > expr.Length - 1)
                        {
                            break;
                        }
                    }
                    if (i <= expr.Length - 1)
                    {
                        {
                            tok += expr[i];
                            i++;
                        }
                    }
                    else
                    {
                        throw new Exception($"Invalid string [{tok}] , Expression [{expr}]");
                    }
                    token.sType  = RPNTokenType.ALPHA;
                    token.sToken = tok;
                    Tokens.Add(token);
                }

                if (i > expr.Length - 1)
                {
                    break;
                }

                if (expr[i] == '"')
                {
                    while (!(expr[i] == '"'))
                    {
                        tok += expr[i];
                        i++;
                        if (i > expr.Length - 1)
                        {
                            throw new Exception($"Invalid string [{tok}] , Expression [{expr}]");
                        }
                    }
                    if (i <= expr.Length - 1)
                    {
                        {
                            tok += expr[i];
                            i++;
                        }
                    }
                    else
                    {
                        throw new Exception($"Invalid string [{tok}] , Expression [{expr}]");
                    }
                    token.sType  = RPNTokenType.STRING;
                    token.sToken = tok;
                    Tokens.Add(token);
                }

                if (i > expr.Length - 1)
                {
                    break;
                }

                if (char.IsLetter(expr[i]) || (expr[i] == ':'))
                {
                    do
                    {
                        tok += expr[i];
                        i++;

                        if (i > expr.Length - 1)
                        {
                            break;
                        }
                    } while (char.IsLetter(expr[i]) || (char.IsDigit(expr[i]) || (expr[i] == '_')));
                    token.sType = RPNTokenType.ALPHA;
                    var t = tok.ToLower();
                    if (t.Equals("true") || t.Equals("false"))
                    {
                        token.sType = RPNTokenType.BOOL;
                        tok         = t;
                    }
                    else
                    {
                        if (i < expr.Length)
                        {
                            if (expr[i] == '(')
                            {
                                tok += "$";

                                token.sType = RPNTokenType.FUNCTION;
                            }
                            if (expr[i] == '$')
                            {
                                tok += "$";
                                i++;

                                token.sType = RPNTokenType.FUNCTION;
                            }
                        }
                    }
                    token.sToken = tok;
                    Tokens.Add(token);
                }
                else if (char.IsDigit(expr[i]))
                {
                    while (char.IsDigit(expr[i]) || (expr[i] == '.'))
                    {
                        tok += expr[i];
                        i++;
                        if (i > expr.Length - 1)
                        {
                            break;
                        }
                    }
                    token.sType  = RPNTokenType.NUMBER;
                    token.sToken = tok;
                    Tokens.Add(token);
                }
                else
                if ((i + 1 < expr.Length) && ((isDoubleOperation(expr[i].ToString() + expr[i + 1]))))
                {
                    tok = expr[i].ToString();
                    tok = tok + expr[i + 1];
                    i++;
                    token.sType       = RPNTokenType.OPERAND;
                    token.sToken      = tok;
                    token.OperandType = RPNOperandType.ARIFMETICAL;
                    OperationConvertor.GetOperation.TryGetValue(tok, out token.Operation);
                    Tokens.Add(token);
                    i++;

                    if (i > expr.Length - 1)
                    {
                        break;
                    }
                }
                else
                if (isOperation(expr[i]))
                {
                    tok          = expr[i].ToString();
                    token.sType  = RPNTokenType.OPERAND;
                    token.sToken = tok;

                    token.OperandType = RPNOperandType.ARIFMETICAL;
                    OperationConvertor.GetOperation.TryGetValue(tok, out token.Operation);

                    if (token.Operation == RPNOperandType.MINUS)
                    {
                        if (Tokens.Count == 0)
                        {
                            token.Operation = RPNOperandType.JUSTMINUS;
                            token.sToken    = tok = "~";
                        }
                        else
                        if (Tokens.Count > 0 && ((Tokens[Tokens.Count - 1].sType == RPNTokenType.OPERAND)))
                        {
                            if (Tokens[Tokens.Count - 1].Operation != RPNOperandType.END_PARENTHESES)
                            {
                                token.Operation = RPNOperandType.JUSTMINUS;
                                token.sToken    = tok = "~";
                            }
                        }
                    }
                    if (token.Operation == RPNOperandType.PLUS)
                    {
                        if (Tokens.Count > 0 && Tokens[Tokens.Count - 1].sType == RPNTokenType.OPERAND)
                        {
                            if (Tokens[Tokens.Count - 1].Operation != RPNOperandType.END_PARENTHESES)
                            {
                                token.Operation = RPNOperandType.JUSTPLUS;
                            }
                        }
                    }
                    Tokens.Add(token);
                    i++;
                    if (i > expr.Length - 1)
                    {
                        break;
                    }
                }
                else
                {
                    IsGood = false;
                    Tokens.Clear();
                    if (i < expr.Length)
                    {
                        throw new Exception($"Invalid token type [{expr[i]}] Expression [{expr}]");
                    }
                    else
                    {
                        throw new Exception($"Invalid Expression [{expr}]");
                    }
                }
            }
            return(IsGood);
        }