X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FDeploymentHandler%2FVersionHandler%2FExplicitVersions.pm;h=bac5435e659e19a4f38a11f7c5a86bee19217418;hb=a976d6e46695d7015239ee4c30cb3708f4ce7942;hp=396e9343385c930dbc7b6403d227b27724f1891e;hpb=f344dd911ffeda3bc0b3bef6f275d27a2c31e8f9;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git diff --git a/lib/DBIx/Class/DeploymentHandler/VersionHandler/ExplicitVersions.pm b/lib/DBIx/Class/DeploymentHandler/VersionHandler/ExplicitVersions.pm index 396e934..bac5435 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionHandler/ExplicitVersions.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionHandler/ExplicitVersions.pm @@ -1,105 +1,117 @@ package DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions; -use Moose; +use Moo; +use MooX::Types::MooseLike::Base qw(Str ArrayRef Int HashRef); + +# ABSTRACT: Define your own list of versions to use for migrations + use Carp 'croak'; with 'DBIx::Class::DeploymentHandler::HandlesVersioning'; has schema_version => ( - isa => 'Str', + isa => Str, is => 'ro', required => 1, ); has database_version => ( - isa => 'Str', + isa => Str, is => 'ro', required => 1, ); -has to_version => ( # configuration +has to_version => ( is => 'ro', - lazy_build => 1, # builder comes from another role... - # which is... probably not how we want it + isa => Str, + builder => '_build_to_version', + lazy => 1, ); sub _build_to_version { $_[0]->schema_version } has ordered_versions => ( is => 'ro', - isa => 'ArrayRef', + isa => ArrayRef, required => 1, - trigger => sub { - my $to_version = $_[0]->to_version; - my $db_version = $_[0]->database_version; - - croak 'to_version not in ordered_versions' - unless grep { $to_version eq $_ } @{ $_[1] }; - - croak 'database_version not in ordered_versions' - unless grep { $db_version eq $_ } @{ $_[1] }; - - for (@{ $_[1] }) { - return if $_ eq $db_version; - croak 'to_version is before database version in ordered_versions' - if $_ eq $to_version; - } - }, ); +has _index_of_versions => ( + is => 'ro', + isa => HashRef, + builder => '_build__index_of_versions', + lazy => 1, +); + +sub _build__index_of_versions { + my %ret; + my $i = 0; + for (@{ $_[0]->ordered_versions }) { + $ret{$_} = $i++; + } + \%ret; +} + has _version_idx => ( is => 'rw', - isa => 'Int', - lazy_build => 1, + isa => Int, + builder => '_build__version_idx', + lazy => 1, ); +sub _build__version_idx { $_[0]->_index_of_versions->{$_[0]->database_version} } + sub _inc_version_idx { $_[0]->_version_idx($_[0]->_version_idx + 1 ) } sub _dec_version_idx { $_[0]->_version_idx($_[0]->_version_idx - 1 ) } -sub _build__version_idx { - my $self = shift; - my $start = $self->database_version; - my $idx = 0; - for (@{$self->ordered_versions}) { - return $idx - if $_ eq $self->database_version; - $idx++; - } -} sub next_version_set { my $self = shift; - return undef - if $self->ordered_versions->[$self->_version_idx] eq $self->to_version; - - # this should never get in infinite loops because we ensure - # that the database version is in the list in the version_idx - # builder - my $next_idx = $self->_inc_version_idx; - return [ - $self->ordered_versions->[$next_idx - 1], - $self->ordered_versions->[$next_idx ], - ]; + if ( + $self->_index_of_versions->{$self->to_version} < + $self->_version_idx + ) { + croak "you are trying to upgrade and your current version is greater\n". + "than the version you are trying to upgrade to. Either downgrade\n". + "or update your schema" + } elsif ( $self->_version_idx == $self->_index_of_versions->{$self->to_version}) { + return undef + } else { + my $next_idx = $self->_inc_version_idx; + return [ + $self->ordered_versions->[$next_idx - 1], + $self->ordered_versions->[$next_idx ], + ]; + } } sub previous_version_set { my $self = shift; - return undef - if $self->ordered_versions->[$self->_version_idx] eq $self->database_version; - - # this should never get in infinite loops because we ensure - # that the database version is in the list in the version_idx - # builder - my $next_idx = $self->_dec_version_idx; - return [ - $self->ordered_versions->[$next_idx - 1], - $self->ordered_versions->[$next_idx ], - ]; + if ( + $self->_index_of_versions->{$self->to_version} > + $self->_version_idx + ) { + croak "you are trying to downgrade and your current version is less\n". + "than the version you are trying to downgrade to. Either upgrade\n". + "or update your schema" + } elsif ( $self->_version_idx == $self->_index_of_versions->{$self->to_version}) { + return undef + } else { + my $next_idx = $self->_dec_version_idx; + return [ + $self->ordered_versions->[$next_idx + 1], + $self->ordered_versions->[$next_idx ], + ]; + } } -__PACKAGE__->meta->make_immutable; - 1; +# vim: ts=2 sw=2 expandtab + __END__ -vim: ts=2 sw=2 expandtab +=head1 SEE ALSO + +This class is an implementation of +L. Pretty much all the +documentation is there.