X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FHTTP.pm;h=cf43c0d6c53a5c0f5086e7e5674d0864d0497572;hb=88e5a8b0c4d28e46b8ba6b6b9567063e57af9063;hp=37be240fb37d928670ad76490fe036c87726a0d0;hpb=7276682176592974bbbe424ed5ad98bb6051f3e5;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/HTTP.pm b/lib/Catalyst/Engine/HTTP.pm index 37be240..cf43c0d 100644 --- a/lib/Catalyst/Engine/HTTP.pm +++ b/lib/Catalyst/Engine/HTTP.pm @@ -1,111 +1,44 @@ -package Catalyst::Engine::HTTP; - +package # Hide from PAUSE + Catalyst::Engine::HTTP; use strict; -use base 'Catalyst::Engine::Test'; - -use IO::Socket qw(AF_INET SOCK_STREAM SOMAXCONN); - -=head1 NAME - -Catalyst::Engine::HTTP - Catalyst HTTP Engine - -=head1 SYNOPSIS - -A script using the Catalyst::Engine::HTTP module might look like: - - #!/usr/bin/perl -w - - BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP' } - - use strict; - use lib '/path/to/MyApp/lib'; - use MyApp; - - MyApp->run; - -=head1 DESCRIPTION - -This is the Catalyst engine specialized for development and testing. - -=head1 OVERLOADED METHODS +use warnings; -This class overloads some methods from C. +use base 'Catalyst::Engine'; -=over 4 +warn("You are loading Catalyst::Engine::HTTP explicitly. -=item $c->run +This is almost certainly a bad idea, as Catalyst::Engine::HTTP +has been removed in this version of Catalyst. -=cut - -$SIG{'PIPE'} = 'IGNORE'; - -sub run { - my $class = shift; - my $port = shift || 3000; - - my $daemon = Catalyst::Engine::HTTP::Catalyst->new( - Listen => SOMAXCONN, - LocalPort => $port, - ReuseAddr => 1, - Type => SOCK_STREAM, - ); +Please update your application's scripts with: - unless ($daemon) { - die("Failed to create daemon: $!\n"); - } + catalyst.pl -force -scripts MyApp - my $base = URI->new( $daemon->url )->canonical; +to update your scripts to not do this.\n") unless $ENV{HARNESS_ACTIVE}; - printf( "You can connect to your server at %s\n", $base ); - - while ( my $connection = $daemon->accept ) { - - while ( my $request = $connection->get_request ) { +1; - $request->uri->scheme('http'); # Force URI::http - $request->uri->host( $base->host ); - $request->uri->port( $base->port ); +__END__ - my $lwp = Catalyst::Engine::Test::LWP->new( - request => $request, - address => $connection->peerhost, - hostname => gethostbyaddr( $connection->peeraddr, AF_INET ) - ); +=head1 NAME - $class->handler($lwp); - $connection->send_response( $lwp->response ); - } +Catalyst::Engine::HTTP - removed module - $connection->close; - undef($connection); - } -} +=head1 SYNOPSIS -=back +See L. -=head1 SEE ALSO +=head1 DESCRIPTION -L, L. +This is here only as some old generated scripts require Catalyst::Engine::HTTP -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Christian Hansen, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut - -package Catalyst::Engine::HTTP::Catalyst; - -use strict; -use base 'HTTP::Daemon'; - -sub product_tokens { - "Catalyst/$Catalyst::VERSION"; -} - -1;