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

org.beetl.core.ProgramBuilderContext Maven / Gradle / Ivy

The newest version!
/*
 [The "BSD license"]
 Copyright (c) 2011-2024  闲大赋 (李家智)
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in the
     documentation and/or other materials provided with the distribution.
 3. The name of the author may not be used to endorse or promote products
     derived from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.beetl.core;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.TreeMap;

import org.beetl.core.statement.ASTNode;
import org.beetl.core.statement.GrammarToken;
import org.beetl.core.statement.IGoto;
import org.beetl.core.statement.IVarIndex;

/**
 * 结合AntlrProgramBuilder 将模板生成Program,该类负责记录变量定义的位置和出现的位置
 *
 * @author xiandafu
 */
public class ProgramBuilderContext {
    // 最顶层的变量,非全局变量
    BlockEnvContext root = new BlockEnvContext();
    // 当前block
    BlockEnvContext current = root;

    // 节点运算辅助对象
    List listNodeEval = new LinkedList();
    // 全局变量名以及描述
    Map globalVar = new HashMap();

    // 为所有变量分配的空间长度
    int varIndexSize = 0;
    // 全局变量在空间中的位置
    public Map globalIndexMap = new HashMap();

    boolean isSafeOutput = false;

    /**
     * 顶级变量在空间中的位置
     */
    public Map rootIndexMap = new HashMap();

    /**
     * 进入一个scope
     */
    public void enterBlock() {
        BlockEnvContext blockVar = new BlockEnvContext();
        blockVar.setParent(current);
        current = blockVar;
    }

    public void exitBlock() {
        current = current.parent;
    }

    public void addVarAndPostion(ASTNode first) {
        this.addVar(first.token.text);
        this.setVarPosition(first.token.text, first);
    }

    /**
     * 动态添加一个顶级变量
     */
    public boolean addRootVarAdnPosition(ASTNode first) {
        String varName = first.token.text;
        //需要查找是否已经被定义过了,不能定义
        if (searchVar(root, varName) != null) {
            return true;
        }

        VarDescrption varDesc = new VarDescrption();
        varDesc.setVarName(varName);
        varDesc.where.add(first);
        root.getVars().put(varName, varDesc);
        return false;
    }

    /**
     * 自上向下查找
     */
    public ASTNode searchVar(BlockEnvContext ctx, String name) {
        if (ctx.getVarDescrption(name) != null) {
            return ctx.getVarDescrption(name).where.get(0);
        }
        for (BlockEnvContext child : ctx.blockList) {
            ASTNode node = searchVar(child, name);
            if (node != null) {
                return node;
            }
        }
        return null;
    }

    /**
     * 在当前context定义变量
     */
    public void addVar(String varName) {
        VarDescrption varDesc = new VarDescrption();
        varDesc.setVarName(varName);
        this.current.getVars().put(varName, varDesc);
    }

    public ASTNode contain(String varName){
		VarDescrption varDesc = this.current.getVars().get(varName);
		if(varDesc==null){
			return null;
		}else{
			return varDesc.where.get(0);
		}
	}

    /**
     * 变量属性,展示没用上,本来想用在ide属性提示,但ide插件门槛太高了,搞不定
     */
    public void setVarAttr(String varName, String attrName) {
        VarDescrption varDesc = findVar(varName);
        varDesc.attrList.add(attrName);
    }

    public void setVarPosition(String varName, ASTNode where) {
        VarDescrption varDesc = findVar(varName);
        varDesc.where.add(where);
    }

    protected GrammarToken hasDefined(String varName) {
        BlockEnvContext scope = current;
        while (scope != null) {
            VarDescrption varDesc = scope.getVarDescrption(varName);
            if (varDesc != null) {
                return varDesc.where.get(0).token;
            } else {
                scope = scope.parent;
            }
        }
        return null;
    }

    protected VarDescrption findVar(String varName) {
        BlockEnvContext scope = current;
        while (scope != null) {
            VarDescrption varDesc = scope.getVarDescrption(varName);
            if (varDesc != null) {
                return varDesc;
            } else {
                scope = scope.parent;
            }
        }

        // 未发现,是模板全局变量
        VarDescrption desc = globalVar.get(varName);
        if (desc == null) {
            desc = new VarDescrption();
            globalVar.put(varName, desc);
        }

        return desc;

    }

    public int setNodeEvalObject(Object o) {
        listNodeEval.add(o);
        return listNodeEval.size() - 1;
    }

    public void anzlyszeGlobal() {
        int index = 0;
        for (Entry entry : globalVar.entrySet()) {
            globalIndexMap.put(entry.getKey(), index);

            VarDescrption vd = entry.getValue();
            String[] attrs = vd.attrList.toArray(new String[0]);

            for (ASTNode node : vd.where) {
                ((IVarIndex) node).setVarIndex(index);
            }
            index++;
        }
    }

    public void anzlyszeLocal() {
        anzlysze(this.root, this.globalVar.size(), true);
    }

    private void anzlysze(BlockEnvContext block, int nextIndex, boolean isRoot) {

        for (Entry entry : block.vars.entrySet()) {
            VarDescrption vd = entry.getValue();
            // 暂时不考虑变量有可能没有被引用,(for 循环中的状态变量),因此不需要分配空间
            // if (!vd.where.isEmpty()) {
            for (ASTNode node : vd.where) {
                ((IVarIndex) node).setVarIndex(nextIndex);
                if (isRoot) {
                    this.rootIndexMap.put(vd.getVarName(), nextIndex);
                }
            }
            nextIndex++;
            // }

        }
        varIndexSize = Math.max(varIndexSize, nextIndex);

        for (BlockEnvContext subBlock : block.blockList) {
            anzlysze(subBlock, nextIndex, false);
            int inc = subBlock.vars.size();
            varIndexSize = Math.max(varIndexSize, nextIndex + inc);
        }

    }

}

class BlockEnvContext {
    Map vars = new TreeMap();
    // chidren
    List blockList = new ArrayList();
    BlockEnvContext parent = null;
    int gotoValue = IGoto.NORMAL;

    boolean canStopContinueBreakFlag = false;

    public Map getVars() {
        return vars;
    }

    public void setVars(Map vars) {
        this.vars = vars;
    }

    public List getBlockList() {
        return blockList;
    }

    public void setBlockList(List blockList) {
        this.blockList = blockList;
    }

    public BlockEnvContext getParent() {
        return parent;
    }

    public void setParent(BlockEnvContext parent) {
        this.parent = parent;
        parent.blockList.add(this);
    }

    public VarDescrption getVarDescrption(String varName) {
        return vars.get(varName);
    }

    public String toString() {

        StringBuilder sb = new StringBuilder();

        sb.append(vars.toString());

        for (BlockEnvContext block : blockList) {
            sb.append(block).append("\n");
        }

        return sb.append("\n").toString();
    }

}

class VarDescrption {

    String varName;
    Set attrList = new HashSet();
    List where = new ArrayList();

    public String getVarName() {
        return varName;
    }

    public void setVarName(String varName) {
        this.varName = varName;
    }

    public Set getAttrList() {
        return attrList;
    }

    public void setAttrList(Set attrList) {
        this.attrList = attrList;
    }

    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(attrList).append("\n");
        sb.append("where:");
        for (ASTNode w : where) {
            sb.append("索引:").append(((IVarIndex) w).getVarIndex()).append(",").append(w.token.line).append("行");
            sb.append(";");
        }
        sb.append("\n");
        return sb.toString();
    }

}