upgrading a schema to use_namespaces=1 will also turn on components=InflateColumn...
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Model / DBIC / Schema / Types.pm
CommitLineData
113354d6 1package # hide from PAUSE
2 Catalyst::Model::DBIC::Schema::Types;
0fbbc8d5 3
4cbe63e7 4use MooseX::Types -declare => [qw/
2fa0a1f1 5 ConnectInfo ConnectInfos Replicants SchemaClass LoadedClass CreateOption
d816d7bf 6 Schema
4cbe63e7 7/];
0fbbc8d5 8
bd309c0c 9use Carp::Clan '^Catalyst::Model::DBIC::Schema';
2fa0a1f1 10use MooseX::Types::Moose qw/ArrayRef HashRef CodeRef Str ClassName/;
0fbbc8d5 11use Scalar::Util 'reftype';
c4fee9b8 12use List::MoreUtils 'all';
0fbbc8d5 13
14use namespace::clean -except => 'meta';
15
7314403a 16subtype LoadedClass,
0fbbc8d5 17 as ClassName;
18
7314403a 19coerce LoadedClass,
3f139b02 20 from Str,
21 via { Class::MOP::load_class($_); $_ };
22
2fa0a1f1 23subtype SchemaClass,
24 as ClassName,
25 where { $_->isa('DBIx::Class::Schema') };
26
27SchemaClass->coercion(LoadedClass->coercion);
28
d816d7bf 29class_type Schema, { class => 'DBIx::Class::Schema' };
30
0fbbc8d5 31subtype ConnectInfo,
32 as HashRef,
2fa0a1f1 33 where { exists $_->{dsn} || exists $_->{dbh_maker} },
0fbbc8d5 34 message { 'Does not look like a valid connect_info' };
35
36coerce ConnectInfo,
37 from Str,
7b1fe8c2 38 via(\&_coerce_connect_info_from_str),
0fbbc8d5 39 from ArrayRef,
2fa0a1f1 40 via(\&_coerce_connect_info_from_arrayref),
41 from CodeRef,
42 via { +{ dbh_maker => $_ } },
43;
0fbbc8d5 44
45# { connect_info => [ ... ] } coercion would be nice, but no chained coercions
c4fee9b8 46# yet.
47# Also no coercion from base type (yet,) but in Moose git already.
0fbbc8d5 48# from HashRef,
49# via { $_->{connect_info} },
50
c4fee9b8 51subtype ConnectInfos,
52 as ArrayRef[ConnectInfo],
53 message { "Not a valid array of connect_info's" };
54
55coerce ConnectInfos,
56 from Str,
2fa0a1f1 57 via { [ _coerce_connect_info_from_str() ] },
58 from CodeRef,
59 via { [ +{ dbh_maker => $_ } ] },
7b1fe8c2 60 from ArrayRef,
61 via { [ map {
62 !ref $_ ? _coerce_connect_info_from_str()
63 : reftype $_ eq 'HASH' ? $_
2fa0a1f1 64 : reftype $_ eq 'CODE' ? +{ dbh_maker => $_ }
7b1fe8c2 65 : reftype $_ eq 'ARRAY' ? _coerce_connect_info_from_arrayref()
2fa0a1f1 66 : croak 'invalid connect_info'
7b1fe8c2 67 } @$_ ] };
c4fee9b8 68
4cbe63e7 69# Helper stuff
70
71subtype CreateOption,
72 as Str,
73 where { /^(?:static|dynamic)\z/ },
74 message { "Invalid create option, must be one of 'static' or 'dynamic'" };
75
c4fee9b8 76sub _coerce_connect_info_from_arrayref {
77 my %connect_info;
78
7b1fe8c2 79 # make a copy
80 $_ = [ @$_ ];
81
2fa0a1f1 82 my $slurp_hashes = sub {
c4fee9b8 83 for my $i (0..1) {
84 my $extra = shift @$_;
85 last unless $extra;
2fa0a1f1 86 croak "invalid connect_info"
87 unless ref $extra && reftype $extra eq 'HASH';
c4fee9b8 88
89 %connect_info = (%connect_info, %$extra);
90 }
2fa0a1f1 91 };
c4fee9b8 92
2fa0a1f1 93 if (!ref $_->[0]) { # array style
94 $connect_info{dsn} = shift @$_;
95 $connect_info{user} = shift @$_ if !ref $_->[0];
96 $connect_info{password} = shift @$_ if !ref $_->[0];
97
98 $slurp_hashes->();
99
100 croak "invalid connect_info" if @$_;
101 } elsif (ref $_->[0] && reftype $_->[0] eq 'CODE') {
102 $connect_info{dbh_maker} = shift @$_;
103
104 $slurp_hashes->();
105
106 croak "invalid connect_info" if @$_;
107 } elsif (@$_ == 1 && ref $_->[0] && reftype $_->[0] eq 'HASH') {
c4fee9b8 108 return $_->[0];
109 } else {
2fa0a1f1 110 croak "invalid connect_info";
c4fee9b8 111 }
112
2fa0a1f1 113 unless ($connect_info{dbh_maker}) {
114 for my $key (qw/user password/) {
115 $connect_info{$key} = ''
116 if not defined $connect_info{$key};
117 }
7b1fe8c2 118 }
119
c4fee9b8 120 \%connect_info;
121}
122
7b1fe8c2 123sub _coerce_connect_info_from_str {
124 +{ dsn => $_, user => '', password => '' }
125}
126
0fbbc8d5 1271;