package Mojo::mysql::Migrations; use Mojo::Base -base; use Carp 'croak'; use Mojo::File; use Mojo::Loader 'data_section'; use Mojo::Util 'decode'; use constant DEBUG => $ENV{MOJO_MIGRATIONS_DEBUG} || 0; has name => 'migrations'; has 'mysql'; sub active { $_[0]->_active($_[0]->mysql->db) } sub from_data { my ($self, $class, $name) = @_; return $self->from_string(data_section($class //= caller, $name // $self->name)); } sub from_file { shift->from_string(decode 'UTF-8', Mojo::File->new(pop)->slurp) } sub from_string { my ($self, $sql) = @_; return $self unless defined $sql; my ($version, $way); my ($new, $last, $delimiter) = (1, '', ';'); my $migrations = $self->{migrations} = {up => {}, down => {}}; while (length($sql) > 0) { my $token; if ($sql =~ /^$delimiter/x) { ($new, $token) = (1, $delimiter); } elsif ($sql =~ /^delimiter\s+(\S+)\s*(?:\n|\z)/ip) { ($new, $token, $delimiter) = (1, ${^MATCH}, $1); } elsif ( $sql =~ /^(\s+)/s # whitespace or $sql =~ /^(\w+)/ # general name ) { $token = $1; } elsif ( $sql =~ /^--.*(?:\n|\z)/p # double-dash comment or $sql =~ /^\#.*(?:\n|\z)/p # hash comment or $sql =~ /^\/\*(?:[^\*]|\*[^\/])*(?:\*\/|\*\z|\z)/p # C-style comment or $sql =~ /^'(?:[^'\\]*|\\(?:.|\n)|'')*(?:'|\z)/p # single-quoted literal text or $sql =~ /^"(?:[^"\\]*|\\(?:.|\n)|"")*(?:"|\z)/p # double-quoted literal text or $sql =~ /^`(?:[^`]*|``)*(?:`|\z)/p ) { # schema-quoted literal text $token = ${^MATCH}; } else { $token = substr($sql, 0, 1); } # chew token substr($sql, 0, length($token), ''); if ($token =~ /^--\s+(\d+)\s*(up|down)/i) { my ($new_version, $new_way) = ($1, lc $2); push @{$migrations->{$way}{$version} //= []}, $last if $version and $last !~ /^\s*$/s; ($version, $way) = ($new_version, $new_way); ($new, $last, $delimiter) = (0, '', ';'); } if ($new) { push @{$migrations->{$way}{$version} //= []}, $last if $version and $last !~ /^\s*$/s; ($new, $last) = (0, ''); } else { $last .= $token; } } push @{$migrations->{$way}{$version} //= []}, $last if $version and $last !~ /^\s*$/s; return $self; } sub latest { (sort { $a <=> $b } keys %{shift->{migrations}{up}})[-1] || 0; } sub migrate { my ($self, $target) = @_; my $latest = $self->latest; $target //= $latest; # Unknown version my ($up, $down) = @{$self->{migrations}}{qw(up down)}; croak "Version $target has no migration" if $target != 0 && !$up->{$target}; # Already the right version (make sure migrations table exists) my $db = $self->mysql->db; return $self if $self->_active($db, 1) == $target; # Check version again my $tx = $db->begin; return $self if (my $active = $self->_active($db, 1)) == $target; # Newer version croak "Active version $active is greater than the latest version $latest" if $active > $latest; # Up my @sql; if ($active < $target) { foreach (sort { $a <=> $b } keys %$up) { push @sql, @{$up->{$_}} if $_ <= $target && $_ > $active; } } # Down else { foreach (reverse sort { $a <=> $b } keys %$down) { push @sql, @{$down->{$_}} if $_ > $target && $_ <= $active; } } warn "-- Migrate ($active -> $target)\n", join("\n", @sql), "\n" if DEBUG; eval { $db->query($_) for @sql; $db->query("update mojo_migrations set version = ? where name = ?", $target, $self->name); }; if (my $error = $@) { undef $tx; die $error; } $tx->commit; return $self; } sub _active { my ($self, $db, $create) = @_; my $name = $self->name; my $results = eval { $db->query('select version from mojo_migrations where name = ?', $name) }; my $error = $@; return 0 if !$create and !$results; if ($results and my $next = $results->array) { return $next->[0] } $db->query( 'create table if not exists mojo_migrations ( name varchar(128) unique not null, version bigint not null )' ) if $error; $db->query('insert into mojo_migrations values (?, ?)', $name, 0); return 0; } 1; =encoding utf8 =head1 NAME Mojo::mysql::Migrations - Migrations =head1 SYNOPSIS use Mojo::mysql::Migrations; my $migrations = Mojo::mysql::Migrations->new(mysql => $mysql); $migrations->from_file('/home/sri/migrations.sql')->migrate; =head1 DESCRIPTION L is used by L to allow database schemas to evolve easily over time. A migration file is just a collection of sql blocks, with one or more statements, separated by comments of the form C<-- VERSION UP/DOWN>. -- 1 up create table messages (message text); insert into messages values ('I ♥ Mojolicious!'); delimiter // create procedure mojo_test() begin select text from messages; end // -- 1 down drop table messages; drop procedure mojo_test; -- 2 up (...you can comment freely here...) create table stuff (whatever int); -- 2 down drop table stuff; The idea is to let you migrate from any version, to any version, up and down. Migrations are very safe, because they are performed in transactions and only one can be performed at a time. If a single statement fails, the whole migration will fail and get rolled back. Every set of migrations has a L, which is stored together with the currently active version in an automatically created table named C. =head1 ATTRIBUTES L implements the following attributes. =head2 name my $name = $migrations->name; $migrations = $migrations->name('foo'); Name for this set of migrations, defaults to C. =head2 mysql my $mysql = $migrations->mysql; $migrations = $migrations->mysql(Mojo::mysql->new); L object these migrations belong to. =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 active my $version = $migrations->active; Currently active version. =head2 from_data $migrations = $migrations->from_data; $migrations = $migrations->from_data('main'); $migrations = $migrations->from_data('main', 'file_name'); Extract migrations from a file in the DATA section of a class with L, defaults to using the caller class and L. __DATA__ @@ migrations -- 1 up create table messages (message text); insert into messages values ('I ♥ Mojolicious!'); -- 1 down drop table messages; =head2 from_file $migrations = $migrations->from_file('/home/sri/migrations.sql'); Extract migrations from a file. =head2 from_string $migrations = $migrations->from_string( '-- 1 up create table foo (bar int); -- 1 down drop table foo;' ); Extract migrations from string. =head2 latest my $version = $migrations->latest; Latest version available. =head2 migrate $migrations = $migrations->migrate; $migrations = $migrations->migrate(3); Migrate from L to a different version, up or down, defaults to using L. All version numbers need to be positive, with version C<0> representing an empty database. # Reset database $migrations->migrate(0)->migrate; =head1 DEBUGGING You can set the C environment variable to get some advanced diagnostics information printed to C. MOJO_MIGRATIONS_DEBUG=1 =head1 SEE ALSO L, L, L. =cut