You must do three things to install a handler for a specific phase:
write the code, load the code into mod_perl, and tell mod_perl to
call the code.
Handlers are simply subroutines. They're passed an Apache request
object as the first argument, and through that object they can learn
about the request, change Apache's information about the request, log
errors, generate the response, and more. The return value of a
handler determines whether the current phase continues with other
handlers, the current phase ends successfully and execution proceeds
to the next phase, or the current phase ends with an error. The
return values are constants from the Apache::Constants module.
Although you can put your handler code in Apache's
httpd.conf file, it's tidier to put your
handlers in a module:
# in MyApp/Content.pm
package MyApp::Content;
use Apache::Constants ':common';
sub handler {
my $r = shift; # get the request object
# ...
return OK; # for example
}
The subroutine can be named anything, but mod_perl makes it
convenient to name every handler subroutine
handler and to store different handlers in
different modules. So MyApp::Content holds the handler for content
generation, whereas MyApp::Logging might hold the handler that logs
the request.
Because the Perl interpreter doesn't go away after each request, you
have to program tidily if you want to use mod_perl. This means using
lexical (my) variables instead of globals and
closing filehandles when done with them (or using lexical
filehandles). Unclosed filehandles remain open until the next time
that process runs your CGI script (when they are reopened), and
global variables whose values aren't undef ed will
still have those values the next time that process runs your CGI
script. The mod_perl_traps manpage that comes
with mod_perl contains details of common mod_perl gotchas.
Load your handler module with a PerlModule directive in
httpd.conf:
PerlModule MyApp::Content
This behaves like use in a Perl script: it loads
and runs the module. Now that mod_perl has your code loaded, tell
Apache to call it.
Directives used in httpd.conf to install
handlers are: