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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
package DBIx::Class::Helper::Schema::LintContents;
{
$DBIx::Class::Helper::Schema::LintContents::VERSION = '2.013002';
}
use strict;
use warnings;
use Scalar::Util 'blessed';
# ABSTRACT: Check the data in your database match your constraints
sub null_check_source {
my ($self, $source_name, $non_nullable_columns) = @_;
return $self->resultset($source_name)->search({
-or => [
map +{ $_ => undef }, @$non_nullable_columns,
],
})
}
sub null_check_source_auto {
my ($self, $source_name) = @_;
my %ci = %{
$self->source($source_name)->columns_info
};
$self->null_check_source($source_name, [grep { !$ci{$_}->{is_nullable} } keys %ci]);
}
sub dup_check_source {
my ($self, $source, $unique_columns) = @_;
$self->resultset($source)->search(undef, {
columns => $unique_columns,
group_by => $unique_columns,
having => \'count(*) > 1',
})
}
sub dup_check_source_auto {
my ($self, $source) = @_;
my %uc = $self->source($source)->unique_constraints;
return {
map {
$_ => $self->dup_check_source($source, $uc{$_})
} keys %uc
}
}
sub _fk_cond_fixer {
my ($self, $cond) = @_;
return {
map {
my $k = $_;
my $v = $cond->{$_};
$_ =~ s/^(self|foreign)\.// for $k, $v;
($v => $k)
} keys %$cond
}
}
sub fk_check_source_auto {
my ($self, $from_moniker) = @_;
my $from_source = $self->source($from_moniker);
my %rels = map {
$_ => $from_source->relationship_info($_)
} $from_source->relationships;
return {
map {
$_ => $self->fk_check_source(
$from_moniker,
$from_source->related_source($_),
$self->_fk_cond_fixer($rels{$_}->{cond})
)
} grep {
my %r = %{$rels{$_}};
ref $r{cond} eq 'HASH' && ($r{attrs}{is_foreign_rel} || $r{attrs}{is_foreign_key_constraint})
} keys %rels
}
}
sub fk_check_source {
my ($self, $source_from, $source_to, $columns) = @_;
my $to_rs = blessed $source_to
? $source_to->resultset
: $self->resultset($source_to)
;
my $me = $self->resultset($source_from)->current_source_alias;
$self->resultset($source_from)->search({
-not_exists => $to_rs
->search({
map +( "self.$_" => { -ident => "other.$columns->{$_}" } ), keys %$columns
}, {
alias => 'other',
})->as_query,
}, {
alias => 'self',
})
}
1;
__END__
=pod
=head1 NAME
DBIx::Class::Helper::Schema::LintContents - Check the data in your database match your constraints
=head1 VERSION
version 2.013002
=head1 SYNOPSIS
package MyApp::Schema;
use parent 'DBIx::Class::Schema';
__PACKAGE__->load_components('Helper::Schema::LintContents');
1;
And later, somewhere else:
say "Incorrectly Null Users:";
for ($schema->null_check_source_auto('User')->all) {
say '* ' . $_->id
}
say "Duplicate Users:";
my $duplicates = $schema->dup_check_source_auto('User');
for (keys %$duplicates) {
say "Constraint: $_";
for ($duplicates->{$_}->all) {
say '* ' . $_->id
}
}
say "Users with invalid FK's:";
my $invalid_fks = $schema->fk_check_source_auto('User');
for (keys %$invalid_fks) {
say "Rel: $_";
for ($invalid_fks->{$_}->all) {
say '* ' . $_->id
}
}
=head1 DESCRIPTION
Some people think that constraints make their databases slower. As silly as
that is, I have been in a similar situation! I'm here to help you, dear
developers! Basically this is a suite of methods that allow you to find
violated "constraints." To be clear, the constraints I mean are the ones you
tell L<DBIx::Class> about, real constraints are fairly sure to be followed.
=head1 METHODS
=head2 fk_check_source
my $busted = $schema->fk_check_source(
'User',
'Group',
{ group_id => 'id' },
);
C<fk_check_source> takes three arguments, the first is the B<from> source
moniker of a relationship. The second is the B<to> source or source moniker of a relationship.
The final argument is a hash reference representing the columns of the
relationship. The return value is a resultset of the B<from> source that do
not have a corresponding B<to> row. To be clear, the example given above would
return a resultset of C<User> rows that have a C<group_id> that points to a
C<Group> that does not exist.
=head2 fk_check_source_auto
my $broken = $schema->fk_check_source_auto('User');
C<fk_check_source_auto> takes a single argument: the source to check. It will
check all the foreign key (that is, C<belongs_to>) relationships for missing...
C<foreign> rows. The return value will be a hashref where the keys are the
relationship name and the values are resultsets of the respective violated
relationship.
=head2 dup_check_source
my $smashed = $schema->fk_check_source( 'Group', ['id'] );
C<dup_check_source> takes two arguments, the first is the source moniker to be
checked. The second is an arrayref of columns that "should be" unique.
The return value is a resultset of the source that duplicate the passed
columns. So with the example above the resultset would return all groups that
are "duplicates" of other groups based on C<id>.
=head2 dup_check_source_auto
my $ruined = $schema->dup_check_source_auto('Group');
C<dup_check_source_auto> takes a single argument, which is the name of the
resultsource in which to check for duplicates. It will return a hashref where
they keys are the names of the unique constraints to be checked. The values
will be resultsets of the respective duplicate rows.
=head2 null_check_source
my $blarg = $schema->null_check_source('Group', ['id']);
C<null_check_source> tales two arguments, the first is the name of the source
to check. The second is an arrayref of columns that should contain no nulls.
The return value is simply a resultset of rows that contain nulls where they
shouldn't be.
=head2 null_check_source_auto
my $wrecked = $schema->null_check_source_auto('Group');
C<null_check_source_auto> takes a single argument, which is the name of the
resultsource in which to check for nulls. The return value is simply a
resultset of rows that contain nulls where they shouldn't be. This method
automatically uses the configured columns that have C<is_nullable> set to
false.
=head1 AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2012 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
|