change method used to determine if a table is valid
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Table.pm
CommitLineData
4f4fd192 1use MooseX::Declare;
0c4b09d0 2class SQL::Translator::Object::Table extends SQL::Translator::Object is dirty {
160f1f55 3 use MooseX::Types::Moose qw(Any Bool HashRef Int Str);
5f184270 4 use MooseX::MultiMethods;
a499b4bd 5 use SQL::Translator::Types qw(Column Constraint Index Schema Sequence ColumnHash ConstraintHash IndexHash SequenceHash IxHash);
46ad29bb 6 use SQL::Translator::Object::Column;
e2b6425f 7 use SQL::Translator::Object::Constraint;
a499b4bd 8 use Tie::IxHash;
0c4b09d0 9 clean;
10
11 use overload
12 '""' => sub { shift->name },
13 'bool' => sub { $_[0]->name || $_[0] },
14 fallback => 1,
15 ;
16
4f4fd192 17 has 'name' => (
18 is => 'rw',
19 isa => Str,
20 required => 1
21 );
22
23 has 'columns' => (
4f4fd192 24 is => 'rw',
a499b4bd 25 isa => IxHash, #ColumnHash,
720dcdc3 26 handles => {
a499b4bd 27 exists_column => 'EXISTS',
28 column_ids => 'Keys',
29 get_columns => 'Values',
30 get_column => 'FETCH',
31 add_column => 'STORE',
32 remove_column => 'DELETE',
33 has_columns => 'Length',
34 clear_columns => 'CLEAR',
4f4fd192 35 },
a499b4bd 36 coerce => 1,
37 default => sub { Tie::IxHash->new() }
4f4fd192 38 );
39
40 has 'indexes' => (
4f4fd192 41 is => 'rw',
a499b4bd 42 isa => IxHash, #IndexHash,
720dcdc3 43 handles => {
a499b4bd 44 exists_index => 'EXISTS',
45 index_ids => 'Keys',
46 get_indices => 'Values',
47 get_index => 'FETCH',
48 add_index => 'STORE',
49 remove_index => 'DELETE',
4f4fd192 50 },
a499b4bd 51 coerce => 1,
52 default => sub { Tie::IxHash->new() }
4f4fd192 53 );
54
55 has 'constraints' => (
4f4fd192 56 is => 'rw',
a499b4bd 57 isa => IxHash, #ConstraintHash,
720dcdc3 58 handles => {
a499b4bd 59 exists_constraint => 'EXISTS',
60 constraint_ids => 'Keys',
61 get_constraints => 'Values',
62 get_constraint => 'FETCH',
63 add_constraint => 'STORE',
64 remove_constraint => 'DELETE',
4f4fd192 65 },
a499b4bd 66 coerce => 1,
67 default => sub { Tie::IxHash->new() }
4f4fd192 68 );
69
70 has 'sequences' => (
4f4fd192 71 is => 'rw',
a499b4bd 72 isa => IxHash, #SequenceHash,
720dcdc3 73 handles => {
a499b4bd 74 exists_sequence => 'EXISTS',
75 sequence_ids => 'Keys',
76 get_sequences => 'Values',
77 get_sequence => 'FETCH',
78 add_sequence => 'STORE',
79 remove_sequence => 'DELETE',
4f4fd192 80 },
a499b4bd 81 coerce => 1,
82 default => sub { Tie::IxHash->new() },
4f4fd192 83 );
f78a484a 84
2850baeb 85 has 'schema' => (
4f4fd192 86 is => 'rw',
2850baeb 87 isa => Schema,
88 weak_ref => 1,
4f4fd192 89 );
49063029 90
2850baeb 91 has 'temporary' => (
b750d2f1 92 is => 'rw',
2850baeb 93 isa => Bool,
94 default => 0
b750d2f1 95 );
96
160f1f55 97 has '_order' => (
98 is => 'rw',
99 isa => Int,
100 );
101
de1e817e 102 around add_column(Column $column does coerce) {
103 die "Can't use column name " . $column->name if $self->exists_column($column->name) || $column->name eq '';
e1bef8b9 104 $column->table($self);
00e28941 105 $self->$orig($column->name, $column);
106 return $self->get_column($column->name);
de1e817e 107 }
e1bef8b9 108
78963c00 109 around add_constraint(Constraint $constraint does coerce) {
f34b818d 110 my $name = $constraint->name;
111 if ($name eq '') {
c27fec89 112 my $idx = 0;
113 while ($self->exists_constraint('ANON' . $idx)) { $idx++ }
114 $name = 'ANON' . $idx;
f34b818d 115 }
e1bef8b9 116 $constraint->table($self);
aa20eb7f 117 if ($constraint->has_type && $constraint->type eq 'PRIMARY KEY') {
118 $self->get_column($_)->is_primary_key(1) for $constraint->column_ids;
119 }
00e28941 120 $self->$orig($name, $constraint);
121 return $self->get_constraint($name);
f34b818d 122 }
e1bef8b9 123
706009e5 124 around add_index(Index $index does coerce) {
c27fec89 125 my $name = $index->name;
126 if ($name eq '') {
127 my $idx = 0;
128 while ($self->exists_index('ANON' . $idx)) { $idx++ }
129 $name = 'ANON' . $idx;
130 }
e1bef8b9 131 $index->table($self);
00e28941 132 $self->$orig($name, $index);
133 return $self->get_index($name);
c27fec89 134 }
e1bef8b9 135
00e28941 136 around add_sequence(Sequence $sequence does coerce) {
137 $self->$orig($sequence->name, $sequence);
138 return $self->get_sequence($sequence->name);
139 }
51700db2 140
e2b6425f 141 multi method primary_key {
142 my $constraints = $self->constraints;
143 for my $key (keys %$constraints) {
144 return $constraints->{$key} if $constraints->{$key}{type} eq 'PRIMARY KEY';
145 }
146 return undef;
147 }
148
0a7ce17e 149 multi method primary_key(Str $column) {
150 die "Column $column does not exist!" unless $self->exists_column($column);
151 $self->get_column($column)->is_primary_key(1);
e2b6425f 152
153 my $primary_key = $self->primary_key;
154 unless (defined $primary_key) {
155 $primary_key = SQL::Translator::Object::Constraint->new({ type => 'PRIMARY KEY' });
156 $self->add_constraint($primary_key);
157 }
eea42e0a 158 $primary_key->add_field({ name => $column }) unless $primary_key->exists_column($column); ## FIX ME, change back to add_column once around add_column(coerce .. ) works
e2b6425f 159 return $primary_key;
0a7ce17e 160 }
b750d2f1 161
160f1f55 162 multi method order(Int $order) { $self->_order($order); }
163 multi method order {
164 my $order = $self->_order;
165 unless (defined $order && $order) {
166 my $tables = Tie::IxHash->new( map { $_->name => $_ } $self->schema->get_tables );
167 $order = $tables->Indices($self->name) || 0; $order++;
168 $self->_order($order);
169 }
170 return $order;
171 }
172
5e41f308 173 method is_valid { return $self->has_columns ? 1 : undef }
079f0c78 174
40fb14a9 175 before name($name?) { die "Can't use table name $name, table already exists" if $name && $self->schema->exists_table($name) && $name ne $self->name }
079f0c78 176
bebe11d5 177 around remove_column(Column|Str $column, Int :$cascade = 0) {
178 my $name = is_Column($column) ? $column->name : $column;
179 die "Can't drop non-existant column " . $name unless $self->exists_column($name);
180 $self->$orig($name);
40fb14a9 181 }
182
bebe11d5 183 around remove_index(Index|Str $index) {
184 my $name = is_Index($index) ? $index->name : $index;
185 die "Can't drop non-existant index " . $name unless $self->exists_index($name);
186 $self->$orig($name);
1dde2bfe 187 }
188
bebe11d5 189 around remove_constraint(Constraint|Str $constraint) {
190 my $name = is_Constraint($constraint) ? $constraint->name : $constraint;
191 die "Can't drop non-existant constraint " . $name unless $self->exists_constraint($name);
192 $self->$orig($name);
1dde2bfe 193 }
46ad29bb 194
195 around BUILDARGS(ClassName $self: @args) {
196 my $args = $self->$orig(@args);
197
198 my $fields = delete $args->{fields};
199
46ad29bb 200 $args->{columns}{$_} = SQL::Translator::Object::Column->new( name => $_ ) for @$fields;
201
202 return $args;
203 }
4f4fd192 204}