-
Notifications
You must be signed in to change notification settings - Fork 47
[CHALLENGE24][GCI95][S.T.E.P] : Use every column queried #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
max-208
wants to merge
33
commits into
green-code-initiative:main
Choose a base branch
from
max-208:1044-java
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 19 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
6032969
feat: add test files
9419960
feat: :construction: EC1024 skeleton
max-208 f790569
feat: add test class
2facdf2
Fix: fix class and file name
a916018
feat: :construction: WIP : create rule EC10044
max-208 3ad7732
Merge branch '1044-java' of github.com:max-208/ecoCode-java into 1044…
max-208 5a8eb15
fix: improve test
de78977
feat: :construction: WIP finish rule creation for EC1044 rule
max-208 756e40e
Merge branch '1044-java' of github.com:max-208/ecoCode-java into 1044…
max-208 c6eaa43
feat: :construction: WIP : create rule 1044
max-208 75196b8
feat: :sparkles: created rule 1044
max-208 e82572d
fix: :bug: improve false positives detection
max-208 759b8ad
refactor: :recycle: quick refactor
max-208 2b7f600
refactor: :recycle: fix formating
max-208 30b131f
remove executeUpdate
max-208 647df32
add some comments
max-208 50259b0
small refactor and add comments
max-208 3cfaf87
Merge branch 'main' into 1044-java
max-208 1fc5855
Merge branch 'main' into 1044-java
dedece35 d0fe4d2
Add rule to registrar and correct ID
max-208 0e76371
Improve test names and add select * case
max-208 b8a7654
improve ResultSet get method detection
max-208 6b539b7
up to current branch
max-208 6a00a35
Merge branch 'main' into 1044-java
max-208 3d879a6
change package
max-208 8698e41
Merge remote-tracking branch 'origin/1044-java' into 1044-java
max-208 6a1484c
add integration test
max-208 ba71712
update changelog
max-208 482f2f8
fix pr following feedback
max-208 1b8b696
removed disabled tests
max-208 46c9bca
give real number to GCI95
max-208 49ba322
correct changelog
max-208 7fc22e1
Merge branch 'main' into 1044-java
pataluc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
358 changes: 358 additions & 0 deletions
358
src/main/java/fr/greencodeinitiative/java/checks/UseEveryColumnQueried.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,358 @@ | ||
| /* | ||
| * ecoCode - Java language - Provides rules to reduce the environmental footprint of your Java programs | ||
| * Copyright © 2023 Green Code Initiative (https://www.ecocode.io) | ||
| * | ||
| * This program is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU General Public License as published by | ||
| * the Free Software Foundation, either version 3 of the License, or | ||
| * (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
| package fr.greencodeinitiative.java.checks; | ||
|
|
||
| import java.util.ArrayList; | ||
| import java.util.Arrays; | ||
| import java.util.List; | ||
| import java.util.regex.Matcher; | ||
| import java.util.regex.Pattern; | ||
| import java.util.stream.Collectors; | ||
|
|
||
| import javax.annotation.Nullable; | ||
|
|
||
| import org.sonar.check.Rule; | ||
| import org.sonar.plugins.java.api.IssuableSubscriptionVisitor; | ||
| import org.sonar.plugins.java.api.semantic.MethodMatchers; | ||
| import org.sonar.plugins.java.api.semantic.Symbol; | ||
| import org.sonar.plugins.java.api.semantic.Symbol.VariableSymbol; | ||
| import org.sonar.plugins.java.api.tree.Arguments; | ||
| import org.sonar.plugins.java.api.tree.AssignmentExpressionTree; | ||
| import org.sonar.plugins.java.api.tree.ExpressionTree; | ||
| import org.sonar.plugins.java.api.tree.IdentifierTree; | ||
| import org.sonar.plugins.java.api.tree.LiteralTree; | ||
| import org.sonar.plugins.java.api.tree.MemberSelectExpressionTree; | ||
| import org.sonar.plugins.java.api.tree.MethodInvocationTree; | ||
| import org.sonar.plugins.java.api.tree.Tree; | ||
| import org.sonar.plugins.java.api.tree.VariableTree; | ||
| import org.sonar.plugins.java.api.tree.Tree.Kind; | ||
|
|
||
| @Rule(key = "1044") | ||
| public class UseEveryColumnQueried extends IssuableSubscriptionVisitor { | ||
max-208 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| protected static final String MESSAGERULE = "Avoid querying SQL columns that are not used"; | ||
| private static final String JAVA_SQL_STATEMENT = "java.sql.Statement"; | ||
| private static final String JAVA_SQL_RESULTSET = "java.sql.ResultSet"; | ||
| private static final MethodMatchers SQL_STATEMENT_DECLARE_SQL = MethodMatchers.create() | ||
| .ofSubTypes(JAVA_SQL_STATEMENT) | ||
| .names("executeQuery", "execute") | ||
| .addParametersMatcher("java.lang.String") | ||
| .build(); | ||
| private static final MethodMatchers SQL_STATEMENT_RETRIEVE_RESULTSET = MethodMatchers.create() | ||
| .ofSubTypes(JAVA_SQL_STATEMENT) | ||
| .names("executeQuery", "getResultSet") | ||
| .withAnyParameters() | ||
| .build(); | ||
| private static final MethodMatchers SQL_RESULTSET_GET_COLNAME = MethodMatchers.create() | ||
| .ofSubTypes(JAVA_SQL_RESULTSET) | ||
| .names("getInt", "getString", "getLong", "getDouble", "getFloat", "getBoolean", "getByte", "getShort", | ||
max-208 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "getBigDecimal", "getTimestamp", "getDate", "getTime", "getObject", "getArray", "getBlob", | ||
| "getClob", "getRef", "getRowId", "getNClob", "getSQLXML", "getURL", "getNString", | ||
| "getNCharacterStream", "getCharacterStream", "getAsciiStream", "getBinaryStream") | ||
| .addParametersMatcher("java.lang.String") | ||
| .build(); | ||
| private static final MethodMatchers SQL_RESULTSET_GET_COLID = MethodMatchers.create() | ||
| .ofSubTypes(JAVA_SQL_RESULTSET) | ||
| .names("getInt", "getString", "getLong", "getDouble", "getFloat", "getBoolean", "getByte", "getShort", | ||
max-208 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "getBigDecimal", "getTimestamp", "getDate", "getTime", "getObject", "getArray", "getBlob", | ||
| "getClob", "getRef", "getRowId", "getNClob", "getSQLXML", "getURL", "getNString", | ||
| "getNCharacterStream", "getCharacterStream", "getAsciiStream", "getBinaryStream") | ||
| .addParametersMatcher("int") | ||
| .build(); | ||
| private static final Pattern SELECTED_COLUMNS_PATTERN = Pattern.compile("SELECT\\s+(.*)\\s+FROM\\s+.*"); | ||
|
|
||
| @Override | ||
| public List<Kind> nodesToVisit() { | ||
| return Arrays.asList(Kind.METHOD_INVOCATION); | ||
| } | ||
|
|
||
| /** | ||
| * How this rule works : | ||
| * We start from the method invocation that declares the SQL query ( stmt.executeQuery("SELECT ... FROM ...") ) | ||
| * the selected columns are directly extracted from the parameters of this method invocation | ||
| * We explore the stmt object to find where the method invocation that returns the ResultSet object | ||
| * finally we explore all invocations of this ResultSet object to list all the column used. | ||
| * the selected and used columns are compared, and an issue is reported if columns are selected but not used. | ||
| * | ||
| * | ||
| * stmt.execute("SELECT ... FROM ...") or stmt.executeQuery(...) | ||
| * | | | ||
| * | ----> Selected Columns | ||
| * [Statement Object] | ||
| * | | ||
| * | | ||
| * v | ||
| * res = stmt.getResultSet() or stmt.executeQuery(...) | ||
| * | | ||
| * | | ||
| * [ResultSet Object] | ||
| * | | ||
| * | | ||
| * v | ||
| * res.getInt(...) or any column extraction method | ||
| * | | ||
| * ----> Used Column | ||
| * | ||
| */ | ||
| @Override | ||
| public void visitNode(Tree tree) { | ||
| MethodInvocationTree methodInvocationTree = (MethodInvocationTree) tree; | ||
| if (!SQL_STATEMENT_DECLARE_SQL.matches(methodInvocationTree)) { | ||
| return; | ||
| } | ||
|
|
||
| // extraction of the selected columns | ||
| List<String> selectedColumns = getSelectedColumns(methodInvocationTree); | ||
| if (selectedColumns.isEmpty()) { | ||
| return; | ||
| } | ||
|
|
||
| // get the ResultSet object and check it's validity | ||
| Symbol resultSet = getResultSetNode(methodInvocationTree); | ||
| if (resultSet == null) { | ||
| return; | ||
| } | ||
| if(isResultSetInvalid(resultSet)){ | ||
| return; | ||
| } | ||
|
|
||
| // extraction of the used columns | ||
| List<String> usedColumns = getUsedColumns(resultSet, selectedColumns); | ||
|
|
||
| // if there are selected columns that are not used in the code, report the issue | ||
| List<String> differences = selectedColumns.stream() | ||
| .filter(element -> !usedColumns.contains(element)) | ||
| .collect(Collectors.toList()); | ||
| if (!differences.isEmpty()) { | ||
| reportIssue(methodInvocationTree, MESSAGERULE); | ||
| } | ||
| } | ||
|
|
||
| private static List<String> getSelectedColumns(MethodInvocationTree methodInvocationTree) { | ||
| // get the first argument of the query definition method | ||
| Arguments arguments = methodInvocationTree.arguments(); | ||
| if (arguments.isEmpty()) { | ||
| return new ArrayList<>(); | ||
| } | ||
| ExpressionTree argument = arguments.get(0); | ||
| // get the contents of the string in this first parameters | ||
| LiteralTree literal = extractLiteralFromVariable(argument); | ||
| if (literal == null) { | ||
| return new ArrayList<>(); | ||
| } | ||
| String query = literal.value(); | ||
| //get the list of selected columns from this string | ||
| return extractSelectedSQLColumns(query); | ||
| } | ||
|
|
||
| /** | ||
| * returns a list of used columns from a resultset object and a list of the selected columns | ||
| */ | ||
| private static List<String> getUsedColumns(Symbol resultSet, List<String> selectedColumns) { | ||
| // iterate across all usages of the ResultSet | ||
| List<String> usedColumns = new ArrayList<>(); | ||
| List<IdentifierTree> resultSetUsages = resultSet.usages(); | ||
| for (IdentifierTree usage : resultSetUsages) { | ||
| // check this usage is an assignement, and the method parameters | ||
| if (usage.parent().is(Tree.Kind.ASSIGNMENT)) { | ||
| break; | ||
| } | ||
| MethodInvocationTree methodInvocation = getMethodInvocationFromTree(usage); | ||
| if (methodInvocation == null || methodInvocation.arguments().isEmpty()) { | ||
| continue; | ||
| } | ||
| // get the value of the first parameter | ||
| ExpressionTree parameter = methodInvocation.arguments().get(0); | ||
| LiteralTree columnGot = extractLiteralFromVariable(parameter); | ||
| if (columnGot == null) { | ||
| continue; | ||
| } | ||
| String column; | ||
| String value = columnGot.value(); | ||
| // if this first parameter is a string, clean up and use as is for used column name | ||
| if (SQL_RESULTSET_GET_COLNAME.matches(methodInvocation) && columnGot.is(Tree.Kind.STRING_LITERAL)) { | ||
| column = value.toUpperCase() | ||
| .replaceAll("^['\"]", "") | ||
| .replaceAll("['\"]$", ""); | ||
| // if this first parameter is an int, use as and id for used column name | ||
| } else if (SQL_RESULTSET_GET_COLID.matches(methodInvocation) && columnGot.is(Tree.Kind.INT_LITERAL)) { | ||
| int columnId = Integer.parseInt(value); | ||
| if (columnId > selectedColumns.size()) { | ||
| break; | ||
| } | ||
| column = selectedColumns.get(columnId - 1); | ||
| } else { | ||
| continue; | ||
| } | ||
| usedColumns.add(column); | ||
| } | ||
| return usedColumns; | ||
| } | ||
|
|
||
| /** | ||
| * returns the litteral assigned to a variable var | ||
| * var has to be either a litteral itself or a final variable | ||
| * returns null if the ExpressionTree is not a variable, | ||
| * if the variable is not final, or if the variable has not been initialized | ||
| */ | ||
| @Nullable | ||
| private static LiteralTree extractLiteralFromVariable(ExpressionTree tree) { | ||
| if (tree instanceof LiteralTree) { | ||
| return (LiteralTree) tree; | ||
| } | ||
| if (!tree.is(Tree.Kind.IDENTIFIER)) { | ||
| return null; | ||
| } | ||
| IdentifierTree identifierTree = (IdentifierTree) tree; | ||
| Symbol symbol = identifierTree.symbol(); | ||
| if (symbol == null || !symbol.isFinal() || !symbol.isVariableSymbol()) { | ||
| return null; | ||
| } | ||
| VariableSymbol variableSymbol = (VariableSymbol) symbol; | ||
| Tree assignment = variableSymbol.declaration(); | ||
| if (!assignment.is(Tree.Kind.VARIABLE)) { | ||
| return null; | ||
| } | ||
| VariableTree variableTree = (VariableTree) assignment; | ||
| ExpressionTree initializer = variableTree.initializer(); | ||
| if (initializer instanceof LiteralTree) { | ||
| return (LiteralTree) initializer; | ||
| } | ||
| return null; | ||
| } | ||
|
|
||
| /** | ||
| * get the ResultSet Object assigned from the result of the retrieve resultset method | ||
| * from the sql declaration method (via the shared stmt object) | ||
| * stmt.execute(...) -> rs = stmt.getResultSet() | ||
| */ | ||
| @Nullable | ||
| private static Symbol getResultSetNode(MethodInvocationTree methodInvocationTree) { | ||
| // get the Statement object on witch the method is called | ||
| ExpressionTree et = methodInvocationTree.methodSelect(); | ||
| if (!et.is(Tree.Kind.MEMBER_SELECT)) { | ||
| return null; | ||
| } | ||
| MemberSelectExpressionTree mset = (MemberSelectExpressionTree) et; | ||
| ExpressionTree expression = mset.expression(); | ||
| if (!expression.is(Tree.Kind.IDENTIFIER)) { | ||
| return null; | ||
| } | ||
| IdentifierTree id = (IdentifierTree) expression; | ||
| Symbol statement = id.symbol(); | ||
| if (statement == null) { | ||
| return null; | ||
| } | ||
| // iterate over all usages of this Statement object | ||
| List<IdentifierTree> usages = statement.usages(); | ||
| Symbol resultSet = null; | ||
| for (IdentifierTree usage : usages) { | ||
| // does this usage of the Statement object match SQL_STATEMENT_RETRIEVE_RESULTSET ? | ||
| MethodInvocationTree methodInvocation = getMethodInvocationFromTree(usage); | ||
| if (methodInvocation == null || !SQL_STATEMENT_RETRIEVE_RESULTSET.matches(methodInvocation)) { | ||
| continue; | ||
| } | ||
| // if so end the search, we have found our resultSet object | ||
| Tree parent = methodInvocation.parent(); | ||
| if (parent.is(Tree.Kind.VARIABLE)) { | ||
| resultSet = ((VariableTree) parent).symbol(); | ||
| break; | ||
| } | ||
| } | ||
| return resultSet; | ||
| } | ||
|
|
||
| /** | ||
| * unpacks a chain call to get the method invocation node | ||
| * example : this.object.chain.method() -> method() | ||
| */ | ||
| @Nullable | ||
| private static MethodInvocationTree getMethodInvocationFromTree(IdentifierTree tree) { | ||
| Tree parent = tree; | ||
| while (parent != null && !parent.is(Tree.Kind.METHOD_INVOCATION)) { | ||
| parent = parent.parent(); | ||
| } | ||
| return (MethodInvocationTree) parent; | ||
| } | ||
|
|
||
| /** | ||
| * checks the two conditions that make a ResultSet object invalid, | ||
| * and would stop the search for used columns because of side effects | ||
| * - the ResultSet object being passed in a method | ||
| * - the ResultSet object being reassigned | ||
| */ | ||
| private static boolean isResultSetInvalid(Symbol resultSet) { | ||
| return isObjectUsedInMethodParameters(resultSet) | ||
| || isObjectReassigned(resultSet); | ||
| } | ||
|
|
||
| /** | ||
| * checks if an object is used as a parameter a method | ||
| */ | ||
| private static boolean isObjectUsedInMethodParameters(Symbol obj) { | ||
| List<IdentifierTree> usages = obj.usages(); | ||
| for (IdentifierTree usage : usages) { | ||
| Tree parent = usage.parent(); | ||
| if (parent.is(Tree.Kind.ARGUMENTS)) { | ||
| return true; | ||
| } | ||
| } | ||
| return false; | ||
| } | ||
|
|
||
| /** | ||
| * checks if an object is reassigned | ||
| */ | ||
| private static boolean isObjectReassigned(Symbol obj) { | ||
| List<IdentifierTree> usages = obj.usages(); | ||
| for (IdentifierTree usage : usages) { | ||
| Tree parent = usage.parent(); | ||
| if (parent.is(Tree.Kind.ASSIGNMENT)) { | ||
| AssignmentExpressionTree assignment = (AssignmentExpressionTree) parent; | ||
| ExpressionTree expressionTree = assignment.variable(); | ||
| if (expressionTree.is(Tree.Kind.IDENTIFIER) | ||
| && obj.equals(((IdentifierTree) expressionTree).symbol())) { | ||
| return true; | ||
| } | ||
| } | ||
| } | ||
| return false; | ||
| } | ||
|
|
||
| /** | ||
| * extract from a SQL query in the form of "SELECT X, Y AS Z FROM TABLE ..." | ||
| * a list of all the column names and aliases (X and Z) without whitespace and in uppercase | ||
| */ | ||
| static List<String> extractSelectedSQLColumns(String query) { | ||
| if (query == null) { | ||
| return new ArrayList<>(); | ||
| } | ||
| query = query.toUpperCase() | ||
| .replaceAll("^['\"]", "") | ||
| .replaceAll("['\"]$", ""); | ||
| List<String> columns = new ArrayList<>(); | ||
| Matcher matcher = SELECTED_COLUMNS_PATTERN.matcher(query); | ||
| if (matcher.matches()) { | ||
| String columnString = matcher.group(1); | ||
| columns = Arrays.asList(columnString.split(",")); | ||
| columns.replaceAll(column -> column.replaceAll("\\s+", " ")); | ||
| columns.replaceAll(column -> column.contains(" AS ") ? column.split(" AS ")[1].trim() : column.trim()); | ||
| } | ||
| return columns; | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.