com.cflint.plugins.core.CFQueryChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CFLint Show documentation
Show all versions of CFLint Show documentation
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.
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());
}
}
}