All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dream.system.antlr.handler.non.BraceHandler Maven / Gradle / Ivy

The newest version!
package com.dream.system.antlr.handler.non;

import com.dream.antlr.config.Assist;
import com.dream.antlr.exception.AntlrException;
import com.dream.antlr.handler.AbstractHandler;
import com.dream.antlr.invoker.Invoker;
import com.dream.antlr.smt.BraceStatement;
import com.dream.antlr.smt.Statement;
import com.dream.antlr.smt.SymbolStatement;
import com.dream.antlr.sql.ToSQL;
import com.dream.antlr.util.ExprUtil;

import java.util.List;

public class BraceHandler extends AbstractHandler {

    @Override
    protected Statement handlerBefore(Statement statement, Assist assist, ToSQL toSQL, List invokerList, int life) throws AntlrException {
        BraceStatement braceStatement = (BraceStatement) statement;
        String val = toSQL.toStr(braceStatement.getStatement(), assist, invokerList);
        if (ExprUtil.isEmpty(val)) {
            return null;
        }
        return new SymbolStatement.LetterStatement("(" + val + ")");
    }

    @Override
    protected boolean interest(Statement statement, Assist assist) {
        return statement instanceof BraceStatement;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy