X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FResponse.pm;h=387cd272b36b72f736f87478382869beef482495;hp=e99cd85cc880b76e1a668c7c56d7b635ec46e5a4;hb=6f1f968a6bc42bf4a4b50a1ee22d3aaecd801876;hpb=71453cafc78d14a1c061470011be29c8c4432a18 diff --git a/lib/Catalyst/Response.pm b/lib/Catalyst/Response.pm index e99cd85..387cd27 100644 --- a/lib/Catalyst/Response.pm +++ b/lib/Catalyst/Response.pm @@ -1,16 +1,31 @@ package Catalyst::Response; -use strict; -use base 'Class::Accessor::Fast'; - -__PACKAGE__->mk_accessors(qw/cookies body headers location status/); - -*output = \&body; - -sub content_encoding { shift->headers->content_encoding(@_) } -sub content_length { shift->headers->content_length(@_) } -sub content_type { shift->headers->content_type(@_) } -sub header { shift->headers->header(@_) } +use MRO::Compat; +use mro 'c3'; +use Moose; +use HTTP::Headers; + +has cookies => (is => 'rw', default => sub { {} }); +has body => (is => 'rw', default => ''); +has location => (is => 'rw'); +has status => (is => 'rw', default => 200); +has finalized_headers => (is => 'rw', default => 0); +has headers => ( + is => 'rw', + handles => [qw(content_encoding content_length content_type header)], + default => sub { HTTP::Headers->new() }, + required => 1, + lazy => 1, +); +has _context => ( + is => 'rw', + weak_ref => 1, + handles => ['write'], +); + +sub output { shift->body(@_) } + +no Moose; =head1 NAME @@ -34,15 +49,19 @@ Catalyst::Response - stores output responding to the current client request =head1 DESCRIPTION This is the Catalyst Response class, which provides methods for responding to -the current client request. +the current client request. The appropriate L for your environment +will turn the Catalyst::Response into a HTTP Response and return it to the client. =head1 METHODS -=head2 $res->body($text) +=head2 $res->body(<$text|$fh|$iofh_object) $c->response->body('Catalyst rocks!'); -Sets or returns the output (text or binary data). +Sets or returns the output (text or binary data). If you are returning a large body, +you might want to use a L type of object (Something that implements the read method +in the same fashion), or a filehandle GLOB. Catalyst +will write it piece by piece into the response. =head2 $res->content_encoding @@ -123,6 +142,10 @@ sub redirect { return $self->location; } +=head2 $res->location + +Sets or returns the HTTP 'Location'. + =head2 $res->status Sets or returns the HTTP status. @@ -133,9 +156,9 @@ Sets or returns the HTTP status. Writes $data to the output stream. -=cut +=head2 meta -sub write { shift->{_context}->write(@_); } +Provided by Moose =head1 AUTHORS @@ -150,4 +173,6 @@ it under the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;