📄 dqlbaseparser.java
字号:
public final void identifier() throws RecognitionException, TokenStreamException {
returnAST = null;
ASTPair currentAST = new ASTPair();
AST identifier_AST = null;
try { // for error handling
AST tmp67_AST = null;
tmp67_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp67_AST);
match(IDENT);
identifier_AST = (AST)currentAST.root;
}
catch (RecognitionException ex) {
identifier_AST = handleIdentifierError(LT(1),ex);
}
returnAST = identifier_AST;
}
public final void collectionExpr() throws RecognitionException, TokenStreamException {
returnAST = null;
ASTPair currentAST = new ASTPair();
AST collectionExpr_AST = null;
try { // for error handling
{
switch ( LA(1)) {
case ELEMENTS:
{
AST tmp68_AST = null;
tmp68_AST = astFactory.create(LT(1));
astFactory.makeASTRoot(currentAST, tmp68_AST);
match(ELEMENTS);
break;
}
case INDICES:
{
AST tmp69_AST = null;
tmp69_AST = astFactory.create(LT(1));
astFactory.makeASTRoot(currentAST, tmp69_AST);
match(INDICES);
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
match(OPEN);
path();
astFactory.addASTChild(currentAST, returnAST);
match(CLOSE);
collectionExpr_AST = (AST)currentAST.root;
}
catch (RecognitionException ex) {
reportError(ex);
recover(ex,_tokenSet_16);
}
returnAST = collectionExpr_AST;
}
public final void primaryExpression() throws RecognitionException, TokenStreamException {
returnAST = null;
ASTPair currentAST = new ASTPair();
AST primaryExpression_AST = null;
try { // for error handling
switch ( LA(1)) {
case AVG:
case COUNT:
case ELEMENTS:
case INDICES:
case MAX:
case MIN:
case SUM:
case IDENT:
{
identPrimary();
astFactory.addASTChild(currentAST, returnAST);
{
if ((LA(1)==DOT) && (LA(2)==CLASS)) {
AST tmp72_AST = null;
tmp72_AST = astFactory.create(LT(1));
astFactory.makeASTRoot(currentAST, tmp72_AST);
match(DOT);
AST tmp73_AST = null;
tmp73_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp73_AST);
match(CLASS);
}
else if ((_tokenSet_16.member(LA(1))) && (_tokenSet_17.member(LA(2)))) {
}
else {
throw new NoViableAltException(LT(1), getFilename());
}
}
primaryExpression_AST = (AST)currentAST.root;
break;
}
case FALSE:
case NULL:
case TRUE:
case EMPTY:
case NUM_DOUBLE:
case NUM_FLOAT:
case NUM_LONG:
case NUM_INT:
case QUOTED_STRING:
{
constant();
astFactory.addASTChild(currentAST, returnAST);
primaryExpression_AST = (AST)currentAST.root;
break;
}
case COLON:
{
AST tmp74_AST = null;
tmp74_AST = astFactory.create(LT(1));
astFactory.makeASTRoot(currentAST, tmp74_AST);
match(COLON);
identifier();
astFactory.addASTChild(currentAST, returnAST);
primaryExpression_AST = (AST)currentAST.root;
break;
}
case OPEN:
{
match(OPEN);
{
expressionOrVector();
astFactory.addASTChild(currentAST, returnAST);
}
match(CLOSE);
primaryExpression_AST = (AST)currentAST.root;
break;
}
case PARAM:
{
AST tmp77_AST = null;
tmp77_AST = astFactory.create(LT(1));
astFactory.makeASTRoot(currentAST, tmp77_AST);
match(PARAM);
{
switch ( LA(1)) {
case NUM_INT:
{
AST tmp78_AST = null;
tmp78_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp78_AST);
match(NUM_INT);
break;
}
case EOF:
case AND:
case BETWEEN:
case DOT:
case ESCAPE:
case IN:
case IS:
case LIKE:
case ILIKE:
case NOT:
case OR:
case END:
case ELSE:
case THEN:
case WHEN:
case MEMBER:
case COMMA:
case EQ:
case NE:
case SQL_NE:
case LT:
case GT:
case LE:
case GE:
case CONCAT:
case PLUS:
case MINUS:
case STAR:
case DIV:
case CLOSE:
case OPEN_BRACKET:
case CLOSE_BRACKET:
{
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
primaryExpression_AST = (AST)currentAST.root;
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
catch (RecognitionException ex) {
reportError(ex);
recover(ex,_tokenSet_16);
}
returnAST = primaryExpression_AST;
}
public final void exprList() throws RecognitionException, TokenStreamException {
returnAST = null;
ASTPair currentAST = new ASTPair();
AST exprList_AST = null;
Token t = null;
AST t_AST = null;
Token l = null;
AST l_AST = null;
Token b = null;
AST b_AST = null;
AST trimSpec = null;
try { // for error handling
{
switch ( LA(1)) {
case TRAILING:
{
t = LT(1);
t_AST = astFactory.create(t);
astFactory.addASTChild(currentAST, t_AST);
match(TRAILING);
trimSpec = t_AST;
break;
}
case LEADING:
{
l = LT(1);
l_AST = astFactory.create(l);
astFactory.addASTChild(currentAST, l_AST);
match(LEADING);
trimSpec = l_AST;
break;
}
case BOTH:
{
b = LT(1);
b_AST = astFactory.create(b);
astFactory.addASTChild(currentAST, b_AST);
match(BOTH);
trimSpec = b_AST;
break;
}
case ALL:
case ANY:
case AVG:
case COUNT:
case ELEMENTS:
case EXISTS:
case FALSE:
case INDICES:
case MAX:
case MIN:
case NOT:
case NULL:
case SOME:
case SUM:
case TRUE:
case CASE:
case EMPTY:
case NUM_DOUBLE:
case NUM_FLOAT:
case NUM_LONG:
case PLUS:
case MINUS:
case OPEN:
case CLOSE:
case COLON:
case PARAM:
case NUM_INT:
case QUOTED_STRING:
case IDENT:
{
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
if(trimSpec != null) trimSpec.setType(IDENT);
{
switch ( LA(1)) {
case ALL:
case ANY:
case AVG:
case COUNT:
case ELEMENTS:
case EXISTS:
case FALSE:
case INDICES:
case MAX:
case MIN:
case NOT:
case NULL:
case SOME:
case SUM:
case TRUE:
case CASE:
case EMPTY:
case NUM_DOUBLE:
case NUM_FLOAT:
case NUM_LONG:
case PLUS:
case MINUS:
case OPEN:
case COLON:
case PARAM:
case NUM_INT:
case QUOTED_STRING:
case IDENT:
{
expression();
astFactory.addASTChild(currentAST, returnAST);
break;
}
case CLOSE:
{
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
exprList_AST = (AST)currentAST.root;
}
catch (RecognitionException ex) {
reportError(ex);
recover(ex,_tokenSet_18);
}
returnAST = exprList_AST;
}
public final void identPrimary() throws RecognitionException, TokenStreamException {
returnAST = null;
ASTPair currentAST = new ASTPair();
AST identPrimary_AST = null;
Token o = null;
AST o_AST = null;
Token op = null;
AST op_AST = null;
try { // for error handling
switch ( LA(1)) {
case IDENT:
{
identifier();
astFactory.addASTChild(currentAST, returnAST);
handleDotIdent();
{
_loop87:
do {
if ((LA(1)==DOT) && (LA(2)==ELEMENTS||LA(2)==OBJECT||LA(2)==IDENT) && (_tokenSet_19.member(LA(3)))) {
AST tmp79_AST = null;
tmp79_AST = astFactory.create(LT(1));
astFactory.makeASTRoot(currentAST, tmp79_AST);
match(DOT);
{
switch ( LA(1)) {
case IDENT:
{
identifier();
astFactory.addASTChild(currentAST, returnAST);
break;
}
case ELEMENTS:
{
AST tmp80_AST = null;
tmp80_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp80_AST);
match(ELEMENTS);
break;
}
case OBJECT:
{
o = LT(1);
o_AST = astFactory.create(o);
astFactory.addASTChild(currentAST, o_AST);
match(OBJECT);
o_AST.setType(IDENT);
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
}
else {
break _loop87;
}
} while (true);
}
{
switch ( LA(1)) {
case OPEN:
{
{
op = LT(1);
op_AST = astFactory.create(op);
astFactory.makeASTRoot(currentAST, op_AST);
match(OPEN);
op_AST.setType(METHOD_CALL);
exprList();
astFactory.addASTChild(currentAST, returnAST);
match(CLOSE);
}
break;
}
case EOF:
case AND:
case BETWEEN:
case DOT:
case ESCAPE:
case IN:
case IS:
case LIKE:
case ILIKE:
case NOT:
case OR:
case END:
case ELSE:
case THEN:
case WHEN:
case MEMBER:
case COMMA:
case EQ:
case NE:
case SQL_NE:
case LT:
case GT:
case LE:
case GE:
case CONCAT:
case PLUS:
case MINUS:
case STAR:
case DIV:
case CLOSE:
case OPEN_BRACKET:
case CLOSE_BRACKET:
{
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
identPrimary_AST = (AST)currentAST.root;
break;
}
case AVG:
case COUNT:
case ELEMENTS:
case INDICES:
case MAX:
case MIN:
case SUM:
{
aggregate();
astFactory.addASTChild(currentAST, returnAST);
identPrimary_AST = (AST)currentAST.root;
break;
}
default:
{
throw new NoViableAltException(LT(1), getFilename());
}
}
}
catch (RecognitionException ex) {
reportError(ex);
recover(ex,_tokenSet_16);
}
returnAST = identPrimary_AST;
}
public final void constant() throws RecognitionException, TokenStreamException {
returnAST = null;
ASTPair currentAST = new ASTPair();
AST constant_AST = null;
try { // for error handling
switch ( LA(1)) {
case NUM_INT:
{
AST tmp82_AST = null;
tmp82_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp82_AST);
match(NUM_INT);
constant_AST = (AST)currentAST.root;
break;
}
case NUM_FLOAT:
{
AST tmp83_AST = null;
tmp83_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp83_AST);
match(NUM_FLOAT);
constant_AST = (AST)currentAST.root;
break;
}
case NUM_LONG:
{
AST tmp84_AST = null;
tmp84_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp84_AST);
match(NUM_LONG);
constant_AST = (AST)currentAST.root;
break;
}
case NUM_DOUBLE:
{
AST tmp85_AST = null;
tmp85_AST = astFactory.create(LT(1));
astFactory.addASTChild(currentAST, tmp85_AST);
match(NUM_DOUBLE);
constant_AST = (AST)currentAST.root;
break;
}
case QUOTED_STRING:
{
AST tmp86_AST = null;
tmp86_AST = astFactory.create(LT(1));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -