org.liquibase.maven.plugins.LiquibaseRollbackOneUpdateSQL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-maven-plugin Show documentation
Show all versions of liquibase-maven-plugin Show documentation
A Maven plugin wraps up some of the functionality of Liquibase
The newest version!
package org.liquibase.maven.plugins;
import liquibase.Liquibase;
import liquibase.changelog.ChangeLogParameters;
import liquibase.command.CommandScope;
import liquibase.database.Database;
import liquibase.exception.LiquibaseException;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.liquibase.maven.property.PropertyElement;
import java.util.HashMap;
import java.util.Map;
import java.util.ResourceBundle;
import static java.util.ResourceBundle.getBundle;
/**
* Displays the SQL which will be executed when the corresponding rollbackOneUpdate
* command is executed. This command does not perform the actual rollback.
* A Liquibase Pro license key is required.
*
* @goal rollbackOneUpdateSQL
*/
public class LiquibaseRollbackOneUpdateSQL extends AbstractLiquibaseChangeLogMojo {
/**
* Specifies the Deployment ID in the DATABASECHANGELOG table for all changesets you
* want to rollback.
*
* @parameter property="liquibase.deploymentId"
*/
@PropertyElement
protected String deploymentId;
/**
* Required flag for RollbackOneChangeSet
*
* @parameter property="liquibase.force"
*/
@PropertyElement
protected String force;
/**
* Specifies the path to the generated SQL output file.
*
* @parameter property="liquibase.outputFile"
*/
@PropertyElement
protected String outputFile;
private static final ResourceBundle coreBundle = getBundle("liquibase/i18n/liquibase-core");
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
commandName = "rollbackOneUpdateSQL";
super.execute();
}
@Override
protected void performLiquibaseTask(Liquibase liquibase) throws LiquibaseException {
//
// Check the Pro license
//
Database database = liquibase.getDatabase();
CommandScope liquibaseCommand = new CommandScope("rollbackOneUpdateSQL");
Map argsMap = getCommandArgsObjectMap(liquibase);
ChangeLogParameters clp = new ChangeLogParameters(database);
argsMap.put("changeLogParameters", clp);
if (force != null && !Boolean.parseBoolean(force)) {
throw new LiquibaseException("Invalid value for --force. You must specify 'liquibase.force=true' to use rollbackOneUpdateSQL.");
}
argsMap.put("force", Boolean.TRUE);
argsMap.put("liquibase", liquibase);
for (Map.Entry entry : argsMap.entrySet()) {
liquibaseCommand.addArgumentValue(entry.getKey(), entry.getValue());
}
liquibaseCommand.setOutput(getOutputStream(outputFile));
liquibaseCommand.execute();
}
private Map getCommandArgsObjectMap(Liquibase liquibase) throws LiquibaseException {
Database database = liquibase.getDatabase();
Map argsMap = new HashMap<>();
argsMap.put("deploymentId", this.deploymentId);
argsMap.put("force", this.force);
argsMap.put("database", database);
argsMap.put("changeLog", liquibase.getDatabaseChangeLog());
argsMap.put("resourceAccessor", liquibase.getResourceAccessor());
argsMap.put("changeLogFile", changeLogFile);
argsMap.put("outputFile", outputFile);
return argsMap;
}
}