Exemplo n.º 1
0
        public override LexToken nextToken()
        {
            LexToken lexToken = base.nextToken();

            if (lexToken != null && lexToken.isSpecial() && lexToken.Equals("?"))
            {
                char c = base.current();
                if (c != '\0' && c != ';' && c != ',' && c != ')' && !char.IsWhiteSpace(c))
                {
                    base.throwException(lexToken, "SQL Parse Error: \"?\" can not be followed by \"" + c + "\"");
                }
            }
            return(lexToken);
        }
Exemplo n.º 2
0
        private LexToken parseLineComment(LexToken token, string strMask)
        {
            char          c             = base.current();
            StringBuilder stringBuilder = new StringBuilder();

            while (c != '\n' && c != '\0')
            {
                stringBuilder.Append(c);
                c = base.next();
            }
            token.setToken(stringBuilder.ToString().Substring(strMask.Length));
            token.setPrefix(strMask);
            token.setType(LexTokenTypes.COMMENT_LINE);
            return(token);
        }
Exemplo n.º 3
0
        private LexToken parseSpecial(LexToken token)
        {
            LexToken result;

            if ((base.current() == '+' || base.current() == '-') && char.IsDigit(base.peekNext()))
            {
                result = this.parseNumber(token);
            }
            else
            {
                token.setType(LexTokenTypes.SPECIAL);
                token.setToken(string.Concat(base.current()));
                base.next();
                result = token;
            }
            return(result);
        }
Exemplo n.º 4
0
        public static LexToken create(string str)
        {
            LexToken result;

            if (null == str)
            {
                result = null;
            }
            else
            {
                result = new LexToken
                {
                    type  = LexTokenTypes.STRING_QUOTED,
                    token = str
                };
            }
            return(result);
        }
Exemplo n.º 5
0
 public void moveToPrevToken(LexToken t)
 {
     if (null != t)
     {
         this.token = string.Concat(new string[]
         {
             t.getToken(),
             (this.getSuffix() == null) ? "" : this.getSuffix(),
             (this.getPrevBlanks() == null) ? "" : this.getPrevBlanks().getToken(),
             (this.getPrefix() == null) ? "" : this.getPrefix(),
             this.getToken()
         });
         this.prefix        = t.prefix;
         this.m_prevBlanks  = t.m_prevBlanks;
         this.beginColumn   = t.beginColumn;
         this.beginRowIndex = t.beginRowIndex;
     }
 }
Exemplo n.º 6
0
        public override bool Equals(object obj)
        {
            bool result;

            if (null == obj)
            {
                result = false;
            }
            else if (obj is LexToken)
            {
                LexToken lexToken = (LexToken)obj;
                result = (lexToken.getToken().Equals(this.getToken()) && lexToken.getType() == this.getType());
            }
            else
            {
                string value = obj.ToString();
                result = this.getToken().Equals(value);
            }
            return(result);
        }
Exemplo n.º 7
0
        public override LexToken nextToken()
        {
            LexToken prefixBlankToken = this.getPrefixBlankToken();
            LexToken result;

            if (base.current() == '\0')
            {
                result = prefixBlankToken;
            }
            else
            {
                LexToken lexToken = this.parseToken();
                if (lexToken != null)
                {
                    lexToken.setEndRowIndex(base.getCurrentRowIndex());
                    lexToken.setPrevBlanks(prefixBlankToken);
                }
                result = lexToken;
            }
            return(result);
        }
Exemplo n.º 8
0
        protected LexToken parseName(LexToken token)
        {
            token.setType(LexTokenTypes.NAME);
            StringBuilder stringBuilder = new StringBuilder();

            stringBuilder.Append(base.current());
            bool flag = this.isSpecial(base.current());
            char c    = base.next();

            while (c != '\0')
            {
                if (!char.IsLetter(c) && !char.IsDigit(c) && c != '_' && !this.m_LexTokenizerConfig.isNameChar(c))
                {
                    break;
                }
                stringBuilder.Append(c);
                c    = base.next();
                flag = (flag && this.isSpecial(c));
            }
            if (this.m_LexTokenizerConfig.isAllowLongSpecifiedName() && this.m_LexTokenizerConfig.getLongNameDelimiter() == c)
            {
                int currentPosition = base.getCurrentPosition();
                base.next();
                LexToken lexToken = this.nextToken();
                if (!lexToken.isName())
                {
                    base.backTo(currentPosition);
                }
                else
                {
                    token.setType(LexTokenTypes.LONG_NAME);
                    stringBuilder.Append(c);
                    stringBuilder.Append(lexToken.getToken());
                }
            }
            token.setToken(stringBuilder.ToString());
            return(token);
        }
Exemplo n.º 9
0
 protected LexToken createToken()
 {
     return(LexToken.create(this.m_nCurrentPosition, this.m_nCurrentRowIndex, this.m_nCurrentColumnIndex));
 }
Exemplo n.º 10
0
        private LexToken parseToken()
        {
            char     c = base.current();
            LexToken result;

            if (c == '\0')
            {
                result = null;
            }
            else
            {
                LexToken lexToken = base.createToken();
                int      num      = 0;
                while (this.m_LexTokenizerConfig.getLineComment() != null && num < this.m_LexTokenizerConfig.getLineComment().Length)
                {
                    string text = this.m_LexTokenizerConfig.getLineComment()[num];
                    if (text != null)
                    {
                        if (base.getNextString(text.Length).Equals(text))
                        {
                            result = this.parseLineComment(lexToken, text);
                            return(result);
                        }
                    }
                    num++;
                }
                num = 0;
                while (this.m_LexTokenizerConfig.getSpecialGroups() != null && num < this.m_LexTokenizerConfig.getSpecialGroups().Length)
                {
                    string text = this.m_LexTokenizerConfig.getSpecialGroups()[num];
                    if (text != null)
                    {
                        if (base.getNextString(text.Length).Equals(text))
                        {
                            lexToken.setType(LexTokenTypes.SPECIAL);
                            lexToken.setToken(this.m_LexTokenizerConfig.getSpecialGroups()[num]);
                            for (int i = 0; i < this.m_LexTokenizerConfig.getSpecialGroups()[num].Length; i++)
                            {
                                base.next();
                            }
                            result = lexToken;
                            return(result);
                        }
                    }
                    num++;
                }
                if (this.m_LexTokenizerConfig.isNamePrefix(c))
                {
                    result = this.parseName(lexToken);
                }
                else
                {
                    num = 0;
                    while (this.m_LexTokenizerConfig.getBlockComments() != null && num < this.m_LexTokenizerConfig.getBlockComments().Length)
                    {
                        if (num + 1 < this.m_LexTokenizerConfig.getBlockComments().Length&& this.m_LexTokenizerConfig.getBlockComments()[num] != null && null != this.m_LexTokenizerConfig.getBlockComments()[num + 1])
                        {
                            string text = this.m_LexTokenizerConfig.getBlockComments()[num];
                            if (base.getNextString(text.Length).Equals(text))
                            {
                                result = this.parseBlockComment(lexToken, text, this.m_LexTokenizerConfig.getBlockComments()[num + 1]);
                                return(result);
                            }
                        }
                        num += 2;
                    }
                    num = 0;
                    while (this.m_LexTokenizerConfig.getSpecialNamePair() != null && num < this.m_LexTokenizerConfig.getSpecialNamePair().Length)
                    {
                        if (num + 1 < this.m_LexTokenizerConfig.getSpecialNamePair().Length&& this.m_LexTokenizerConfig.getSpecialNamePair()[num] != null && null != this.m_LexTokenizerConfig.getSpecialNamePair()[num + 1])
                        {
                            string text = this.m_LexTokenizerConfig.getSpecialNamePair()[num];
                            if (base.getNextString(text.Length).Equals(text))
                            {
                                result = this.parseSpecialName(lexToken, text, this.m_LexTokenizerConfig.getSpecialNamePair()[num + 1]);
                                return(result);
                            }
                        }
                        num += 2;
                    }
                    char c2 = base.peekNext();
                    if (char.IsLetter(c))
                    {
                        result = this.parseName(lexToken);
                    }
                    else if (char.IsDigit(c) || (c == '.' && char.IsDigit(c2)))
                    {
                        result = this.parseNumber(lexToken);
                    }
                    else if (c == '"' || c == '\'')
                    {
                        result = this.parseString(false, lexToken);
                    }
                    else if (c == this.m_LexTokenizerConfig.getMultiLineStringPrefix() && (base.peekNext() == '"' || base.peekNext() == '\''))
                    {
                        result = this.parseString(true, lexToken);
                    }
                    else
                    {
                        result = this.parseSpecial(lexToken);
                    }
                }
            }
            return(result);
        }
