org.sonarsource.scanner.lib.internal.JavaRunner Maven / Gradle / Ivy
The newest version!
/*
* SonarScanner Java Library
* Copyright (C) 2011-2024 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonarsource.scanner.lib.internal;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
import javax.annotation.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class JavaRunner {
private static final Logger LOG = LoggerFactory.getLogger(JavaRunner.class);
private final Path javaExecutable;
private final JreCacheHit jreCacheHit;
public JavaRunner(Path javaExecutable, JreCacheHit jreCacheHit) {
this.javaExecutable = javaExecutable;
this.jreCacheHit = jreCacheHit;
}
public JreCacheHit getJreCacheHit() {
return jreCacheHit;
}
public boolean execute(List args, @Nullable String input, Consumer stdOutConsummer) {
try {
List command = new ArrayList<>(args);
command.add(0, javaExecutable.toString());
if (LOG.isDebugEnabled()) {
LOG.debug("Executing: {}", String.join(" ", command));
}
Process process = new ProcessBuilder(command).start();
if (input != null) {
try (var stdin = process.getOutputStream(); var osw = new OutputStreamWriter(stdin, StandardCharsets.UTF_8)) {
osw.write(input);
}
}
var stdoutConsummer = new StreamGobbler(process.getInputStream(), stdOutConsummer);
var stdErrConsummer = new StreamGobbler(process.getErrorStream(), stderr -> LOG.error("[stderr] {}", stderr));
stdErrConsummer.start();
stdoutConsummer.start();
var exitCode = process.waitFor();
stdoutConsummer.join();
stdErrConsummer.join();
if (exitCode != 0) {
LOG.debug("Java command exited with code {}", process.exitValue());
return false;
}
return true;
} catch (IOException | InterruptedException e) {
Thread.currentThread().interrupt();
throw new IllegalStateException("Failed to run the Java command", e);
}
}
public Path getJavaExecutable() {
return javaExecutable;
}
private static class StreamGobbler extends Thread {
private final InputStream inputStream;
private final Consumer consumer;
public StreamGobbler(InputStream inputStream, Consumer consumer) {
this.inputStream = inputStream;
this.consumer = consumer;
}
@Override
public void run() {
new BufferedReader(new InputStreamReader(inputStream, StandardCharsets.UTF_8)).lines()
.forEach(consumer);
}
}
}