Changes + Reverts for 0.11000, see Changes file for info
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Schema / Index.pm
CommitLineData
3c5de62a 1package SQL::Translator::Schema::Index;
2
3# ----------------------------------------------------------------------
478f608d 4# Copyright (C) 2002-2009 SQLFairy Authors
3c5de62a 5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; version 2.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18# 02111-1307 USA
19# -------------------------------------------------------------------
20
21=pod
22
23=head1 NAME
24
25SQL::Translator::Schema::Index - SQL::Translator index object
26
27=head1 SYNOPSIS
28
29 use SQL::Translator::Schema::Index;
30 my $index = SQL::Translator::Schema::Index->new(
31 name => 'foo',
32 fields => [ id ],
33 type => 'unique',
34 );
35
36=head1 DESCRIPTION
37
38C<SQL::Translator::Schema::Index> is the index object.
39
b54199ae 40Primary and unique keys are table constraints, not indices.
3c5de62a 41
42=head1 METHODS
43
44=cut
45
46use strict;
25868dc9 47use SQL::Translator::Schema::Constants;
48use SQL::Translator::Utils 'parse_list_arg';
3c5de62a 49
b6a880d1 50use base 'SQL::Translator::Schema::Object';
51
da06ac74 52use vars qw($VERSION $TABLE_COUNT $VIEW_COUNT);
53
11ad2df9 54$VERSION = '1.59';
3c5de62a 55
11ad2df9 56my %VALID_INDEX_TYPE = (
57 UNIQUE => 1,
58 NORMAL => 1,
59 FULLTEXT => 1, # MySQL only (?)
60 FULL_TEXT => 1, # MySQL only (?)
61 SPATIAL => 1, # MySQL only (?)
c8efc003 62);
3c5de62a 63
64# ----------------------------------------------------------------------
9371be50 65
66__PACKAGE__->_attributes( qw/
bdd8e79a 67 name type fields table options
9371be50 68/);
3c5de62a 69
70=pod
71
72=head2 new
73
74Object constructor.
75
76 my $schema = SQL::Translator::Schema::Index->new;
77
78=cut
79
3c5de62a 80# ----------------------------------------------------------------------
81sub fields {
82
83=pod
84
85=head2 fields
86
b54199ae 87Gets and set the fields the index is on. Accepts a string, list or
25868dc9 88arrayref; returns an array or array reference. Will unique the field
89names and keep them in order by the first occurrence of a field name.
3c5de62a 90
b54199ae 91 $index->fields('id');
92 $index->fields('id', 'name');
93 $index->fields( 'id, name' );
94 $index->fields( [ 'id', 'name' ] );
95 $index->fields( qw[ id name ] );
25868dc9 96
b54199ae 97 my @fields = $index->fields;
3c5de62a 98
99=cut
100
101 my $self = shift;
25868dc9 102 my $fields = parse_list_arg( @_ );
3c5de62a 103
104 if ( @$fields ) {
25868dc9 105 my ( %unique, @unique );
106 for my $f ( @$fields ) {
107 next if $unique{ $f };
108 $unique{ $f } = 1;
109 push @unique, $f;
110 }
111
112 $self->{'fields'} = \@unique;
3c5de62a 113 }
114
115 return wantarray ? @{ $self->{'fields'} || [] } : $self->{'fields'};
116}
117
118# ----------------------------------------------------------------------
b54199ae 119sub is_valid {
120
121=pod
122
123=head2 is_valid
124
125Determine whether the index is valid or not.
126
127 my $ok = $index->is_valid;
128
129=cut
130
131 my $self = shift;
132 my $table = $self->table or return $self->error('No table');
133 my @fields = $self->fields or return $self->error('No fields');
134
135 for my $field ( @fields ) {
136 return $self->error(
137 "Field '$field' does not exist in table '", $table->name, "'"
138 ) unless $table->get_field( $field );
139 }
140
141 return 1;
142}
143
144# ----------------------------------------------------------------------
3c5de62a 145sub name {
146
147=pod
148
149=head2 name
150
151Get or set the index's name.
152
153 my $name = $index->name('foo');
154
155=cut
156
157 my $self = shift;
158 $self->{'name'} = shift if @_;
159 return $self->{'name'} || '';
160}
161
162# ----------------------------------------------------------------------
25868dc9 163sub options {
164
165=pod
166
167=head2 options
168
169Get or set the index's options (e.g., "using" or "where" for PG). Returns
170an array or array reference.
171
172 my @options = $index->options;
173
174=cut
175
176 my $self = shift;
177 my $options = parse_list_arg( @_ );
178
179 push @{ $self->{'options'} }, @$options;
180
181 if ( ref $self->{'options'} ) {
182 return wantarray ? @{ $self->{'options'} || [] } : $self->{'options'};
183 }
184 else {
185 return wantarray ? () : [];
186 }
187}
188
189# ----------------------------------------------------------------------
43b9dc7a 190sub table {
191
192=pod
193
194=head2 table
195
196Get or set the index's table object.
197
198 my $table = $index->table;
199
200=cut
201
202 my $self = shift;
203 if ( my $arg = shift ) {
204 return $self->error('Not a table object') unless
205 UNIVERSAL::isa( $arg, 'SQL::Translator::Schema::Table' );
206 $self->{'table'} = $arg;
207 }
208
209 return $self->{'table'};
210}
211
212# ----------------------------------------------------------------------
3c5de62a 213sub type {
214
215=pod
216
217=head2 type
218
219Get or set the index's type.
220
221 my $type = $index->type('unique');
222
19ad0cee 223Get or set the index's options (e.g., "using" or "where" for PG). Returns
224
225Currently there are only four acceptable types: UNIQUE, NORMAL, FULL_TEXT,
226and SPATIAL. The latter two might be MySQL-specific. While both lowercase
227and uppercase types are acceptable input, this method returns the type in
228uppercase.
229
3c5de62a 230=cut
231
c3b0b535 232 my ( $self, $type ) = @_;
3c5de62a 233
c3b0b535 234 if ( $type ) {
235 $type = uc $type;
3c5de62a 236 return $self->error("Invalid index type: $type")
c8efc003 237 unless $VALID_INDEX_TYPE{ $type };
3c5de62a 238 $self->{'type'} = $type;
239 }
240
19ad0cee 241 return $self->{'type'} || 'NORMAL';
3c5de62a 242}
243
abf315bb 244# ----------------------------------------------------------------------
245sub equals {
246
247=pod
248
249=head2 equals
250
251Determines if this index is the same as another
252
253 my $isIdentical = $index1->equals( $index2 );
254
255=cut
256
257 my $self = shift;
258 my $other = shift;
259 my $case_insensitive = shift;
d990d84b 260 my $ignore_index_names = shift;
abf315bb 261
262 return 0 unless $self->SUPER::equals($other);
da5a1bae 263
d990d84b 264 unless ($ignore_index_names) {
da5a1bae 265 unless ((!$self->name && ($other->name eq $other->fields->[0])) ||
266 (!$other->name && ($self->name eq $self->fields->[0]))) {
d990d84b 267 return 0 unless $case_insensitive ? uc($self->name) eq uc($other->name) : $self->name eq $other->name;
da5a1bae 268 }
d990d84b 269 }
82f6b50e 270 #return 0 unless $self->is_valid eq $other->is_valid;
abf315bb 271 return 0 unless $self->type eq $other->type;
c243ec2b 272
273 # Check fields, regardless of order
274 my %otherFields = (); # create a hash of the other fields
275 foreach my $otherField ($other->fields) {
276 $otherField = uc($otherField) if $case_insensitive;
277 $otherFields{$otherField} = 1;
278 }
279 foreach my $selfField ($self->fields) { # check for self fields in hash
280 $selfField = uc($selfField) if $case_insensitive;
281 return 0 unless $otherFields{$selfField};
282 delete $otherFields{$selfField};
283 }
284 # Check all other fields were accounted for
285 return 0 unless keys %otherFields == 0;
286
4598b71c 287 return 0 unless $self->_compare_objects(scalar $self->options, scalar $other->options);
288 return 0 unless $self->_compare_objects(scalar $self->extra, scalar $other->extra);
abf315bb 289 return 1;
290}
3c5de62a 291
292# ----------------------------------------------------------------------
25868dc9 293sub DESTROY {
3c5de62a 294 my $self = shift;
25868dc9 295 undef $self->{'table'}; # destroy cyclical reference
3c5de62a 296}
297
2981;
299
300# ----------------------------------------------------------------------
301
302=pod
303
304=head1 AUTHOR
305
c3b0b535 306Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
3c5de62a 307
308=cut