Exemplo n.º 11
0
        protected LexToken parseNumber(LexToken token)
        {
            token.setType(LexTokenTypes.NUMBER);
            StringBuilder stringBuilder = new StringBuilder();

            stringBuilder.Append(base.current());
            int  num  = 0;
            int  num2 = 0;
            char c    = base.next();
            bool flag = false;

            while (c != '\0')
            {
                if (char.IsDigit(c))
                {
                    stringBuilder.Append(c);
                }
                else if (c == '.')
                {
                    num++;
                    if (num > 1)
                    {
                        this.throwException(stringBuilder.ToString(), "多余的小数点");
                    }
                    if (!char.IsDigit(base.peekNext()))
                    {
                        this.throwException(stringBuilder.ToString(), "小数点后面应该是数字");
                    }
                    token.setType(LexTokenTypes.DOUBLE);
                    stringBuilder.Append(c);
                }
                else if (c == 'e' || c == 'E')
                {
                    num2++;
                    if (num2 > 1)
                    {
                        this.throwException(stringBuilder.ToString(), "多余的科学计数法E");
                    }
                    flag = true;
                    if (!char.IsDigit(base.peekNext()) && base.peekNext() != '+' && base.peekNext() != '-')
                    {
                        this.throwException(stringBuilder.ToString(), "科学计数法E后面必须紧跟数字、正负号");
                    }
                    token.setType(LexTokenTypes.DOUBLE);
                    stringBuilder.Append(c);
                }
                else
                {
                    if (c != '+' && c != '-')
                    {
                        break;
                    }
                    if (!flag)
                    {
                        break;
                    }
                    stringBuilder.Append(c);
                }
                c = base.next();
            }
            if (this.m_LexTokenizerConfig.isUsingPrecentSign() && c == '%')
            {
                stringBuilder.Append(c);
                base.next();
                token.setType(LexTokenTypes.DOUBLE);
            }
            token.setToken(stringBuilder.ToString());
            return(token);
        }
Exemplo n.º 12
0
 protected void throwException(LexToken tk, string strMessage)
 {
     throw new LexException(tk.getBeginRowIndex(), tk.getBeginRowIndex(), strMessage);
 }
Exemplo n.º 13
0
        private LexToken parseString(bool isMulti, LexToken token)
        {
            char c = base.current();

            if (isMulti)
            {
                c = base.next();
            }
            char c2 = (c == '"') ? '"' : '\'';

            token.setType((c == '"') ? LexTokenTypes.STRING_QUOTED : LexTokenTypes.STRING);
            string text = "";

            base.next();
            char c3 = '\0';
            char c4 = '\0';

            while (base.current() != '\0')
            {
                if (base.current() == c2)
                {
                    if (c3 != '\\')
                    {
                        break;
                    }
                }
                char c5 = base.current();
                if (c5 == '\n')
                {
                    if (!isMulti && this.m_LexTokenizerConfig.getMultiLineStringSuffix() != '\0')
                    {
                        if (c4 == '\0' || c4 != this.m_LexTokenizerConfig.getMultiLineStringSuffix())
                        {
                            this.throwException("", "不能在字符串中包含回车!");
                        }
                        int num = text.LastIndexOf(this.m_LexTokenizerConfig.getMultiLineStringSuffix());
                        if (num >= 0)
                        {
                            text = text.Substring(0, num);
                        }
                    }
                    else if (!isMulti)
                    {
                        this.throwException("", "不能在字符串中包含回车!");
                    }
                    c4 = '\0';
                }
                text += c5;
                c3    = c5;
                if (!char.IsWhiteSpace(c5))
                {
                    c4 = c5;
                }
                base.next();
            }
            if (base.current() != c2)
            {
                this.throwException(token, "不能匹配字符串的开始标志和结束标志!");
            }
            if (isMulti)
            {
                token.setPrefix(this.m_LexTokenizerConfig.getMultiLineStringPrefix() + c + "");
            }
            else
            {
                token.setPrefix(string.Concat(c));
            }
            token.setSuffix(string.Concat(c2));
            token.setToken(text);
            base.next();
            return(token);
        }
Exemplo n.º 14
0
 public static bool IsSQLParameterToken(LexToken token)
 {
     return(token != null && token.getToken() != null && token.getToken().Length > 0 && (token.isName() || token.isSpecial()) && "#@:?".IndexOf(token.getToken().ToCharArray()[0]) >= 0);
 }
Exemplo n.º 15
0
 public void setPrevBlanks(LexToken m_prevBlanks)
 {
     this.m_prevBlanks = m_prevBlanks;
 }