change usage of Tie::IxHash
[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);
de1e817e 105 return $self->$orig($column->name, $column);
106 }
e1bef8b9 107
78963c00 108 around add_constraint(Constraint $constraint does coerce) {
f34b818d 109 my $name = $constraint->name;
110 if ($name eq '') {
c27fec89 111 my $idx = 0;
112 while ($self->exists_constraint('ANON' . $idx)) { $idx++ }
113 $name = 'ANON' . $idx;
f34b818d 114 }
e1bef8b9 115 $constraint->table($self);
aa20eb7f 116 if ($constraint->has_type && $constraint->type eq 'PRIMARY KEY') {
117 $self->get_column($_)->is_primary_key(1) for $constraint->column_ids;
118 }
f34b818d 119 $self->$orig($name, $constraint)
120 }
e1bef8b9 121
706009e5 122 around add_index(Index $index does coerce) {
c27fec89 123 my $name = $index->name;
124 if ($name eq '') {
125 my $idx = 0;
126 while ($self->exists_index('ANON' . $idx)) { $idx++ }
127 $name = 'ANON' . $idx;
128 }
e1bef8b9 129 $index->table($self);
c27fec89 130 $self->$orig($name, $index)
131 }
e1bef8b9 132
78963c00 133 around add_sequence(Sequence $sequence does coerce) { $self->$orig($sequence->name, $sequence) }
51700db2 134
e2b6425f 135 multi method primary_key {
136 my $constraints = $self->constraints;
137 for my $key (keys %$constraints) {
138 return $constraints->{$key} if $constraints->{$key}{type} eq 'PRIMARY KEY';
139 }
140 return undef;
141 }
142
0a7ce17e 143 multi method primary_key(Str $column) {
144 die "Column $column does not exist!" unless $self->exists_column($column);
145 $self->get_column($column)->is_primary_key(1);
e2b6425f 146
147 my $primary_key = $self->primary_key;
148 unless (defined $primary_key) {
149 $primary_key = SQL::Translator::Object::Constraint->new({ type => 'PRIMARY KEY' });
150 $self->add_constraint($primary_key);
151 }
eea42e0a 152 $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 153 return $primary_key;
0a7ce17e 154 }
b750d2f1 155
160f1f55 156 multi method order(Int $order) { $self->_order($order); }
157 multi method order {
158 my $order = $self->_order;
159 unless (defined $order && $order) {
160 my $tables = Tie::IxHash->new( map { $_->name => $_ } $self->schema->get_tables );
161 $order = $tables->Indices($self->name) || 0; $order++;
162 $self->_order($order);
163 }
164 return $order;
165 }
166
079f0c78 167 method is_valid { return $self->get_columns ? 1 : undef }
079f0c78 168
40fb14a9 169 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 170
bebe11d5 171 around remove_column(Column|Str $column, Int :$cascade = 0) {
172 my $name = is_Column($column) ? $column->name : $column;
173 die "Can't drop non-existant column " . $name unless $self->exists_column($name);
174 $self->$orig($name);
40fb14a9 175 }
176
bebe11d5 177 around remove_index(Index|Str $index) {
178 my $name = is_Index($index) ? $index->name : $index;
179 die "Can't drop non-existant index " . $name unless $self->exists_index($name);
180 $self->$orig($name);
1dde2bfe 181 }
182
bebe11d5 183 around remove_constraint(Constraint|Str $constraint) {
184 my $name = is_Constraint($constraint) ? $constraint->name : $constraint;
185 die "Can't drop non-existant constraint " . $name unless $self->exists_constraint($name);
186 $self->$orig($name);
1dde2bfe 187 }
46ad29bb 188
189 around BUILDARGS(ClassName $self: @args) {
190 my $args = $self->$orig(@args);
191
192 my $fields = delete $args->{fields};
193
46ad29bb 194 $args->{columns}{$_} = SQL::Translator::Object::Column->new( name => $_ ) for @$fields;
195
196 return $args;
197 }
4f4fd192 198}