NAME
Web::Machine::Util::BodyEncoding - Module to handle body encoding
VERSION
version 0.08
SYNOPSIS
use Web::Machine::Util::BodyEncoding;
DESCRIPTION
This handles the body encoding.
FUNCTIONS
encode_body_if_set ( $resource, $response, $metadata )
-
If the
$response
has a body, this will callencode_body
. encode_body ( $resource, $response, $metadata )
-
This will find the right encoding (from the 'Content-Encoding' entry in the
$metadata
HASH ref) adnd the right charset (from the 'Charset' entry in the$metadata
HASH ref), then find the right transformers in the$resource
. After that it will attempt to convert the charset and encode the body of the$response
. Once completed it will set theContent-Length
header in the response as well.NOTE: At the moment we do not correctly handle all the various body types that Plack supports, and we really on handle the case where the body is a simple string. We plan to add more support onto this later.
AUTHOR
Stevan Little <stevan.little@iinteractive.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.