Added first welcome screen mockup
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
index 9619d78..ecbfc20 100644 (file)
@@ -1,40 +1,67 @@
 package Catalyst::Engine::FastCGI;
 
 use strict;
-use base qw(Catalyst::Engine::FastCGI::Base Catalyst::Engine::CGI);
+use base 'Catalyst::Engine::CGI';
+use FCGI;
 
 =head1 NAME
 
-Catalyst::Engine::FastCGI - Catalyst FastCGI Engine
+Catalyst::Engine::FastCGI - FastCGI Engine
 
-=head1 SYNOPSIS
+=head1 DESCRIPTION
+
+This is the FastCGI engine.
+
+=head1 OVERLOADED METHODS
+
+This class overloads some methods from C<Catalyst::Engine::CGI>.
+
+=over 4
+
+=item $self->run($c)
+
+=cut
 
-A script using the Catalyst::Engine::FastCGI module might look like:
+sub run {
+    my ( $self, $class ) = @_;
 
-    #!/usr/bin/perl -w
+    my $request = FCGI::Request();
 
-    BEGIN { 
-       $ENV{CATALYST_ENGINE} = 'FastCGI';
+    while ( $request->Accept >= 0 ) {
+        $class->handle_request;
     }
+}
 
-    use strict;
-    use lib '/path/to/MyApp/lib';
-    use MyApp;
+=item $self->write($c, $buffer)
 
-    MyApp->run;
+=cut
 
-=head1 DESCRIPTION
+sub write {
+    my ( $self, $c, $buffer ) = @_;
+
+    unless ( $self->{_prepared_write} ) {
+        $self->prepare_write($c);
+        $self->{_prepared_write} = 1;
+    }
 
-This is the Catalyst engine for FastCGI.
+    # FastCGI does not stream data properly if using 'print $handle',
+    # but a syswrite appears to work properly.
+    *STDOUT->syswrite($buffer);
+}
+
+=back
 
 =head1 SEE ALSO
 
-L<Catalyst>, L<Catalyst::Engine::CGI>.
+L<Catalyst>, L<FCGI>.
+
+=head1 AUTHORS
+
+Sebastian Riedel, <sri@cpan.org>
 
-=head1 AUTHOR
+Christian Hansen, <ch@ngmedia.com>
 
-Sebastian Riedel, C<sri@cpan.org>
-Christian Hansen, C<ch@ngmedia.com>
+Andy Grundman, <andy@hybridized.org>
 
 =head1 COPYRIGHT