Cosmetic: removed trailing whitespace
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP / Restarter.pm
CommitLineData
65586a18 1package Catalyst::Engine::HTTP::Restarter;
7fa2c9c1 2use Moose;
7d9921b1 3use Moose::Util qw/find_meta/;
4use namespace::clean -except => 'meta';
5
7fa2c9c1 6extends 'Catalyst::Engine::HTTP';
0fc2d522 7
65586a18 8use Catalyst::Engine::HTTP::Restarter::Watcher;
65586a18 9
4090e3bb 10around run => sub {
11 my $orig = shift;
65586a18 12 my ( $self, $class, $port, $host, $options ) = @_;
13
14 $options ||= {};
15
16 # Setup restarter
57a87bb3 17 unless ( my $restarter = fork ) {
65586a18 18
19 # Prepare
20 close STDIN;
21 close STDOUT;
1cf1c56a 22
4d0270d3 23 # Avoid "Setting config after setup" error restarting MyApp.pm
24 $class->setup_finished(0);
c03163b8 25 # Best effort if we can't trap compiles..
26 $self->_make_components_mutable($class)
4d0270d3 27 if !Catalyst::Engine::HTTP::Restarter::Watcher::DETECT_PACKAGE_COMPILATION;
7d9921b1 28
65586a18 29 my $watcher = Catalyst::Engine::HTTP::Restarter::Watcher->new(
b0ad47c1 30 directory => (
31 $options->{restart_directory} ||
9e800f69 32 File::Spec->catdir( $FindBin::Bin, '..' )
33 ),
9c71d51d 34 follow_symlinks => $options->{follow_symlinks},
65586a18 35 regex => $options->{restart_regex},
36 delay => $options->{restart_delay},
37 );
38
1cf1c56a 39 $host ||= '127.0.0.1';
65586a18 40 while (1) {
1cf1c56a 41
65586a18 42 # poll for changed files
43 my @changed_files = $watcher->watch();
1cf1c56a 44
65586a18 45 # check if our parent process has died
1cf1c56a 46 exit if $^O ne 'MSWin32' and getppid == 1;
47
65586a18 48 # Restart if any files have changed
1cf1c56a 49 if (@changed_files) {
65586a18 50 my $files = join ', ', @changed_files;
51 print STDERR qq/File(s) "$files" modified, restarting\n\n/;
1cf1c56a 52
53 require IO::Socket::INET;
54 require HTTP::Headers;
55 require HTTP::Request;
56
57 my $client = IO::Socket::INET->new(
58 PeerAddr => $host,
59 PeerPort => $port
60 )
49e0f58d 61 or die "Can't create client socket (is server running?): ",
1cf1c56a 62 $!;
63
64 # build the Kill request
65 my $req =
57a87bb3 66 HTTP::Request->new( 'RESTART', '/',
1cf1c56a 67 HTTP::Headers->new( 'Connection' => 'close' ) );
68 $req->protocol('HTTP/1.0');
69
70 $client->send( $req->as_string )
49e0f58d 71 or die "Can't send restart instruction: ", $!;
1cf1c56a 72 $client->close();
65586a18 73 exit;
74 }
75 }
76 }
77
4090e3bb 78 return $self->$orig( $class, $port, $host, $options );
7fa2c9c1 79};
65586a18 80
7d9921b1 81# Naive way of trying to avoid Moose blowing up when you re-require components
82# which have been made immutable.
83sub _make_components_mutable {
84 my ($self, $class) = @_;
85
4f03bb77 86 my @metas = grep { defined($_) }
87 map { find_meta($_) }
88 ($class, map { blessed($_) }
89 values %{ $class->components });
7d9921b1 90
91 foreach my $meta (@metas) {
2bab21f6 92 # Paranoia unneeded, all component metaclasses should have immutable
7d9921b1 93 $meta->make_mutable if $meta->is_immutable;
94 }
95}
b9f43019 96
65586a18 971;
98__END__
99
100=head1 NAME
101
102Catalyst::Engine::HTTP::Restarter - Catalyst Auto-Restarting HTTP Engine
103
104=head1 SYNOPSIS
105
106 script/myapp_server.pl -restart
107
108=head1 DESCRIPTION
109
110The Restarter engine will monitor files in your application for changes
111and restart the server when any changes are detected.
112
113=head1 METHODS
114
b5ecfcf0 115=head2 run
65586a18 116
117=head1 SEE ALSO
118
119L<Catalyst>, L<Catalyst::Engine::HTTP>, L<Catalyst::Engine::CGI>,
120L<Catalyst::Engine>.
121
122=head1 AUTHORS
123
2f381252 124Catalyst Contributors, see Catalyst.pm
65586a18 125
126=head1 THANKS
127
128Many parts are ripped out of C<HTTP::Server::Simple> by Jesse Vincent.
129
130=head1 COPYRIGHT
131
536bee89 132This library is free software. You can redistribute it and/or modify it under
65586a18 133the same terms as Perl itself.
134
135=cut