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