X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FHTTP.pm;h=cf43c0d6c53a5c0f5086e7e5674d0864d0497572;hb=81436df99bdb4a0afd7367fb946c5481b483919d;hp=93327459cd9e9b6341c3c13d9abc1f1a23956fef;hpb=1a80619d839bc8dd6321648d8140a795bf85025e;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/HTTP.pm b/lib/Catalyst/Engine/HTTP.pm index 9332745..cf43c0d 100644 --- a/lib/Catalyst/Engine/HTTP.pm +++ b/lib/Catalyst/Engine/HTTP.pm @@ -1,119 +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 +use warnings; - BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP' } +use base 'Catalyst::Engine'; - use strict; - use lib '/path/to/MyApp/lib'; - use MyApp; +warn("You are loading Catalyst::Engine::HTTP explicitly. - MyApp->run; - -=head1 DESCRIPTION - -This is the Catalyst engine specialized for development and testing. - -=head1 OVERLOADED METHODS - -This class overloads some methods from C. - -=over 4 - -=item $c->run - -=cut +This is almost certainly a bad idea, as Catalyst::Engine::HTTP +has been removed in this version of Catalyst. -$SIG{'PIPE'} = 'IGNORE'; +Please update your application's scripts with: -sub run { - my $class = shift; - my $port = shift || 3000; + catalyst.pl -force -scripts MyApp - my $daemon = Catalyst::Engine::HTTP::Catalyst->new( - Listen => SOMAXCONN, - LocalPort => $port, - ReuseAddr => 1, - Type => SOCK_STREAM, - ); +to update your scripts to not do this.\n") unless $ENV{HARNESS_ACTIVE}; - unless ($daemon) { - die("Failed to create daemon: $!\n"); - } - - my $base = URI->new( $daemon->url )->canonical; - - printf( "You can connect to your server at %s\n", $base ); - - while ( my $connection = $daemon->accept ) { - - $connection->timeout(5); - - while ( my $request = $connection->get_request ) { - - $request->uri->scheme('http'); # Force URI::http - $request->uri->host( $base->host ); - $request->uri->port( $base->port ); - - my $lwp = Catalyst::Engine::Test::LWP->new( - address => $connection->peerhost, - hostname => gethostbyaddr( $connection->peeraddr, AF_INET ), - request => $request, - response => HTTP::Response->new - ); +1; - $class->handler($lwp); - $connection->send_response( $lwp->response ); +__END__ - if ( $class->debug ) { - $class->log->info( sprintf( "Peer %s:%d",$connection->peerhost, $connection->peerport ) ); - } +=head1 NAME - } +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;