X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FScript%2FServer.pm;h=c3c6584831aab9072896c0f13eaa51053f55c55c;hb=3dcfb4c8551d0c36477d7f62d87c5cb022dd0c27;hp=1c3cf994651fadfd964c962512089ff96270892c;hpb=cbaaecc0ac826c500c8c947cff8e3a0d3b4fe0da;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Script/Server.pm b/lib/Catalyst/Script/Server.pm index 1c3cf99..c3c6584 100644 --- a/lib/Catalyst/Script/Server.pm +++ b/lib/Catalyst/Script/Server.pm @@ -6,12 +6,13 @@ BEGIN { } use Moose; -use Catalyst::Restarter; use MooseX::Types::Moose qw/ArrayRef Str Bool Int/; use namespace::autoclean; with 'Catalyst::ScriptRole'; +__PACKAGE__->meta->get_attribute('help')->cmd_aliases('?'); + has debug => ( traits => [qw(Getopt)], cmd_aliases => 'd', @@ -22,10 +23,11 @@ has debug => ( has host => ( traits => [qw(Getopt)], + cmd_aliases => 'h', isa => Str, is => 'ro', default => 'localhost', - documentation => 'Specify a host for the server to run on', + documentation => 'Specify an IP on this host for the server to bind to', ); has fork => ( @@ -33,16 +35,17 @@ has fork => ( cmd_aliases => 'f', isa => Bool, is => 'ro', - documentation => 'Fork the server', + default => 0, + documentation => 'Fork the server to be able to serve multiple requests at once', ); -has listen => ( +has port => ( traits => [qw(Getopt)], - cmd_aliases => 'l', + cmd_aliases => 'p', isa => Int, is => 'ro', default => 3000, - documentation => 'Specify a different listening port', + documentation => 'Specify a different listening port (to the default port 3000)', ); has pidfile => ( @@ -58,8 +61,8 @@ has keepalive => ( cmd_aliases => 'k', isa => Bool, is => 'ro', - documentation => 'Server keepalive', - + default => 0, + documentation => 'Support keepalive', ); has background => ( @@ -67,6 +70,7 @@ has background => ( cmd_aliases => 'bg', isa => Bool, is => 'ro', + default => 0, documentation => 'Run in the background', ); @@ -75,7 +79,8 @@ has restart => ( cmd_aliases => 'r', isa => Bool, is => 'ro', - documentation => 'use Catalyst::Restarter to detect code changes', + default => 0, + documentation => 'use Catalyst::Restarter to detect code changes and restart the application', ); has restart_directory => ( @@ -83,26 +88,26 @@ has restart_directory => ( cmd_aliases => 'rdir', isa => ArrayRef[Str], is => 'ro', - predicate => '_has_restart_directory', documentation => 'Restarter directory to watch', + predicate => '_has_restart_directory', ); has restart_delay => ( traits => [qw(Getopt)], - cmd_aliases => 'rdel', + cmd_aliases => 'rd', isa => Int, is => 'ro', - predicate => '_has_restart_delay', documentation => 'Set a restart delay', + predicate => '_has_restart_delay', ); has restart_regex => ( traits => [qw(Getopt)], - cmd_aliases => 'rxp', + cmd_aliases => 'rr', isa => Str, is => 'ro', - predicate => '_has_restart_regex', documentation => 'Restart regex', + predicate => '_has_restart_regex', ); has follow_symlinks => ( @@ -110,37 +115,35 @@ has follow_symlinks => ( cmd_aliases => 'sym', isa => Bool, is => 'ro', - predicate => '_has_follow_symlinks', + default => 0, documentation => 'Follow symbolic links', - ); sub run { my ($self) = shift; - if ( $self->debug ) { - $ENV{CATALYST_DEBUG} = 1; - } - - # If we load this here, then in the case of a restarter, it does not - # need to be reloaded for each restart. - require Catalyst; - - # If this isn't done, then the Catalyst::Devel tests for the restarter - # fail. - $| = 1 if $ENV{HARNESS_ACTIVE}; + local $ENV{CATALYST_DEBUG} = 1 + if $self->debug; if ( $self->restart ) { die "Cannot run in the background and also watch for changed files.\n" if $self->background; + # If we load this here, then in the case of a restarter, it does not + # need to be reloaded for each restart. + require Catalyst; + + # If this isn't done, then the Catalyst::Devel tests for the restarter + # fail. + $| = 1 if $ENV{HARNESS_ACTIVE}; + require Catalyst::Restarter; my $subclass = Catalyst::Restarter->pick_subclass; my %args; $args{follow_symlinks} = $self->follow_symlinks - if $self->_has_follow_symlinks; + if $self->follow_symlinks; $args{directories} = $self->restart_directory if $self->_has_restart_directory; $args{sleep_interval} = $self->restart_delay @@ -150,8 +153,8 @@ sub run { my $restarter = $subclass->new( %args, - start_sub => sub { $self->_run }, - argv => \$self->ARGV, + start_sub => sub { $self->_run_application }, + argv => $self->ARGV, ); $restarter->run_and_watch; @@ -166,7 +169,7 @@ sub run { sub _application_args { my ($self) = shift; return ( - $self->listen, + $self->port, $self->host, { map { $_ => $self->$_ } qw/ @@ -197,8 +200,8 @@ Catalyst::Script::Server - Catalyst test server -d --debug force debug mode -f --fork handle each request in a new process (defaults to false) - -h --help display this help and exits - --host host (defaults to all) + --help display this help and exits + -h --host host (defaults to all) -p --port port (defaults to 3000) -k --keepalive enable keep-alive connections -r --restart restart when files get modified