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

com.cflint.plugins.core.CFQueryChecker Maven / Gradle / Ivy

Go to download

A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With CFLint, you are able to analyze your ColdFusion code base for code violations.

There is a newer version: 1.5.0
Show newest version
package com.cflint.plugins.core;

import com.cflint.BugList;
import com.cflint.CF;
import com.cflint.plugins.CFLintScannerAdapter;
import com.cflint.plugins.Context;

import net.htmlparser.jericho.Element;
import ro.fortsoft.pf4j.Extension;

@Extension
public class CFQueryChecker extends CFLintScannerAdapter {
    private static final String NEVER_USE_QUERY_IN_CFM = "NEVER_USE_QUERY_IN_CFM";

    // rule: don't allow  tag in a .cfm file
    @Override
    public void element(final Element element, final Context context, final BugList bugs) {
        final String file = context.getFilename();
        final String ext = file.substring(file.length() - 3, file.length());
        final String tagName = element.getName();
        if (tagName.equals(CF.CFQUERY) && "cfm".equals(ext)) {
            final int begLine = element.getSource().getRow(element.getBegin());
            context.addMessage(NEVER_USE_QUERY_IN_CFM, null, this, begLine, element.getBegin());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy