io.codemodder.codemods.UpgradeTempFileToNIOCodemod 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 static io.codemodder.ast.ASTTransforms.addImportIfMissing;
import static io.codemodder.javaparser.JavaParserTransformer.replace;
import com.contrastsecurity.sarif.Result;
import com.github.javaparser.ast.CompilationUnit;
import com.github.javaparser.ast.NodeList;
import com.github.javaparser.ast.expr.Expression;
import com.github.javaparser.ast.expr.MethodCallExpr;
import com.github.javaparser.ast.expr.NameExpr;
import io.codemodder.*;
import io.codemodder.javaparser.ChangesResult;
import io.codemodder.providers.sarif.semgrep.SemgrepScan;
import java.nio.file.Files;
import java.nio.file.attribute.FileAttribute;
import javax.inject.Inject;
/**
* Upgrade the {@link java.io.File#createTempFile(String, String)} method to use the NIO version
* {@link Files#createTempFile(String, String, FileAttribute[])}.
*/
@Codemod(
id = "pixee:java/upgrade-tempfile-to-nio",
importance = Importance.MEDIUM,
reviewGuidance = ReviewGuidance.MERGE_WITHOUT_REVIEW)
public final class UpgradeTempFileToNIOCodemod
extends SarifPluginJavaParserChanger {
@Inject
public UpgradeTempFileToNIOCodemod(
@SemgrepScan(ruleId = "upgrade-tempfile-to-nio") final RuleSarif sarif) {
super(sarif, MethodCallExpr.class);
}
@Override
public ChangesResult onResultFound(
final CodemodInvocationContext context,
final CompilationUnit cu,
final MethodCallExpr foundCreateTempCall,
final Result result) {
NodeList newArguments = getNewArguments(foundCreateTempCall);
NameExpr nioFiles = new NameExpr(Files.class.getSimpleName());
MethodCallExpr nioTmpFileCall = new MethodCallExpr(nioFiles, "createTempFile");
nioTmpFileCall.setArguments(newArguments);
MethodCallExpr replacement = new MethodCallExpr(nioTmpFileCall, "toFile");
replace(foundCreateTempCall).withExpression(replacement);
addImportIfMissing(cu, Files.class);
return ChangesResult.changesApplied;
}
private NodeList getNewArguments(final MethodCallExpr foundCreateTempCall) {
NodeList newArguments = new NodeList<>();
NodeList existingArguments = foundCreateTempCall.getArguments();
if (existingArguments.size() == 3) {
newArguments.add(new MethodCallExpr(existingArguments.get(2), "toPath"));
}
newArguments.add(existingArguments.get(0));
newArguments.add(existingArguments.get(1));
return newArguments;
}
}