|
Lightweight 0.20260303.0
|
#include <SqlMigration.hpp>
Public Types | |
| using | MigrationList = std::list< MigrationBase const * > |
| Type alias for a list of migration pointers. | |
| using | ExecuteCallback = std::function< void(MigrationBase const &, size_t, size_t)> |
| Callback type invoked during migration execution to report progress. | |
Public Member Functions | |
| LIGHTWEIGHT_API void | AddMigration (MigrationBase const *migration) |
| LIGHTWEIGHT_API MigrationList const & | GetAllMigrations () const noexcept |
| LIGHTWEIGHT_API MigrationBase const * | GetMigration (MigrationTimestamp timestamp) const noexcept |
| LIGHTWEIGHT_API void | RemoveAllMigrations () |
| LIGHTWEIGHT_API std::list< MigrationBase const * > | GetPending () const noexcept |
| LIGHTWEIGHT_API void | ApplySingleMigration (MigrationBase const &migration) |
| LIGHTWEIGHT_API void | RevertSingleMigration (MigrationBase const &migration) |
| LIGHTWEIGHT_API size_t | ApplyPendingMigrations (ExecuteCallback const &feedbackCallback={}) |
| LIGHTWEIGHT_API void | CreateMigrationHistory () |
| Create the migration history table if it does not exist. | |
| LIGHTWEIGHT_API std::vector< MigrationTimestamp > | GetAppliedMigrationIds () const |
| LIGHTWEIGHT_API DataMapper & | GetDataMapper () |
| Get the data mapper used for migrations. | |
| LIGHTWEIGHT_API DataMapper & | GetDataMapper () const |
| Get the data mapper used for migrations. | |
| LIGHTWEIGHT_API void | CloseDataMapper () |
| LIGHTWEIGHT_API SqlTransaction | Transaction () |
| LIGHTWEIGHT_API std::vector< std::string > | PreviewMigration (MigrationBase const &migration) const |
| LIGHTWEIGHT_API std::vector< std::string > | PreviewPendingMigrations (ExecuteCallback const &feedbackCallback={}) const |
| LIGHTWEIGHT_API std::vector< ChecksumVerificationResult > | VerifyChecksums () const |
| LIGHTWEIGHT_API void | MarkMigrationAsApplied (MigrationBase const &migration) |
| LIGHTWEIGHT_API RevertResult | RevertToMigration (MigrationTimestamp target, ExecuteCallback const &feedbackCallback={}) |
| LIGHTWEIGHT_API MigrationStatus | GetMigrationStatus () const |
Static Public Member Functions | |
| static LIGHTWEIGHT_API MigrationManager & | GetInstance () |
Main API to use for managing SQL migrations
This class is a singleton and can be accessed using the GetInstance() method.
Definition at line 86 of file SqlMigration.hpp.
| using Lightweight::SqlMigration::MigrationManager::MigrationList = std::list<MigrationBase const*> |
Type alias for a list of migration pointers.
Definition at line 90 of file SqlMigration.hpp.
| using Lightweight::SqlMigration::MigrationManager::ExecuteCallback = std::function<void(MigrationBase const& , size_t , size_t )> |
Callback type invoked during migration execution to report progress.
Definition at line 127 of file SqlMigration.hpp.
|
static |
Get the singleton instance of the migration manager.
Referenced by Lightweight::SqlMigration::MigrationBase::MigrationBase().
| LIGHTWEIGHT_API void Lightweight::SqlMigration::MigrationManager::AddMigration | ( | MigrationBase const * | migration | ) |
Add a migration to the manager.
| migration | Pointer to the migration to add. |
Referenced by Lightweight::SqlMigration::MigrationBase::MigrationBase().
|
noexcept |
Get all migrations that have been added to the manager.
|
noexcept |
Get a migration by timestamp.
| timestamp | Timestamp of the migration to get. |
| LIGHTWEIGHT_API void Lightweight::SqlMigration::MigrationManager::RemoveAllMigrations | ( | ) |
Remove all migrations from the manager.
This function is useful if the migration manager should be reset.
|
noexcept |
Get all migrations that have not been applied yet.
| LIGHTWEIGHT_API void Lightweight::SqlMigration::MigrationManager::ApplySingleMigration | ( | MigrationBase const & | migration | ) |
Apply a single migration from a migration object.
| migration | Pointer to the migration to apply. |
| LIGHTWEIGHT_API void Lightweight::SqlMigration::MigrationManager::RevertSingleMigration | ( | MigrationBase const & | migration | ) |
Revert a single migration from a migration object.
| migration | Pointer to the migration to revert. |
| LIGHTWEIGHT_API size_t Lightweight::SqlMigration::MigrationManager::ApplyPendingMigrations | ( | ExecuteCallback const & | feedbackCallback = {} | ) |
Apply all migrations that have not been applied yet.
| feedbackCallback | Callback to be called for each migration. |
| LIGHTWEIGHT_API std::vector< MigrationTimestamp > Lightweight::SqlMigration::MigrationManager::GetAppliedMigrationIds | ( | ) | const |
Get all applied migration IDs.
|
inline |
Get the data mapper used for migrations.
Definition at line 158 of file SqlMigration.hpp.
References GetDataMapper().
| LIGHTWEIGHT_API void Lightweight::SqlMigration::MigrationManager::CloseDataMapper | ( | ) |
Close the data mapper.
This function is useful if explicitly closing the connection is desired before the migration manager is destroyed.
| LIGHTWEIGHT_API SqlTransaction Lightweight::SqlMigration::MigrationManager::Transaction | ( | ) |
Get a transaction for the data mapper.
| LIGHTWEIGHT_API std::vector< std::string > Lightweight::SqlMigration::MigrationManager::PreviewMigration | ( | MigrationBase const & | migration | ) | const |
Preview SQL statements for a single migration without executing.
This is useful for dry-run mode to see what SQL would be executed.
| migration | The migration to preview. |
| LIGHTWEIGHT_API std::vector< std::string > Lightweight::SqlMigration::MigrationManager::PreviewPendingMigrations | ( | ExecuteCallback const & | feedbackCallback = {} | ) | const |
Preview SQL statements for all pending migrations without executing.
This is useful for dry-run mode to see what SQL would be executed.
| feedbackCallback | Optional callback to be called for each migration. |
| LIGHTWEIGHT_API std::vector< ChecksumVerificationResult > Lightweight::SqlMigration::MigrationManager::VerifyChecksums | ( | ) | const |
Verify checksums of all applied migrations.
Compares the stored checksums in the database with the computed checksums of the current migration definitions. This helps detect if migrations have been modified after they were applied.
| LIGHTWEIGHT_API void Lightweight::SqlMigration::MigrationManager::MarkMigrationAsApplied | ( | MigrationBase const & | migration | ) |
Mark a migration as applied without executing its Up() method.
This is useful for:
| migration | The migration to mark as applied. |
| std::runtime_error | if the migration is already applied. |
| LIGHTWEIGHT_API RevertResult Lightweight::SqlMigration::MigrationManager::RevertToMigration | ( | MigrationTimestamp | target, |
| ExecuteCallback const & | feedbackCallback = {} |
||
| ) |
Revert all migrations applied after the target timestamp.
This method reverts migrations in reverse chronological order, rolling back from the most recent to just after the target. The target migration itself is NOT reverted.
| target | Target timestamp to revert to. Migrations > target are reverted. |
| feedbackCallback | Optional callback for progress updates. |
| LIGHTWEIGHT_API MigrationStatus Lightweight::SqlMigration::MigrationManager::GetMigrationStatus | ( | ) | const |
Get a summary status of all migrations.
This method provides a quick overview of the migration state without needing to iterate through individual migrations.