Added prepare_body_chunk method for upload progress support
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine.pm
index e5d2b10..4170a08 100644 (file)
@@ -1,38 +1,21 @@
 package Catalyst::Engine;
 
 use strict;
-use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
-use UNIVERSAL::require;
+use base 'Class::Accessor::Fast';
+use CGI::Cookie;
 use Data::Dumper;
 use HTML::Entities;
+use HTTP::Body;
 use HTTP::Headers;
-use Memoize;
-use Time::HiRes qw/gettimeofday tv_interval/;
-use Tree::Simple;
-use Tree::Simple::Visitor::FindByPath;
-use Catalyst::Request;
-use Catalyst::Response;
 
-require Module::Pluggable::Fast;
+# input position and length
+__PACKAGE__->mk_accessors( qw/read_position read_length/ );
 
-$Data::Dumper::Terse = 1;
+# Stringify to class
+use overload '""' => sub { return ref shift }, fallback => 1;
 
-__PACKAGE__->mk_classdata($_) for qw/actions components tree/;
-__PACKAGE__->mk_accessors(qw/request response state/);
-
-__PACKAGE__->actions(
-    { plain => {}, private => {}, regex => {}, compiled => [], reverse => {} }
-);
-__PACKAGE__->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) );
-
-*comp = \&component;
-*req  = \&request;
-*res  = \&response;
-
-our $COUNT = 1;
-our $START = time;
-
-memoize('_class2prefix');
+# Amount of data to read from input on each pass
+our $CHUNKSIZE = 4096;
 
 =head1 NAME
 
@@ -48,102 +31,84 @@ See L<Catalyst>.
 
 =over 4
 
-=item $c->benchmark($coderef)
+=item $self->finalize_output
+
+<obsolete>, see finalize_body
 
-Takes a coderef with arguments and returns elapsed time as float.
+=item $self->finalize_body($c)
 
-    my ( $elapsed, $status ) = $c->benchmark( sub { return 1 } );
-    $c->log->info( sprintf "Processing took %f seconds", $elapsed );
+Finalize body.  Prints the response output.
 
 =cut
 
