⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 variablescopevisitor.java

📁 大名鼎鼎的java动态脚本语言。已经通过了sun的认证
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* $Id: VariableScopeVisitor.java,v 1.4 2006/06/15 17:21:33 blackdrag Exp $ Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved. Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain copyright    statements and notices.  Redistributions must also contain a    copy of this document. 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 "groovy" must not be used to endorse or promote    products derived from this Software without prior written    permission of The Codehaus.  For written permission,    please contact info@codehaus.org. 4. Products derived from this Software may not be called "groovy"    nor may "groovy" appear in their names without prior written    permission of The Codehaus. "groovy" is a registered    trademark of The Codehaus. 5. Due credit should be given to The Codehaus -    http://groovy.codehaus.org/ THIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 CODEHAUS OR ITS CONTRIBUTORS 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.codehaus.groovy.classgen;import java.util.Iterator;import java.util.LinkedList;import java.util.List;import java.util.Map;import org.codehaus.groovy.ast.ASTNode;import org.codehaus.groovy.ast.ClassCodeVisitorSupport;import org.codehaus.groovy.ast.ClassHelper;import org.codehaus.groovy.ast.ClassNode;import org.codehaus.groovy.ast.FieldNode;import org.codehaus.groovy.ast.MethodNode;import org.codehaus.groovy.ast.Parameter;import org.codehaus.groovy.ast.PropertyNode;import org.codehaus.groovy.ast.DynamicVariable;import org.codehaus.groovy.ast.Variable;import org.codehaus.groovy.ast.VariableScope;import org.codehaus.groovy.ast.expr.ClosureExpression;import org.codehaus.groovy.ast.expr.DeclarationExpression;import org.codehaus.groovy.ast.expr.Expression;import org.codehaus.groovy.ast.expr.FieldExpression;import org.codehaus.groovy.ast.expr.MethodCallExpression;import org.codehaus.groovy.ast.expr.VariableExpression;import org.codehaus.groovy.ast.stmt.BlockStatement;import org.codehaus.groovy.ast.stmt.CatchStatement;import org.codehaus.groovy.ast.stmt.ForStatement;import org.codehaus.groovy.control.SourceUnit;/** * goes through an AST and initializes the scopes  * @author Jochen Theodorou */public class VariableScopeVisitor extends ClassCodeVisitorSupport {    private VariableScope currentScope = null;    private VariableScope headScope = new VariableScope();    private ClassNode currentClass=null;    private SourceUnit source;    private boolean inClosure=false;        private LinkedList stateStack=new LinkedList();        private class StateStackElement {        VariableScope scope;        ClassNode clazz;        boolean dynamic;        boolean closure;                StateStackElement() {            scope = VariableScopeVisitor.this.currentScope;            clazz = VariableScopeVisitor.this.currentClass;            closure = VariableScopeVisitor.this.inClosure;        }    }        public VariableScopeVisitor(SourceUnit source) {        this.source = source;        currentScope  = headScope;    }            // ------------------------------    // helper methods       //------------------------------        private void pushState(boolean isStatic) {        stateStack.add(new StateStackElement());        currentScope = new VariableScope(currentScope);        currentScope.setInStaticContext(isStatic);    }        private void pushState() {        pushState(currentScope.isInStaticContext());    }        private void popState() {        // a scope in a closure is never really static        // the checking needs this to be as the surrounding        // method to correctly check the access to variables.        // But a closure and all nested scopes are a result        // of calling a non static method, so the context        // is not static.        if (inClosure) currentScope.setInStaticContext(false);                StateStackElement element = (StateStackElement) stateStack.removeLast();        currentScope = element.scope;        currentClass = element.clazz;        inClosure = element.closure;    }        private void declare(Parameter[] parameters, ASTNode node) {        for (int i = 0; i < parameters.length; i++) {            if (parameters[i].hasInitialExpression()) {                parameters[i].getInitialExpression().visit(this);            }            declare(parameters[i],node);        }    }                private void declare(VariableExpression expr) {        declare(expr,expr);    }        private void declare(Variable var, ASTNode expr) {        String scopeType = "scope";        String variableType = "variable";                if (expr.getClass()==FieldNode.class){            scopeType = "class";             variableType = "field";        } else if (expr.getClass()==PropertyNode.class){            scopeType = "class";             variableType = "property";        }                StringBuffer msg = new StringBuffer();        msg.append("The current ").append(scopeType);        msg.append(" does already contain a ").append(variableType);        msg.append(" of the name ").append(var.getName());                if (currentScope.getDeclaredVariable(var.getName())!=null) {            addError(msg.toString(),expr);            return;        }                for (VariableScope scope = currentScope.getParent(); scope!=null; scope = scope.getParent()) {            // if we are in a class and no variable is declared until            // now, then we can break the loop, because we are allowed            // to declare a variable of the same name as a class member            if (scope.getClassScope()!=null) break;                        Map declares = scope.getDeclaredVariables();            if (declares.get(var.getName())!=null) {                // variable already declared                addError(msg.toString(), expr);                break;            }        }        // declare the variable even if there was an error to allow more checks        currentScope.getDeclaredVariables().put(var.getName(),var);    }        protected SourceUnit getSourceUnit() {        return source;    }        private Variable findClassMember(ClassNode cn, String name) {        if (cn == null) return null;        if (cn.isScript()) {            return new DynamicVariable(name,false);        }        List l = cn.getFields();        for (Iterator iter = l.iterator(); iter.hasNext();) {            FieldNode f = (FieldNode) iter.next();            if (f.getName().equals(name)) return f;        }        l = cn.getMethods();        for (Iterator iter = l.iterator(); iter.hasNext();) {            MethodNode f =(MethodNode) iter.next();            String methodName = f.getName();            String pName = getPropertyName(f);            if (pName == null) continue;             if (!pName.equals(name)) continue;            PropertyNode var = new PropertyNode(pName,f.getModifiers(),getPropertyType(f),cn,null,null,null);            return var;        }        l = cn.getProperties();        for (Iterator iter = l.iterator(); iter.hasNext();) {            PropertyNode f = (PropertyNode) iter.next();            if (f.getName().equals(name)) return f;        }                Variable ret = findClassMember(cn.getSuperClass(),name);        if (ret!=null) return ret;        return findClassMember(cn.getOuterClass(),name);     }        private ClassNode getPropertyType(MethodNode m) {        String name = m.getName();        if (m.getReturnType()!=ClassHelper.VOID_TYPE) {            return m.getReturnType();        }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -