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