01c0d7dfea352c2149a1a2eac044a85bf7d61d80
[catagits/Catalyst-Model-DBIC-Schema.git] / lib / Catalyst / Helper / Model / DBIC / Schema.pm
1 package Catalyst::Helper::Model::DBIC::Schema;
2
3 use namespace::autoclean;
4 use Moose;
5 no warnings 'uninitialized';
6
7 our $VERSION = '0.30';
8 $VERSION = eval $VERSION;
9
10 use Carp;
11 use Tie::IxHash ();
12 use Data::Dumper ();
13 use List::Util 'first';
14 use MooseX::Types::Moose qw/Str HashRef Bool ArrayRef/;
15 use Catalyst::Model::DBIC::Schema::Types 'CreateOption';
16 use List::MoreUtils 'firstidx';
17 use Scalar::Util 'looks_like_number';
18
19 =head1 NAME
20
21 Catalyst::Helper::Model::DBIC::Schema - Helper for DBIC Schema Models
22
23 =head1 SYNOPSIS
24
25   script/create.pl model CatalystModelName DBIC::Schema MyApp::SchemaClass \
26     [ create=dynamic | create=static ] [ traits=trait1,trait2... ] \
27     [ Schema::Loader opts ] [ dsn user pass ] \
28     [ other connect_info args ]
29
30 =head1 DESCRIPTION
31
32 Helper for the DBIC Schema Models.
33
34 =head2 Arguments:
35
36 C<CatalystModelName> is the short name for the Catalyst Model class
37 being generated (i.e. callable with C<$c-E<gt>model('CatalystModelName')>).
38
39 C<MyApp::SchemaClass> is the fully qualified classname of your Schema,
40 which might or might not yet exist.  Note that you should have a good
41 reason to create this under a new global namespace, otherwise use an
42 existing top level namespace for your schema class.
43
44 C<create=dynamic> instructs this Helper to generate the named Schema
45 class for you, basing it on L<DBIx::Class::Schema::Loader> (which
46 means the table information will always be dynamically loaded at
47 runtime from the database).
48
49 C<create=static> instructs this Helper to generate the named Schema
50 class for you, using L<DBIx::Class::Schema::Loader> in "one shot"
51 mode to create a standard, manually-defined L<DBIx::Class::Schema>
52 setup, based on what the Loader sees in your database at this moment.
53 A Schema/Model pair generated this way will not require
54 L<DBIx::Class::Schema::Loader> at runtime, and will not automatically
55 adapt itself to changes in your database structure.  You can edit
56 the generated classes by hand to refine them.
57
58 C<traits> is the list of traits to apply to the model, see
59 L<Catalyst::Model::DBIC::Schema> for details.
60
61 C<Schema::Loader opts> are described in L</TYPICAL EXAMPLES> below.
62
63 C<connect_info> arguments are the same as what
64 DBIx::Class::Schema::connect expects, and are storage_type-specific.
65 For DBI-based storage, these arguments are the dsn, username,
66 password, and connect options, respectively.  These are optional for
67 existing Schemas, but required if you use either of the C<create=>
68 options.
69
70 username and password can be omitted for C<SQLite> dsns.
71
72 Use of either of the C<create=> options requires L<DBIx::Class::Schema::Loader>.
73
74 =head1 TYPICAL EXAMPLES
75
76 Use DBIx::Class::Schema::Loader to create a static DBIx::Class::Schema,
77 and a Model which references it:
78
79   script/myapp_create.pl model CatalystModelName DBIC::Schema \
80     MyApp::SchemaClass create=static dbi:mysql:foodb myuname mypass
81
82 Same, with extra connect_info args
83 user and pass can be omitted for sqlite, since they are always empty
84
85   script/myapp_create.pl model CatalystModelName DBIC::Schema \
86     MyApp::SchemaClass create=static dbi:SQLite:foo.db \
87     AutoCommit=1 cursor_class=DBIx::Class::Cursor::Cached \
88     on_connect_do='["select 1", "select 2"]' quote_char='"'
89
90 If using a 2 character quote_char:
91
92   script/myapp_create.pl ... quote_char='[]'
93
94 B<ON WINDOWS COMMAND LINES QUOTING RULES ARE DIFFERENT>
95
96 In 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 \
101     on_connect_do="[\"select 1\", \"select 2\"]" quote_char="\""
102
103 Same, but with extra Schema::Loader args (separate multiple values by commas):
104
105   script/myapp_create.pl model CatalystModelName DBIC::Schema \
106     MyApp::SchemaClass create=static db_schema=foodb components=Foo,Bar \
107     exclude='^(wibble|wobble)$' moniker_map='{ foo => "FOO" }' \
108     dbi:Pg:dbname=foodb myuname mypass
109
110 See L<DBIx::Class::Schema::Loader::Base> for a list of options
111
112 Create a dynamic DBIx::Class::Schema::Loader-based Schema,
113 and a Model which references it (B<DEPRECATED>):
114
115   script/myapp_create.pl model CatalystModelName DBIC::Schema \
116     MyApp::SchemaClass create=dynamic dbi:mysql:foodb myuname mypass
117
118 Reference an existing Schema of any kind, and provide some connection information for ->config:
119
120   script/myapp_create.pl model CatalystModelName DBIC::Schema \
121     MyApp::SchemaClass dbi:mysql:foodb myuname mypass
122
123 Same, but don't supply connect information yet (you'll need to do this
124 in your app config, or [not recommended] in the schema itself).
125
126   script/myapp_create.pl model ModelName DBIC::Schema My::SchemaClass
127
128 =cut
129
130 has helper => (is => 'ro', isa => 'Catalyst::Helper', required => 1);
131 has create => (is => 'rw', isa => CreateOption);
132 has args => (is => 'ro', isa => ArrayRef);
133 has traits => (is => 'rw', isa => ArrayRef);
134 has schema_class => (is => 'ro', isa => Str, required => 1);
135 has loader_args => (is => 'rw', isa => HashRef);
136 has connect_info => (is => 'rw', isa => HashRef);
137 has old_schema => (is => 'rw', isa => Bool, lazy_build => 1);
138 has components => (is => 'rw', isa => ArrayRef);
139
140 =head1 METHODS
141
142 =head2 mk_compclass
143
144 This is called by L<Catalyst::Helper> with the commandline args to generate the
145 files.
146
147 =cut
148
149 sub mk_compclass {
150     my ($package, $helper, $schema_class, @args) = @_;
151
152     my $self = $package->new(
153         helper => $helper,
154         schema_class => $schema_class,
155         args => \@args
156     );
157
158     $self->run;
159 }
160
161 sub BUILD {
162     my $self   = shift;
163     my $helper = $self->helper;
164     my @args   = @{ $self->args || [] };
165
166     $helper->{schema_class} = $self->schema_class;
167
168     @args = $self->_cleanup_args(\@args);
169
170     my ($traits_idx, $traits);
171     if (($traits_idx = firstidx { ($traits) = /^traits=(\S*)\z/ } @args) != -1) {
172         my @traits = split /,/ => $traits;
173
174         $self->traits(\@traits);
175
176         $helper->{traits} = '['
177             .(join ',' => map { qq{'$_'} } @traits)
178             .']';
179
180         splice @args, $traits_idx, 1, ();
181     }
182
183     if ($args[0] && $args[0] =~ /^create=(\S*)\z/) {
184         $self->create($1);
185         shift @args;
186
187         if (@args) {
188             $self->_parse_loader_args(\@args);
189
190             $helper->{loader_args} = $self->_build_helper_loader_args;
191         }
192     }
193
194     my $dbi_dsn_part;
195     if (first { ($dbi_dsn_part) = /^(dbi):/i } @args) {
196         die
197 qq{DSN must start with 'dbi:' not '$dbi_dsn_part' (case matters!)}
198             if $dbi_dsn_part ne 'dbi';
199
200         $helper->{setup_connect_info} = 1;
201
202         $helper->{connect_info} =
203             $self->_build_helper_connect_info(\@args);
204
205         $self->_parse_connect_info(\@args);
206     }
207
208     $helper->{generator} = ref $self;
209     $helper->{generator_version} = $VERSION;
210 }
211
212 =head2 run
213
214 Can be called on an instance to generate the files.
215
216 =cut
217
218 sub run {
219     my $self = shift;
220
221     if ($self->create eq 'dynamic') {
222         $self->_print_dynamic_deprecation_warning;
223         $self->_gen_dynamic_schema;
224     } elsif ($self->create eq 'static') {
225         $self->_gen_static_schema;
226     }
227
228     $self->_gen_model;
229 }
230
231 sub _parse_loader_args {
232     my ($self, $args) = @_;
233
234     my %loader_args = $self->_read_loader_args($args);
235
236     while (my ($key, $val) = each %loader_args) {
237         next if $key =~ /^(?:components|constraint|exclude)\z/;
238
239         $loader_args{$key} = $self->_eval($val);
240         die "syntax error for loader args key '$key' with value '$val': $@"
241             if $@;
242     }
243
244     my @components =
245     $self->_build_loader_components(delete $loader_args{components});
246
247     $self->components(\@components);
248
249     for my $re_opt (qw/constraint exclude/) {
250         $loader_args{$re_opt} = qr/$loader_args{$re_opt}/
251         if exists $loader_args{$re_opt};
252     }
253
254     tie my %result, 'Tie::IxHash';
255
256     %result = (
257         relationships => 1,
258         (%loader_args ? %loader_args : ()),
259         (!$self->old_schema ? (
260                 use_namespaces => 1
261             ) : ()),
262         (@components ? (
263                 components => \@components
264             ) : ())
265     );
266
267     $self->loader_args(\%result);
268
269     wantarray ? %result : \%result;
270 }
271
272 sub _read_loader_args {
273     my ($self, $args) = @_;
274
275     my %loader_args;
276
277     while (@$args && $args->[0] !~ /^dbi:/i) {
278         my ($key, $val) = split /=/, shift(@$args), 2;
279
280         if ($self->_is_struct($val)) {
281             $loader_args{$key} = $val;
282         } elsif ((my @vals = split /,/ => $val) > 1) {
283             $loader_args{$key} = \@vals;
284         } else {
285             $loader_args{$key} = $val;
286         }
287     }
288
289     wantarray ? %loader_args : \%loader_args;
290 }
291
292 sub _build_helper_loader_args {
293     my $self = shift;
294
295     my $args = $self->loader_args;
296
297     tie my %loader_args, 'Tie::IxHash';
298
299     while (my ($arg, $val) = each %$args) {
300         if (ref $val) {
301             $loader_args{$arg} = $self->_data_struct_to_string($val);
302         } else {
303             $loader_args{$arg} = qq{'$val'};
304         }
305     }
306
307     \%loader_args
308 }
309
310 sub _build_loader_components {
311     my ($self, $components) = @_;
312
313     my @components = $self->old_schema ? () : ('InflateColumn::DateTime');
314
315     if ($components) {
316         $components = [ $components ] if !ref $components;
317         push @components, @$components;
318     }
319
320     wantarray ? @components : \@components;
321 }
322
323 sub _build_helper_connect_info {
324     my ($self, $connect_info) = @_;
325
326     my @connect_info = @$connect_info;
327
328     my ($dsn, $user, $password) = $self->_get_dsn_user_pass(\@connect_info);
329
330     tie my %helper_connect_info, 'Tie::IxHash';
331
332     %helper_connect_info = (
333         dsn => qq{'$dsn'},
334         user => qq{'$user'},
335         password => qq{'$password'}
336     );
337
338     for (@connect_info) {
339         if (/^\s*{.*}\s*\z/) {
340             my $hash = $self->_eval($_);
341             die "Syntax errorr in connect_info hash: $_: $@" if $@;
342             my %hash = %$hash;
343
344             for my $key (keys %hash) {
345                 my $val = $hash{$key};
346
347                 if (ref $val) {
348                     $val = $self->_data_struct_to_string($val);
349                 } else {
350                     $val = $self->_quote($val);
351                 }
352
353                 $helper_connect_info{$key} = $val;
354             }
355
356             next;
357         }
358
359         my ($key, $val) = split /=/, $_, 2;
360
361         if ($key eq 'quote_char') {
362             $helper_connect_info{$key} = length($val) == 1 ?
363                 $self->_quote($val) :
364                 $self->_data_struct_to_string([split //, $val]);
365         } else {
366             $helper_connect_info{$key} = $self->_quote_unless_struct($val);
367         }
368     }
369
370     \%helper_connect_info
371 }
372
373 sub _build_old_schema {
374     my $self = shift;
375
376     my @schema_pm   = split '::', $self->schema_class;
377     $schema_pm[-1] .= '.pm';
378     my $schema_file =
379     File::Spec->catfile($self->helper->{base}, 'lib', @schema_pm);
380
381     if (-f $schema_file) {
382         my $schema_code = do { local (@ARGV, $/) = $schema_file; <> };
383         return 1 if $schema_code =~ /->load_classes/;
384     }
385
386     0;
387 }
388
389 sub _data_struct_to_string {
390     my ($self, $data) = @_;
391
392     local $Data::Dumper::Terse = 1;
393     local $Data::Dumper::Quotekeys = 0;
394     local $Data::Dumper::Indent = 0;
395     local $Data::Dumper::Useqq = 1;
396
397     return Data::Dumper->Dump([$data]);
398 }
399
400 sub _get_dsn_user_pass {
401     my ($self, $connect_info) = @_;
402
403     my $dsn = shift @$connect_info;
404     my ($user, $password);
405
406     if ($dsn =~ /sqlite/i) {
407         ($user, $password) = ('', '');
408         shift @$connect_info while @$connect_info and $connect_info->[0] eq '';
409     } else {
410         ($user, $password) = splice @$connect_info, 0, 2;
411     }
412     
413     ($dsn, $user, $password)
414 }
415
416 sub _parse_connect_info {
417     my ($self, $connect_info) = @_;
418
419     my @connect_info = @$connect_info;
420
421     my ($dsn, $user, $password) = $self->_get_dsn_user_pass(\@connect_info);
422
423     tie my %connect_info, 'Tie::IxHash';
424     @connect_info{qw/dsn user password/} = ($dsn, $user, $password);
425
426     for (@connect_info) {
427         if (/^\s*{.*}\s*\z/) {
428             my $hash = $self->_eval($_);
429             die "Syntax errorr in connect_info hash: $_: $@" if $@;
430
431             %connect_info = (%connect_info, %$hash);
432
433             next;
434         }
435
436         my ($key, $val) = split /=/, $_, 2;
437
438         if ($key eq 'quote_char') {
439             $connect_info{$key} = length($val) == 1 ? $val : [split //, $val];
440         } elsif ($key =~ /^(?:name_sep|limit_dialect)\z/) {
441             $connect_info{$key} = $val;
442         } else {
443             $connect_info{$key} = $self->_eval($val);
444         }
445
446         die "syntax error for connect_info key '$key' with value '$val': $@"
447             if $@;
448     }
449
450     $self->connect_info(\%connect_info);
451
452     \%connect_info
453 }
454
455 sub _is_struct {
456     my ($self, $val) = @_;
457
458     return $val =~ /^\s*[[{]/;
459 }
460
461 sub _quote {
462     my ($self, $val) = @_;
463
464     return 'q{'.$val.'}';
465 }
466
467 sub _quote_unless_struct {
468     my ($self, $val) = @_;
469
470     $val = $self->_quote($val) if not $self->_is_struct($val);
471
472     return $val;
473 }
474
475 sub _eval {
476     my ($self, $code) = @_;
477
478     return $code if looks_like_number $code;
479
480     return $code if $code =~ m{^[\w;:/]*\z};
481
482     return eval "{no strict; $code}";
483 }
484
485 sub _gen_dynamic_schema {
486     my $self = shift;
487
488     my $helper = $self->helper;
489
490     my @schema_parts = split(/\:\:/, $self->schema_class);
491     my $schema_file_part = pop @schema_parts;
492
493     my $schema_dir  = File::Spec->catfile(
494         $helper->{base}, 'lib', @schema_parts
495     );
496     my $schema_file = File::Spec->catfile(
497         $schema_dir, $schema_file_part . '.pm'
498     );
499
500     $helper->mk_dir($schema_dir);
501     $helper->render_file('schemaclass', $schema_file);
502 }
503
504 sub _gen_static_schema {
505     my $self = shift;
506
507     die "cannot load schema without connect info" unless $self->connect_info;
508
509     my $helper = $self->helper;
510
511     my $schema_dir = File::Spec->catfile($helper->{base}, 'lib');
512
513     eval { Class::MOP::load_class('DBIx::Class::Schema::Loader') };
514     die "Cannot load DBIx::Class::Schema::Loader: $@" if $@;
515
516     DBIx::Class::Schema::Loader->import(
517         "dump_to_dir:$schema_dir", 'make_schema_at'
518     );
519
520     make_schema_at(
521         $self->schema_class,
522         $self->loader_args,
523         [$self->connect_info]
524     );
525 }
526
527 sub _gen_model {
528     my $self = shift;
529     my $helper = $self->helper;
530
531     $helper->render_file('compclass', $helper->{file} );
532 }
533
534 sub _print_dynamic_deprecation_warning {
535     warn <<EOF;
536 ************************************ WARNING **********************************
537 * create=dynamic is DEPRECATED, please use create=static instead.             *
538 *******************************************************************************
539 EOF
540     print "Continue? [y/n]: ";
541     chomp(my $response = <STDIN>);
542     exit 0 if $response =~ /^n(o)?\z/;
543 }
544
545 sub _cleanup_args {
546     my ($self, $args) = @_;
547
548 # remove blanks, ie. someoned doing foo \  bar
549     my @res = grep !/^\s+\z/, @$args;
550
551 # remove leading whitespace, ie. foo \ bar
552     s/^\s*// for @res;
553
554     @res
555 }
556
557 =head1 SEE ALSO
558
559 General Catalyst Stuff:
560
561 L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
562 L<Catalyst::Response>, L<Catalyst::Helper>, L<Catalyst>,
563
564 Stuff related to DBIC and this Model style:
565
566 L<DBIx::Class>, L<DBIx::Class::Schema>,
567 L<DBIx::Class::Schema::Loader>, L<Catalyst::Model::DBIC::Schema>
568
569 =head1 AUTHOR
570
571 Brandon L Black, C<blblack@gmail.com>
572
573 Contributors:
574
575 Rafael Kitover, C<rkitover at cpan.org>
576
577 =head1 LICENSE
578
579 This library is free software, you can redistribute it and/or modify
580 it under the same terms as Perl itself.
581
582 =cut
583
584 1;
585
586 __DATA__
587
588 =begin pod_to_ignore
589
590 __schemaclass__
591 package [% schema_class %];
592
593 use strict;
594 use base qw/DBIx::Class::Schema::Loader/;
595
596 __PACKAGE__->loader_options(
597     [%- FOREACH key = loader_args.keys %]
598     [% key %] => [% loader_args.${key} %],
599     [%- END -%]
600
601 );
602
603 =head1 NAME
604
605 [% schema_class %] - L<DBIx::Class::Schema::Loader> class
606
607 =head1 SYNOPSIS
608
609 See L<[% app %]>
610
611 =head1 DESCRIPTION
612
613 Dynamic L<DBIx::Class::Schema::Loader> schema for use in L<[% class %]>
614
615 =head1 GENERATED BY
616
617 [% generator %] - [% generator_version %]
618
619 =head1 AUTHOR
620
621 [% author.replace(',+$', '') %]
622
623 =head1 LICENSE
624
625 This library is free software, you can redistribute it and/or modify
626 it under the same terms as Perl itself.
627
628 =cut
629
630 1;
631
632 __compclass__
633 package [% class %];
634
635 use strict;
636 use base 'Catalyst::Model::DBIC::Schema';
637
638 __PACKAGE__->config(
639     schema_class => '[% schema_class %]',
640     [% IF traits %]traits => [% traits %],[% END %]
641     [% IF setup_connect_info %]connect_info => {
642         [%- FOREACH key = connect_info.keys %]
643         [% key %] => [% connect_info.${key} %],
644         [%- END -%]
645
646     }[% END %]
647 );
648
649 =head1 NAME
650
651 [% class %] - Catalyst DBIC Schema Model
652
653 =head1 SYNOPSIS
654
655 See L<[% app %]>
656
657 =head1 DESCRIPTION
658
659 L<Catalyst::Model::DBIC::Schema> Model using schema L<[% schema_class %]>
660
661 =head1 GENERATED BY
662
663 [% generator %] - [% generator_version %]
664
665 =head1 AUTHOR
666
667 [% author.replace(',+$', '') %]
668
669 =head1 LICENSE
670
671 This library is free software, you can redistribute it and/or modify
672 it under the same terms as Perl itself.
673
674 =cut
675
676 1;
677 __END__
678 # vim:sts=4 sw=4: