minor bugfixes
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP / Daemon.pm
CommitLineData
d96e14c2 1package Catalyst::Engine::HTTP::Daemon;
45374ac6 2
3use strict;
75fd617a 4use base 'Catalyst::Engine::Test';
45374ac6 5
6use IO::Socket qw(AF_INET);
7
8=head1 NAME
9
d96e14c2 10Catalyst::Engine::HTTP::Daemon - Catalyst HTTP Daemon Engine
45374ac6 11
12=head1 SYNOPSIS
13
d96e14c2 14A script using the Catalyst::Engine::HTTP::Daemon module might look like:
45374ac6 15
16 #!/usr/bin/perl -w
17
18 BEGIN {
d96e14c2 19 $ENV{CATALYST_ENGINE} = 'HTTP::Daemon';
45374ac6 20 }
21
22 use strict;
23 use lib '/path/to/MyApp/lib';
24 use MyApp;
25
26 MyApp->run;
27
28=head1 DESCRIPTION
29
30This is the Catalyst engine specialized for development and testing.
31
32=head1 OVERLOADED METHODS
33
75fd617a 34This class overloads some methods from C<Catalyst::Engine::Test>.
45374ac6 35
36=over 4
37
38=item $c->run
39
40=cut
41
42$SIG{'PIPE'} = 'IGNORE';
43
44sub run {
45 my $class = shift;
46 my $port = shift || 3000;
47
d96e14c2 48 my $daemon = Catalyst::Engine::HTTP::Daemon::Catalyst->new(
45374ac6 49 LocalPort => $port,
50 ReuseAddr => 1
51 );
52
66d9e175 53 unless ($daemon) {
54 die("Failed to create daemon: $!\n");
45374ac6 55 }
56
b333ca6b 57 my $base = URI->new( $daemon->url )->canonical;
58
59 printf( "You can connect to your server at %s\n", $base );
45374ac6 60
61 while ( my $connection = $daemon->accept ) {
62
63 while ( my $request = $connection->get_request ) {
64
65 $request->uri->scheme('http'); # Force URI::http
b333ca6b 66 $request->uri->host( $base->host );
523d44ec 67 $request->uri->port( $base->port );
45374ac6 68
75fd617a 69 my $lwp = Catalyst::Engine::Test::LWP->new(
45374ac6 70 request => $request,
71 address => $connection->peerhost,
72 hostname => gethostbyaddr( $connection->peeraddr, AF_INET )
73 );
74
6f4e1683 75 $class->handler($lwp);
76 $connection->send_response( $lwp->response );
45374ac6 77 }
78
79 $connection->close;
80 undef($connection);
81 }
82}
83
84=back
85
86=head1 SEE ALSO
87
88L<Catalyst>, L<HTTP::Daemon>.
89
90=head1 AUTHOR
91
92Sebastian Riedel, C<sri@cpan.org>
93Christian Hansen, C<ch@ngmedia.com>
94
95=head1 COPYRIGHT
96
97This program is free software, you can redistribute it and/or modify it under
98the same terms as Perl itself.
99
100=cut
101
d96e14c2 102package Catalyst::Engine::HTTP::Daemon::Catalyst;
45374ac6 103
104use strict;
105use base 'HTTP::Daemon';
106
107sub product_tokens {
108 "Catalyst/$Catalyst::VERSION";
109}
110
1111;