io.codemodder.codemods.DefineConstantForLiteralCodemod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-codemods Show documentation
Show all versions of core-codemods Show documentation
Codemods for fixing common errors across many Java projects
The newest version!
package io.codemodder.codemods;
import com.github.javaparser.ast.CompilationUnit;
import com.github.javaparser.ast.expr.StringLiteralExpr;
import io.codemodder.*;
import io.codemodder.codetf.DetectorRule;
import io.codemodder.javaparser.ChangesResult;
import io.codemodder.providers.sonar.ProvidedSonarScan;
import io.codemodder.providers.sonar.RuleIssue;
import io.codemodder.providers.sonar.SonarPluginJavaParserChanger;
import io.codemodder.sonar.model.Issue;
import javax.inject.Inject;
/** A codemod for defining a constant for a literal string that is duplicated n times. */
@Codemod(
id = "sonar:java/define-constant-for-duplicate-literal-s1192",
reviewGuidance = ReviewGuidance.MERGE_AFTER_REVIEW,
importance = Importance.HIGH,
executionPriority = CodemodExecutionPriority.HIGH)
public final class DefineConstantForLiteralCodemod
extends SonarPluginJavaParserChanger {
@Inject
public DefineConstantForLiteralCodemod(
@ProvidedSonarScan(ruleId = "java:S1192") final RuleIssue issues) {
super(issues, StringLiteralExpr.class);
}
@Override
public ChangesResult onFindingFound(
final CodemodInvocationContext context,
final CompilationUnit cu,
final StringLiteralExpr stringLiteralExpr,
final Issue issue) {
DefineConstantForLiteral defineConstantForLiteral;
if (issue.getMessage().startsWith("Use already-defined constant")) {
defineConstantForLiteral =
new UseExistingConstantForLiteral(context, cu, stringLiteralExpr, issue);
} else {
defineConstantForLiteral =
new CreateConstantForLiteral(context, cu, stringLiteralExpr, issue);
}
return defineConstantForLiteral.replaceLiteralStringExpressionWithConstant()
? ChangesResult.changesApplied
: ChangesResult.noChanges;
}
@Override
public DetectorRule detectorRule() {
return new DetectorRule(
"java:S1192",
"String literals should not be duplicated",
"https://rules.sonarsource.com/java/RSPEC-1192/");
}
}