|
|
|
@ -19,7 +19,9 @@ package org.springframework.boot.docker.compose.core;
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Collections;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
|
|
|
|
|
@ -39,13 +41,13 @@ import org.springframework.core.log.LogMessage;
|
|
|
|
|
*/
|
|
|
|
|
class DockerCli {
|
|
|
|
|
|
|
|
|
|
private static final Map<File, DockerCommands> dockerCommandsCache = new HashMap<>();
|
|
|
|
|
|
|
|
|
|
private static final Log logger = LogFactory.getLog(DockerCli.class);
|
|
|
|
|
|
|
|
|
|
private final ProcessRunner processRunner;
|
|
|
|
|
|
|
|
|
|
private final List<String> dockerCommand;
|
|
|
|
|
|
|
|
|
|
private final List<String> dockerComposeCommand;
|
|
|
|
|
private final DockerCommands dockerCommands;
|
|
|
|
|
|
|
|
|
|
private final DockerComposeFile composeFile;
|
|
|
|
|
|
|
|
|
@ -59,12 +61,75 @@ class DockerCli {
|
|
|
|
|
*/
|
|
|
|
|
DockerCli(File workingDirectory, DockerComposeFile composeFile, Set<String> activeProfiles) {
|
|
|
|
|
this.processRunner = new ProcessRunner(workingDirectory);
|
|
|
|
|
this.dockerCommand = getDockerCommand(this.processRunner);
|
|
|
|
|
this.dockerComposeCommand = getDockerComposeCommand(this.processRunner);
|
|
|
|
|
this.dockerCommands = dockerCommandsCache.computeIfAbsent(workingDirectory,
|
|
|
|
|
(key) -> new DockerCommands(this.processRunner));
|
|
|
|
|
this.composeFile = composeFile;
|
|
|
|
|
this.activeProfiles = (activeProfiles != null) ? activeProfiles : Collections.emptySet();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Run the given {@link DockerCli} command and return the response.
|
|
|
|
|
* @param <R> the response type
|
|
|
|
|
* @param dockerCommand the command to run
|
|
|
|
|
* @return the response
|
|
|
|
|
*/
|
|
|
|
|
<R> R run(DockerCliCommand<R> dockerCommand) {
|
|
|
|
|
List<String> command = createCommand(dockerCommand.getType());
|
|
|
|
|
command.addAll(dockerCommand.getCommand());
|
|
|
|
|
Consumer<String> outputConsumer = createOutputConsumer(dockerCommand.getLogLevel());
|
|
|
|
|
String json = this.processRunner.run(outputConsumer, command.toArray(new String[0]));
|
|
|
|
|
return dockerCommand.deserialize(json);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Consumer<String> createOutputConsumer(LogLevel logLevel) {
|
|
|
|
|
if (logLevel == null || logLevel == LogLevel.OFF) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return (line) -> logLevel.log(logger, line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<String> createCommand(Type type) {
|
|
|
|
|
return switch (type) {
|
|
|
|
|
case DOCKER -> new ArrayList<>(this.dockerCommands.get(type));
|
|
|
|
|
case DOCKER_COMPOSE -> {
|
|
|
|
|
List<String> result = new ArrayList<>(this.dockerCommands.get(type));
|
|
|
|
|
if (this.composeFile != null) {
|
|
|
|
|
result.add("--file");
|
|
|
|
|
result.add(this.composeFile.toString());
|
|
|
|
|
}
|
|
|
|
|
result.add("--ansi");
|
|
|
|
|
result.add("never");
|
|
|
|
|
for (String profile : this.activeProfiles) {
|
|
|
|
|
result.add("--profile");
|
|
|
|
|
result.add(profile);
|
|
|
|
|
}
|
|
|
|
|
yield result;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the {@link DockerComposeFile} being used by this CLI instance.
|
|
|
|
|
* @return the docker compose file
|
|
|
|
|
*/
|
|
|
|
|
DockerComposeFile getDockerComposeFile() {
|
|
|
|
|
return this.composeFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Holds details of the actual CLI commands to invoke.
|
|
|
|
|
*/
|
|
|
|
|
private static class DockerCommands {
|
|
|
|
|
|
|
|
|
|
private final List<String> dockerCommand;
|
|
|
|
|
|
|
|
|
|
private final List<String> dockerComposeCommand;
|
|
|
|
|
|
|
|
|
|
DockerCommands(ProcessRunner processRunner) {
|
|
|
|
|
this.dockerCommand = getDockerCommand(processRunner);
|
|
|
|
|
this.dockerComposeCommand = getDockerComposeCommand(processRunner);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<String> getDockerCommand(ProcessRunner processRunner) {
|
|
|
|
|
try {
|
|
|
|
|
String version = processRunner.run("docker", "version", "--format", "{{.Client.Version}}");
|
|
|
|
@ -72,7 +137,8 @@ class DockerCli {
|
|
|
|
|
return List.of("docker");
|
|
|
|
|
}
|
|
|
|
|
catch (ProcessStartException ex) {
|
|
|
|
|
throw new DockerProcessStartException("Unable to start docker process. Is docker correctly installed?", ex);
|
|
|
|
|
throw new DockerProcessStartException("Unable to start docker process. Is docker correctly installed?",
|
|
|
|
|
ex);
|
|
|
|
|
}
|
|
|
|
|
catch (ProcessExitException ex) {
|
|
|
|
|
if (ex.getStdErr().contains("docker daemon is not running")
|
|
|
|
@ -80,7 +146,6 @@ class DockerCli {
|
|
|
|
|
throw new DockerNotRunningException(ex.getStdErr(), ex);
|
|
|
|
|
}
|
|
|
|
|
throw ex;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -109,53 +174,13 @@ class DockerCli {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Run the given {@link DockerCli} command and return the response.
|
|
|
|
|
* @param <R> the response type
|
|
|
|
|
* @param dockerCommand the command to run
|
|
|
|
|
* @return the response
|
|
|
|
|
*/
|
|
|
|
|
<R> R run(DockerCliCommand<R> dockerCommand) {
|
|
|
|
|
List<String> command = createCommand(dockerCommand.getType());
|
|
|
|
|
command.addAll(dockerCommand.getCommand());
|
|
|
|
|
Consumer<String> outputConsumer = createOutputConsumer(dockerCommand.getLogLevel());
|
|
|
|
|
String json = this.processRunner.run(outputConsumer, command.toArray(new String[0]));
|
|
|
|
|
return dockerCommand.deserialize(json);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Consumer<String> createOutputConsumer(LogLevel logLevel) {
|
|
|
|
|
if (logLevel == null || logLevel == LogLevel.OFF) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return (line) -> logLevel.log(logger, line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<String> createCommand(Type type) {
|
|
|
|
|
List<String> get(Type type) {
|
|
|
|
|
return switch (type) {
|
|
|
|
|
case DOCKER -> new ArrayList<>(this.dockerCommand);
|
|
|
|
|
case DOCKER_COMPOSE -> {
|
|
|
|
|
List<String> result = new ArrayList<>(this.dockerComposeCommand);
|
|
|
|
|
if (this.composeFile != null) {
|
|
|
|
|
result.add("--file");
|
|
|
|
|
result.add(this.composeFile.toString());
|
|
|
|
|
}
|
|
|
|
|
result.add("--ansi");
|
|
|
|
|
result.add("never");
|
|
|
|
|
for (String profile : this.activeProfiles) {
|
|
|
|
|
result.add("--profile");
|
|
|
|
|
result.add(profile);
|
|
|
|
|
}
|
|
|
|
|
yield result;
|
|
|
|
|
}
|
|
|
|
|
case DOCKER -> this.dockerCommand;
|
|
|
|
|
case DOCKER_COMPOSE -> this.dockerComposeCommand;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the {@link DockerComposeFile} being used by this CLI instance.
|
|
|
|
|
* @return the docker compose file
|
|
|
|
|
*/
|
|
|
|
|
DockerComposeFile getDockerComposeFile() {
|
|
|
|
|
return this.composeFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|