From: Tomas Doran Date: Sun, 24 Jul 2011 18:04:41 +0000 (+0100) Subject: Clean handling of --pid and --background up a bit X-Git-Tag: 5.89003~22 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fa38321d7ff95ec0a6ac3b4a74156794f8459722;hp=0d47e0404be82f525100b303c07e4acd14c6fea5 Clean handling of --pid and --background up a bit --- diff --git a/Makefile.PL b/Makefile.PL index aa2fdbf..ba07f88 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -53,7 +53,6 @@ requires 'MRO::Compat'; requires 'MooseX::Getopt' => '0.30'; requires 'MooseX::Types'; requires 'MooseX::Types::Common::Numeric'; -requires 'MooseX::Daemonize' => '0.13'; requires 'String::RewritePrefix' => '0.004'; # Catalyst::Utils::resolve_namespace requires 'Plack' => '0.9974'; # IIS6 fix middleware requires 'Plack::Middleware::ReverseProxy' => '0.04'; diff --git a/TODO b/TODO index 75ed7a3..2d32722 100644 --- a/TODO +++ b/TODO @@ -30,7 +30,7 @@ http://github.com/willert/catalyst-plugin-log4perl-simple/tree ### Blockers - * Test all the options work on all of the scripts + * Ensure all PSGI related FIXMEs in docs or code are in this list * Fix nginx middlewares so that they are generic, or can somehow be used by people with their own .psgi files * Fix a sane / nicer way to do custom engines. diff --git a/lib/Catalyst/Script/Server.pm b/lib/Catalyst/Script/Server.pm index 3afb632..328773c 100644 --- a/lib/Catalyst/Script/Server.pm +++ b/lib/Catalyst/Script/Server.pm @@ -3,6 +3,7 @@ use Moose; use MooseX::Types::Common::Numeric qw/PositiveInt/; use MooseX::Types::Moose qw/ArrayRef Str Bool Int RegexpRef/; use Catalyst::Utils; +use Try::Tiny; use namespace::autoclean; with 'Catalyst::ScriptRole'; @@ -46,18 +47,24 @@ has port => ( use Moose::Util::TypeConstraints; class_type 'MooseX::Daemonize::Pid::File'; -subtype 'MyStr', as Str, where { 1 }; # FIXME - Fuck ugly! -coerce 'MooseX::Daemonize::Pid::File', from 'MyStr', via { - Class::MOP::load_class("MooseX::Daemonize::Pid::File"); +subtype 'Catalyst::Script::Server::Types::Pidfile', + as 'MooseX::Daemonize::Pid::File', + where { 1 }; +coerce 'Catalyst::Script::Server::Types::Pidfile', from Str, via { + try { Class::MOP::load_class("MooseX::Daemonize::Pid::File") } + catch { + warn("Could not load MooseX::Daemonize::Pid::File, needed for --pid option\n"); + exit 1; + }; MooseX::Daemonize::Pid::File->new( file => $_ ); }; MooseX::Getopt::OptionTypeMap->add_option_type_to_map( - 'MooseX::Daemonize::Pid::File' => '=s', + 'Catalyst::Script::Server::Types::Pidfile' => '=s', ); has pidfile => ( traits => [qw(Getopt)], cmd_aliases => 'pid', - isa => 'MooseX::Daemonize::Pid::File', + isa => 'Catalyst::Script::Server::Types::Pidfile', is => 'ro', documentation => 'Specify a pidfile', coerce => 1, @@ -69,7 +76,11 @@ sub BUILD { if ($self->background) { # FIXME - This is evil. Should we just add MX::Daemonize to the deps? - Class::MOP::load_class('MooseX::Daemonize::Core'); + try { Class::MOP::load_class('MooseX::Daemonize::Core') } + catch { + warn("MooseX::Daemonize is needed for the --background option\n"); + exit 1; + }; MooseX::Daemonize::Core->meta->apply($self); } } @@ -124,7 +135,7 @@ has restart_delay => ( { use Moose::Util::TypeConstraints; - my $tc = subtype as RegexpRef; + my $tc = subtype 'Catalyst::Script::Server::Types::RegexpRef', as RegexpRef; coerce $tc, from Str, via { qr/$_/ }; MooseX::Getopt::OptionTypeMap->add_option_type_to_map($tc => '=s');