-sub benchmark {
-    my $c       = shift;
-    my $code    = shift;
-    my $time    = [gettimeofday];
-    my @return  = &$code(@_);
-    my $elapsed = tv_interval $time;
-    return wantarray ? ( $elapsed, @return ) : $elapsed;
+sub finalize_body {
+    my ( $self, $c ) = @_;
+    
+    $self->write( $c, $c->response->output );
 }
 
-=item $c->comp($name)
+=item $self->finalize_cookies($c)
 
-=item $c->component($name)
-
-Get a component object by name.
+=cut
 
-    $c->comp('MyApp::Model::MyModel')->do_stuff;
+sub finalize_cookies {
+    my ( $self, $c ) = @_;
 
-Regex search for a component.
+    my @cookies;
+    while ( my ( $name, $cookie ) = each %{ $c->response->cookies } ) {
 
-    $c->comp('mymodel')->do_stuff;
+        my $cookie = CGI::Cookie->new(
+            -name    => $name,
+            -value   => $cookie->{value},
+            -expires => $cookie->{expires},
+            -domain  => $cookie->{domain},
+            -path    => $cookie->{path},
+            -secure  => $cookie->{secure} || 0
+        );
 
-=cut
-
-sub component {
-    my ( $c, $name ) = @_;
-    if ( my $component = $c->components->{$name} ) {
-        return $component;
+        push @cookies, $cookie->as_string;
     }
-    else {
-        for my $component ( keys %{ $c->components } ) {
-            return $c->components->{$component} if $component =~ /$name/i;
-        }
+
+    if (@cookies) {
+        $c->res->headers->push_header( 'Set-Cookie' => join ',', @cookies );
     }
 }
 
-=item $c->error
-
-=item $c->error($error, ...)
-
-=item $c->error($arrayref)
-
-Returns an arrayref containing error messages.
-
-    my @error = @{ $c->error };
-
-Add a new error.
-
-    $c->error('Something bad happened');
+=item $self->finalize_error($c)
 
 =cut
 
-sub error {
-    my $c = shift;
-    my $error = ref $_[0] eq 'ARRAY' ? $_[0] : [@_];
-    push @{ $c->{error} }, @$error;
-    return $c->{error};
-}
+sub finalize_error {
+    my ( $self, $c ) = @_;
 
-=item $c->finalize
+    $c->res->headers->content_type('text/html');
+    my $name = $c->config->{name} || 'Catalyst Application';
 
-Finalize request.
+    my ( $title, $error, $infos );
+    if ( $c->debug ) {
 
-=cut
+        # For pretty dumps
+        local $Data::Dumper::Terse = 1;
+        $error = join '',
+          map { '<code class="error">' . encode_entities($_) . '</code>' }
+          @{ $c->error };
+        $error ||= 'No output';
+        $title = $name = "$name on Catalyst $Catalyst::VERSION";
 
-sub finalize {
-    my $c = shift;
+        # Don't show context in the dump
+        delete $c->req->{_context};
+        delete $c->res->{_context};
 
-    if ( my $location = $c->res->redirect ) {
-        $c->log->debug(qq/Redirecting to "$location"/) if $c->debug;
-        $c->res->headers->header( Location => $location );
-        $c->res->headers->remove_content_headers;
-        $c->res->status(302);
-        return $c->finalize_headers;
-    }
+        # Don't show body parser in the dump
+        delete $c->req->{_body};
 
-    if ( !$c->res->output || $#{ $c->error } >= 0 ) {
-        $c->res->headers->content_type('text/html');
-        my $name = $c->config->{name} || 'Catalyst Application';
-        my ( $title, $error, $infos );
-        if ( $c->debug ) {
-            $error = join '<br/>', @{ $c->error };
-            $error ||= 'No output';
-            $title = $name = "$name on Catalyst $Catalyst::VERSION";
-            my $req   = encode_entities Dumper $c->req;
-            my $res   = encode_entities Dumper $c->res;
-            my $stash = encode_entities Dumper $c->stash;
-            $infos = <<"";
+        # Don't show response header state in dump
+        delete $c->res->{_finalized_headers};
+
+        my $req   = encode_entities Dumper $c->req;
+        my $res   = encode_entities Dumper $c->res;
+        my $stash = encode_entities Dumper $c->stash;
+        $infos = <<"";
 <br/>
 <b><u>Request</u></b><br/>
 <pre>$req</pre>
@@ -152,11 +117,11 @@ sub finalize {
 <b><u>Stash</u></b><br/>
 <pre>$stash</pre>
 
-        }
-        else {
-            $title = $name;
-            $error = '';
-            $infos = <<"";
+    }
+    else {
+        $title = $name;
+        $error = '';
+        $infos = <<"";
 <pre>
 (en) Please come back later
 (de) Bitte versuchen sie es spaeter nocheinmal
@@ -165,714 +130,340 @@ sub finalize {
 (fr) Veuillez revenir plus tard
 (es) Vuelto por favor mas adelante
 (pt) Voltado por favor mais tarde
-(it) Ritornato prego più successivamente
+(it) Ritornato prego più successivamente
 </pre>
 
-            $name = '';
-        }
-        $c->res->{output} = <<"";
+        $name = '';
+    }
+    $c->res->body( <<"" );
 <html>
-    <head>
-        <title>$title</title>
-        <style type="text/css">
-            body {
-                font-family: "Bitstream Vera Sans", "Trebuchet MS", Verdana,
-                             Tahoma, Arial, helvetica, sans-serif;
-                color: #ddd;
-                background-color: #eee;
-                margin: 0px;
-                padding: 0px;
-            }
-            div.box {
-                background-color: #ccc;
-                border: 1px solid #aaa;
-                padding: 4px;
-                margin: 10px;
-                -moz-border-radius: 10px;
-            }
-            div.error {
-                background-color: #977;
-                border: 1px solid #755;
-                padding: 8px;
-                margin: 4px;
-                margin-bottom: 10px;
-                -moz-border-radius: 10px;
-            }
-            div.infos {
-                background-color: #797;
-                border: 1px solid #575;
-                padding: 8px;
-                margin: 4px;
-                margin-bottom: 10px;
-                -moz-border-radius: 10px;
-            }
-            div.name {
-                background-color: #779;
-                border: 1px solid #557;
-                padding: 8px;
-                margin: 4px;
-                -moz-border-radius: 10px;
-            }
-        </style>
-    </head>
-    <body>
-        <div class="box">
-            <div class="error">$error</div>
-            <div class="infos">$infos</div>
-            <div class="name">$name</div>
-        </div>
-    </body>
+<head>
+    <title>$title</title>
+    <style type="text/css">
+        body {
+            font-family: "Bitstream Vera Sans", "Trebuchet MS", Verdana,
+                         Tahoma, Arial, helvetica, sans-serif;
+            color: #ddd;
+            background-color: #eee;
+            margin: 0px;
+            padding: 0px;
+        }
+        div.box {
+            background-color: #ccc;
+            border: 1px solid #aaa;
+            padding: 4px;
+            margin: 10px;
+            -moz-border-radius: 10px;
+        }
+        div.error {
+            background-color: #977;
+            border: 1px solid #755;
+            padding: 8px;
+            margin: 4px;
+            margin-bottom: 10px;
+            -moz-border-radius: 10px;
+        }
+        div.infos {
+            background-color: #797;
+            border: 1px solid #575;
+            padding: 8px;
+            margin: 4px;
+            margin-bottom: 10px;
+            -moz-border-radius: 10px;
+        }
+        div.name {
+            background-color: #779;
+            border: 1px solid #557;
+            padding: 8px;
+            margin: 4px;
+            -moz-border-radius: 10px;
+        }
+        code.error {
+            display: block;
+            margin: 1em 0;
+            overflow: auto;
+            white-space: pre;
+        }
+    </style>
+</head>
+<body>
+    <div class="box">
+        <div class="error">$error</div>
+        <div class="infos">$infos</div>
+        <div class="name">$name</div>
+    </div>
+</body>
 </html>
 
-    }
-    $c->res->headers->content_length( length $c->res->output );
-    my $status = $c->finalize_headers;
-    $c->finalize_output;
-    return $status;
 }
 
-=item $c->finalize_headers
-
-Finalize headers.
+=item $self->finalize_headers($c)
 
 =cut
 
 sub finalize_headers { }
 
-=item $c->finalize_output
-
-Finalize output.
+=item $self->finalize_read($c)
 
 =cut
 
-sub finalize_output { }
-
-=item $c->forward($command)
-
-Forward processing to a private action or a method from a class.
-If you define a class without method it will default to process().
+sub finalize_read {
+    my ( $self, $c ) = @_;
+    
+    undef $self->{_prepared_read};
+}
 
-    $c->forward('/foo');
-    $c->forward('index');
-    $c->forward(qw/MyApp::Model::CDBI::Foo do_stuff/);
-    $c->forward('MyApp::View::TT');
+=item $self->finalize_uploads($c)
 
 =cut
 
-sub forward {
-    my $c       = shift;
-    my $command = shift;
-    unless ($command) {
-        $c->log->debug('Nothing to forward to') if $c->debug;
-        return 0;
-    }
-    my $caller    = caller(0);
-    my $namespace = '/';
-    if ( $command =~ /^\// ) {
-        $command =~ /^(.*)\/(\w+)$/;
-        $namespace = $1 || '/';
-        $command = $2;
-    }
-    else { $namespace = _class2prefix($caller) || '/' }
-    my $results = $c->get_action( $command, $namespace );
-    unless ( @{$results} ) {
-        my $class = $command;
-        if ( $class =~ /[^\w\:]/ ) {
-            $c->log->debug(qq/Couldn't forward to "$class"/) if $c->debug;
-            return 0;
-        }
-        my $method = shift || 'process';
-        if ( my $code = $class->can($method) ) {
-            $c->actions->{reverse}->{"$code"} = "$class->$method";
-            $results = [ [ [ $class, $code ] ] ];
-        }
-        else {
-            $c->log->debug(qq/Couldn't forward to "$class->$method"/)
-              if $c->debug;
-            return 0;
+sub finalize_uploads {
+    my ( $self, $c ) = @_;
+
+    if ( keys %{ $c->request->uploads } ) {
+        for my $key ( keys %{ $c->request->uploads } ) {
+            my $upload = $c->request->uploads->{$key};
+            unlink map { $_->tempname }
+              grep     { -e $_->tempname }
+              ref $upload eq 'ARRAY' ? @{$upload} : ($upload);
         }
     }
-    for my $result ( @{$results} ) {
-        $c->state( $c->execute( @{ $result->[0] } ) );
-    }
-    return $c->state;
 }
 
-=item $c->get_action( $action, $namespace )
-
-Get an action in a given namespace.
+=item $self->prepare_body($c)
 
 =cut
 
-sub get_action {
-    my ( $c, $action, $namespace ) = @_;
-    $namespace ||= '';
-    if ($namespace) {
-        $namespace = '' if $namespace eq '/';
-        my $parent = $c->tree;
-        my @results;
-        my $result = $c->actions->{private}->{ $parent->getUID }->{$action};
-        push @results, [$result] if $result;
-        my $visitor = Tree::Simple::Visitor::FindByPath->new;
-        for my $part ( split '/', $namespace ) {
-            $visitor->setSearchPath($part);
-            $parent->accept($visitor);
-            my $child = $visitor->getResult;
-            my $uid   = $child->getUID if $child;
-            my $match = $c->actions->{private}->{$uid}->{$action} if $uid;
-            push @results, [$match] if $match;
-            $parent = $child if $child;
-        }
-        return \@results;
-    }
-    elsif ( my $p = $c->actions->{plain}->{$action} ) { return [ [$p] ] }
-    elsif ( my $r = $c->actions->{regex}->{$action} ) { return [ [$r] ] }
-    else {
-        for my $i ( 0 .. $#{ $c->actions->{compiled} } ) {
-            my $name  = $c->actions->{compiled}->[$i]->[0];
-            my $regex = $c->actions->{compiled}->[$i]->[1];
-            if ( $action =~ $regex ) {
-                my @snippets;
-                for my $i ( 1 .. 9 ) {
-                    no strict 'refs';
-                    last unless ${$i};
-                    push @snippets, ${$i};
-                }
-                return [ [ $c->actions->{regex}->{$name}, $name, \@snippets ] ];
-            }
-        }
-    }
-    return [];
-}
-
-=item $c->handler( $class, $r )
+sub prepare_body {
+    my ( $self, $c ) = @_;
 
-Handles the request.
+    $self->read_length( $c->request->header('Content-Length') || 0 );
+    my $type = $c->request->header('Content-Type');
 
-=cut
-
-sub handler ($$) {
-    my ( $class, $r ) = @_;
-
-    # Always expect worst case!
-    my $status = -1;
-    eval {
-        my $handler = sub {
-            my $c         = $class->prepare($r);
-            my $action    = $c->req->action;
-            my $namespace = '';
-            $namespace = ( join( '/', @{ $c->req->args } ) || '/' )
-              if $action eq 'default';
-            unless ($namespace) {
-                if ( my $result = $c->get_action($action) ) {
-                    $namespace = _class2prefix( $result->[0]->[0]->[0] );
-                }
-            }
-            my $default = $action eq 'default' ? $namespace : undef;
-            my $results = $c->get_action( $action, $default );
-            $namespace ||= '/';
-            if ( @{$results} ) {
-                for my $begin ( @{ $c->get_action( 'begin', $namespace ) } ) {
-                    $c->state( $c->execute( @{ $begin->[0] } ) );
-                }
-                for my $result ( @{ $c->get_action( $action, $default ) }[-1] )
-                {
-                    $c->state( $c->execute( @{ $result->[0] } ) );
-                    last unless $default;
-                }
-                for my $end ( reverse @{ $c->get_action( 'end', $namespace ) } )
-                {
-                    $c->state( $c->execute( @{ $end->[0] } ) );
-                }
-            }
-            else {
-                my $path  = $c->req->path;
-                my $error = $path
-                  ? qq/Unknown resource "$path"/
-                  : "No default action defined";
-                $c->log->error($error) if $c->debug;
-                $c->error($error);
-            }
-            return $c->finalize;
-        };
-        if ( $class->debug ) {
-            my $elapsed;
-            ( $elapsed, $status ) = $class->benchmark($handler);
-            $elapsed = sprintf '%f', $elapsed;
-            my $av = sprintf '%.3f', 1 / $elapsed;
-            $class->log->info( "Request took $elapsed" . "s ($av/s)" );
+    unless ( $c->request->{_body} ) {
+        $c->request->{_body} = HTTP::Body->new( $type, $self->read_length );
+    }
+    
+    if ( $self->read_length > 0 ) {
+        while ( my $buffer = $self->read( $c ) ) {
+            $c->prepare_body_chunk( $buffer );
         }
-        else { $status = &$handler }
-    };
-    if ( my $error = $@ ) {
-        chomp $error;
-        $class->log->error(qq/Caught exception in engine "$error"/);
     }
-    $COUNT++;
-    return $status;
 }
 
-=item $c->prepare($r)
-
-Turns the engine-specific request( Apache, CGI ... )
-into a Catalyst context .
+=item $self->prepare_body_chunk($c)
 
 =cut
 
-sub prepare {
-    my ( $class, $r ) = @_;
-    my $c = bless {
-        request => Catalyst::Request->new(
-            {
-                arguments  => [],
-                cookies    => {},
-                headers    => HTTP::Headers->new,
-                parameters => {},
-                snippets   => [],
-                uploads    => {}
-            }
-        ),
-        response => Catalyst::Response->new(
-            { cookies => {}, headers => HTTP::Headers->new, status => 200 }
-        ),
-        stash => {},
-        state => 0
-    }, $class;
-    if ( $c->debug ) {
-        my $secs = time - $START || 1;
-        my $av = sprintf '%.3f', $COUNT / $secs;
-        $c->log->debug('********************************');
-        $c->log->debug("* Request $COUNT ($av/s) [$$]");
-        $c->log->debug('********************************');
-        $c->res->headers->header( 'X-Catalyst' => $Catalyst::VERSION );
-    }
-    $c->prepare_request($r);
-    $c->prepare_path;
-    $c->prepare_headers;
-    $c->prepare_cookies;
-    $c->prepare_connection;
-    my $method   = $c->req->method   || '';
-    my $path     = $c->req->path     || '';
-    my $hostname = $c->req->hostname || '';
-    my $address  = $c->req->address  || '';
-    $c->log->debug(qq/"$method" request for "$path" from $hostname($address)/)
-      if $c->debug;
-    $c->prepare_action;
-    $c->prepare_parameters;
-
-    if ( $c->debug && keys %{ $c->req->params } ) {
-        my @params;
-        for my $key ( keys %{ $c->req->params } ) {
-            my $value = $c->req->params->{$key} || '';
-            push @params, " $key=$value";
-        }
-        $c->log->debug( 'Parameters', @params );
-    }
-    $c->prepare_uploads;
-    return $c;
+sub prepare_body_chunk {
+    my ( $self, $c, $chunk ) = @_;
+    
+    $c->request->{_body}->add( $chunk );
 }
 
-=item $c->prepare_action
-
-Prepare action.
+=item $self->prepare_body_parameters($c)
 
 =cut
 
-sub prepare_action {
-    my $c    = shift;
-    my $path = $c->req->path;
-    my @path = split /\//, $c->req->path;
-    $c->req->args( \my @args );
-    while (@path) {
-        $path = join '/', @path;
-        if ( my $result = ${ $c->get_action($path) }[0] ) {
-
-            # It's a regex
-            if ($#$result) {
-                my $match    = $result->[1];
-                my @snippets = @{ $result->[2] };
-                $c->log->debug(qq/Requested action "$path" matched "$match"/)
-                  if $c->debug;
-                $c->log->debug(
-                    'Snippets are "' . join( ' ', @snippets ) . '"' )
-                  if ( $c->debug && @snippets );
-                $c->req->action($match);
-                $c->req->snippets( \@snippets );
-            }
-            else {
-                $c->req->action($path);
-                $c->log->debug(qq/Requested action "$path"/) if $c->debug;
-            }
-            $c->req->match($path);
-            last;
-        }
-        unshift @args, pop @path;
-    }
-    unless ( $c->req->action ) {
-        $c->req->action('default');
-        $c->req->match('');
-    }
-    $c->log->debug( 'Arguments are "' . join( '/', @args ) . '"' )
-      if ( $c->debug && @args );
+sub prepare_body_parameters {
+    my ( $self, $c ) = @_;
+    $c->request->body_parameters( $c->request->{_body}->param );
 }
 
-=item $c->prepare_connection
-
-Prepare connection.
+=item $self->prepare_connection($c)
 
 =cut
 
 sub prepare_connection { }
 
-=item $c->prepare_cookies
-
-Prepare cookies.
+=item $self->prepare_cookies($c)
 
 =cut
 
-sub prepare_cookies { }
+sub prepare_cookies {
+    my ( $self, $c ) = @_;
 
-=item $c->prepare_headers
+    if ( my $header = $c->request->header('Cookie') ) {
+        $c->req->cookies( { CGI::Cookie->parse($header) } );
+    }
+}
 
-Prepare headers.
+=item $self->prepare_headers($c)
 
 =cut
 
 sub prepare_headers { }
 
-=item $c->prepare_parameters
-
-Prepare parameters.
+=item $self->prepare_parameters($c)
 
 =cut
 
-sub prepare_parameters { }
+sub prepare_parameters {
+    my ( $self, $c ) = @_;
 
-=item $c->prepare_path
+    # We copy, no references
+    while ( my ( $name, $param ) = each %{ $c->request->query_parameters } ) {
+        $param = ref $param eq 'ARRAY' ? [ @{$param} ] : $param;
+        $c->request->parameters->{$name} = $param;
+    }
 
-Prepare path and base.
+    # Merge query and body parameters
+    while ( my ( $name, $param ) = each %{ $c->request->body_parameters } ) {
+        $param = ref $param eq 'ARRAY' ? [ @{$param} ] : $param;
+        if ( my $old_param = $c->request->parameters->{$name} ) {
+            if ( ref $old_param eq 'ARRAY' ) {
+                push @{ $c->request->parameters->{$name} },
+                  ref $param eq 'ARRAY' ? @$param : $param;
+            }
+            else { $c->request->parameters->{$name} = [ $old_param, $param ] }
+        }
+        else { $c->request->parameters->{$name} = $param }
+    }
+}
+
+=item $self->prepare_path($c)
 
 =cut
 
 sub prepare_path { }
 
-=item $c->prepare_request
+=item $self->prepare_request($c)
 
-Prepare the engine request.
+=item $self->prepare_query_parameters($c)
 
 =cut
 
-sub prepare_request { }
-
-=item $c->prepare_uploads
+sub prepare_query_parameters { }
 
-Prepare uploads.
+=item $self->prepare_read($c)
 
 =cut
 
-sub prepare_uploads { }
+sub prepare_read {
+    my ( $self, $c ) = @_;
+    
+    # Reset the read position
+    $self->read_position( 0 );
+}
 
-=item $c->execute($class, $coderef)
+=item $self->prepare_request(@arguments)
 
-Execute a coderef in given class and catch exceptions.
-Errors are available via $c->error.
+=cut
+
+sub prepare_request { }
+
+=item $self->prepare_uploads($c)
 
 =cut
 
-sub execute {
-    my ( $c, $class, $code ) = @_;
-    $class = $c->comp($class) || $class;
-    $c->state(0);
-    eval {
-        if ( $c->debug )
-        {
-            my $action = $c->actions->{reverse}->{"$code"} || "$code";
-            my ( $elapsed, @state ) =
-              $c->benchmark( $code, $class, $c, @{ $c->req->args } );
-            $c->log->info( sprintf qq/Processing "$action" took %fs/, $elapsed )
-              if $c->debug;
-            $c->state(@state);
+sub prepare_uploads {
+    my ( $self, $c ) = @_;
+    my $uploads = $c->request->{_body}->upload;
+    for my $name ( keys %$uploads ) {
+        my $files = $uploads->{$name};
+        $files = ref $files eq 'ARRAY' ? $files : [$files];
+        my @uploads;
+        for my $upload (@$files) {
+            my $u = Catalyst::Request::Upload->new;
+            $u->headers( HTTP::Headers->new( %{ $upload->{headers} } ) );
+            $u->type( $u->headers->content_type );
+            $u->tempname( $upload->{tempname} );
+            $u->size( $upload->{size} );
+            $u->filename( $upload->{filename} );
+            push @uploads, $u;
         }
-        else { $c->state( &$code( $class, $c, @{ $c->req->args } ) ) }
-    };
-    if ( my $error = $@ ) {
-        chomp $error;
-        $error = qq/Caught exception "$error"/;
-        $c->log->error($error);
-        $c->error($error) if $c->debug;
-        $c->state(0);
+        $c->request->uploads->{$name} = @uploads > 1 ? \@uploads : $uploads[0];
     }
-    return $c->state;
 }
 
-=item $c->run
-
-Starts the engine.
+=item $self->prepare_write($c)
 
 =cut
 
-sub run { }
-
-=item $c->request
-
-=item $c->req
-
-Returns a C<Catalyst::Request> object.
+sub prepare_write { }
 
-    my $req = $c->req;
-
-=item $c->response
-
-=item $c->res
-
-Returns a C<Catalyst::Response> object.
-
-    my $res = $c->res;
-
-=item $c->set_action( $action, $code, $namespace, $attrs )
-
-Set an action in a given namespace.
+=item $self->read($c, [$maxlength])
 
 =cut
 
-sub set_action {
-    my ( $c, $method, $code, $namespace, $attrs ) = @_;
-
-    my $prefix = _class2prefix($namespace) || '';
-    my %flags;
-
-    for my $attr ( @{$attrs} ) {
-        if    ( $attr =~ /^(Local|Relative)$/ )        { $flags{local}++ }
-        elsif ( $attr =~ /^(Global|Absolute)$/ )       { $flags{global}++ }
-        elsif ( $attr =~ /^Path\((.+)\)$/i )           { $flags{path} = $1 }
-        elsif ( $attr =~ /^Private$/i )                { $flags{private}++ }
-        elsif ( $attr =~ /^(Regex|Regexp)\((.+)\)$/i ) { $flags{regex} = $2 }
+sub read {
+    my ( $self, $c, $maxlength ) = @_;
+    
+    unless ( $self->{_prepared_read} ) {
+        $self->prepare_read( $c );
+        $self->{_prepared_read} = 1;
     }
-
-    return unless keys %flags;
-
-    my $parent  = $c->tree;
-    my $visitor = Tree::Simple::Visitor::FindByPath->new;
-    for my $part ( split '/', $prefix ) {
-        $visitor->setSearchPath($part);
-        $parent->accept($visitor);
-        my $child = $visitor->getResult;
-        unless ($child) {
-            $child = $parent->addChild( Tree::Simple->new($part) );
-            $visitor->setSearchPath($part);
-            $parent->accept($visitor);
-            $child = $visitor->getResult;
-        }
-        $parent = $child;
-    }
-    my $uid = $parent->getUID;
-    $c->actions->{private}->{$uid}->{$method} = [ $namespace, $code ];
-    my $forward = $prefix ? "$prefix/$method" : $method;
-
-    if ( $flags{path} ) {
-        $flags{path} =~ s/^\w+//;
-        $flags{path} =~ s/\w+$//;
-        if ( $flags{path} =~ /^'(.*)'$/ ) { $flags{path} = $1 }
-        if ( $flags{path} =~ /^"(.*)"$/ ) { $flags{path} = $1 }
-    }
-    if ( $flags{regex} ) {
-        $flags{regex} =~ s/^\w+//;
-        $flags{regex} =~ s/\w+$//;
-        if ( $flags{regex} =~ /^'(.*)'$/ ) { $flags{regex} = $1 }
-        if ( $flags{regex} =~ /^"(.*)"$/ ) { $flags{regex} = $1 }
+    
+    my $remaining = $self->read_length - $self->read_position;
+    $maxlength ||= $CHUNKSIZE;
+    
+    # Are we done reading?
+    if ( $remaining <= 0 ) {
+        $self->finalize_read( $c );
+        return;
     }
 
-    my $reverse = $prefix ? "$method ($prefix)" : $method;
-
-    if ( $flags{local} || $flags{global} || $flags{path} ) {
-        my $path = $flags{path} || $method;
-        my $absolute = 0;
-        if ( $path =~ /^\/(.+)/ ) {
-            $path     = $1;
-            $absolute = 1;
-        }
-        $absolute = 1 if $flags{global};
-        my $name = $absolute ? $path : "$prefix/$path";
-        $c->actions->{plain}->{$name} = [ $namespace, $code ];
+    my $readlen = ( $remaining > $maxlength ) ? $maxlength : $remaining;
+    my $rc = $self->read_chunk( $c, my $buffer, $readlen );
+    if ( defined $rc ) {
+        $self->read_position( $self->read_position + $rc );
+        return $buffer;
     }
-    if ( my $regex = $flags{regex} ) {
-        push @{ $c->actions->{compiled} }, [ $regex, qr#$regex# ];
-        $c->actions->{regex}->{$regex} = [ $namespace, $code ];
+    else {
+        Catalyst::Exception->throw( 
+            message => "Unknown error reading input: $!"
+        );
     }
-
-    $c->actions->{reverse}->{"$code"} = $reverse;
 }
 
-=item $class->setup
+=item $self->read_chunk($c, $buffer, $length)
 
-Setup.
-
-    MyApp->setup;
+Each engine inplements read_chunk as its preferred way of reading a chunk
+of data.
 
 =cut
 
-sub setup {
-    my $self = shift;
-    $self->setup_components;
-    if ( $self->debug ) {
-        my $name = $self->config->{name} || 'Application';
-        $self->log->info("$name powered by Catalyst $Catalyst::VERSION");
-    }
-}
-
-=item $class->setup_actions($component)
+sub read_chunk { }
 
-Setup actions for a component.
+=item $self->read_length
 
-=cut
+The length of input data to be read.  This is obtained from the Content-Length
+header.
 
-sub setup_actions {
-    my ( $self, $comp ) = @_;
-    $comp = ref $comp || $comp;
-    for my $action ( @{ $comp->_cache } ) {
-        my ( $code, $attrs ) = @{$action};
-        my $name = '';
-        no strict 'refs';
-        my @cache = ( $comp, @{"$comp\::ISA"} );
-        my %namespaces;
-        while ( my $namespace = shift @cache ) {
-            $namespaces{$namespace}++;
-            for my $isa ( @{"$comp\::ISA"} ) {
-                next if $namespaces{$isa};
-                push @cache, $isa;
-                $namespaces{$isa}++;
-            }
-        }
-        for my $namespace ( keys %namespaces ) {
-            for my $sym ( values %{ $namespace . '::' } ) {
-                if ( *{$sym}{CODE} && *{$sym}{CODE} == $code ) {
-                    $name = *{$sym}{NAME};
-                    $self->set_action( $name, $code, $comp, $attrs );
-                    last;
-                }
-            }
-        }
-    }
-}
+=item $self->read_position
 
-=item $class->setup_components
+The amount of input data that has already been read.
 
-Setup components.
+=item $self->run($c)
 
 =cut
 
-sub setup_components {
-    my $self = shift;
-
-    # Components
-    my $class = ref $self || $self;
-    eval <<"";
-        package $class;
-        import Module::Pluggable::Fast
-          name   => '_components',
-          search => [
-            '$class\::Controller', '$class\::C',
-            '$class\::Model',      '$class\::M',
-            '$class\::View',       '$class\::V'
-          ];
-
-    if ( my $error = $@ ) {
-        chomp $error;
-        $self->log->error(
-            qq/Couldn't initialize "Module::Pluggable::Fast", "$error"/);
-    }
-    $self->setup_actions($self);
-    $self->components( {} );
-    for my $comp ( $self->_components($self) ) {
-        $self->components->{ ref $comp } = $comp;
-        $self->setup_actions($comp);
-    }
-    my @comps;
-    push @comps, " $_" for keys %{ $self->components };
-    $self->log->debug( 'Loaded components', @comps )
-      if ( @comps && $self->debug );
-    my $actions  = $self->actions;
-    my @messages = ('Loaded private actions');
-    my $walker   = sub {
-        my ( $walker, $parent, $messages, $prefix ) = @_;
-        $prefix .= $parent->getNodeValue || '';
-        $prefix .= '/' unless $prefix =~ /\/$/;
-        my $uid = $parent->getUID;
-        for my $action ( keys %{ $actions->{private}->{$uid} } ) {
-            my ( $class, $code ) = @{ $actions->{private}->{$uid}->{$action} };
-            push @$messages, _prettify( "$prefix$action", $class, $code );
-        }
-        $walker->( $walker, $_, $messages, $prefix )
-          for $parent->getAllChildren;
-    };
-    $walker->( $walker, $self->tree, \@messages, '' );
-    $self->log->debug(@messages) if ( $#messages && $self->debug );
-    @messages = ('Loaded plain actions');
-    for my $plain ( sort keys %{ $actions->{plain} } ) {
-        my ( $class, $code ) = @{ $actions->{plain}->{$plain} };
-        push @messages, _prettify( "/$plain", $class, $code );
-    }
-    $self->log->debug(@messages) if ( $#messages && $self->debug );
-    @messages = ('Loaded regex actions');
-    for my $regex ( sort keys %{ $actions->{regex} } ) {
-        my ( $class, $code ) = @{ $actions->{regex}->{$regex} };
-        push @messages, _prettify( $regex, $class, $code );
-    }
-    $self->log->debug(@messages) if ( $#messages && $self->debug );
-}
-
-=item $c->stash
-
-Returns a hashref containing all your data.
+sub run { }
 
-    $c->stash->{foo} ||= 'yada';
-    print $c->stash->{foo};
+=item $self->write($c, $buffer)
 
 =cut
 
-sub stash {
-    my $self = shift;
-    if ( $_[0] ) {
-        my $stash = $_[1] ? {@_} : $_[0];
-        while ( my ( $key, $val ) = each %$stash ) {
-            $self->{stash}->{$key} = $val;
-        }
+sub write {
+    my ( $self, $c, $buffer ) = @_;
+    
+    unless ( $self->{_prepared_write} ) {
+        $self->prepare_write( $c );
+        $self->{_prepared_write} = 1;
     }
-    return $self->{stash};
-}
-
-sub _prefix {
-    my ( $class, $name ) = @_;
-    my $prefix = _class2prefix($class);
-    $name = "$prefix/$name" if $prefix;
-    return $name;
-}
-
-sub _class2prefix {
-    my $class = shift || '';
-    my $prefix;
-    if ( $class =~ /^.*::([MVC]|Model|View|Controller)?::(.*)$/ ) {
-        $prefix = lc $2;
-        $prefix =~ s/\:\:/\//g;
-    }
-    return $prefix;
-}
-
-sub _prettify {
-    my ( $action, $class, $code ) = @_;
-    formline
-' @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @|||||||||||||| ',
-      $action, $class, $code;
-    my $formatted = $^A;
-    $^A = '';
-    return $formatted;
+    
+    my $handle = $c->response->handle;
+    
+    print $handle $buffer;
 }
 
 =back
 
-=head1 AUTHOR
+=head1 AUTHORS
+
+Sebastian Riedel, <sri@cpan.org>
 
-Sebastian Riedel, C<sri@cpan.org>
+Andy Grundman, <andy@hybridized.org>
 
 =head1 COPYRIGHT