1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
package DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions;
$DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions::VERSION = '0.002233';
use Moose;
# ABSTRACT: Define your own list of versions to use for migrations
use Carp 'croak';
with 'DBIx::Class::DeploymentHandler::HandlesVersioning';
has schema_version => (
is => 'ro',
required => 1,
);
has initial_version => (
isa => 'Str',
is => 'ro',
required => 1,
);
has to_version => (
is => 'ro',
isa => 'Str',
lazy_build => 1,
);
sub _build_to_version { $_[0]->schema_version }
has ordered_versions => (
is => 'ro',
isa => 'ArrayRef',
required => 1,
);
has _index_of_versions => (
is => 'ro',
isa => 'HashRef',
lazy_build => 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,
);
sub _build__version_idx { $_[0]->_index_of_versions->{$_[0]->initial_version} }
sub _inc_version_idx { $_[0]->_version_idx($_[0]->_version_idx + 1 ) }
sub _dec_version_idx { $_[0]->_version_idx($_[0]->_version_idx - 1 ) }
# provide backwards compatibility for initial_version/database_version
around BUILDARGS => sub {
my $orig = shift;
my $class = shift;
my $args = $class->$orig(@_);
$args->{initial_version} = $args->{database_version}
if exists $args->{database_version} && !exists $args->{initial_version};
return $args;
};
sub next_version_set {
my $self = shift;
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;
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__
=pod
=head1 NAME
DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions - Define your own list of versions to use for migrations
=head1 SEE ALSO
This class is an implementation of
L<DBIx::Class::DeploymentHandler::HandlesVersioning>. Pretty much all the
documentation is there.
=head1 AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2019 by Arthur Axel "fREW" Schmidt.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|