Fix test failure caused by hash randomisation in perl 5.17 (RT#82917)
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Helper / Model / DBIC / Schema.pm
CommitLineData
ad91060a 1package Catalyst::Helper::Model::DBIC::Schema;
2
73f72d28 3use namespace::autoclean;
f090a149 4use Moose;
ffbf1967 5no warnings 'uninitialized';
018eb0e2 6
167d6a1e 7our $VERSION = '0.60';
4e251d1a 8$VERSION = eval $VERSION;
2201c2e4 9
0f2fd2c0 10use Carp;
2201c2e4 11use Tie::IxHash ();
12use Data::Dumper ();
c4fee9b8 13use List::Util 'first';
4cbe63e7 14use MooseX::Types::Moose qw/Str HashRef Bool ArrayRef/;
15use Catalyst::Model::DBIC::Schema::Types 'CreateOption';
4cbe63e7 16use List::MoreUtils 'firstidx';
5f9a34d7 17use Scalar::Util 'looks_like_number';
6b6abf77 18use File::Find 'finddepth';
19use Try::Tiny;
1fcd7804 20use Cwd 'getcwd';
2201c2e4 21
ad91060a 22=head1 NAME
23
24Catalyst::Helper::Model::DBIC::Schema - Helper for DBIC Schema Models
25
26=head1 SYNOPSIS
27
2201c2e4 28 script/create.pl model CatalystModelName DBIC::Schema MyApp::SchemaClass \
c34bcab6 29 [ create=dynamic | create=static ] [ traits=trait1,trait2... ] \
2ff00e2b 30 [ Schema::Loader opts ] [ dsn user pass ] \
31 [ other connect_info args ]
0f2fd2c0 32
d89e6c8a 33=head1 DESCRIPTION
34
35Helper for the DBIC Schema Models.
36
37=head2 Arguments:
38
018eb0e2 39C<CatalystModelName> is the short name for the Catalyst Model class
40being generated (i.e. callable with C<$c-E<gt>model('CatalystModelName')>).
6116daed 41
018eb0e2 42C<MyApp::SchemaClass> is the fully qualified classname of your Schema,
6116daed 43which might or might not yet exist. Note that you should have a good
44reason to create this under a new global namespace, otherwise use an
45existing top level namespace for your schema class.
46
018eb0e2 47C<create=dynamic> instructs this Helper to generate the named Schema
6116daed 48class for you, basing it on L<DBIx::Class::Schema::Loader> (which
49means the table information will always be dynamically loaded at
50runtime from the database).
51
018eb0e2 52C<create=static> instructs this Helper to generate the named Schema
6116daed 53class for you, using L<DBIx::Class::Schema::Loader> in "one shot"
54mode to create a standard, manually-defined L<DBIx::Class::Schema>
55setup, based on what the Loader sees in your database at this moment.
56A Schema/Model pair generated this way will not require
57L<DBIx::Class::Schema::Loader> at runtime, and will not automatically
58adapt itself to changes in your database structure. You can edit
59the generated classes by hand to refine them.
60
c34bcab6 61C<traits> is the list of traits to apply to the model, see
2ff00e2b 62L<Catalyst::Model::DBIC::Schema> for details.
63
9d22a568 64C<Schema::Loader opts> are documented in L<DBIx::Class::Schema::Loader::Base>
65and some examples are given in L</TYPICAL EXAMPLES> below.
66
67C<connect_info> arguments are the same as what L<DBIx::Class::Schema/connect>
68expects, and are storage_type-specific. They are documented in
69L<DBIx::Class::Storage::DBI/connect_info>. For DBI-based storage, these
70arguments are the dsn, username, password, and connect options, respectively.
71These are optional for existing Schemas, but required if you use either of the
72C<create=> options.
d89e6c8a 73
a75b6e58 74username and password can be omitted for C<SQLite> dsns.
75
d89e6c8a 76Use of either of the C<create=> options requires L<DBIx::Class::Schema::Loader>.
0b2a7108 77
78=head1 TYPICAL EXAMPLES
79
a75b6e58 80Use DBIx::Class::Schema::Loader to create a static DBIx::Class::Schema,
81and a Model which references it:
82
2201c2e4 83 script/myapp_create.pl model CatalystModelName DBIC::Schema \
84 MyApp::SchemaClass create=static dbi:mysql:foodb myuname mypass
85
a75b6e58 86Same, with extra connect_info args
87user and pass can be omitted for sqlite, since they are always empty
88
2201c2e4 89 script/myapp_create.pl model CatalystModelName DBIC::Schema \
a75b6e58 90 MyApp::SchemaClass create=static dbi:SQLite:foo.db \
2201c2e4 91 AutoCommit=1 cursor_class=DBIx::Class::Cursor::Cached \
f24a5fbb 92 on_connect_do='["select 1", "select 2"]' quote_names=1
c34bcab6 93
a75b6e58 94B<ON WINDOWS COMMAND LINES QUOTING RULES ARE DIFFERENT>
95
96In C<cmd.exe> the above example would be:
97
98 script/myapp_create.pl model CatalystModelName DBIC::Schema \
99 MyApp::SchemaClass create=static dbi:SQLite:foo.db \
100 AutoCommit=1 cursor_class=DBIx::Class::Cursor::Cached \
f24a5fbb 101 on_connect_do="[\"select 1\", \"select 2\"]" quote_names=1
a75b6e58 102
103Same, but with extra Schema::Loader args (separate multiple values by commas):
0b2a7108 104
2201c2e4 105 script/myapp_create.pl model CatalystModelName DBIC::Schema \
106 MyApp::SchemaClass create=static db_schema=foodb components=Foo,Bar \
4cbe63e7 107 exclude='^(wibble|wobble)$' moniker_map='{ foo => "FOO" }' \
2201c2e4 108 dbi:Pg:dbname=foodb myuname mypass
34f036a0 109
ce9e19dc 110Coderefs are also supported:
111
112 script/myapp_create.pl model CatalystModelName DBIC::Schema \
113 MyApp::SchemaClass create=static \
114 inflect_singular='sub { $_[0] =~ /\A(.+?)(_id)?\z/; $1 }' \
115 moniker_map='sub { join(q{}, map ucfirst, split(/[\W_]+/, lc $_[0])); }' \
116 dbi:mysql:foodb myuname mypass
117
a75b6e58 118See L<DBIx::Class::Schema::Loader::Base> for a list of options
119
120Create a dynamic DBIx::Class::Schema::Loader-based Schema,
121and a Model which references it (B<DEPRECATED>):
34f036a0 122
2201c2e4 123 script/myapp_create.pl model CatalystModelName DBIC::Schema \
124 MyApp::SchemaClass create=dynamic dbi:mysql:foodb myuname mypass
ad91060a 125
a75b6e58 126Reference an existing Schema of any kind, and provide some connection information for ->config:
127
2201c2e4 128 script/myapp_create.pl model CatalystModelName DBIC::Schema \
129 MyApp::SchemaClass dbi:mysql:foodb myuname mypass
ad91060a 130
a75b6e58 131Same, but don't supply connect information yet (you'll need to do this
132in your app config, or [not recommended] in the schema itself).
133
d89e6c8a 134 script/myapp_create.pl model ModelName DBIC::Schema My::SchemaClass
ad91060a 135
f090a149 136=cut
137
138has helper => (is => 'ro', isa => 'Catalyst::Helper', required => 1);
4cbe63e7 139has create => (is => 'rw', isa => CreateOption);
140has args => (is => 'ro', isa => ArrayRef);
c34bcab6 141has traits => (is => 'rw', isa => ArrayRef);
61ed82a5 142has schema_class => (is => 'ro', isa => Str, required => 1);
61ed82a5 143has loader_args => (is => 'rw', isa => HashRef);
144has connect_info => (is => 'rw', isa => HashRef);
61ed82a5 145has old_schema => (is => 'rw', isa => Bool, lazy_build => 1);
6b6abf77 146has is_moose_schema => (is => 'rw', isa => Bool, lazy_build => 1);
1fcd7804 147has result_namespace => (is => 'rw', isa => Str, lazy_build => 1);
4cbe63e7 148has components => (is => 'rw', isa => ArrayRef);
f090a149 149
018eb0e2 150=head1 METHODS
ad91060a 151
018eb0e2 152=head2 mk_compclass
ad91060a 153
0fbbc8d5 154This is called by L<Catalyst::Helper> with the commandline args to generate the
155files.
156
ad91060a 157=cut
158
159sub mk_compclass {
2201c2e4 160 my ($package, $helper, $schema_class, @args) = @_;
161
4cbe63e7 162 my $self = $package->new(
163 helper => $helper,
164 schema_class => $schema_class,
165 args => \@args
166 );
0f2fd2c0 167
4cbe63e7 168 $self->run;
169}
170
171sub BUILD {
172 my $self = shift;
173 my $helper = $self->helper;
7dfd616a 174 my @args = @{ $self->args || [] };
4cbe63e7 175
176 $helper->{schema_class} = $self->schema_class;
c4fee9b8 177
178 @args = $self->_cleanup_args(\@args);
d89e6c8a 179
c34bcab6 180 my ($traits_idx, $traits);
181 if (($traits_idx = firstidx { ($traits) = /^traits=(\S*)\z/ } @args) != -1) {
182 my @traits = split /,/ => $traits;
2201c2e4 183
c34bcab6 184 $self->traits(\@traits);
4cbe63e7 185
c34bcab6 186 $helper->{traits} = '['
7dfd616a 187 .(join ',' => map { qq{'$_'} } @traits)
4cbe63e7 188 .']';
189
c34bcab6 190 splice @args, $traits_idx, 1, ();
4cbe63e7 191 }
192
193 if ($args[0] && $args[0] =~ /^create=(\S*)\z/) {
194 $self->create($1);
195 shift @args;
2ff00e2b 196
2201c2e4 197 if (@args) {
198 $self->_parse_loader_args(\@args);
199
4cbe63e7 200 $helper->{loader_args} = $self->_build_helper_loader_args;
ca7cf6f0 201 }
202 }
4cbe63e7 203
ca7cf6f0 204 my $dbi_dsn_part;
205 if (first { ($dbi_dsn_part) = /^(dbi):/i } @args) {
206 die
a4803ca6 207qq{DSN must start with 'dbi:' not '$dbi_dsn_part' (case matters!)}
ca7cf6f0 208 if $dbi_dsn_part ne 'dbi';
a4803ca6 209
ca7cf6f0 210 $helper->{setup_connect_info} = 1;
2201c2e4 211
ca7cf6f0 212 $helper->{connect_info} =
213 $self->_build_helper_connect_info(\@args);
2201c2e4 214
ca7cf6f0 215 $self->_parse_connect_info(\@args);
d89e6c8a 216 }
0f2fd2c0 217
2201c2e4 218 $helper->{generator} = ref $self;
219 $helper->{generator_version} = $VERSION;
4cbe63e7 220}
221
9f7cc709 222=head2 run
223
224Can be called on an instance to generate the files.
225
226=cut
227
4cbe63e7 228sub run {
229 my $self = shift;
2201c2e4 230
4cbe63e7 231 if ($self->create eq 'dynamic') {
c4fee9b8 232 $self->_print_dynamic_deprecation_warning;
2201c2e4 233 $self->_gen_dynamic_schema;
4cbe63e7 234 } elsif ($self->create eq 'static') {
2201c2e4 235 $self->_gen_static_schema;
236 }
237
238 $self->_gen_model;
239}
240
241sub _parse_loader_args {
242 my ($self, $args) = @_;
243
244 my %loader_args = $self->_read_loader_args($args);
245
246 while (my ($key, $val) = each %loader_args) {
247 next if $key =~ /^(?:components|constraint|exclude)\z/;
248
5f9a34d7 249 $loader_args{$key} = $self->_eval($val);
c4fee9b8 250 die "syntax error for loader args key '$key' with value '$val': $@"
2201c2e4 251 if $@;
252 }
253
7e6a622c 254 my @components = $self->_build_loader_components(
255 delete $loader_args{components},
256 $loader_args{use_namespaces},
257 );
2201c2e4 258
4cbe63e7 259 $self->components(\@components);
260
2201c2e4 261 for my $re_opt (qw/constraint exclude/) {
262 $loader_args{$re_opt} = qr/$loader_args{$re_opt}/
263 if exists $loader_args{$re_opt};
264 }
265
266 tie my %result, 'Tie::IxHash';
267
268 %result = (
269 relationships => 1,
6b6abf77 270 use_moose => $self->is_moose_schema ? 1 : 0,
f0279514 271 col_collision_map => 'column_%s',
f090a149 272 (!$self->old_schema ? (
2201c2e4 273 use_namespaces => 1
274 ) : ()),
275 (@components ? (
276 components => \@components
7e6a622c 277 ) : ()),
278 (%loader_args ? %loader_args : ()),
2201c2e4 279 );
280
281 $self->loader_args(\%result);
282
283 wantarray ? %result : \%result;
284}
285
286sub _read_loader_args {
287 my ($self, $args) = @_;
288
289 my %loader_args;
290
a4803ca6 291 while (@$args && $args->[0] !~ /^dbi:/i) {
2201c2e4 292 my ($key, $val) = split /=/, shift(@$args), 2;
ca14239e 293
4cbe63e7 294 if ($self->_is_struct($val)) {
295 $loader_args{$key} = $val;
296 } elsif ((my @vals = split /,/ => $val) > 1) {
2201c2e4 297 $loader_args{$key} = \@vals;
ca14239e 298 } else {
2201c2e4 299 $loader_args{$key} = $val;
f1b4a8fd 300 }
301 }
302
303 # Use args after connect_info as loader args as well, because people always
304 # get the order confused.
305 my $i = 1;
306 if ($args->[0] =~ /sqlite/i) {
307 $i++ if $args->[$i] eq '';
308 $i++ if $args->[$i] eq '';
309 }
310 else {
311 $i += 2;
312 }
313
7dd1b1e9 314 my $have_loader = try {
315 Class::MOP::load_class('DBIx::Class::Schema::Loader::Base');
316 1;
317 };
5a3b72f5 318
7dd1b1e9 319 if ($have_loader) {
320 while (defined $args->[$i]) {
321 $i++ while $self->_is_struct($args->[$i]);
5a3b72f5 322
7dd1b1e9 323 last if not defined $args->[$i];
f1b4a8fd 324
7dd1b1e9 325 my ($key, $val) = split /=/, $args->[$i], 2;
326
327 if (not DBIx::Class::Schema::Loader::Base->can($key)) {
328 $i++;
329 next;
330 }
331
332 if ($self->_is_struct($val)) {
333 $loader_args{$key} = $val;
334 } elsif ((my @vals = split /,/ => $val) > 1) {
335 $loader_args{$key} = \@vals;
336 } else {
337 $loader_args{$key} = $val;
338 }
339
340 splice @$args, $i, 1;
ca14239e 341 }
342 }
343
2201c2e4 344 wantarray ? %loader_args : \%loader_args;
345}
346
347sub _build_helper_loader_args {
348 my $self = shift;
349
350 my $args = $self->loader_args;
351
352 tie my %loader_args, 'Tie::IxHash';
353
354 while (my ($arg, $val) = each %$args) {
355 if (ref $val) {
356 $loader_args{$arg} = $self->_data_struct_to_string($val);
357 } else {
358 $loader_args{$arg} = qq{'$val'};
0b2a7108 359 }
0f2fd2c0 360 }
361
2201c2e4 362 \%loader_args
363}
364
365sub _build_loader_components {
7e6a622c 366 my ($self, $components, $use_namespaces) = @_;
d89e6c8a 367
7e6a622c 368 my @components = $self->old_schema && (not $use_namespaces) ? ()
369 : ('InflateColumn::DateTime');
d89e6c8a 370
2201c2e4 371 if ($components) {
372 $components = [ $components ] if !ref $components;
373 push @components, @$components;
d89e6c8a 374 }
2201c2e4 375
376 wantarray ? @components : \@components;
377}
378
379sub _build_helper_connect_info {
380 my ($self, $connect_info) = @_;
381
382 my @connect_info = @$connect_info;
383
a75b6e58 384 my ($dsn, $user, $password) = $self->_get_dsn_user_pass(\@connect_info);
2201c2e4 385
386 tie my %helper_connect_info, 'Tie::IxHash';
387
388 %helper_connect_info = (
389 dsn => qq{'$dsn'},
390 user => qq{'$user'},
391 password => qq{'$password'}
392 );
393
394 for (@connect_info) {
395 if (/^\s*{.*}\s*\z/) {
5f9a34d7 396 my $hash = $self->_eval($_);
c4fee9b8 397 die "Syntax errorr in connect_info hash: $_: $@" if $@;
2201c2e4 398 my %hash = %$hash;
399
400 for my $key (keys %hash) {
401 my $val = $hash{$key};
402
403 if (ref $val) {
404 $val = $self->_data_struct_to_string($val);
405 } else {
c34bcab6 406 $val = $self->_quote($val);
2201c2e4 407 }
408
409 $helper_connect_info{$key} = $val;
592cd3ae 410 }
2201c2e4 411
412 next;
592cd3ae 413 }
414
2201c2e4 415 my ($key, $val) = split /=/, $_, 2;
1d155058 416
c34bcab6 417 if ($key eq 'quote_char') {
418 $helper_connect_info{$key} = length($val) == 1 ?
419 $self->_quote($val) :
420 $self->_data_struct_to_string([split //, $val]);
421 } else {
422 $helper_connect_info{$key} = $self->_quote_unless_struct($val);
423 }
2201c2e4 424 }
1d155058 425
2201c2e4 426 \%helper_connect_info
427}
1d155058 428
61ed82a5 429sub _build_old_schema {
430 my $self = shift;
431
1fcd7804 432 return $self->result_namespace eq '' ? 1 : 0;
61ed82a5 433}
434
6b6abf77 435sub _build_is_moose_schema {
436 my $self = shift;
437
438 my @schema_parts = split '::', $self->schema_class;
1fcd7804 439
440 my $result_dir = File::Spec->catfile(
441 $self->helper->{base}, 'lib', @schema_parts, $self->result_namespace
442 );
6b6abf77 443
444 # assume yes for new schemas
1fcd7804 445 return 1 if not -d $result_dir;
6b6abf77 446
447 my $uses_moose = 1;
448
1fcd7804 449 my $cwd = getcwd;
450
6b6abf77 451 try {
452 finddepth(sub {
9a6afcd6 453 return if $File::Find::name !~ /\.pm\z/;
454
6b6abf77 455 open my $fh, '<', $File::Find::name
456 or die "Could not open $File::Find::name: $!";
457
458 my $code = do { local $/; <$fh> };
459 close $fh;
460
461 $uses_moose = 0 if $code !~ /\nuse Moose;\n/;
462
463 die;
1fcd7804 464 }, $result_dir);
6b6abf77 465 };
466
1fcd7804 467 chdir $cwd;
468
6b6abf77 469 return $uses_moose;
470}
471
1fcd7804 472sub _build_result_namespace {
473 my $self = shift;
474
475 my @schema_parts = split '::', $self->schema_class;
476 my $schema_pm =
477 File::Spec->catfile($self->helper->{base}, 'lib', @schema_parts) . '.pm';
478
479 if (not -f $schema_pm) {
ed895a51 480 eval { Class::MOP::load_class('DBIx::Class::Schema::Loader') };
1fcd7804 481
482 return 'Result' if $@;
483
a48759dd 484 return (try { DBIx::Class::Schema::Loader->VERSION('0.05') }) ? 'Result' : '';
1fcd7804 485 }
486
487 open my $fh, '<', $schema_pm or die "Could not open $schema_pm: $!";
488 my $code = do { local $/; <$fh> };
489 close $fh;
490
491 my ($result_namespace) = $code =~ /result_namespace => '([^']+)'/;
492
9899ff66 493 return $result_namespace if $result_namespace;
494
495 return '' if $code =~ /->load_classes/;
1fcd7804 496
9899ff66 497 return 'Result';
1fcd7804 498}
499
2201c2e4 500sub _data_struct_to_string {
501 my ($self, $data) = @_;
34f036a0 502
2201c2e4 503 local $Data::Dumper::Terse = 1;
504 local $Data::Dumper::Quotekeys = 0;
f946a000 505 local $Data::Dumper::Sortkeys = 1;
2201c2e4 506 local $Data::Dumper::Indent = 0;
507 local $Data::Dumper::Useqq = 1;
34f036a0 508
2201c2e4 509 return Data::Dumper->Dump([$data]);
510}
34f036a0 511
a75b6e58 512sub _get_dsn_user_pass {
513 my ($self, $connect_info) = @_;
514
515 my $dsn = shift @$connect_info;
516 my ($user, $password);
517
518 if ($dsn =~ /sqlite/i) {
519 ($user, $password) = ('', '');
108a45d1 520 shift @$connect_info while @$connect_info and $connect_info->[0] eq '';
a75b6e58 521 } else {
522 ($user, $password) = splice @$connect_info, 0, 2;
523 }
524
525 ($dsn, $user, $password)
526}
527
2201c2e4 528sub _parse_connect_info {
529 my ($self, $connect_info) = @_;
530
531 my @connect_info = @$connect_info;
532
a75b6e58 533 my ($dsn, $user, $password) = $self->_get_dsn_user_pass(\@connect_info);
2201c2e4 534
535 tie my %connect_info, 'Tie::IxHash';
536 @connect_info{qw/dsn user password/} = ($dsn, $user, $password);
537
538 for (@connect_info) {
539 if (/^\s*{.*}\s*\z/) {
5f9a34d7 540 my $hash = $self->_eval($_);
c4fee9b8 541 die "Syntax errorr in connect_info hash: $_: $@" if $@;
2201c2e4 542
543 %connect_info = (%connect_info, %$hash);
ca14239e 544
2201c2e4 545 next;
ca14239e 546 }
547
2201c2e4 548 my ($key, $val) = split /=/, $_, 2;
549
c34bcab6 550 if ($key eq 'quote_char') {
551 $connect_info{$key} = length($val) == 1 ? $val : [split //, $val];
552 } elsif ($key =~ /^(?:name_sep|limit_dialect)\z/) {
3f139b02 553 $connect_info{$key} = $val;
554 } else {
5f9a34d7 555 $connect_info{$key} = $self->_eval($val);
3f139b02 556 }
557
c4fee9b8 558 die "syntax error for connect_info key '$key' with value '$val': $@"
2201c2e4 559 if $@;
d89e6c8a 560 }
202d09c8 561
2201c2e4 562 $self->connect_info(\%connect_info);
563
564 \%connect_info
565}
566
4cbe63e7 567sub _is_struct {
568 my ($self, $val) = @_;
569
ce9e19dc 570 return $val =~ /^\s*(?:sub|[[{])/;
4cbe63e7 571}
572
c34bcab6 573sub _quote {
574 my ($self, $val) = @_;
575
576 return 'q{'.$val.'}';
577}
578
2201c2e4 579sub _quote_unless_struct {
580 my ($self, $val) = @_;
581
c34bcab6 582 $val = $self->_quote($val) if not $self->_is_struct($val);
2201c2e4 583
c34bcab6 584 return $val;
2201c2e4 585}
586
5f9a34d7 587sub _eval {
588 my ($self, $code) = @_;
589
590 return $code if looks_like_number $code;
591
97631b44 592 return $code if not $self->_is_struct($code);
5f9a34d7 593
594 return eval "{no strict; $code}";
595}
596
2201c2e4 597sub _gen_dynamic_schema {
598 my $self = shift;
599
600 my $helper = $self->helper;
601
602 my @schema_parts = split(/\:\:/, $self->schema_class);
603 my $schema_file_part = pop @schema_parts;
604
605 my $schema_dir = File::Spec->catfile(
606 $helper->{base}, 'lib', @schema_parts
607 );
608 my $schema_file = File::Spec->catfile(
609 $schema_dir, $schema_file_part . '.pm'
610 );
611
612 $helper->mk_dir($schema_dir);
613 $helper->render_file('schemaclass', $schema_file);
614}
615
616sub _gen_static_schema {
617 my $self = shift;
618
c4fee9b8 619 die "cannot load schema without connect info" unless $self->connect_info;
2201c2e4 620
621 my $helper = $self->helper;
622
623 my $schema_dir = File::Spec->catfile($helper->{base}, 'lib');
624
ed895a51 625 try {
626 Class::MOP::load_class('DBIx::Class::Schema::Loader')
627 }
628 catch {
629 die "Cannot load DBIx::Class::Schema::Loader: $_";
630 };
f090a149 631
632 DBIx::Class::Schema::Loader->import(
2201c2e4 633 "dump_to_dir:$schema_dir", 'make_schema_at'
f090a149 634 );
2201c2e4 635
636 make_schema_at(
637 $self->schema_class,
638 $self->loader_args,
639 [$self->connect_info]
640 );
8af34f38 641
642 require lib;
643 lib->import($schema_dir);
644
645 Class::MOP::load_class($self->schema_class);
646
647 my @sources = $self->schema_class->sources;
648
649 if (not @sources) {
650 warn <<'EOF';
651WARNING: No tables found, did you forget to specify db_schema?
652EOF
653 }
2201c2e4 654}
655
2201c2e4 656sub _gen_model {
657 my $self = shift;
658 my $helper = $self->helper;
659
660 $helper->render_file('compclass', $helper->{file} );
ad91060a 661}
662
c4fee9b8 663sub _print_dynamic_deprecation_warning {
664 warn <<EOF;
665************************************ WARNING **********************************
666* create=dynamic is DEPRECATED, please use create=static instead. *
667*******************************************************************************
668EOF
669 print "Continue? [y/n]: ";
670 chomp(my $response = <STDIN>);
671 exit 0 if $response =~ /^n(o)?\z/;
672}
673
674sub _cleanup_args {
675 my ($self, $args) = @_;
676
677# remove blanks, ie. someoned doing foo \ bar
61ed82a5 678 my @res = grep !/^\s+\z/, @$args;
c4fee9b8 679
680# remove leading whitespace, ie. foo \ bar
681 s/^\s*// for @res;
682
683 @res
684}
685
ad91060a 686=head1 SEE ALSO
687
7b39f3f0 688General Catalyst Stuff:
689
ad91060a 690L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
7b39f3f0 691L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst>,
692
693Stuff related to DBIC and this Model style:
694
695L<DBIx::Class>, L<DBIx::Class::Schema>,
ef91bcf9 696L<DBIx::Class::Schema::Loader>, L<Catalyst::Model::DBIC::Schema>
ad91060a 697
698=head1 AUTHOR
699
4e251d1a 700See L<Catalyst::Model::DBIC::Schema/AUTHOR> and
701L<Catalyst::Model::DBIC::Schema/CONTRIBUTORS>.
ad91060a 702
4e251d1a 703=head1 COPYRIGHT
2ff00e2b 704
4e251d1a 705See L<Catalyst::Model::DBIC::Schema/COPYRIGHT>.
2ff00e2b 706
ad91060a 707=head1 LICENSE
708
709This library is free software, you can redistribute it and/or modify
710it under the same terms as Perl itself.
711
712=cut
713
dce0dfe8 7141;
715
ad91060a 716__DATA__
717
5d11d759 718=begin pod_to_ignore
719
d89e6c8a 720__schemaclass__
721package [% schema_class %];
722
723use strict;
724use base qw/DBIx::Class::Schema::Loader/;
725
726__PACKAGE__->loader_options(
2201c2e4 727 [%- FOREACH key = loader_args.keys %]
728 [% key %] => [% loader_args.${key} %],
729 [%- END -%]
730
d89e6c8a 731);
732
733=head1 NAME
734
2201c2e4 735[% schema_class %] - L<DBIx::Class::Schema::Loader> class
d89e6c8a 736
737=head1 SYNOPSIS
738
739See L<[% app %]>
740
741=head1 DESCRIPTION
742
2201c2e4 743Dynamic L<DBIx::Class::Schema::Loader> schema for use in L<[% class %]>
744
745=head1 GENERATED BY
746
747[% generator %] - [% generator_version %]
d89e6c8a 748
749=head1 AUTHOR
750
2201c2e4 751[% author.replace(',+$', '') %]
d89e6c8a 752
753=head1 LICENSE
754
755This library is free software, you can redistribute it and/or modify
756it under the same terms as Perl itself.
757
758=cut
759
7601;
761
ad91060a 762__compclass__
763package [% class %];
764
765use strict;
766use base 'Catalyst::Model::DBIC::Schema';
767
768__PACKAGE__->config(
0f2fd2c0 769 schema_class => '[% schema_class %]',
c34bcab6 770 [% IF traits %]traits => [% traits %],[% END %]
2201c2e4 771 [% IF setup_connect_info %]connect_info => {
772 [%- FOREACH key = connect_info.keys %]
773 [% key %] => [% connect_info.${key} %],
774 [%- END -%]
775
776 }[% END %]
ad91060a 777);
778
779=head1 NAME
780
1aeb6e1e 781[% class %] - Catalyst DBIC Schema Model
2201c2e4 782
ad91060a 783=head1 SYNOPSIS
784
785See L<[% app %]>
786
787=head1 DESCRIPTION
788
d89e6c8a 789L<Catalyst::Model::DBIC::Schema> Model using schema L<[% schema_class %]>
ad91060a 790
2201c2e4 791=head1 GENERATED BY
792
793[% generator %] - [% generator_version %]
794
ad91060a 795=head1 AUTHOR
796
2201c2e4 797[% author.replace(',+$', '') %]
ad91060a 798
799=head1 LICENSE
800
801This library is free software, you can redistribute it and/or modify
802it under the same terms as Perl itself.
803
804=cut
805
8061;
a75b6e58 807__END__
808# vim:sts=4 sw=4: