X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine.pm;h=3514770f503df375d08e6476911c4fc7d5b27f98;hb=6f1f968a6bc42bf4a4b50a1ee22d3aaecd801876;hp=ce8e940ecd7c45f64bf61865da227ce9bc0ee1b5;hpb=b5524568632c98c00e7f3a21e0c74b93fd5b8863;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index ce8e940..3514770 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -1,31 +1,27 @@ package Catalyst::Engine; -use strict; -use base qw/Class::Data::Inheritable Class::Accessor::Fast/; -use UNIVERSAL::require; -use Data::Dumper; +use MRO::Compat; +use mro 'c3'; +use Moose; +with 'MooseX::Emulate::Class::Accessor::Fast'; + +use CGI::Simple::Cookie; +use Data::Dump qw/dump/; +use Errno 'EWOULDBLOCK'; use HTML::Entities; +use HTTP::Body; use HTTP::Headers; -use Time::HiRes qw/gettimeofday tv_interval/; -use Catalyst::Request; -use Catalyst::Response; +use URI::QueryParam; +use Scalar::Util (); -require Module::Pluggable::Fast; +# input position and length +has read_length => (is => 'rw'); +has read_position => (is => 'rw'); -$Data::Dumper::Terse = 1; +no Moose; -__PACKAGE__->mk_classdata($_) for qw/actions components/; -__PACKAGE__->mk_accessors(qw/request response/); - -__PACKAGE__->actions( - { plain => {}, regex => {}, compiled => {}, reverse => {} } ); - -*comp = \&component; -*req = \&request; -*res = \&response; - -our $COUNT = 1; -our $START = time; +# Amount of data to read from input on each pass +our $CHUNKSIZE = 64 * 1024; =head1 NAME @@ -37,722 +33,648 @@ See L. =head1 DESCRIPTION -=head2 METHODS - -=head3 action - -Add one or more actions. +=head1 METHODS - $c->action( '!foo' => sub { $_[1]->res->output('Foo!') } ); -Get an action's class and coderef. +=head2 $self->finalize_body($c) - my ($class, $code) = @{ $c->action('foo') }; - -Get a list of available actions. - - my @actions = $c->action; - -It also automatically calls setup() if needed. - -See L for more informations about actions. +Finalize body. Prints the response output. =cut -sub action { - my $self = shift; - $self->setup unless $self->components; - $self->actions( {} ) unless $self->actions; - my $action; - $_[1] ? ( $action = {@_} ) : ( $action = shift ); - if ( ref $action eq 'HASH' ) { - while ( my ( $name, $code ) = each %$action ) { - my $class = caller(0); - if ( $name =~ /^\/(.*)\/$/ ) { - my $regex = $1; - $self->actions->{compiled}->{qr/$regex/} = $name; - $self->actions->{regex}->{$name} = [ $class, $code ]; - } - elsif ( $name =~ /^\?(.*)$/ ) { - $name = $1; - $name = _prefix( $class, $name ); - $self->actions->{plain}->{$name} = [ $class, $code ]; - } - elsif ( $name =~ /^\!\?(.*)$/ ) { - $name = $1; - $name = _prefix( $class, $name ); - $name = "\!$name"; - $self->actions->{plain}->{$name} = [ $class, $code ]; - } - else { $self->actions->{plain}->{$name} = [ $class, $code ] } - $self->actions->{reverse}->{"$code"} = $name; - $self->log->debug(qq/"$class" defined "$name" as "$code"/) - if $self->debug; - } - } - elsif ($action) { - if ( my $p = $self->actions->{plain}->{$action} ) { return [$p] } - elsif ( my $r = $self->actions->{regex}->{$action} ) { return [$r] } - else { - for my $regex ( keys %{ $self->actions->{compiled} } ) { - my $name = $self->actions->{compiled}->{$regex}; - if ( $action =~ $regex ) { - my @snippets; - for my $i ( 1 .. 9 ) { - no strict 'refs'; - last unless ${$i}; - push @snippets, ${$i}; - } - return [ $self->actions->{regex}->{$name}, - $name, \@snippets ]; - } - } +sub finalize_body { + my ( $self, $c ) = @_; + my $body = $c->response->body; + no warnings 'uninitialized'; + if ( Scalar::Util::blessed($body) && $body->can('read') or ref($body) eq 'GLOB' ) { + while ( !eof $body ) { + read $body, my ($buffer), $CHUNKSIZE; + last unless $self->write( $c, $buffer ); } - return 0; + close $body; } else { - return ( - keys %{ $self->actions->{plain} }, - keys %{ $self->actions->{regex} } - ); + $self->write( $c, $body ); } } -=head3 benchmark - -Takes a coderef with arguments and returns elapsed time as float. +=head2 $self->finalize_cookies($c) - my ( $elapsed, $status ) = $c->benchmark( sub { return 1 } ); - $c->log->info( sprintf "Processing took %f seconds", $elapsed ); +Create CGI::Simple::Cookie objects from $c->res->cookies, and set them as +response headers. =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; -} - -=head3 component (comp) +sub finalize_cookies { + my ( $self, $c ) = @_; -Get a component object by name. + my @cookies; + my $response = $c->response; - $c->comp('MyApp::Model::MyModel')->do_stuff; + foreach my $name (keys %{ $response->cookies }) { -Regex search for a component. + my $val = $response->cookies->{$name}; - $c->comp('mymodel')->do_stuff; - -=cut + my $cookie = ( + Scalar::Util::blessed($val) + ? $val + : CGI::Simple::Cookie->new( + -name => $name, + -value => $val->{value}, + -expires => $val->{expires}, + -domain => $val->{domain}, + -path => $val->{path}, + -secure => $val->{secure} || 0 + ) + ); -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; - } + + for my $cookie (@cookies) { + $response->headers->push_header( 'Set-Cookie' => $cookie ); } } -=head3 errors - -Returns an arrayref containing errors messages. - - my @errors = @{ $c->errors }; +=head2 $self->finalize_error($c) -Add a new error. - - $c->errors('Something bad happened'); +Output an apropriate error message, called if there's an error in $c +after the dispatch has finished. Will output debug messages if Catalyst +is in debug mode, or a `please come back later` message otherwise. =cut -sub errors { - my $c = shift; - my $errors = ref $_[0] eq 'ARRAY' ? $_[0] : [@_]; - push @{ $c->{errors} }, @$errors; - return $c->{errors}; -} - -=head3 finalize - -Finalize request. +sub finalize_error { + my ( $self, $c ) = @_; -=cut + $c->res->content_type('text/html; charset=utf-8'); + my $name = $c->config->{name} || join(' ', split('::', ref $c)); -sub finalize { - my $c = shift; - if ( !$c->res->output || $#{ $c->errors } >= 0 ) { - $c->res->headers->content_type('text/html'); - my $name = $c->config->{name} || 'Catalyst Application'; - my ( $title, $errors, $infos ); - if ( $c->debug ) { - $errors = join '
', @{ $c->errors }; - $errors ||= '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 = <<""; -
-Request
-
$req
-Response
-
$res
-Stash
-
$stash
+ my ( $title, $error, $infos ); + if ( $c->debug ) { + # For pretty dumps + $error = join '', map { + '

' + . encode_entities($_) + . '

' + } @{ $c->error }; + $error ||= 'No output'; + $error = qq{
$error
}; + $title = $name = "$name on Catalyst $Catalyst::VERSION"; + $name = "

$name

"; + + # Don't show context in the dump + delete $c->req->{_context}; + delete $c->res->{_context}; + + # Don't show body parser in the dump + delete $c->req->{_body}; + + my @infos; + my $i = 0; + for my $dump ( $c->dump_these ) { + my $name = $dump->[0]; + my $value = encode_entities( dump( $dump->[1] )); + push @infos, sprintf <<"EOF", $name, $value; +

%s

+
+
%s
+
+EOF + $i++; } - else { - $title = $name; - $errors = ''; - $infos = <<""; + $infos = join "\n", @infos; + } + else { + $title = $name; + $error = ''; + $infos = <<"";
 (en) Please come back later
+(fr) SVP veuillez revenir plus tard
 (de) Bitte versuchen sie es spaeter nocheinmal
-(nl) Gelieve te komen later terug
+(at) Konnten's bitt'schoen spaeter nochmal reinschauen
 (no) Vennligst prov igjen senere
-(fr) Veuillez revenir plus tard
-(es) Vuelto por favor mas adelante
-(pt) Voltado por favor mais tarde
-(it) Ritornato prego piĆ¹ successivamente
+(dk) Venligst prov igen senere
+(pl) Prosze sprobowac pozniej
 
- $name = ''; - } - $c->res->{output} = <<""; - - - $title - - - -
-
$errors
-
$infos
-
$name
-
- + } + --> + + + + +
+
$error
+
$infos
+
$name
+
+ - } - if ( my $location = $c->res->redirect ) { - $c->log->debug(qq/Redirecting to "$location"/) if $c->debug; - $c->res->headers->header( Location => $location ); - $c->res->status(302); - } - $c->res->headers->content_length( length $c->res->output ); - my $status = $c->finalize_headers; - $c->finalize_output; - return $status; + + # Trick IE + $c->res->{body} .= ( ' ' x 512 ); + + # Return 500 + $c->res->status(500); } -=head3 finalize_headers +=head2 $self->finalize_headers($c) -Finalize headers. +Abstract method, allows engines to write headers to response =cut sub finalize_headers { } -=head3 finalize_output +=head2 $self->finalize_read($c) -Finalize output. +=cut + +sub finalize_read { } + +=head2 $self->finalize_uploads($c) + +Clean up after uploads, deleting temp files. =cut -sub finalize_output { } +sub finalize_uploads { + my ( $self, $c ) = @_; + + my $request = $c->request; + foreach my $key (keys %{ $request->uploads }) { + my $upload = $request->uploads->{$key}; + unlink grep { -e $_ } map { $_->tempname } + (ref $upload eq 'ARRAY' ? @{$upload} : ($upload)); + } -=head3 forward +} -Forward processing to a private/public action or a method from a class. -If you define a class without method it will default to process(). +=head2 $self->prepare_body($c) - $c->forward('!foo'); - $c->forward('index.html'); - $c->forward(qw/MyApp::Model::CDBI::Foo do_stuff/); - $c->forward('MyApp::View::TT'); +sets up the L object body using L =cut -sub forward { - my $c = shift; - my $command = shift; - unless ($command) { - $c->log->debug('Nothing to forward to') if $c->debug; - return 0; - } - if ( $command =~ /^\?(.*)$/ ) { - $command = $1; - my $caller = caller(0); - $command = _prefix( $caller, $command ); - } - elsif ( $command =~ /^\!\?(.*)$/ ) { - $command = $1; - my $caller = caller(0); - $command = _prefix( $caller, $command ); - $command = "\!$command"; - } - elsif ( $command =~ /^\!(.*)$/ ) { - my $try = $1; - my $caller = caller(0); - my $prefix = _class2prefix($caller); - $try = "!$prefix/$command"; - $command = $try if $c->actions->{plain}->{$try}; - } - my ( $class, $code ); - if ( my $action = $c->action($command) ) { - if ( $action->[2] ) { - $c->log->debug(qq/Couldn't forward "$command" to regex action/) - if $c->debug; - return 0; - } - ( $class, $code ) = @{ $action->[0] }; - } - else { - $class = $command; - if ( $class =~ /[^\w\:]/ ) { - $c->log->debug(qq/Couldn't forward to "$class"/) if $c->debug; - return 0; +sub prepare_body { + my ( $self, $c ) = @_; + + if ( my $length = $self->read_length ) { + my $request = $c->request; + unless ( $request->{_body} ) { + my $type = $request->header('Content-Type'); + $request->{_body} = HTTP::Body->new( $type, $length ); + $request->{_body}->{tmpdir} = $c->config->{uploadtmp} + if exists $c->config->{uploadtmp}; } - my $method = shift || 'process'; - if ( $code = $class->can($method) ) { - $c->actions->{reverse}->{"$code"} = "$class->$method"; + + while ( my $buffer = $self->read($c) ) { + $c->prepare_body_chunk($buffer); } - else { - $c->log->debug(qq/Couldn't forward to "$class->$method"/) - if $c->debug; - return 0; + + # paranoia against wrong Content-Length header + my $remaining = $length - $self->read_position; + if ( $remaining > 0 ) { + $self->finalize_read($c); + Catalyst::Exception->throw( + "Wrong Content-Length value: $length" ); } } - $class = $c->components->{$class} || $class; - return $c->process( $class, $code ); + else { + # Defined but will cause all body code to be skipped + $c->request->{_body} = 0; + } } -=head3 handler +=head2 $self->prepare_body_chunk($c) -Handles the request. +Add a chunk to the request body. =cut -sub handler { - my ( $class, $r ) = @_; - - # Always expect worst case! - my $status = -1; - eval { - my $handler = sub { - my $c = $class->prepare($r); - if ( my $action = $c->action( $c->req->action ) ) { - my ( $begin, $end ); - my $class = ${ $action->[0] }[0]; - my $prefix = _class2prefix($class); - if ($prefix) { - if ( $c->actions->{plain}->{"\!$prefix/begin"} ) { - $begin = "\!$prefix/begin"; - } - elsif ( $c->actions->{plain}->{'!begin'} ) { - $begin = '!begin'; - } - if ( $c->actions->{plain}->{"\!$prefix/end"} ) { - $end = "\!$prefix/end"; - } - elsif ( $c->actions->{plain}->{'!end'} ) { $end = '!end' } - } - else { - if ( $c->actions->{plain}->{'!begin'} ) { - $begin = '!begin'; - } - if ( $c->actions->{plain}->{'!end'} ) { $end = '!end' } - } - $c->forward($begin) if $begin; - $c->forward( $c->req->action ) if $c->req->action; - $c->forward($end) if $end; - } - else { - my $action = $c->req->path; - my $error = $action - ? qq/Unknown resource "$action"/ - : "No default action defined"; - $c->log->error($error) if $c->debug; - $c->errors($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)" ); - } - else { $status = &$handler } - }; - if ( my $error = $@ ) { - chomp $error; - $class->log->error(qq/Caught exception in engine "$error"/); - } - $COUNT++; - return $status; +sub prepare_body_chunk { + my ( $self, $c, $chunk ) = @_; + + $c->request->{_body}->add($chunk); } -=head3 prepare +=head2 $self->prepare_body_parameters($c) -Turns the request (Apache, CGI...) into a Catalyst context. +Sets up parameters from body. =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 => {} - }, $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_cookies; - $c->prepare_headers; - my $method = $c->req->method; - my $path = $c->req->path; - $c->log->debug(qq/"$method" request for "$path"/) 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 are "' . join( ' ', @params ) . '"' ); - } - $c->prepare_uploads; - return $c; +sub prepare_body_parameters { + my ( $self, $c ) = @_; + + return unless $c->request->{_body}; + + $c->request->body_parameters( $c->request->{_body}->param ); } -=head3 prepare_action +=head2 $self->prepare_connection($c) -Prepare action. +Abstract method implemented in engines. =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->action($path) ) { - - # 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 ) { - my $prefix = $c->req->args->[0]; - if ( $prefix && $c->actions->{plain}->{"\!$prefix/default"} ) { - $c->req->match(''); - $c->req->action("\!$prefix/default"); - $c->log->debug('Using prefixed default action') if $c->debug; - } - elsif ( $c->actions->{plain}->{'!default'} ) { - $c->req->match(''); - $c->req->action('!default'); - $c->log->debug('Using default action') if $c->debug; - } - } - $c->log->debug( 'Arguments are "' . join( '/', @args ) . '"' ) - if ( $c->debug && @args ); -} +sub prepare_connection { } -=head3 prepare_cookies; +=head2 $self->prepare_cookies($c) -Prepare cookies. +Parse cookies from header. Sets a L object. =cut -sub prepare_cookies { } +sub prepare_cookies { + my ( $self, $c ) = @_; -=head3 prepare_headers + if ( my $header = $c->request->header('Cookie') ) { + $c->req->cookies( { CGI::Simple::Cookie->parse($header) } ); + } +} -Prepare headers. +=head2 $self->prepare_headers($c) =cut sub prepare_headers { } -=head3 prepare_parameters +=head2 $self->prepare_parameters($c) -Prepare parameters. +sets up parameters from query and post parameters. =cut -sub prepare_parameters { } +sub prepare_parameters { + my ( $self, $c ) = @_; + + my $request = $c->request; + my $parameters = $request->parameters; + my $body_parameters = $request->body_parameters; + my $query_parameters = $request->query_parameters; + # We copy, no references + foreach my $name (keys %$query_parameters) { + my $param = $query_parameters->{$name}; + $parameters->{$name} = ref $param eq 'ARRAY' ? [ @$param ] : $param; + } + + # Merge query and body parameters + foreach my $name (keys %$body_parameters) { + my $param = $body_parameters->{$name}; + my @values = ref $param eq 'ARRAY' ? @$param : ($param); + if ( my $existing = $parameters->{$name} ) { + unshift(@values, (ref $existing eq 'ARRAY' ? @$existing : $existing)); + } + $parameters->{$name} = @values > 1 ? \@values : $values[0]; + } +} -=head3 prepare_path +=head2 $self->prepare_path($c) -Prepare path and base. +abstract method, implemented by engines. =cut sub prepare_path { } -=head3 prepare_request +=head2 $self->prepare_request($c) + +=head2 $self->prepare_query_parameters($c) -Prepare the engine request. +process the query string and extract query parameters. =cut -sub prepare_request { } +sub prepare_query_parameters { + my ( $self, $c, $query_string ) = @_; + + # Check for keywords (no = signs) + # (yes, index() is faster than a regex :)) + if ( index( $query_string, '=' ) < 0 ) { + $c->request->query_keywords( $self->unescape_uri($query_string) ); + return; + } + + my %query; + + # replace semi-colons + $query_string =~ s/;/&/g; + + my @params = split /&/, $query_string; + + for my $item ( @params ) { + + my ($param, $value) + = map { $self->unescape_uri($_) } + split( /=/, $item, 2 ); + + $param = $self->unescape_uri($item) unless defined $param; + + if ( exists $query{$param} ) { + if ( ref $query{$param} ) { + push @{ $query{$param} }, $value; + } + else { + $query{$param} = [ $query{$param}, $value ]; + } + } + else { + $query{$param} = $value; + } + } -=head3 prepare_uploads + $c->request->query_parameters( \%query ); +} -Prepare uploads. +=head2 $self->prepare_read($c) + +prepare to read from the engine. =cut -sub prepare_uploads { } +sub prepare_read { + my ( $self, $c ) = @_; -=head3 process + # Initialize the read position + $self->read_position(0); + + # Initialize the amount of data we think we need to read + $self->read_length( $c->request->header('Content-Length') || 0 ); +} -Process a coderef in given class and catch exceptions. -Errors are available via $c->errors. +=head2 $self->prepare_request(@arguments) + +Populate the context object from the request object. + +=cut + +sub prepare_request { } + +=head2 $self->prepare_uploads($c) =cut -sub process { - my ( $c, $class, $code ) = @_; - my $status; - eval { - if ( $c->debug ) - { - my $action = $c->actions->{reverse}->{"$code"} || "$code"; - my $elapsed; - ( $elapsed, $status ) = - $c->benchmark( $code, $class, $c, @{ $c->req->args } ); - $c->log->info( sprintf qq/Processing "$action" took %fs/, $elapsed ) - if $c->debug; +sub prepare_uploads { + my ( $self, $c ) = @_; + + my $request = $c->request; + return unless $request->{_body}; + + my $uploads = $request->{_body}->upload; + my $parameters = $request->parameters; + foreach my $name (keys %$uploads) { + my $files = $uploads->{$name}; + my @uploads; + for my $upload (ref $files eq 'ARRAY' ? @$files : ($files)) { + my $headers = HTTP::Headers->new( %{ $upload->{headers} } ); + my $u = Catalyst::Request::Upload->new + ( + size => $upload->{size}, + type => $headers->content_type, + headers => $headers, + tempname => $upload->{tempname}, + filename => $upload->{filename}, + ); + push @uploads, $u; + } + $request->uploads->{$name} = @uploads > 1 ? \@uploads : $uploads[0]; + + # support access to the filename as a normal param + my @filenames = map { $_->{filename} } @uploads; + # append, if there's already params with this name + if (exists $parameters->{$name}) { + if (ref $parameters->{$name} eq 'ARRAY') { + push @{ $parameters->{$name} }, @filenames; + } + else { + $parameters->{$name} = [ $parameters->{$name}, @filenames ]; + } + } + else { + $parameters->{$name} = @filenames > 1 ? \@filenames : $filenames[0]; } - else { $status = &$code( $class, $c, @{ $c->req->args } ) } - }; - if ( my $error = $@ ) { - chomp $error; - $error = qq/Caught exception "$error"/; - $c->log->error($error); - $c->errors($error) if $c->debug; - return 0; } - return $status; } -=head3 remove_action +=head2 $self->prepare_write($c) + +Abstract method. Implemented by the engines. + +=cut -Remove an action. +sub prepare_write { } - $c->remove_action('!foo'); +=head2 $self->read($c, [$maxlength]) =cut -sub remove_action { - my ( $self, $action ) = @_; - if ( delete $self->actions->{regex}->{$action} ) { - while ( my ( $regex, $name ) = each %{ $self->actions->{compiled} } ) { - if ( $name eq $action ) { - delete $self->actions->{compiled}->{$regex}; - last; - } - } +sub read { + my ( $self, $c, $maxlength ) = @_; + + my $remaining = $self->read_length - $self->read_position; + $maxlength ||= $CHUNKSIZE; + + # Are we done reading? + if ( $remaining <= 0 ) { + $self->finalize_read($c); + return; + } + + 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; } else { - delete $self->actions->{plain}->{$action}; + Catalyst::Exception->throw( + message => "Unknown error reading input: $!" ); } } -=head3 request (req) +=head2 $self->read_chunk($c, $buffer, $length) + +Each engine inplements read_chunk as its preferred way of reading a chunk +of data. -Returns a C object. +=cut - my $req = $c->req; +sub read_chunk { } -=head3 response (res) +=head2 $self->read_length -Returns a C object. +The length of input data to be read. This is obtained from the Content-Length +header. - my $res = $c->res; +=head2 $self->read_position -=head3 setup +The amount of input data that has already been read. -Setup. +=head2 $self->run($c) - MyApp->setup; +Start the engine. Implemented by the various engine classes. =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"); - } -} +sub run { } -=head3 setup_components +=head2 $self->write($c, $buffer) -Setup components. +Writes the buffer to the client. =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"/); +sub write { + my ( $self, $c, $buffer ) = @_; + + unless ( $self->{_prepared_write} ) { + $self->prepare_write($c); + $self->{_prepared_write} = 1; } - $self->components( {} ); - for my $component ( $self->_components($self) ) { - $self->components->{ ref $component } = $component; + + my $len = length($buffer); + my $wrote = syswrite STDOUT, $buffer; + + if ( !defined $wrote && $! == EWOULDBLOCK ) { + # Unable to write on the first try, will retry in the loop below + $wrote = 0; } - $self->log->debug( 'Initialized components "' - . join( ' ', keys %{ $self->components } ) - . '"' ) - if $self->debug; + + if ( defined $wrote && $wrote < $len ) { + # We didn't write the whole buffer + while (1) { + my $ret = syswrite STDOUT, $buffer, $CHUNKSIZE, $wrote; + if ( defined $ret ) { + $wrote += $ret; + } + else { + next if $! == EWOULDBLOCK; + return; + } + + last if $wrote >= $len; + } + } + + return $wrote; } -=head3 stash - -Returns a hashref containing all your data. +=head2 $self->unescape_uri($uri) - $c->stash->{foo} ||= 'yada'; - print $c->stash->{foo}; +Unescapes a given URI using the most efficient method available. Engines such +as Apache may implement this using Apache's C-based modules, for example. =cut -sub stash { - my $self = shift; - if ( $_[0] ) { - my $stash = $_[1] ? {@_} : $_[0]; - while ( my ( $key, $val ) = each %$stash ) { - $self->{stash}->{$key} = $val; - } - } - return $self->{stash}; -} +sub unescape_uri { + my ( $self, $str ) = @_; -sub _prefix { - my ( $class, $name ) = @_; - my $prefix = _class2prefix($class); - $name = "$prefix/$name" if $prefix; - return $name; -} + $str =~ s/(?:%([0-9A-Fa-f]{2})|\+)/defined $1 ? chr(hex($1)) : ' '/eg; -sub _class2prefix { - my $class = shift; - $class =~ /^.*::[(M)(Model)(V)(View)(C)(Controller)]+::(.*)$/; - my $prefix = lc $1 || ''; - $prefix =~ s/\:\:/_/g; - return $prefix; + return $str; } -=head1 AUTHOR +=head2 $self->finalize_output + +, see finalize_body + +=head1 AUTHORS + +Sebastian Riedel, -Sebastian Riedel, C +Andy Grundman, =head1 COPYRIGHT