NAME
APR::Request::Param - wrapper for libapreq2's param API.
SYNOPSIS
use APR::Request::Param;
DESCRIPTION
The APR::Request::Param
module provides base methods for interfacing with libapreq2's param API. It also provides a few utility functions and constants.
OVERLOADS
APR::Request::Param
""
"$param"
The double-quote interpolation operator maps to APR::Request::Param::value()
.
METHODS
APR::Request::Param
name
$param->name()
Returns the param's name. This attribute cannot be modified.
value
$param->value()
Returns the param's value. This attribute cannot be modified.
is_tainted
$param->is_tainted()
$param->is_tainted($set)
Get/set the param's internal tainted flag. Note: if the param's charset is APREQ_CHARSET_UTF8 (8), this also activates the SvUTF8_on flag during calls to name() and/or value().
charset
$param->charset()
$param->charset($set)
Get/set the param's internal charset. The charset is a number between 0 and 255; the current recognized values are
- 0 APREQ_CHARSET_ASCII (7-bit us-ascii)
- 1 APREQ_CHARSET_LATIN1 (8-bit iso 8859-1)
- 2 APREQ_CHARSET_CP1252 (8-bit Windows-1252)
- 8 APREQ_CHARSET_UTF8 (utf8 encoded Unicode)
See is_tainted above for info about how APREQ_CHARSET_UTF8 relates to perl's UTF-8 flag.
make
APR::Request::Param->make($pool, $name, $value)
Fast XS param constructor.
info
$param->info()
$param->info($set)
Get/set the APR::Table headers for this param.
upload
$param->upload()
$param->upload($set)
Get/set the APR::Brigade file-upload content for this param.
upload_filename
$param->upload_filename()
Returns the client-side filename associated with this param.
upload_link
$param->upload_link($path)
Links the file-upload content with the local file named $path
. Creates a hard-link if the spoolfile's (see upload_tempname) temporary directory is on the same device as $path
; otherwise this writes a copy.
upload_slurp
$param->upload_slurp($data)
Reads the entire file-upload content into $data
.
upload_size
$param->upload_size()
Returns the size of the param's file-upload content.
upload_type
$param->upload_type()
Returns the MIME-type of the param's file-upload content.
upload_tempname
$param->upload_tempname()
Returns the name of the local spoolfile for this param.
upload_io
$param->upload_io()
Returns an APR::Request::Brigade::IO object, which can be treated as a non-seekable IO stream.
upload_fh
$param->upload_fh
Returns a seekable filehandle representing the file-upload content.
METHODS
APR::Request::Param::Table
param_class
$table->param_class()
$table->param_class($set)
Get/set the class each table element is blessed into during a get or FETCH call. If defined, the class must be derived from APR::Request::Param.
get
$table->get()
$table->get($name)
FETCH
$table->FETCH($name)
NEXTKEY
$table->NEXTKEY()
FIRSTKEY
$table->FIRSTKEY()
do
$table->do($callback, @keys)
METHODS
APR::Request::Brigade
new, TIEHANDLE
READ
READLINE
METHODS
APR::Request::Brigade::IO
read
readline
SEE ALSO
COPYRIGHT
Copyright 2003-2005 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.