liquibase.command.core.RollbackCountCommandStep 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.Scope;
import liquibase.changelog.RanChangeSet;
import liquibase.changelog.filter.CountChangeSetFilter;
import liquibase.command.*;
import liquibase.database.Database;
import liquibase.logging.mdc.MdcKey;
import liquibase.report.RollbackReportParameters;
import liquibase.util.StringUtil;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
public class RollbackCountCommandStep extends AbstractRollbackCommandStep {
public static final String[] COMMAND_NAME = {"rollbackCount"};
public static final CommandArgumentDefinition COUNT_ARG;
static {
CommandBuilder builder = new CommandBuilder(COMMAND_NAME);
COUNT_ARG = builder.argument("count", Integer.class).required()
.description("The number of changes to rollback").build();
builder.addArgument(AbstractRollbackCommandStep.ROLLBACK_SCRIPT_ARG).build();
}
@Override
public void run(CommandResultsBuilder resultsBuilder) throws Exception {
CommandScope commandScope = resultsBuilder.getCommandScope();
Integer changesToRollback = commandScope.getArgumentValue(COUNT_ARG);
Scope.getCurrentScope().addMdcValue(MdcKey.ROLLBACK_COUNT, String.valueOf(changesToRollback));
RollbackReportParameters rollbackReportParameters = new RollbackReportParameters();
rollbackReportParameters.setCommandTitle(
StringUtil.upperCaseFirst(StringUtil.toKabobCase(Arrays.toString(
defineCommandNames()[0])).replace("[","").replace("]","").trim()));
resultsBuilder.addResult("rollbackReport", rollbackReportParameters);
Database database = (Database) commandScope.getDependency(Database.class);
rollbackReportParameters.getDatabaseInfo().setDatabaseType(database.getDatabaseProductName());
rollbackReportParameters.getDatabaseInfo().setVersion(database.getDatabaseProductVersion());
rollbackReportParameters.setJdbcUrl(database.getConnection().getURL());
List ranChangeSetList = database.getRanChangeSetList();
Scope.child(Collections.singletonMap("rollbackReport", rollbackReportParameters), () -> this.doRollback(resultsBuilder, ranChangeSetList, new CountChangeSetFilter(changesToRollback), rollbackReportParameters));
}
@Override
public String[][] defineCommandNames() {
return new String[][] { COMMAND_NAME };
}
@Override
public void adjustCommandDefinition(CommandDefinition commandDefinition) {
commandDefinition.setShortDescription("Rollback the specified number of changes made to the database");
}
}