liquibase.integration.commandline.CommandRunner Maven / Gradle / Ivy
package liquibase.integration.commandline;
import liquibase.command.CommandResults;
import liquibase.command.CommandScope;
import liquibase.util.StringUtil;
import picocli.CommandLine;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
class CommandRunner implements Callable {
private CommandLine.Model.CommandSpec spec;
@Override
public CommandResults call() throws Exception {
List command = new ArrayList<>();
command.add(spec.commandLine().getCommandName());
CommandLine parentCommand = spec.commandLine().getParent();
while (!parentCommand.getCommandName().equals("liquibase")) {
command.add(0, parentCommand.getCommandName());
parentCommand = parentCommand.getParent();
}
final String[] commandName = LiquibaseCommandLine.getCommandNames(spec.commandLine());
for (int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy