Search in sources :

Example 1 with ASTMethodDeclaration

use of net.sourceforge.pmd.lang.plsql.ast.ASTMethodDeclaration in project pmd by pmd.

the class StatementAndBraceFinder method buildDataFlowFor.

public void buildDataFlowFor(PLSQLNode node) {
    LOGGER.entering(this.getClass().getCanonicalName(), "buildDataFlowFor");
    if (LOGGER.isLoggable(Level.FINEST)) {
        LOGGER.finest("buildDataFlowFor: node class " + node.getClass().getCanonicalName() + " @ line " + node.getBeginLine() + ", column " + node.getBeginColumn() + " --- " + new Throwable().getStackTrace());
    }
    if (!(node instanceof ASTMethodDeclaration) && !(node instanceof ASTProgramUnit) && !(node instanceof ASTTypeMethod) && !(node instanceof ASTTriggerUnit) && !(node instanceof ASTTriggerTimingPointSection)) {
        throw new RuntimeException("Can't build a data flow for anything other than a Method or a Trigger");
    }
    this.dataFlow = new Structure(dataFlowHandler);
    this.dataFlow.createStartNode(node.getBeginLine());
    this.dataFlow.createNewNode(node);
    node.jjtAccept(this, dataFlow);
    this.dataFlow.createEndNode(node.getEndLine());
    if (LOGGER.isLoggable(Level.FINE)) {
        LOGGER.fine("DataFlow is " + this.dataFlow.dump());
    }
    Linker linker = new Linker(dataFlowHandler, dataFlow.getBraceStack(), dataFlow.getContinueBreakReturnStack());
    try {
        linker.computePaths();
    } catch (LinkerException e) {
        LOGGER.severe("LinkerException");
        e.printStackTrace();
    } catch (SequenceException e) {
        LOGGER.severe("SequenceException");
        e.printStackTrace();
    }
    LOGGER.exiting(this.getClass().getCanonicalName(), "buildDataFlowFor");
}
Also used : ASTTypeMethod(net.sourceforge.pmd.lang.plsql.ast.ASTTypeMethod) LinkerException(net.sourceforge.pmd.lang.dfa.LinkerException) ASTTriggerUnit(net.sourceforge.pmd.lang.plsql.ast.ASTTriggerUnit) ASTMethodDeclaration(net.sourceforge.pmd.lang.plsql.ast.ASTMethodDeclaration) SequenceException(net.sourceforge.pmd.lang.dfa.SequenceException) ASTTriggerTimingPointSection(net.sourceforge.pmd.lang.plsql.ast.ASTTriggerTimingPointSection) Structure(net.sourceforge.pmd.lang.dfa.Structure) Linker(net.sourceforge.pmd.lang.dfa.Linker) ASTProgramUnit(net.sourceforge.pmd.lang.plsql.ast.ASTProgramUnit)

Example 2 with ASTMethodDeclaration

use of net.sourceforge.pmd.lang.plsql.ast.ASTMethodDeclaration in project pmd by pmd.

the class StatementAndBraceFinderTest method testOnlyWorksForMethodsAndConstructors.

@Test
public void testOnlyWorksForMethodsAndConstructors() {
    StatementAndBraceFinder sbf = new StatementAndBraceFinder(LanguageRegistry.getLanguage(PLSQLLanguageModule.NAME).getDefaultVersion().getLanguageVersionHandler().getDataFlowHandler());
    PLSQLNode node = new ASTMethodDeclaration(1);
    ((AbstractNode) node).testingOnlySetBeginColumn(1);
    sbf.buildDataFlowFor(node);
    // sbf.buildDataFlowFor(new ASTConstructorDeclaration(1));
    node = new ASTProgramUnit(1);
    ((AbstractNode) node).testingOnlySetBeginColumn(1);
    sbf.buildDataFlowFor(node);
}
Also used : ASTMethodDeclaration(net.sourceforge.pmd.lang.plsql.ast.ASTMethodDeclaration) AbstractNode(net.sourceforge.pmd.lang.ast.AbstractNode) PLSQLNode(net.sourceforge.pmd.lang.plsql.ast.PLSQLNode) ASTProgramUnit(net.sourceforge.pmd.lang.plsql.ast.ASTProgramUnit) Test(org.junit.Test)

Aggregations

ASTMethodDeclaration (net.sourceforge.pmd.lang.plsql.ast.ASTMethodDeclaration)2 ASTProgramUnit (net.sourceforge.pmd.lang.plsql.ast.ASTProgramUnit)2 AbstractNode (net.sourceforge.pmd.lang.ast.AbstractNode)1 Linker (net.sourceforge.pmd.lang.dfa.Linker)1 LinkerException (net.sourceforge.pmd.lang.dfa.LinkerException)1 SequenceException (net.sourceforge.pmd.lang.dfa.SequenceException)1 Structure (net.sourceforge.pmd.lang.dfa.Structure)1 ASTTriggerTimingPointSection (net.sourceforge.pmd.lang.plsql.ast.ASTTriggerTimingPointSection)1 ASTTriggerUnit (net.sourceforge.pmd.lang.plsql.ast.ASTTriggerUnit)1 ASTTypeMethod (net.sourceforge.pmd.lang.plsql.ast.ASTTypeMethod)1 PLSQLNode (net.sourceforge.pmd.lang.plsql.ast.PLSQLNode)1 Test (org.junit.Test)1