Fix test
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Server.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::Server;
2
53b08cf9 3BEGIN {
4 $ENV{CATALYST_ENGINE} ||= 'HTTP';
53b08cf9 5 require Catalyst::Engine::HTTP;
6}
5b923b0b 7
a3ca4468 8use Moose;
883c37ef 9use MooseX::Types::Common::Numeric qw/PositiveInt/;
880d1f8b 10use MooseX::Types::Moose qw/ArrayRef Str Bool Int RegexpRef/;
b89d8b98 11use Catalyst::Utils;
59804176 12use namespace::autoclean;
a3ca4468 13
d3082fac 14with 'Catalyst::ScriptRole';
a3ca4468 15
f59a9d1b 16has debug => (
4387c692 17 traits => [qw(Getopt)],
18 cmd_aliases => 'd',
19 isa => Bool,
20 is => 'ro',
d3082fac 21 documentation => q{Force debug mode},
e46bf32c 22);
23
57dc50b0 24has host => (
4387c692 25 traits => [qw(Getopt)],
26 cmd_aliases => 'h',
27 isa => Str,
28 is => 'ro',
b1bfeea6 29 # N.B. undef (the default) means we bind on all interfaces on the host.
3bd410a9 30 documentation => 'Specify a hostname or IP on this host for the server to bind to',
41b55019 31);
90b481b1 32
57dc50b0 33has fork => (
4387c692 34 traits => [qw(Getopt)],
35 cmd_aliases => 'f',
36 isa => Bool,
37 is => 'ro',
38 default => 0,
53c6ec79 39 documentation => 'Fork the server to be able to serve multiple requests at once',
90b481b1 40);
41
bc6fa9fc 42has port => (
4387c692 43 traits => [qw(Getopt)],
44 cmd_aliases => 'p',
883c37ef 45 isa => PositiveInt,
4387c692 46 is => 'ro',
b89d8b98 47 default => sub {
56eb9db4 48 Catalyst::Utils::env_value(shift->application_name, 'port') || 3000
b89d8b98 49 },
53c6ec79 50 documentation => 'Specify a different listening port (to the default port 3000)',
204c6935 51);
52
57dc50b0 53has pidfile => (
4387c692 54 traits => [qw(Getopt)],
55 cmd_aliases => 'pid',
56 isa => Str,
57 is => 'ro',
d3082fac 58 documentation => 'Specify a pidfile',
41b55019 59);
60
57dc50b0 61has keepalive => (
4387c692 62 traits => [qw(Getopt)],
63 cmd_aliases => 'k',
64 isa => Bool,
65 is => 'ro',
66 default => 0,
53c6ec79 67 documentation => 'Support keepalive',
bd31e11f 68);
69
57dc50b0 70has background => (
4387c692 71 traits => [qw(Getopt)],
72 cmd_aliases => 'bg',
73 isa => Bool,
74 is => 'ro',
75 default => 0,
d3082fac 76 documentation => 'Run in the background',
57dc50b0 77);
4b3881d4 78
8f01ed5f 79has restart => (
4387c692 80 traits => [qw(Getopt)],
81 cmd_aliases => 'r',
82 isa => Bool,
83 is => 'ro',
56eb9db4 84 default => sub {
85 Catalyst::Utils::env_value(shift->application_name, 'reload') || 0;
86 },
53c6ec79 87 documentation => 'use Catalyst::Restarter to detect code changes and restart the application',
57dc50b0 88);
a7dea640 89
90has restart_directory => (
4387c692 91 traits => [qw(Getopt)],
1c517146 92 cmd_aliases => [ 'rdir', 'restartdirectory' ],
4387c692 93 isa => ArrayRef[Str],
94 is => 'ro',
d3082fac 95 documentation => 'Restarter directory to watch',
4387c692 96 predicate => '_has_restart_directory',
8f01ed5f 97);
98
57dc50b0 99has restart_delay => (
4387c692 100 traits => [qw(Getopt)],
101 cmd_aliases => 'rd',
102 isa => Int,
103 is => 'ro',
d3082fac 104 documentation => 'Set a restart delay',
4387c692 105 predicate => '_has_restart_delay',
70871584 106);
107
880d1f8b 108{
109 use Moose::Util::TypeConstraints;
110
111 my $tc = subtype as RegexpRef;
112 coerce $tc, from Str, via { qr/$_/ };
113
114 MooseX::Getopt::OptionTypeMap->add_option_type_to_map($tc => '=s');
115
116 has restart_regex => (
4387c692 117 traits => [qw(Getopt)],
118 cmd_aliases => 'rr',
119 isa => $tc,
120 coerce => 1,
121 is => 'ro',
880d1f8b 122 documentation => 'Restart regex',
4387c692 123 predicate => '_has_restart_regex',
880d1f8b 124 );
125}
ee7aabd6 126
57dc50b0 127has follow_symlinks => (
4387c692 128 traits => [qw(Getopt)],
129 cmd_aliases => 'sym',
130 isa => Bool,
131 is => 'ro',
132 default => 0,
d3082fac 133 documentation => 'Follow symbolic links',
4387c692 134 predicate => '_has_follow_symlinks',
bbd42ac8 135);
a3ca4468 136
3453b929 137sub _restarter_args {
138 my $self = shift;
34be7d45 139
10255473 140 return (
34be7d45 141 argv => $self->ARGV,
142 start_sub => sub { $self->_run_application },
143 ($self->_has_follow_symlinks ? (follow_symlinks => $self->follow_symlinks) : ()),
144 ($self->_has_restart_delay ? (sleep_interval => $self->restart_delay) : ()),
145 ($self->_has_restart_directory ? (directories => $self->restart_directory) : ()),
880d1f8b 146 ($self->_has_restart_regex ? (filter => $self->restart_regex) : ()),
a024e9ad 147 ),
148 (
11606a74 149 map { $_ => $self->$_ } qw(application_name host port debug pidfile)
34be7d45 150 );
3453b929 151}
152
75fe0bb3 153has restarter_class => (
154 is => 'ro',
155 isa => Str,
156 lazy => 1,
157 default => sub {
158 my $self = shift;
159 Catalyst::Utils::env_value($self->application_name, 'RESTARTER') || 'Catalyst::Restarter';
160 }
161);
162
a3ca4468 163sub run {
3453b929 164 my $self = shift;
57dc50b0 165
53c6ec79 166 local $ENV{CATALYST_DEBUG} = 1
167 if $self->debug;
abee32cb 168
a7dea640 169 if ( $self->restart ) {
170 die "Cannot run in the background and also watch for changed files.\n"
171 if $self->background;
172
53c6ec79 173 # If we load this here, then in the case of a restarter, it does not
174 # need to be reloaded for each restart.
175 require Catalyst;
176
177 # If this isn't done, then the Catalyst::Devel tests for the restarter
178 # fail.
179 $| = 1 if $ENV{HARNESS_ACTIVE};
180
a024e9ad 181 Catalyst::Utils::ensure_class_loaded($self->restarter_class);
a7dea640 182
75fe0bb3 183 my $subclass = $self->restarter_class->pick_subclass;
a7dea640 184
a7dea640 185 my $restarter = $subclass->new(
3453b929 186 $self->_restarter_args()
a7dea640 187 );
188
189 $restarter->run_and_watch;
190 }
191 else {
d3082fac 192 $self->_run_application;
a7dea640 193 }
194
195
57dc50b0 196}
197
d3082fac 198sub _application_args {
a7dea640 199 my ($self) = shift;
d3082fac 200 return (
bc6fa9fc 201 $self->port,
d3082fac 202 $self->host,
57dc50b0 203 {
30b70903 204 argv => $self->ARGV,
d3082fac 205 map { $_ => $self->$_ } qw/
206 fork
207 keepalive
208 background
209 pidfile
210 keepalive
211 follow_symlinks
212 /,
213 },
a3ca4468 214 );
a3ca4468 215}
5b923b0b 216
2e81e132 217__PACKAGE__->meta->make_immutable;
5b923b0b 218
0ba6e8aa 2191;
e46bf32c 220
221=head1 NAME
222
cbaaecc0 223Catalyst::Script::Server - Catalyst test server
e46bf32c 224
225=head1 SYNOPSIS
226
cbaaecc0 227 myapp_server.pl [options]
e46bf32c 228
229 Options:
4b3881d4 230 -d --debug force debug mode
231 -f --fork handle each request in a new process
e46bf32c 232 (defaults to false)
3dcfb4c8 233 --help display this help and exits
234 -h --host host (defaults to all)
4b3881d4 235 -p --port port (defaults to 3000)
236 -k --keepalive enable keep-alive connections
237 -r --restart restart when files get modified
238 (defaults to false)
87f5a448 239 --rd --restart_delay delay between file checks
e46bf32c 240 (ignored if you have Linux::Inotify2 installed)
87f5a448 241 --rr --restart_regex regex match files that trigger
e46bf32c 242 a restart when modified
243 (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
87f5a448 244 --rdir --restart_directory the directory to search for
6ab9f4af 245 modified files, can be set multiple times
e46bf32c 246 (defaults to '[SCRIPT_DIR]/..')
4b3881d4 247 --sym --follow_symlinks follow symlinks in search directories
e46bf32c 248 (defaults to false. this is a no-op on Win32)
4b3881d4 249 --bg --background run the process in the background
250 --pid --pidfile specify filename for pid file
e46bf32c 251
252 See also:
253 perldoc Catalyst::Manual
254 perldoc Catalyst::Manual::Intro
255
256=head1 DESCRIPTION
257
cbaaecc0 258Run a Catalyst test server for this application.
e46bf32c 259
260=head1 AUTHORS
261
262Catalyst Contributors, see Catalyst.pm
263
264=head1 COPYRIGHT
265
266This library is free software. You can redistribute it and/or modify
267it under the same terms as Perl itself.
268
269=cut