X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=d63ab8724745a3cd4e3ea006a441c497e1aa4b27;hb=65586a18685daa023a1a623cf228943e4a4f830d;hp=e3c289540c49fd94080739ef700b2c0627cc6236;hpb=dbd6b243d9481d628842f8cda4f5c7c604fbac33;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index e3c2895..d63ab87 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -100,7 +100,7 @@ sub mk_component { || eval { @{ [ getpwuid($<) ] }[6] } || 'A clever guy'; $self->{base} = File::Spec->catdir( $FindBin::Bin, '..' ); - unless ( $_[0] =~ /^(?:model|m|view|v|controller|c)$/i ) { + unless ( $_[0] =~ /^(?:model|view|controller)$/i ) { my $helper = shift; my @args = @_; my $class = "Catalyst::Helper::$helper"; @@ -121,12 +121,15 @@ sub mk_component { my $helper = shift; my @args = @_; return 0 if $name =~ /[^\w\:]/; - $type = 'M' if $type =~ /model|m/i; - $type = 'V' if $type =~ /view|v/i; - $type = 'C' if $type =~ /controller|c/i; - $self->{type} = $type; - $self->{name} = $name; - $self->{class} = "$app\::$type\::$name"; + $type = lc $type; + $self->{long_type} = ucfirst $type; + $type = 'M' if $type =~ /model/i; + $type = 'V' if $type =~ /view/i; + $type = 'C' if $type =~ /controller/i; + $type = $self->{long_type} unless $self->{short}; + $self->{type} = $type; + $self->{name} = $name; + $self->{class} = "$app\::$type\::$name"; # Class my $appdir = File::Spec->catdir( split /\:\:/, $app ); @@ -137,8 +140,8 @@ sub mk_component { my @path = split /\:\:/, $name; $file = pop @path; $path = File::Spec->catdir( $path, @path ); - mkpath [$path]; } + $self->mk_dir($path); $file = File::Spec->catfile( $path, "$file.pm" ); $self->{file} = $file; @@ -148,9 +151,7 @@ sub mk_component { # Helper if ($helper) { - my $comp = 'Model'; - $comp = 'View' if $type eq 'V'; - $comp = 'Controller' if $type eq 'C'; + my $comp = $self->{long_type}; my $class = "Catalyst::Helper::$comp\::$helper"; eval "require $class"; @@ -246,7 +247,9 @@ sub next_test { } my $dir = $self->{test_dir}; my $type = $self->{type}; - return File::Spec->catfile( $dir, $type, $tname ); + $dir = File::Spec->catdir( $dir, $type ); + $self->mk_dir($dir); + return File::Spec->catfile( $dir, $tname ); } =head3 render_file @@ -284,18 +287,38 @@ sub _mk_dirs { $self->mk_dir( $self->{images} ); $self->{t} = File::Spec->catdir( $self->{dir}, 't' ); $self->mk_dir( $self->{t} ); - $self->mk_dir( File::Spec->catdir( $self->{t}, 'M' ) ); - $self->mk_dir( File::Spec->catdir( $self->{t}, 'V' ) ); - $self->mk_dir( File::Spec->catdir( $self->{t}, 'C' ) ); + + if ( $self->{short} ) { + $self->mk_dir( File::Spec->catdir( $self->{t}, 'M' ) ); + $self->mk_dir( File::Spec->catdir( $self->{t}, 'V' ) ); + $self->mk_dir( File::Spec->catdir( $self->{t}, 'C' ) ); + } + else { + $self->mk_dir( File::Spec->catdir( $self->{t}, 'Model' ) ); + $self->mk_dir( File::Spec->catdir( $self->{t}, 'View' ) ); + $self->mk_dir( File::Spec->catdir( $self->{t}, 'Controller' ) ); + } + $self->{class} = File::Spec->catdir( split( /\:\:/, $self->{name} ) ); $self->{mod} = File::Spec->catdir( $self->{lib}, $self->{class} ); $self->mk_dir( $self->{mod} ); - $self->{m} = File::Spec->catdir( $self->{mod}, 'M' ); - $self->mk_dir( $self->{m} ); - $self->{v} = File::Spec->catdir( $self->{mod}, 'V' ); - $self->mk_dir( $self->{v} ); - $self->{c} = File::Spec->catdir( $self->{mod}, 'C' ); - $self->mk_dir( $self->{c} ); + + if ( $self->{short} ) { + $self->{m} = File::Spec->catdir( $self->{mod}, 'M' ); + $self->mk_dir( $self->{m} ); + $self->{v} = File::Spec->catdir( $self->{mod}, 'V' ); + $self->mk_dir( $self->{v} ); + $self->{c} = File::Spec->catdir( $self->{mod}, 'C' ); + $self->mk_dir( $self->{c} ); + } + else { + $self->{m} = File::Spec->catdir( $self->{mod}, 'Model' ); + $self->mk_dir( $self->{m} ); + $self->{v} = File::Spec->catdir( $self->{mod}, 'View' ); + $self->mk_dir( $self->{v} ); + $self->{c} = File::Spec->catdir( $self->{mod}, 'Controller' ); + $self->mk_dir( $self->{c} ); + } $self->{base} = File::Spec->rel2abs( $self->{dir} ); } @@ -644,11 +667,24 @@ __fastcgi__ BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' } use strict; +use Getopt::Long; +use Pod::Usage; use FindBin; use lib "$FindBin::Bin/../lib"; use [% name %]; -[% name %]->run; +my $help = 0; +my ( $listen, $nproc ); + +GetOptions( + 'help|?' => \$help, + 'listen|l=s' => \$listen, + 'nproc|n=i' => \$nproc, +); + +pod2usage(1) if $help; + +[% name %]->run( $listen, { nproc => $nproc } ); 1; @@ -658,7 +694,16 @@ use [% name %]; =head1 SYNOPSIS -See L +[% appprefix %]_fastcgi.pl [options] + + Options: + -? -help display this help and exits + -l -listen Socket path to listen on + (defaults to standard input) + can be HOST:PORT, :PORT or a + filesystem path + -n -nproc specify number of processes to keep + to serve requests (defaults to 1) =head1 DESCRIPTION @@ -689,7 +734,6 @@ use Getopt::Long; use Pod::Usage; use FindBin; use lib "$FindBin::Bin/../lib"; -use [% name %]; my $fork = 0; my $help = 0; @@ -713,6 +757,12 @@ GetOptions( pod2usage(1) if $help; +if ( $restart ) { + $ENV{CATALYST_ENGINE} = 'HTTP::Restarter'; +} + +require [% name %]; + [% name %]->run( $port, $host, { argv => \@argv, 'fork' => $fork, @@ -831,13 +881,19 @@ use Catalyst::Helper; my $help = 0; my $nonew = 0; +my $short = 0; -GetOptions( 'help|?' => \$help, - 'nonew' => \$nonew ); +GetOptions( + 'help|?' => \$help, + 'nonew' => \$nonew, + 'short' => \$short + ); pod2usage(1) if ( $help || !$ARGV[0] ); -my $helper = Catalyst::Helper->new({'.newfiles' => !$nonew}); +my $helper = + Catalyst::Helper->new( { '.newfiles' => !$nonew, short => $short } ); + pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV ); 1; @@ -851,8 +907,9 @@ pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV ); [% appprefix %]_create.pl [options] model|view|controller name [helper] [options] Options: - -help display this help and exits - -nonew don't create a .new file where a file to be created exists + -help display this help and exits + -nonew don't create a .new file where a file to be created exists + -short use short types, like C instead of Controller... Examples: [% appprefix %]_create.pl controller My::Controller @@ -892,11 +949,11 @@ package [% class %]; use strict; use warnings; -use base 'Catalyst::Base'; +use base 'Catalyst::[% long_type %]'; =head1 NAME -[% class %] - Catalyst component +[% class %] - Catalyst [% long_type %] =head1 SYNOPSIS @@ -904,8 +961,8 @@ See L<[% app %]> =head1 DESCRIPTION -Catalyst component. -[% IF type == 'C' %] +Catalyst [% long_type %]. +[% IF long_type == 'Controller' %] =head1 METHODS =over 4 @@ -938,7 +995,7 @@ it under the same terms as Perl itself. 1; __comptest__ -[% IF type == 'C' %] +[% IF long_type == 'Controller' %] use Test::More tests => 3; use_ok( Catalyst::Test, '[% app %]' ); use_ok('[% class %]');