5f99592884cd150f48c9136134d608c3003d2c82
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Constraint.pm
1 use MooseX::Declare;
2 class SQL::Translator::Object::Constraint extends SQL::Translator::Object {
3     use MooseX::Types::Moose qw(ArrayRef Bool HashRef Maybe Str Undef);
4     use MooseX::MultiMethods;
5     use SQL::Translator::Types qw(Column MatchType Table);
6
7     has 'table' => (
8         is => 'rw',
9         isa => Table,
10         weak_ref => 1,
11     );
12     
13     has 'name' => (
14         is => 'rw',
15         isa => Str,
16         default => '',
17         required => 1
18     );
19     
20     has 'columns' => (
21         traits => ['Hash'],
22         is => 'rw',
23         isa => HashRef[Column],
24         handles => {
25             exists_column => 'exists',
26             column_ids    => 'keys',
27             get_columns   => 'values',
28             get_column    => 'get',
29             add_column    => 'set',
30             clear_columns => 'clear',
31         },
32         default => sub { my %hash = (); tie %hash, 'Tie::IxHash'; return \%hash },
33     );
34     
35     has 'type' => (
36         is => 'rw',
37         isa => Str,
38         predicate => 'has_type',
39     );
40
41     has 'deferrable' => (
42         is => 'rw',
43         isa => Bool,
44         default => 1
45     );
46
47     has 'expression' => (
48         is => 'rw',
49         isa => Str,
50     );
51
52     has 'reference_table' => (
53         isa => Maybe[Str],
54         is => 'rw',
55     );
56
57     has 'reference_columns' => (
58         isa => ArrayRef,
59         traits => ['Array'],
60         handles => {
61             reference_columns => 'elements',
62         },
63         default => sub { [] },
64     );
65
66     has 'match_type' => (
67         isa => MatchType,
68         is => 'rw',
69         coerce => 1,
70         lazy => 1,
71         default => ''
72     );
73
74     around add_column(Column $column) {
75         if ($self->has_type && $self->type eq 'PRIMARY KEY') {
76             $column->is_primary_key(1);
77         }
78         $self->$orig($column->name, $column)
79     }
80
81     method is_valid { return $self->has_type && scalar $self->column_ids ? 1 : undef }
82 }