![JAR search and dependency download from the Maven repository](/logo.png)
liquibase.command.core.RollbackCommandStep Maven / Gradle / Ivy
package liquibase.command.core;
import liquibase.Scope;
import liquibase.TagVersionEnum;
import liquibase.changelog.RanChangeSet;
import liquibase.changelog.filter.AfterTagChangeSetFilter;
import liquibase.command.*;
import liquibase.database.Database;
import liquibase.logging.mdc.MdcKey;
import java.util.List;
/**
* RollbackCommandStep performs the rollback-to-tag logic. For backwards compatibility issues it is not called "RollbackToTag"
*/
public class RollbackCommandStep extends AbstractRollbackCommandStep {
public static final String[] COMMAND_NAME = {"rollback"};
public static final CommandArgumentDefinition TAG_ARG;
public static final CommandArgumentDefinition TAG_VERSION_ARG;
static {
CommandBuilder builder = new CommandBuilder(COMMAND_NAME);
TAG_ARG = builder.argument("tag", String.class).required()
.description("Tag to rollback to").build();
TAG_VERSION_ARG = builder.argument("tagVersion",String.class)
.description("Tag version to use for multiple occurrences of a tag")
.setValueHandler(TagVersionEnum::handleTagVersionInput)
.defaultValue(TagVersionEnum.OLDEST.name())
.build();
builder.addArgument(AbstractRollbackCommandStep.ROLLBACK_SCRIPT_ARG).build();
}
@Override
public void run(CommandResultsBuilder resultsBuilder) throws Exception {
CommandScope commandScope = resultsBuilder.getCommandScope();
String tagToRollBackTo = commandScope.getArgumentValue(TAG_ARG);
Scope.getCurrentScope().addMdcValue(MdcKey.ROLLBACK_TO_TAG, tagToRollBackTo);
Database database = (Database) commandScope.getDependency(Database.class);
List ranChangeSetList = database.getRanChangeSetList();
TagVersionEnum tagVersion = TagVersionEnum.valueOf(commandScope.getArgumentValue(TAG_VERSION_ARG));
this.doRollback(resultsBuilder, ranChangeSetList, new AfterTagChangeSetFilter(tagToRollBackTo, ranChangeSetList, tagVersion));
}
@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 tag");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy