X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=51039cabc5bf05c3eb9081f4a135134bb7fda6d8;hb=94a6e0e40e4507a79c747bd41cbf9bfecdd58914;hp=d63c7c107da4bf08a7098935acfe6ee59998b46e;hpb=0f895006548490d5382421201b2f3f2f2406b7c6;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index d63c7c1..51039ca 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -2,7 +2,6 @@ package Catalyst::Helper; use strict; use base 'Class::Accessor::Fast'; -use Config; use File::Spec; use File::Path; use IO::File; @@ -64,7 +63,7 @@ sub mk_app { $self->{dir} =~ s/\:\:/-/g; $self->{script} = File::Spec->catdir( $self->{dir}, 'script' ); $self->{appprefix} = Catalyst::Utils::appprefix($name); - $self->{startperl} = $Config{startperl}; + $self->{startperl} = '#!/usr/bin/perl -w'; $self->{scriptgen} = $Catalyst::CATALYST_SCRIPT_GEN || 4; $self->{author} = $self->{author} = $ENV{'AUTHOR'} || eval { @{ [ getpwuid($<) ] }[6] } @@ -80,6 +79,7 @@ sub mk_app { $self->_mk_apptest; $self->_mk_images; $self->_mk_favicon; + $self->_mk_package; } $self->_mk_cgi; $self->_mk_fastcgi; @@ -441,6 +441,14 @@ sub _mk_favicon { } +sub _mk_package { + my $self = shift; + my $script = $self->{script}; + my $appprefix = $self->{appprefix}; + $self->render_file( 'package', "$script\/$appprefix\_package.pl" ); + chmod 0700, "$script/$appprefix\_package.pl"; +} + =head1 HELPERS Helpers are classes that provide two methods. @@ -690,17 +698,23 @@ use lib "$FindBin::Bin/../lib"; use [% name %]; my $help = 0; -my ( $listen, $nproc ); +my ( $listen, $nproc, $pidfile ); GetOptions( - 'help|?' => \$help, - 'listen|l=s' => \$listen, - 'nproc|n=i' => \$nproc, + 'help|?' => \$help, + 'listen|l=s' => \$listen, + 'nproc|n=i' => \$nproc, + 'pidfile|p=s' => \$pidfile, ); pod2usage(1) if $help; -[% name %]->run( $listen, { nproc => $nproc } ); +[% name %]->run( + $listen, + { nproc => $nproc, + pidfile => $pidfile, + } +); 1; @@ -719,7 +733,10 @@ pod2usage(1) if $help; can be HOST:PORT, :PORT or a filesystem path -n -nproc specify number of processes to keep - to serve requests (defaults to 1) + to serve requests (defaults to 1, + requires -listen) + -p -pidfile specify filename for pid file + (requires -listen) =head1 DESCRIPTION @@ -954,7 +971,73 @@ This behavior can be suppressed with the C<-nonew> option. =head1 AUTHOR -Sebastian Riedel, C +Sebastian Riedel, C + +=head1 COPYRIGHT + +Copyright 2004 Sebastian Riedel. All rights reserved. + +This library is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut +__package__ +[% startperl %] -w + +use strict; +use Getopt::Long; +use Pod::Usage; +use Catalyst::PAR; + +my $engine = 'CGI'; +my $help = 0; +my $par = '[% appprefix %].par'; + +GetOptions( + 'engine=s' => \$engine, + 'help|?' => \$help, + 'par=s' => \$par +); + +pod2usage(1) if $help; + +Catalyst::PAR->new->package( { + engine => $engine, + par => $par, + class => '[% name %]' +} ); + +1; + +=head1 NAME + +[% appprefix %]_package.pl - Package a Catalyst application + +=head1 SYNOPSIS + +[% appprefix %]_package.pl + + Options: + -engine engine to use for dependency detection + -help display this help and exits + -par name for the par archive + + Examples: + [% appprefix %]_package.pl [% appprefix %].par FastCGI + [% appprefix %]_package.pl foo_linux_i386_apache2.par Apache2 + + See also: + perldoc Catalyst::Manual + perldoc Catalyst::Manual::Intro + perldoc pp + +=head1 DESCRIPTION + +Package a Catalyst application with L. + +=head1 AUTHOR + +Sebastian Riedel, C =head1 COPYRIGHT