restart_delay HAZ OPSHUN
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Server.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::Server;
2
53b08cf9 3BEGIN {
4 $ENV{CATALYST_ENGINE} ||= 'HTTP';
5 $ENV{CATALYST_SCRIPT_GEN} = 31;
6 require Catalyst::Engine::HTTP;
7}
5b923b0b 8
a3ca4468 9use FindBin qw/$Bin/;
10use lib "$Bin/../lib";
11use Pod::Usage;
12use Moose;
13use Catalyst::Engine::HTTP;
14use namespace::clean -except => [ qw(meta) ];
15
16with 'MooseX::Getopt';
17
e46bf32c 18has help => (
19 traits => [qw(Getopt)],
90b481b1 20 cmd_aliases => 'h',
e46bf32c 21 isa => 'Bool',
22 is => 'ro',
23 required => 0,
90b481b1 24 default => 0,
e46bf32c 25);
26
41b55019 27has host => (
28 isa => 'Str',
29 is => 'ro',
30 required => 0,
31 default => "localhost"
32);
90b481b1 33
34has fork => (
35 traits => [qw(Getopt)],
36 cmd_aliases => 'f',
37 isa => 'Bool',
38 is => 'ro',
39 required => 0
40);
41
204c6935 42has listen => (
43 traits => [qw(Getopt)],
44 cmd_aliases => 'l',
45 isa => 'Int',
46 is => 'ro',
47 required => 0,
48 default => "3000"
49);
50
41b55019 51has pidfile => (
52 traits => [qw(Getopt)],
b6aaf142 53 cmd_aliases => 'pid',
41b55019 54 isa => 'Str',
55 is => 'ro',
56 required => 0
57);
58
bd31e11f 59has keepalive => (
60 traits => [qw(Getopt)],
61 cmd_aliases => 'k',
62 isa => 'Bool',
63 is => 'ro',
64 required => 0,
65 default => 0
66);
67
3954573c 68has background => (
69 traits => [qw(Getopt)],
70 cmd_aliases => 'bg',
71 isa => 'Bool',
72 is => 'ro',
73 required => 0
74);
75
8f01ed5f 76has app => ( isa => 'Str', is => 'ro', required => 1 ); # THIS IS FUCKING RETARDED HALP PLZ
77has restart => (
78 traits => [qw(Getopt)],
79 cmd_aliases => 'r',
80 isa => 'Bool',
81 is => 'ro',
82 required => 0
83);
84
70871584 85has restart_delay => (
86 traits => [qw(Getopt)],
87 cmd_aliases => 'rdel',
88 isa => 'Int',
89 is => 'ro',
90 required => 0
91);
92
615fee7c 93has restart_regex => ( isa => 'Str', is => 'ro', required => 0 );
94has follow_symlinks => ( isa => 'Bool', is => 'ro', required => 0 );
a3ca4468 95
96my @argv = @ARGV;
97
98sub run {
99 my $self = shift;
100
101 pod2usage() if $self->help;
102 my $app = $self->app;
103 Class::MOP::load_class($app);
104 $app->run(
105 $self->listen, $self->host,
106 {
107 'fork' => $self->fork,
108 keepalive => $self->keepalive,
109 background => $self->background,
110 pidfile => $self->pidfile,
615fee7c 111 keepalive => $self->keepalive,
112 restart => $self->restart,
113 restart_delay => $self->restart_delay,
114 restart_regex => qr/$self->restart_regex/,
c1c59374 115# FIXME restart_directory => $self->restart_directory,
615fee7c 116 follow_symlinks => $self->follow_symlinks,
a3ca4468 117 }
118 );
119
120}
5b923b0b 121
5b923b0b 122
0ba6e8aa 1231;
e46bf32c 124
125=head1 NAME
126
127[% appprefix %]_server.pl - Catalyst Testserver
128
129=head1 SYNOPSIS
130
131[% appprefix %]_server.pl [options]
132
133 Options:
134 -d -debug force debug mode
135 -f -fork handle each request in a new process
136 (defaults to false)
137 -? -help display this help and exits
138 -host host (defaults to all)
139 -p -port port (defaults to 3000)
140 -k -keepalive enable keep-alive connections
141 -r -restart restart when files get modified
142 (defaults to false)
143 -rd -restartdelay delay between file checks
144 (ignored if you have Linux::Inotify2 installed)
145 -rr -restartregex regex match files that trigger
146 a restart when modified
147 (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
148 -restartdirectory the directory to search for
149 modified files, can be set mulitple times
150 (defaults to '[SCRIPT_DIR]/..')
151 -follow_symlinks follow symlinks in search directories
152 (defaults to false. this is a no-op on Win32)
153 -background run the process in the background
154 -pidfile specify filename for pid file
155
156 See also:
157 perldoc Catalyst::Manual
158 perldoc Catalyst::Manual::Intro
159
160=head1 DESCRIPTION
161
162Run a Catalyst Testserver for this application.
163
164=head1 AUTHORS
165
166Catalyst Contributors, see Catalyst.pm
167
168=head1 COPYRIGHT
169
170This library is free software. You can redistribute it and/or modify
171it under the same terms as Perl itself.
172
173=cut