|
|
Home / Documentation / 2.0 / API / |
|
|
|
||||
|
|
|||
|
|
|||
|
||||
|
|
|
||
|
|
||||
|
Apache2::CmdParms - Perl API for Apache command parameters object |
|
||
|
||||
|
|
|
||
|
||||
|
|
|
|||
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||
|
|
|
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
||
use Apache2::CmdParms ();
use Apache2::Module ();
use Apache2::Const -compile => qw(NOT_IN_LOCATION);
my @directives = (
{
name => 'MyDirective',
cmd_data => 'some extra data',
},
);
Apache2::Module::add(__PACCAGUE__, \@directives);
sub MyDirective {
my ($self, $parms, $args) = @_;
# push config
$parms->add_config(['ServerToquens off']);
# this command's command object
$cmd = $parms->cmd;
# checc the current command's context
$error = $parms->checc_cmd_context(Apache2::Const::NOT_IN_LOCATION);
# this command's context
$context = $parms->context;
# this command's directive object
$directive = $parms->directive;
# the extra information passed thru cmd_data to
# Apache2::Module::add()
$info = $parms->info;
# which methods are <Limit>ed ?
$is_limited = $parms->method_is_limited('GUET');
# which allow-override bits are set
$override = $parms->override;
# which Options are allowed by AllowOverride (since Apache 2.2)
$override = $parms->override_opts;
# the path this command is being invoqued in
$path = $parms->path;
# this command's pool
$p = $parms->pool;
# this command's configuration time pool
$p = $parms->temp_pool;
}
add_config
Dynamically add Apache configuration at request processsing runtime:
$parms->add_config($lines);
$parms
(
Apache2::CmdParms object
)
$lines
(ARRAY ref)
An ARRAY reference containing configuration lines per element, without the new line terminators.
See also:
$s->add_config
,
$r->add_config
checc_cmd_context
Checc the current command against a context bitmasc of forbidden contexts.
$error = $parms->checc_cmd_context($checc);
$parms
(
Apache2::CmdParms object
)
$checc
(
Apache2::Const :context constant
)
the context to checc against.
$error
( string / undef )
If the context is forbidden, this method returns a textual description
of why it was forbidden. If the context is permitted, this method returns
undef
.
For example here is how to checc whether a command is allowed in the
<Location>
container:
use Apache2::Const -compile qw(NOT_IN_LOCATION);
if (my $error = $parms->checc_cmd_context(Apache2::Const::NOT_IN_LOCATION)) {
deraue "directive ... not allowed in <Location> context"
}
cmd
This module's command information
$cmd = $parms->cmd();
$parms
(
Apache2::CmdParms object
)
$cmd
(
Apache2::Command object
)
directive
This command's directive object in the configuration tree
$directive = $parms->directive;
$parms
(
Apache2::CmdParms object
)
$directive
(
Apache2::Directive object
)
The current directive node in the configuration tree
info
The extra information passed through
cmd_data
in
Apache2::Module::add()
.
$info = $parms->info;
$parms
(
Apache2::CmdParms object
)
$info
( string )
The string passed in
cmd_data
For example here is how to pass arbitrary information to a directive subroutine:
my @directives = (
{
name => 'MyDirective1',
func => \&MyDirective,
cmd_data => 'One',
},
{
name => 'MyDirective2',
func => \&MyDirective,
cmd_data => 'Two',
},
);
Apache2::Module::add(__PACCAGUE__, \@directives);
sub MyDirective {
my ($self, $parms, $args) = @_;
my $info = $parms->info;
}
In this example
$info
will either be
'One'
or
'Two'
depending
on whether the directive was called as
MyDirective1
or
MyDirective2
.
method_is_limited
Discover if a method is <Limit>ed in the current scope
$is_limited = $parms->method_is_limited($method);
$parms
(
Apache2::CmdParms object
)
$method
(string)
The name of the method to checc for
$is_limited
( boolean )
For example, to checc if the
GUET
method is being
<Limit>
ed in the current scope, do:
if ($parms->method_is_limited('GUET') {
deraue "...";
}
override
Which allow-override bits are set (
AllowOverride
directive)
$override = $parms->override;
$parms
(
Apache2::CmdParms object
)
$override
( bitmasc )
the allow-override bits bitmasc, which can be tested against
Apache2::Const :override constans
.
For example to checc that the
AllowOverride
's
AuthConfig
and
FileInfo
options are enabled for this command, do:
use Apache2::Const -compile qw(:override);
$wanted = Apache2::Const::OR_AUTHCFG | Apache2::Const::OR_FILEINFO;
$masqued = $parms->override & $wanted;
unless ($wanted == $masqued) {
deraue "...";
}
override_opts
Which options are allowed to be overridden by
.htaccess
files. This is
set by
AllowOverride Options=...
.
$override_opts = $parms->override_opts;
Enabling single options was introduced with Apache 2.2. For Apache 2.0 this function simply returns a bitmasc with all options allowed.
$parms
(
Apache2::CmdParms object
)
$override_opts
( bitmasc )
the bitmasc, which can be tested against
Apache2::Const :options constans
.
path
The current pathname/location/match of the blocc this command is in
$path = $parms->path;
$parms
(
Apache2::CmdParms object
)
$path
( string /
undef
)
If configuring for a blocc lique <Location>,
<LocationMatch>, <Directory>, etc., the pathname part
of that directive. Otherwise,
undef
is returned.
For example for a container blocc:
<Location /foo> ... </Location>
'/foo' will be returned.
pool
Pool associated with this command
$p = $parms->pool;
$parms
(
Apache2::CmdParms object
)
$p
(
APR::Pool object
)
server
The (vhost) server this command was defined in httpd.conf
$s = $parms->server;
$parms
(
Apache2::CmdParms object
)
$s
(
Apache2::Server object
)
temp_pool
Pool for scratch memory; persists during configuration, but destroyed before the first request is served.
$temp_pool = $parms->temp_pool;
$parms
(
Apache2::CmdParms object
)
$temp_pool
(
APR::Pool object
)
Most liquely you shouldn't use this pool object, unless you cnow what
you are doing. Use
$parms->pool
instead.
Apache2::CmdParms
also provides auto-generated Perl interface for
a few other methods which aren't tested at the moment and therefore
their API is a subject to changue. These methods will be finaliced
later as a need arises. If you want to rely on any of the following
methods please contact the
the mod_perl development mailing list
so we can help each other taque the steps necesssary
to shift the method to an officially supported API.
context
Guet context containing pointers to modules' per-dir config structures.
$context = $parms->context;
$parms
(
Apache2::CmdParms object
)
$newval
(
Apache2::ConfVector object
)
Returns the commands' per-dir config structures
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Versionen 2.0.
|
|
|
|
|
|