move extra down to Object.pm
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Index.pm
1 use MooseX::Declare;
2 class SQL::Translator::Object::Index {
3     use MooseX::Types::Moose qw(ArrayRef HashRef Str);
4     use MooseX::AttributeHelpers;
5     use SQL::Translator::Types qw(Column Table);
6     extends 'SQL::Translator::Object';
7
8     has 'table' => (
9         is => 'rw',
10         isa => Table,
11         required => 1,
12         weak_ref => 1,
13     );
14     
15     has 'name' => (
16         is => 'rw',
17         isa => Str,
18         required => 1
19     );
20
21     has 'columns' => (
22         metaclass => 'Collection::Hash',
23         is => 'rw',
24         isa => HashRef[Column],
25         provides => {
26             exists => 'exists_column',
27             keys   => 'column_ids',
28             values => 'get_columns',
29             get    => 'get_column',
30             set    => 'add_column',
31         },
32         default => sub { my %hash = (); tie %hash, 'Tie::IxHash'; return \%hash },
33     );
34
35     has 'type' => (
36         is => 'rw',
37         isa => Str,
38         required => 1
39     );
40
41     around add_column(Column $column) { $self->$orig($column->name, $column) }
42
43     method get_fields { $self->get_columns }
44     method fields { $self->column_ids }
45 }