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