Add a few tests
[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) : ()),
34be7d45 147 );
3453b929 148}
149
75fe0bb3 150has restarter_class => (
151 is => 'ro',
152 isa => Str,
153 lazy => 1,
154 default => sub {
155 my $self = shift;
156 Catalyst::Utils::env_value($self->application_name, 'RESTARTER') || 'Catalyst::Restarter';
157 }
158);
159
a3ca4468 160sub run {
3453b929 161 my $self = shift;
57dc50b0 162
53c6ec79 163 local $ENV{CATALYST_DEBUG} = 1
164 if $self->debug;
abee32cb 165
a7dea640 166 if ( $self->restart ) {
167 die "Cannot run in the background and also watch for changed files.\n"
168 if $self->background;
169
53c6ec79 170 # If we load this here, then in the case of a restarter, it does not
171 # need to be reloaded for each restart.
172 require Catalyst;
173
174 # If this isn't done, then the Catalyst::Devel tests for the restarter
175 # fail.
176 $| = 1 if $ENV{HARNESS_ACTIVE};
177
75fe0bb3 178 Catalyst::Utils::load_class($self->restarter_class);
a7dea640 179
75fe0bb3 180 my $subclass = $self->restarter_class->pick_subclass;
a7dea640 181
a7dea640 182 my $restarter = $subclass->new(
3453b929 183 $self->_restarter_args()
a7dea640 184 );
185
186 $restarter->run_and_watch;
187 }
188 else {
d3082fac 189 $self->_run_application;
a7dea640 190 }
191
192
57dc50b0 193}
194
d3082fac 195sub _application_args {
a7dea640 196 my ($self) = shift;
d3082fac 197 return (
bc6fa9fc 198 $self->port,
d3082fac 199 $self->host,
57dc50b0 200 {
30b70903 201 argv => $self->ARGV,
d3082fac 202 map { $_ => $self->$_ } qw/
203 fork
204 keepalive
205 background
206 pidfile
207 keepalive
208 follow_symlinks
209 /,
210 },
a3ca4468 211 );
a3ca4468 212}
5b923b0b 213
2e81e132 214__PACKAGE__->meta->make_immutable;
5b923b0b 215
0ba6e8aa 2161;
e46bf32c 217
218=head1 NAME
219
cbaaecc0 220Catalyst::Script::Server - Catalyst test server
e46bf32c 221
222=head1 SYNOPSIS
223
cbaaecc0 224 myapp_server.pl [options]
e46bf32c 225
226 Options:
4b3881d4 227 -d --debug force debug mode
228 -f --fork handle each request in a new process
e46bf32c 229 (defaults to false)
3dcfb4c8 230 --help display this help and exits
231 -h --host host (defaults to all)
4b3881d4 232 -p --port port (defaults to 3000)
233 -k --keepalive enable keep-alive connections
234 -r --restart restart when files get modified
235 (defaults to false)
87f5a448 236 --rd --restart_delay delay between file checks
e46bf32c 237 (ignored if you have Linux::Inotify2 installed)
87f5a448 238 --rr --restart_regex regex match files that trigger
e46bf32c 239 a restart when modified
240 (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
87f5a448 241 --rdir --restart_directory the directory to search for
6ab9f4af 242 modified files, can be set multiple times
e46bf32c 243 (defaults to '[SCRIPT_DIR]/..')
4b3881d4 244 --sym --follow_symlinks follow symlinks in search directories
e46bf32c 245 (defaults to false. this is a no-op on Win32)
4b3881d4 246 --bg --background run the process in the background
247 --pid --pidfile specify filename for pid file
e46bf32c 248
249 See also:
250 perldoc Catalyst::Manual
251 perldoc Catalyst::Manual::Intro
252
253=head1 DESCRIPTION
254
cbaaecc0 255Run a Catalyst test server for this application.
e46bf32c 256
257=head1 AUTHORS
258
259Catalyst Contributors, see Catalyst.pm
260
261=head1 COPYRIGHT
262
263This library is free software. You can redistribute it and/or modify
264it under the same terms as Perl itself.
265
266=cut