Write blurb about C3 fail
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Upgrading.pod
CommitLineData
7e2ec16e 1=head1 Upgrading to Catalyst 5.80
2
5687c7f9 3Most applications and plugins should run unaltered on Catalyst 5.80.
7e2ec16e 4
1a98f036 5However as a lot of refactoring work has taken place, and several changes have
6been made which could cause incompatibilities. If your application or plugin
7is using deprecated code, or relying on side-effects, then you could have
ba03ccca 8issues upgrading to this release.
5687c7f9 9
e11cac87 10Most issues found with pre-existing components have been easy to solve, and a
ba03ccca 11complete description of behaviour changes which may cause compatibility issues,
1a98f036 12or warnings which are now emitted is included below to help if you have problems.
7e2ec16e 13
5687c7f9 14If you think you have found an upgrade related issue which is not covered in
15this document, then please email the Catalyst list to discuss the problem.
7e2ec16e 16
5687c7f9 17=head1 Known backwards compatibility breakages.
7e2ec16e 18
38f90e49 19=head2 Issues with Class::C3
20
21Catalyst 5.80 uses L<Algorithm::C3> method dispatch order. This is built into
22perl 5.10, and comes via L<Class::C3> for perl 5.8. This replaces L<NEXT>
23with L<Class::C3::Adopt::NEXT>, forcing all components to resolve methods using
24C3, rather than the unpredictable dispatch order of L<NEXT>.
25
26To be able to do this, however, entails that the graph of superclasses for each
27class must be linearizable using the C3 algorithm. Unfortunately, when
28superclasses are being used as mixins, it is easy to get this wrong.
29
30Most common is the case of:
31
32 package Component1; # Note, this is the common case
33 use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
34
35 package Component2; # Accidentally saying it this way round causes fail.
36 use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
37
38 package GoesBang;
39 use base qw/Component1 Component2/;
40
41And the Catalyst plugin most often causing this, is
42L<Catalyst::Plugin::Sesssion::Store::FastMMap> - if you are using this plugin
43and see issues, then please upgrade!
44
45This can, however, be found in your own application - the only solution is to
46go through each base class of the class the error was reported against, until
47you identify the ones in conflict, and resolve them.
48
6f04e56a 49=head2 Components which inherit from Moose::Object before Catalyst::Component
7e2ec16e 50
6f04e56a 51Moose components which say:
7e2ec16e 52
6f04e56a 53 package TestApp::Controller::Example;
54 use Moose;
845bfcd2 55 extends qw/Moose::Object Catalyst::Component/;
7e2ec16e 56
1a98f036 57to use the constructor provided by Moose, whilst working (if you do some hacks
58with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
6f04e56a 59C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
60to linearise.
61
1a98f036 62The fix for this is to not inherit directly from C<Moose::Object>
6f04e56a 63yourself. Having components which do not inherit their constructor from
64C<Catalyst::Component> is B<unsupported>, and has never been recommended,
65therefore you're on your own if you're using this technique. You'll need
66to detect the version of Catalyst your application is running with and deal
67with it appropriately.
7e2ec16e 68
8566c0de 69You will also see this issue if you do the following:
70
6f04e56a 71 package TestApp::Controller::Example;
72 use Moose;
8566c0de 73 use base 'Catalyst::Controller';
74
75as C< use base > appends to @ISA.
76
6f04e56a 77The correct way to use Moose in a component in a both forward and backwards
78compatible way is:
79
80 package TestApp::Controller::Root;
81 use Moose;
82 BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
83
ba03ccca 84Note that the C< extends > declaration needs to occur in a begin block for
1a98f036 85L<attributes> to operate correctly. You also don't get the L<Moose::Object>
86constructor, and therefore attribute initialization will not work as normally
87expected. If you want to use Moose attributes, then they need to be made lazy
88to correctly initialize.
8566c0de 89
e11cac87 90=head3 use Moose in MyApp
91
92Similar to the above, this will also fail:
93
94 package MyApp;
95 use Moose;
96 use Catalyst qw/
97 ConfigLoader
98 /;
99 __PACKAGE__->setup;
100
101If you need to use Moose in your application class (e.g. for method modifiers
102etc) then the correct technique is:
103
104 package MyApp;
105 use Moose;
106 extends 'Catalyst';
107 __PACKAGE__->setup(qw/
108 ConfigLoader
109 /);
110
04a48104 111=head2 Anonymous closures installed directly into the symbol table
112
113If you have any code which installs anonymous subroutine references directly
114into the symbol table, you may encounter breakages. The simplest solution is
115to use L<Sub::Name> to name the subroutine. Example:
116
e11cac87 117 # Original code, likely to break:
1a98f036 118 my $full_method_name = join('::', $package_name, $method_name);
04a48104 119 *$full_method_name = sub { ... };
120
e11cac87 121 # Fixed Code
04a48104 122 use Sub::Name 'subname';
123 my $full_method_name = join('::',$package_name, $method_name);
124 *$full_method_name = subname $full_method_name, sub { ... };
125
e11cac87 126Additionally, you can take advantage of Catalysts use of L<Class::MOP> and
04a48104 127install the closure using the appropriate metaclass. Example:
128
129 use Class::MOP;
130 my $metaclass = Moose::Meta::Class->initialize($package_name);
131 $metaclass->add_method($method_name => sub { ... });
132
780654ad 133=head2 Hooking into application setup
134
135To execute code during application startup the following snippet in MyApp.pm
136used to work:
137
138 sub setup {
139 my ($class, @args) = @_;
140 $class->NEXT::setup(@args);
141 ... # things to do after the actual setup
142 }
143
1a98f036 144With Catalyst 5.80 this won't work anymore. Due to the fact that Catalyst is
145no longer using NEXT.pm for method resolution, this no longer works. The
146functionality was only ever originally operational as L<NEXT> remembers what
147methods have already been called, and will not call them again.
780654ad 148
1a98f036 149Using this now causes infinite recursion between MyApp::setup and
150Catalyst::setup, due to other backwards compatibility issues related to how
151plugin setup works. Moose method modifiers like C<< before|after|around 'setup
152=> sub { ... }; >> also will not operate correctly on the setup method.
780654ad 153
154The right way to do it is this:
155
156 after setup_finalize => sub {
157 ... # things to do after the actual setup
158 };
159
1a98f036 160The setup_finalize hook was introduced as a way to void this issue.
161
e11cac87 162=head2 Components with a new method which returns false
7e2ec16e 163
8dd2f514 164Previously, if you had a component which inherited from Catalyst::COMPONENT,
e11cac87 165but overrode the new method to return false, then your class' configuration
8dd2f514 166would be blessed into a hash on your behalf, and this would be returned from
a87f5aa5 167the COMPONENT method.
7e2ec16e 168
e11cac87 169This behaviour makes no sense, and so has been removed. Implementing your own
1a98f036 170C< new > method in components is B<highly> discouraged, instead, you should
171inherit the new method from Catalyst::Component, and use Mooses BUILD
172functionality and/or Moose attributes to perform any construction work
173necessary for your class.
7e2ec16e 174
175=head2 __PACKAGE__->mk_accessor('meta');
176
e11cac87 177Won't work due to a limitation of L<Moose>. This is currently being fixed
178inside Moose.
7e2ec16e 179
180=head2 Class::Data::Inheritable side effects
181
8dd2f514 182Previously, writing to a class data accessor would copy the accessor method
183down into your package.
184
ba03ccca 185This behaviour has been removed. Whilst the class data is still stored
8dd2f514 186per-class, it is stored on the metaclass of the class defining the accessor.
7e2ec16e 187
8dd2f514 188Therefore anything relying on the side-effect of the accessor being copied down
189will be broken.
7e2ec16e 190
1a98f036 191The following test demonstrates the problem:
8dd2f514 192
193 {
194 package BaseClass;
195 use base qw/Class::Data::Inheritable/;
196 __PACKAGE__->mk_classdata('foo');
197 }
198
199 {
200 package Child;
201 use base qw/BaseClass/;
202 }
203
204 BaseClass->foo('base class');
205 Child->foo('sub class');
e11cac87 206
207 use Test::More;
8dd2f514 208 isnt(BaseClass->can('foo'), Child->can('foo'));
7e2ec16e 209
5687c7f9 210=head2 Extending Catalyst::Request or other classes in an ad-hoc manor using mk_accessors
7e2ec16e 211
8dd2f514 212Previously, it was possible to add additional accessors to Catalyst::Request
213(or other classes) by calling the mk_accessors class method.
7e2ec16e 214
ba03ccca 215This is no longer supported - users should make a sub-class of the class whose
216behaviour they would like to change, rather than globally polluting the
e11cac87 217Catalyst objects.
8be895a7 218
10011c19 219=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
8be895a7 220
bcc773b9 221Previously, Catalyst's COMPONENT method would delegate to the method on the
222right hand side, which could then delegate back again with NEXT. This (as it
223is insane AND makes no sense with C3 method dispatch order), and is therefore
224no longer supported.
225
ba03ccca 226If a COMPONENT method is detected in the inheritance hierarchy to the right
bcc773b9 227hand side of Catalyst::Component::COMPONENT, then the following warning
228message will be emitted:
7e2ec16e 229
8dd2f514 230 There is a COMPONENT method resolving after Catalyst::Component
5687c7f9 231 in ${next_package}.
8dd2f514 232
bcc773b9 233The correct fix is to re-arrange your class' inheritance hierarchy so that the
234COMPONENT method you would like to inherit is the first (left-hand most)
235COMPONENT method in your @ISA.
7e2ec16e 236
c571d2c8 237=head1 WARNINGS
238
239=head2 Methods in Catalyst::Dispatcher
240
bcc773b9 241The following methods in Catalyst::Dispatcher are both an implementation
242detail, which may change in the 5.8X release series, and therefore their use
243is highly deprecated.
c571d2c8 244
245=over
246
8dd2f514 247=item tree
c571d2c8 248
8dd2f514 249=item dispatch_types
c571d2c8 250
8dd2f514 251=item registered_dispatch_types
c571d2c8 252
8dd2f514 253=item method_action_class
c571d2c8 254
8dd2f514 255=item action_hash
c571d2c8 256
257=item container_hash
258
259=back
260
261The first time one of these methods is called, a warning will be emitted:
7e2ec16e 262
bcc773b9 263 Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,
264 this will be removed in Catalyst 5.9X
7e2ec16e 265
c571d2c8 266You should B<NEVER> be calling any of these methods from application code.
267
ba03ccca 268Plugins authors and maintainers whose plugins currently call these methods
8f5a2bd9 269should change to using the public API, or, if you do not feel the public API
ba03ccca 270adequately supports your use-case, please email the development list to
8f5a2bd9 271discuss what API features you need so that you can be appropriately supported.
7e2ec16e 272
bcc773b9 273=head2 Class naming to packages defined does not correspond.
7e2ec16e 274
e11cac87 275In this version of Catalyst, if a component is loaded from disk, but no
ba03ccca 276symbols are defined in that component's name space after it is loaded, this
bcc773b9 277warning will be issued:
7e2ec16e 278
bcc773b9 279 require $class was successful but the package is not defined.
7e2ec16e 280
bcc773b9 281This is to protect against confusing bugs caused by mis-typing package names,
282and will become a fatal error in a future version.
283
284Please note that 'inner packages' (via L<Devel::InnerPackage>) are still fully
285supported, this warning is only issued when component file naming does not map
286to B<any> of the packages defined within that component.
7e2ec16e 287
5687c7f9 288=head2 $c->plugin method
289
8dd2f514 290Calling the plugin method is deprecated, and calling it at runtime is B<highly
291deprecated>.
7e2ec16e 292
8dd2f514 293Instead you are recommended to use L< Catalyst::Model::Adaptor > or similar to
ba03ccca 294compose the functionality you need outside of the main application name space.
7e2ec16e 295
4e68badc 296Calling the plugin method will not be supported past Catalyst 5.81.
bcc773b9 297
7e2ec16e 298=cut
4e68badc 299