Filter undef from all constructor args
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Schema / Index.pm
CommitLineData
3c5de62a 1package SQL::Translator::Schema::Index;
2
3c5de62a 3=pod
4
5=head1 NAME
6
7SQL::Translator::Schema::Index - SQL::Translator index object
8
9=head1 SYNOPSIS
10
11 use SQL::Translator::Schema::Index;
12 my $index = SQL::Translator::Schema::Index->new(
13 name => 'foo',
14 fields => [ id ],
15 type => 'unique',
16 );
17
18=head1 DESCRIPTION
19
20C<SQL::Translator::Schema::Index> is the index object.
21
b54199ae 22Primary and unique keys are table constraints, not indices.
3c5de62a 23
24=head1 METHODS
25
26=cut
27
2cb3ea55 28use Moo;
25868dc9 29use SQL::Translator::Schema::Constants;
45287c81 30use SQL::Translator::Utils qw(parse_list_arg ex2err throw);
31use SQL::Translator::Types qw(schema_obj);
2cb3ea55 32use List::MoreUtils qw(uniq);
3c5de62a 33
2cb3ea55 34with qw(
46ad748f 35 SQL::Translator::Schema::Role::BuildArgs
2cb3ea55 36 SQL::Translator::Schema::Role::Extra
37 SQL::Translator::Schema::Role::Error
38 SQL::Translator::Schema::Role::Compare
39);
b6a880d1 40
0c04c5a2 41our ( $TABLE_COUNT, $VIEW_COUNT );
da06ac74 42
0c04c5a2 43our $VERSION = '1.59';
3c5de62a 44
11ad2df9 45my %VALID_INDEX_TYPE = (
46 UNIQUE => 1,
47 NORMAL => 1,
48 FULLTEXT => 1, # MySQL only (?)
49 FULL_TEXT => 1, # MySQL only (?)
50 SPATIAL => 1, # MySQL only (?)
c8efc003 51);
3c5de62a 52
3c5de62a 53=head2 new
54
55Object constructor.
56
57 my $schema = SQL::Translator::Schema::Index->new;
58
3c5de62a 59=head2 fields
60
b54199ae 61Gets and set the fields the index is on. Accepts a string, list or
25868dc9 62arrayref; returns an array or array reference. Will unique the field
63names and keep them in order by the first occurrence of a field name.
3c5de62a 64
b54199ae 65 $index->fields('id');
66 $index->fields('id', 'name');
67 $index->fields( 'id, name' );
68 $index->fields( [ 'id', 'name' ] );
69 $index->fields( qw[ id name ] );
25868dc9 70
b54199ae 71 my @fields = $index->fields;
3c5de62a 72
73=cut
74
2cb3ea55 75has fields => (
76 is => 'rw',
77 default => sub { [] },
78 coerce => sub { [uniq @{parse_list_arg($_[0])}] },
79);
80
81around fields => sub {
82 my $orig = shift;
3c5de62a 83 my $self = shift;
25868dc9 84 my $fields = parse_list_arg( @_ );
2cb3ea55 85 $self->$orig($fields) if @$fields;
3c5de62a 86
2cb3ea55 87 return wantarray ? @{ $self->$orig } : $self->$orig;
88};
3c5de62a 89
b54199ae 90sub is_valid {
91
92=pod
93
94=head2 is_valid
95
96Determine whether the index is valid or not.
97
98 my $ok = $index->is_valid;
99
100=cut
101
102 my $self = shift;
103 my $table = $self->table or return $self->error('No table');
104 my @fields = $self->fields or return $self->error('No fields');
105
106 for my $field ( @fields ) {
107 return $self->error(
108 "Field '$field' does not exist in table '", $table->name, "'"
109 ) unless $table->get_field( $field );
110 }
111
112 return 1;
113}
114
3c5de62a 115=head2 name
116
117Get or set the index's name.
118
119 my $name = $index->name('foo');
120
121=cut
122
2cb3ea55 123has name => ( is => 'rw', coerce => sub { defined $_[0] ? $_[0] : '' }, default => sub { '' } );
25868dc9 124
125=head2 options
126
127Get or set the index's options (e.g., "using" or "where" for PG). Returns
128an array or array reference.
129
130 my @options = $index->options;
131
132=cut
133
2cb3ea55 134has options => (
135 is => 'rw',
136 default => sub { [] },
45287c81 137 coerce => \&parse_list_arg,
2cb3ea55 138);
139
140around options => sub {
141 my $orig = shift;
25868dc9 142 my $self = shift;
143 my $options = parse_list_arg( @_ );
144
2cb3ea55 145 push @{ $self->$orig }, @$options;
43b9dc7a 146
2cb3ea55 147 return wantarray ? @{ $self->$orig } : $self->$orig;
148};
43b9dc7a 149
150=head2 table
151
152Get or set the index's table object.
153
154 my $table = $index->table;
155
156=cut
157
45287c81 158has table => ( is => 'rw', isa => schema_obj('Table') );
43b9dc7a 159
45287c81 160around table => \&ex2err;
3c5de62a 161
162=head2 type
163
164Get or set the index's type.
165
166 my $type = $index->type('unique');
167
d06db857 168Get or set the index's type.
19ad0cee 169
170Currently there are only four acceptable types: UNIQUE, NORMAL, FULL_TEXT,
171and SPATIAL. The latter two might be MySQL-specific. While both lowercase
172and uppercase types are acceptable input, this method returns the type in
173uppercase.
174
3c5de62a 175=cut
176
45287c81 177has type => (
178 is => 'rw',
179 isa => sub {
180 my $type = uc $_[0] or return;
181 throw("Invalid index type: $type") unless $VALID_INDEX_TYPE{$type};
182 },
183 coerce => sub { uc $_[0] },
184 default => sub { 'NORMAL' },
185);
3c5de62a 186
45287c81 187around type => \&ex2err;
abf315bb 188
189=head2 equals
190
191Determines if this index is the same as another
192
193 my $isIdentical = $index1->equals( $index2 );
194
195=cut
196
2cb3ea55 197around equals => sub {
198 my $orig = shift;
abf315bb 199 my $self = shift;
200 my $other = shift;
201 my $case_insensitive = shift;
d990d84b 202 my $ignore_index_names = shift;
ea93df61 203
2cb3ea55 204 return 0 unless $self->$orig($other);
da5a1bae 205
d990d84b 206 unless ($ignore_index_names) {
da5a1bae 207 unless ((!$self->name && ($other->name eq $other->fields->[0])) ||
208 (!$other->name && ($self->name eq $self->fields->[0]))) {
d990d84b 209 return 0 unless $case_insensitive ? uc($self->name) eq uc($other->name) : $self->name eq $other->name;
da5a1bae 210 }
d990d84b 211 }
82f6b50e 212 #return 0 unless $self->is_valid eq $other->is_valid;
abf315bb 213 return 0 unless $self->type eq $other->type;
ea93df61 214
c243ec2b 215 # Check fields, regardless of order
ea93df61 216 my %otherFields = (); # create a hash of the other fields
c243ec2b 217 foreach my $otherField ($other->fields) {
ea93df61 218 $otherField = uc($otherField) if $case_insensitive;
219 $otherFields{$otherField} = 1;
c243ec2b 220 }
221 foreach my $selfField ($self->fields) { # check for self fields in hash
ea93df61 222 $selfField = uc($selfField) if $case_insensitive;
223 return 0 unless $otherFields{$selfField};
224 delete $otherFields{$selfField};
c243ec2b 225 }
226 # Check all other fields were accounted for
227 return 0 unless keys %otherFields == 0;
228
4598b71c 229 return 0 unless $self->_compare_objects(scalar $self->options, scalar $other->options);
230 return 0 unless $self->_compare_objects(scalar $self->extra, scalar $other->extra);
abf315bb 231 return 1;
2cb3ea55 232};
3c5de62a 233
25868dc9 234sub DESTROY {
3c5de62a 235 my $self = shift;
25868dc9 236 undef $self->{'table'}; # destroy cyclical reference
3c5de62a 237}
238
45287c81 239# Must come after all 'has' declarations
240around new => \&ex2err;
241
3c5de62a 2421;
243
3c5de62a 244=pod
245
246=head1 AUTHOR
247
c3b0b535 248Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
3c5de62a 249
250=cut