Added body_ref and body_length and minor optimization, use refs where it's possible
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Internals.pod
CommitLineData
fc7ec1d9 1=head1 NAME
2
3Catalyst::Manual::Internals - Catalyst Internals
4
5=head1 DESCRIPTION
6
07e73f82 7This document provides an overview of the internals of
8Catalyst. As Catalyst is still developing rapidly, details
9may become out of date: please treat this as a guide, and
10look at the source for the last word.
fc7ec1d9 11
5c57dc98 12The coverage is split into initialization and request lifecycle.
13
5c57dc98 14=head2 Initialization
15
16Catalyst initializes itself in two stages (I may be wrong in some of
17the details here - AF):
18
19=over 4
20
21=item 1
22
07e73f82 23When the Catalyst module is imported in the main application
24module it evaluates any options (C<-Debug>, C<-Engine=XXX>)
25and loads any specified plugins, making the application module
26inherit from the plugin classes. It also sets up a default log
27object and ensures that the application module inherits from
28C<Catalyst> and from the selected specialized Engine module.
5c57dc98 29
30=item 2
31
32When the application module makes the first call to C<< __PACKAGE__->action() >>
07e73f82 33(implemented in C<Catalyst::Engine>), Catalyst automatically loads all
34components it finds in the C<$class::Controller>, C<$class::C>,
35C<$class::Model>, C<$class::M>, C<$class::View> and C<$class::V>
5c57dc98 36namespaces (using C<Module::Pluggable::Fast>). A table of actions is built up
37and added to on subsequent calls to C<action()>.
38
39=back
40
41
42=head2 Request Lifecycle
43
44For each request Catalyst builds a I<context> object, which includes
07e73f82 45information about the request, and then searches the action table for matching
5c57dc98 46actions.
47
48The handling of a request can be divided into three stages: preparation of the
49context, processing of the request, and finalization of the response. These
50are the steps of a Catalyst request in detail; every step can be overloaded to
fc7ec1d9 51extend Catalyst.
52
53 handler
54 prepare
55 prepare_request
8fbcd90c 56 prepare_connection
fc7ec1d9 57 prepare_headers
06e1b616 58 prepare_cookies
8fbcd90c 59 prepare_path
fc7ec1d9 60 prepare_action
06e1b616 61 prepare_body
fc7ec1d9 62 prepare_parameters
63 prepare_uploads
64 process
65 finalize
66 finalize_headers
06e1b616 67 finalize_body
fc7ec1d9 68
5c57dc98 69These steps are normally overloaded from engine classes, and may also be
70extended by plugins. Extending means using multiple inheritance with L<NEXT>.
71
72The specialized engine classes populate the Catalyst request object with
73information from the underlying layer (C<Apache::Request> or C<CGI::Simple>)
74during the prepare phase, then push the generated response information down to
75the underlying layer during the finalize phase.
76
fc7ec1d9 77
78=head1 AUTHOR
79
80Sebastian Riedel, C<sri@oook.de>
81
82=head1 COPYRIGHT
83
84This program is free software, you can redistribute it and/or modify it under
85the same terms as Perl itself.