org.liquibase.maven.plugins.LiquibaseRollbackOneChangeSetSQL 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
package org.liquibase.maven.plugins;
import liquibase.Liquibase;
import liquibase.Scope;
import liquibase.changelog.ChangeLogParameters;
import liquibase.command.*;
import liquibase.GlobalConfiguration;
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.io.*;
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 rollbackOneChangeSet command is
* executed. This command does not perform the actual rollback. A Liquibase Pro license key is required.
*
* @goal rollbackOneChangeSetSQL
*
*/
public class LiquibaseRollbackOneChangeSetSQL extends AbstractLiquibaseChangeLogMojo {
/**
*
* The changeset ID to rollback
*
* @parameter property="liquibase.changeSetId"
*
*/
@PropertyElement
protected String changeSetId;
/**
*
* Specifies the author of the changeSet you want to rollback.
*
* @parameter property="liquibase.changeSetAuthor"
*
*/
@PropertyElement
protected String changeSetAuthor;
/**
*
* Specifies the path to the changelog which contains the change-set you want to rollback.
*
* @parameter property="liquibase.changeSetPath"
*
*/
@PropertyElement
protected String changeSetPath;
/**
*
* Specifies the path to a rollback script
*
* @parameter property="liquibase.rollbackScript"
*
*/
@PropertyElement
protected String rollbackScript;
/**
*
* Specifies the path to the generated SQL output file.
*
* @parameter property="liquibase.outputFile"
*
*/
@PropertyElement
protected String outputFile;
private static ResourceBundle coreBundle = getBundle("liquibase/i18n/liquibase-core");
@Override
protected void printSettings(String indent) {
super.printSettings(indent);
getLog().info(indent + "Changeset ID: " + changeSetId);
getLog().info(indent + "Changeset Author: " + changeSetAuthor);
getLog().info(indent + "Changeset Path: " + changeSetPath);
getLog().info(indent + "Rollback script: " + rollbackScript);
}
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
//
// We override in order to set the command name for later use
//
commandName="rollbackOneChangeSetSQL";
super.execute();
}
@Override
protected void performLiquibaseTask(Liquibase liquibase) throws LiquibaseException {
//
// Check the Pro license
//
Database database = liquibase.getDatabase();
CommandScope liquibaseCommand = new CommandScope("internalRollbackOneChangeSetSQL");
Map argsMap = getCommandArgsObjectMap(liquibase);
ChangeLogParameters clp = new ChangeLogParameters(database);
Writer outputWriter = null;
try {
outputWriter = createOutputWriter();
argsMap.put("outputWriter", outputWriter);
}
catch (IOException ioe) {
throw new LiquibaseException("Error executing rollbackOneChangeSet. Unable to create output writer.", ioe);
}
argsMap.put("changeLogParameters", clp);
argsMap.put("liquibase", liquibase);
for (Map.Entry entry : argsMap.entrySet()) {
liquibaseCommand.addArgumentValue(entry.getKey(), entry.getValue());
}
liquibaseCommand.execute();
}
private OutputStream getOutputStream() throws IOException {
if (outputFile == null) {
return System.out;
}
FileOutputStream fileOut;
try {
fileOut = new FileOutputStream(outputFile, false);
} catch (IOException e) {
Scope.getCurrentScope().getLog(getClass()).severe(String.format(coreBundle.getString("could.not.create.output.file"), outputFile));
throw e;
}
return fileOut;
}
private void closeOutputWriter(Writer outputWriter) throws IOException {
if (outputFile == null) {
return;
}
outputWriter.close();
}
private Writer createOutputWriter() throws IOException {
String charsetName = GlobalConfiguration.OUTPUT_FILE_ENCODING.getCurrentValue();
return new OutputStreamWriter(getOutputStream(), charsetName);
}
private Map getCommandArgsObjectMap(Liquibase liquibase) throws LiquibaseException {
Database database = liquibase.getDatabase();
Map argsMap = new HashMap();
argsMap.put("force", true);
argsMap.put("changeLogFile", this.changeLogFile);
argsMap.put("database", database);
argsMap.put("changeLog", liquibase.getDatabaseChangeLog());
argsMap.put("resourceAccessor", liquibase.getResourceAccessor());
argsMap.put("changeSetId", this.changeSetId);
argsMap.put("changeSetAuthor", this.changeSetAuthor);
argsMap.put("changeSetPath", this.changeSetPath);
argsMap.put("rollbackScript", this.rollbackScript);
return argsMap;
}
}