# # $Id: Message.pm,v 1.19 1997/04/05 12:38:02 aas Exp $ package HTTP::Message; =head1 NAME HTTP::Message - Class encapsulating HTTP messages =head1 SYNOPSIS package HTTP::Request; # or HTTP::Response require HTTP::Message; @ISA=qw(HTTP::Message); =head1 DESCRIPTION A C object contains some headers and a content (body). The class is abstract, i.e. it only used as a base class for C and C and should never instantiated as itself. =head1 METHODS =cut ##################################################################### require HTTP::Headers; require Carp; use strict; use vars qw($AUTOLOAD); =head2 $mess = new HTTP::Message; This is the object constructor. It should only be called internally by this library. External code should construct C or C objects. =cut sub new { my($class, $header, $content) = @_; if (defined $header) { Carp::croak("Bad header argument") unless ref $header; $header = $header->clone; } else { $header = new HTTP::Headers; } $content = '' unless defined $content; bless { '_headers' => $header, '_content' => $content, }, $class; } =head2 $mess->clone() Returns a copy of the object. =cut sub clone { my $self = shift; my $clone = new HTTP::Message $self->{'_headers'}, $self->{'_content'}; $clone; } =head2 $mess->protocol([$proto]) Sets the HTTP protocol used for the message. The protocol() is a string like "HTTP/1.0" or "HTTP/1.1". =cut sub protocol { shift->_elem('_protocol', @_); } =head2 $mess->content([$content]) The content() method sets the content if an argument is given. If no argument is given the content is not touched. In either case the previous content is returned. =head2 $mess->add_content($data) The add_content() methods appends more data to the end of the previous content. =cut sub content { shift->_elem('_content', @_); } sub add_content { my $self = shift; if (ref($_[0])) { $self->{'_content'} .= ${$_[0]}; # for backwards compatability } else { $self->{'_content'} .= $_[0]; } } =head2 $mess->content_ref The content_ref() method will return a reference to content string. It can be more efficient to access the content this way if the content is huge, and it can be used for direct manipulation of the content, for instance: ${$res->content_ref} =~ s/\bfoo\b/bar/g; =cut sub content_ref { my $self = shift; \$self->{'_content'}; } sub as_string { ""; # To be overridden in subclasses } =head1 HEADER METHODS All unknown C methods are delegated to the C object that is part of every message. This allows convenient access to these methods. Refer to L for details of these methods: $mess->header($field => $val); $mess->scan(&doit); $mess->push_header($field => $val); $mess->remove_header($field); $mess->date; $mess->expires; $mess->if_modified_since; $mess->last_modified; $mess->content_type; $mess->content_encoding; $mess->content_length; $mess->title; $mess->user_agent; $mess->server; $mess->from; $mess->referer; $mess->www_authenticate; $mess->authorization; $mess->authorization_basic; =head2 $mess->headers_as_string([$endl]) Call the HTTP::Headers->as_string() method for the headers in the message. =cut sub headers_as_string { shift->{'_headers'}->as_string(@_); } # delegate all other method calls the the _headers object. sub AUTOLOAD { my $self = shift; my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2); return if $method eq "DESTROY"; $self->{'_headers'}->$method(@_); } # Private method to access members in %$self sub _elem { my($self, $elem, $val) = @_; my $old = $self->{$elem}; $self->{$elem} = $val if defined $val; return $old; } 1;