liquibase.command.core.RollbackToDateCommandStep 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.ExecutedAfterChangeSetFilter;
import liquibase.command.*;
import liquibase.database.Database;
import liquibase.logging.mdc.MdcKey;
import liquibase.report.RollbackReportParameters;
import liquibase.util.StringUtil;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.List;
public class RollbackToDateCommandStep extends AbstractRollbackCommandStep {
public static final String[] COMMAND_NAME = {"rollbackToDate"};
public static final CommandArgumentDefinition DATE_ARG;
static {
CommandBuilder builder = new CommandBuilder(COMMAND_NAME);
DATE_ARG = builder.argument("date", Date.class).required()
.description("Date to rollback changes to").build();
builder.addArgument(AbstractRollbackCommandStep.ROLLBACK_SCRIPT_ARG).build();
}
@Override
public void run(CommandResultsBuilder resultsBuilder) throws Exception {
CommandScope commandScope = resultsBuilder.getCommandScope();
Date dateToRollBackTo = commandScope.getArgumentValue(DATE_ARG);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S");
Scope.getCurrentScope().addMdcValue(MdcKey.ROLLBACK_TO_DATE, formatter.format(dateToRollBackTo));
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 ExecutedAfterChangeSetFilter(dateToRollBackTo, ranChangeSetList), rollbackReportParameters));
}
@Override
public String[][] defineCommandNames() {
return new String[][] { COMMAND_NAME };
}
@Override
public void adjustCommandDefinition(CommandDefinition commandDefinition) {
commandDefinition.setShortDescription("Rollback changes made to the database based on the specific date");
}
}