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

com.jfinal.template.activerecord.ParaLikeDirective Maven / Gradle / Ivy

package com.jfinal.template.activerecord;

import com.jfinal.template.Directive;
import com.jfinal.template.Env;
import com.jfinal.template.TemplateException;
import com.jfinal.template.expr.ast.Const;
import com.jfinal.template.expr.ast.Expr;
import com.jfinal.template.expr.ast.ExprList;
import com.jfinal.template.expr.ast.Id;
import com.jfinal.template.io.Writer;
import com.jfinal.template.stat.ParseException;
import com.jfinal.template.stat.Scope;

/**
 * 模块描述:[sql模版,通过指令扩展,参照ParaDirective]
 * 作者:林冰清
 * 日期:2017/6/2.
 */
public class ParaLikeDirective extends Directive {
    private int index = -1;
    private String paraName = null;
    private static boolean checkParaAssigned = true;
    
    public ParaLikeDirective() {
    }
    
    public static void setCheckParaAssigned(boolean checkParaAssigned) {
        checkParaAssigned = checkParaAssigned;
    }
    
    public void setExprList(ExprList exprList) {
        if (exprList.length() == 0) {
            throw new ParseException("The parameter of #ParaLike directive can not be blank", this.location);
        } else {
            if (exprList.length() == 1) {
                Expr expr = exprList.getExpr(0);
                if (expr instanceof Const && ((Const) expr).isInt()) {
                    this.index = ((Const) expr).getInt().intValue();
                    if (this.index < 0) {
                        throw new ParseException("The index of para array must greater than -1", this.location);
                    }
                }
            }
            
            if (checkParaAssigned && exprList.getLastExpr() instanceof Id) {
                Id id = (Id) exprList.getLastExpr();
                this.paraName = id.getId();
            }
            
            this.exprList = exprList;
        }
    }
    
    public void exec(Env env, Scope scope, Writer writer) {
        SqlPara sqlPara = (SqlPara) scope.get("_SQL_PARA_");
        if (sqlPara == null) {
            throw new TemplateException("#paraLike directive invoked by getSqlPara(...) method only", this.location);
        } else {
            this.write(writer, "?");
            if (this.index == -1) {
                if (checkParaAssigned && this.paraName != null && !scope.exists(this.paraName)) {
                    throw new TemplateException("The parameter \"" + this.paraName + "\" must be assigned", this.location);
                }
                
                sqlPara.addPara("%" + this.exprList.eval(scope) + "%");
            } else {
                Object[] paras = (Object[]) ((Object[]) scope.get("_PARA_ARRAY_"));
                if (paras == null) {
                    throw new TemplateException("The #paraLike(" + this.index + ") directive must invoked by getSqlPara(String, Object...) method", this.location);
                }
                
                if (this.index >= paras.length) {
                    throw new TemplateException("The index of #paraLike directive is out of bounds: " + this.index, this.location);
                }
                
                sqlPara.addPara(paras[this.index]);
            }
            
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy