minor cleaning in C::E::HTTP::Daemon
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP / Daemon.pm
CommitLineData
2cdfbf5e 1package Catalyst::Engine::HTTP::Daemon;
2
3use strict;
4use base 'Catalyst::Engine::HTTP::Base';
5
296e7663 6use IO::Socket qw(AF_INET INADDR_ANY SOCK_STREAM SOMAXCONN );
2cdfbf5e 7
8=head1 NAME
9
10Catalyst::Engine::HTTP::Daemon - Catalyst HTTP Daemon Engine
11
12=head1 SYNOPSIS
13
14A script using the Catalyst::Engine::HTTP::Daemon module might look like:
15
16 #!/usr/bin/perl -w
17
18 BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP::Daemon' }
19
20 use strict;
21 use lib '/path/to/MyApp/lib';
22 use MyApp;
23
24 MyApp->run;
25
26=head1 DESCRIPTION
27
28This is the Catalyst engine specialized for development and testing.
29
30=head1 OVERLOADED METHODS
31
32This class overloads some methods from C<Catalyst::Engine::HTTP::Base>.
33
34=over 4
35
bce14c0d 36=item $c->handler
2cdfbf5e 37
38=cut
39
bce14c0d 40sub handler {
41 my ( $class, $client ) = @_;
42
43 $client->timeout(5);
44
45 while ( my $request = $client->get_request ) {
46
47 $request->uri->scheme('http'); # Force URI::http
48 $request->uri->host( $request->header('Host') || $client->sockhost );
49 $request->uri->port( $client->sockport );
50
51 my $hostname = gethostbyaddr( $client->peeraddr, AF_INET );
52
53 my $http = Catalyst::Engine::HTTP::Base::struct->new(
54 address => $client->peerhost,
55 hostname => $hostname || $client->peerhost,
56 request => $request,
57 response => HTTP::Response->new
58 );
59
60 $class->SUPER::handler($http);
61
62 $client->send_response( $http->response );
63 }
64
65 $client->close;
66}
67
68=item $c->run
69
70=cut
2cdfbf5e 71
72sub run {
73 my $class = shift;
74 my $port = shift || 3000;
296e7663 75
bce14c0d 76 $SIG{'PIPE'} = 'IGNORE';
77
296e7663 78 $HTTP::Daemon::PROTO = 'HTTP/1.0'; # For now until we resolve the blocking
79 # issues with HTTP 1.1
2cdfbf5e 80
296e7663 81 my $daemon = Catalyst::Engine::HTTP::Daemon::Catalyst->new(
2cdfbf5e 82 Listen => SOMAXCONN,
83 LocalPort => $port,
84 ReuseAddr => 1,
85 Type => SOCK_STREAM,
86 );
87
2cdfbf5e 88 my $base = URI->new( $daemon->url )->canonical;
89
90 printf( "You can connect to your server at %s\n", $base );
91
bce14c0d 92 while ( my $client = $daemon->accept ) {
93 $class->handler($client);
2cdfbf5e 94 }
95}
96
97=back
98
99=head1 SEE ALSO
100
101L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::HTTP::Base>,
102L<HTTP::Daemon>.
103
104=head1 AUTHOR
105
106Sebastian Riedel, C<sri@cpan.org>
107Christian Hansen, C<ch@ngmedia.com>
108
109=head1 COPYRIGHT
110
111This program is free software, you can redistribute it and/or modify it under
112the same terms as Perl itself.
113
114=cut
115
296e7663 116package Catalyst::Engine::HTTP::Daemon::Catalyst;
2cdfbf5e 117
118use strict;
119use base 'HTTP::Daemon';
120
121sub product_tokens {
122 "Catalyst/$Catalyst::VERSION";
123}
124
1251;