liquibase.command.core.ExecuteSqlCommandStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.command.core;
import liquibase.GlobalConfiguration;
import liquibase.Scope;
import liquibase.changeset.ChangeSetService;
import liquibase.changeset.ChangeSetServiceFactory;
import liquibase.command.*;
import liquibase.database.Database;
import liquibase.exception.DatabaseException;
import liquibase.exception.LiquibaseException;
import liquibase.executor.Executor;
import liquibase.executor.ExecutorService;
import liquibase.lockservice.LockService;
import liquibase.resource.PathHandlerFactory;
import liquibase.resource.Resource;
import liquibase.statement.core.RawSqlStatement;
import liquibase.util.FileUtil;
import liquibase.util.StreamUtil;
import liquibase.util.StringUtil;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.*;
public class ExecuteSqlCommandStep extends AbstractCommandStep {
public static final String[] COMMAND_NAME = {"executeSql"};
public static final CommandArgumentDefinition SQL_ARG;
public static final CommandArgumentDefinition SQLFILE_ARG;
public static final CommandArgumentDefinition DELIMITER_ARG;
static {
CommandBuilder builder = new CommandBuilder(COMMAND_NAME);
SQL_ARG = builder.argument("sql", String.class)
.description("SQL string to execute").build();
SQLFILE_ARG = builder.argument("sqlFile", String.class)
.description("SQL script to execute").build();
DELIMITER_ARG = builder.argument("delimiter", String.class)
.description("Delimiter to use when executing SQL script").build();
}
@Override
public String[][] defineCommandNames() {
return new String[][]{COMMAND_NAME};
}
@Override
public void adjustCommandDefinition(CommandDefinition commandDefinition) {
commandDefinition.setShortDescription("Execute a SQL string or file");
}
@Override
public List> requiredDependencies() {
return Arrays.asList(Database.class, LockService.class);
}
@Override
public void run(CommandResultsBuilder resultsBuilder) throws Exception {
final CommandScope commandScope = resultsBuilder.getCommandScope();
final Database database = (Database) commandScope.getDependency(Database.class);
final String sql = commandScope.getArgumentValue(SQL_ARG);
final String sqlFile = commandScope.getArgumentValue(SQLFILE_ARG);
final Executor executor = Scope.getCurrentScope().getSingleton(ExecutorService.class).getExecutor("jdbc", database);
final String sqlText = getSqlScript(sql, sqlFile);
final StringBuilder out = new StringBuilder();
final String[] sqlStrings = StringUtil.processMultiLineSQL(sqlText, true, true, determineEndDelimiter(commandScope));
for (String sqlString : sqlStrings) {
if (sqlString.toLowerCase().matches("\\s*select .*")) {
out.append(handleSelect(sqlString, executor));
} else {
executor.execute(new RawSqlStatement(sqlString));
out.append("Successfully Executed: ").append(sqlString).append("\n");
}
out.append("\n");
}
database.commit();
handleOutput(resultsBuilder, out.toString());
resultsBuilder.addResult("output", out.toString());
}
private static String determineEndDelimiter(CommandScope commandScope) {
String delimiter = commandScope.getArgumentValue(DELIMITER_ARG);
if (delimiter == null) {
ChangeSetService service = ChangeSetServiceFactory.getInstance().createChangeSetService();
delimiter = service.getEndDelimiter(null);
}
return delimiter;
}
private void handleOutput(CommandResultsBuilder resultsBuilder, String output) throws IOException {
String charsetName = GlobalConfiguration.OUTPUT_FILE_ENCODING.getCurrentValue();
Writer outputWriter = new OutputStreamWriter(resultsBuilder.getOutputStream(), charsetName);
outputWriter.write(output);
outputWriter.flush();
}
private String getSqlScript(String sql, String sqlFile) throws IOException, LiquibaseException {
if (sqlFile == null) {
return sql;
} else {
final PathHandlerFactory pathHandlerFactory = Scope.getCurrentScope().getSingleton(PathHandlerFactory.class);
Resource resource = pathHandlerFactory.getResource(sqlFile);
if (!resource.exists()) {
throw new LiquibaseException(FileUtil.getFileNotFoundMessage(sqlFile));
}
return StreamUtil.readStreamAsString(resource.openInputStream());
}
}
private String handleSelect(String sqlString, Executor executor) throws DatabaseException {
StringBuilder out = new StringBuilder();
List