All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.change.Change Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.change;

import liquibase.ExtensibleObject;
import liquibase.Scope;
import liquibase.changelog.ChangeSet;
import liquibase.database.Database;
import liquibase.exception.RollbackImpossibleException;
import liquibase.exception.SetupException;
import liquibase.exception.ValidationErrors;
import liquibase.exception.Warnings;
import liquibase.plugin.Plugin;
import liquibase.resource.ResourceAccessor;
import liquibase.serializer.LiquibaseSerializable;
import liquibase.statement.SqlStatement;
import liquibase.structure.DatabaseObject;

import java.util.Set;

/**
 * Interface all changes (refactorings) implement.
 *
 * Instances of these objects are normally created via the {@link ChangeFactory } by {@link liquibase.parser.ChangeLogParser} implementations.
 *
 * @see ChangeFactory
 * @see Database
 */
public interface Change extends LiquibaseSerializable, Plugin, ExtensibleObject {

    /**
     * Represent an empty array of {@link Change}
     */
    Change[] EMPTY_CHANGE = {};

    String SHOULD_EXECUTE = "shouldExecute";

    /**
     * This method will be called by the changelog parsing process after all of the
     * properties have been set to allow the task to do any additional initialization logic.
     */
    void finishInitialization() throws SetupException;

    ChangeMetaData createChangeMetaData();

    /**
     * Returns the changeSet this Change is part of. Will return null if this instance was not constructed as part of a changelog file.
     */
    ChangeSet getChangeSet();

    /**
     * Sets the changeSet this Change is a part of. Called automatically by Liquibase during the changelog parsing process.
     */
    void setChangeSet(ChangeSet changeSet);

    /**
    * Sets the {@link ResourceAccessor} that should be used for any file and/or resource loading needed by this Change.
    * Called automatically by Liquibase during the changelog parsing process.
     * @deprecated this is now set via {@link Scope}
    */
    void setResourceAccessor(ResourceAccessor resourceAccessor);

    /**
     * Return true if this Change object supports the passed database. Used by the ChangeLog parsing process.
     */
    boolean supports(Database database);

    /**
     * Generates warnings based on the configured Change instance. Warnings do not stop changelog execution, but are passed along to the end user for reference.
     * Can return null or an empty Warnings object when there are no warnings.
     */
    Warnings warn(Database database);

    /**
     * Generate errors based on the configured Change instance. If there are any validation errors, changelog processing will normally not occur.
     * Can return null or empty ValidationErrors object when there are no errors.
     */
    ValidationErrors validate(Database database);

    /**
     * Returns example {@link DatabaseObject} instances describing the objects affected by this change.
     * This method is not called during the normal execution of a changelog, but but can be used as metadata for documentation or other integrations.
     */
    Set getAffectedDatabaseObjects(Database database);

    /**
     * Calculates the checksum of this Change based on the current configuration.
     * The checksum should take into account all settings that would impact what actually happens to the database
     * and NOT include any settings that do not impact the actual execution of the change.
     */
    CheckSum generateCheckSum();

    /**
     * Confirmation message to be displayed after the change is executed. Should include relevant configuration settings to make it as helpful as possible.
     * This method may be called outside the changelog execution process, such as in documentation generation.
     */
    String getConfirmationMessage();

    /**
     * Generates the {@link SqlStatement} objects required to run the change for the given database.
     * 

* NOTE: This method may be called multiple times throughout the changelog execution process and may be called in documentation generation and other integration points as well. *

* If this method reads from the current database state or uses any other logic that will be affected by whether previous changeSets have ran or not, you must return true from {@link #generateStatementsVolatile}. */ SqlStatement[] generateStatements(Database database); /** * Returns true if this change reads data from the database or other sources that would change during the course of an update in the {@link #generateStatements(Database) } method. * If true, this change cannot be used in an updateSql-style commands because Liquibase cannot know the {@link SqlStatement} objects until all changeSets prior have been actually executed. */ boolean generateStatementsVolatile(Database database); /** * Returns true if this can change be rolled back for the given database. */ boolean supportsRollback(Database database); /** * Generates the {@link SqlStatement} objects that would roll back the change. *

* NOTE: This method may be called multiple times throughout the changelog execution process and may be called in documentation generation and other integration points as well. *

* If this method reads from the current database state or uses any other logic that will be affected by whether previous changeSets have been rolled back or not, you must return true from {@link #generateRollbackStatementsVolatile}. * * @throws RollbackImpossibleException if rollback is not supported for this change */ SqlStatement[] generateRollbackStatements(Database database) throws RollbackImpossibleException; /** * Returns true if this change reads data from the database or other sources that would change during the course of an update in the {@link #generateRollbackStatements(Database) } method. * If true, this change cannot be used in an updateSql-style commands because Liquibase cannot know the {@link SqlStatement} objects until all changeSets prior have been actually executed. */ boolean generateRollbackStatementsVolatile(Database database); /** * Validate that this change executed successfully against the given database. This will check that the update completed at a high level plus check details of the change. * For example, a change to add a column will check that the column exists plus data type, default values, etc. */ ChangeStatus checkStatus(Database database); /** * Short, scannable description for the DATABASECHANGELOG.DESCRIPTION column */ String getDescription(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy