95ad01c014fb72c72274e93c36c8e49006af77a5
[gitmo/Moose.git] / TODO
1 == Todo for 2.0400
2
3 === RT Tickets
4
5 RT#67731 - Union types reports spurious parent types -
6 https://rt.cpan.org/Ticket/Display.html?id=67731
7
8 RT#59478/RT#63000 - 0+ overload causes NV conversion on == on perls before
9 5.14 - this causes comparisons to fail when the number can't fit in an NV
10 without precision loss. I'd like to fix this in a more general way (forcing
11 anyone else who might be using == on tc objects to do weird things isn't very
12 good), although it's hard to test to see what actually works.
13
14 RT#69839 - UNIVERSAL methods should show up as methods, so things like method
15 modifiers work
16
17 === Revise MetaRole API to reunify class/role metaroles:
18
19   apply_metaroles(
20       for   => $meta,
21       roles => {
22           attribute => [...],
23           class     => [...],
24           role_attribute => [ ... ],
25       }
26   );
27
28 If the $meta is a class, we apply the roles to the class. If it's a role, we
29 hold onto them and apply them as part of applying the role to a class.
30
31 To make this all work nicely, we'll probably want to track the original role
32 where a method was defined, just like we do with attributes currently. We'll
33 also need to store method modifiers with their original role, which may mean
34 adding some sort of Moose::Meta::Role::MethodModifier class.
35
36 For each role-specific thing (methods, attributes, etc.) we should allow a
37 role_attribute, role_method, etc. key. The common case will be that the
38 metaroles are intended for the consuming class, but we should allow for
39 metaroles on the role's metaobjects as well.
40
41 === Deprecate old-style Moose extensions
42
43 Moose extensions that work by calling Moose->init_meta(metaclass =>
44 'Some::Custom::Metaclass', ...) during their own init_meta should be
45 deprecated, so they can be removed later (this should fix the issues with
46 init_meta generation in Moose::Exporter, see RT51561)
47
48 === Register implicitly created class/role types
49
50 When you do has foo => (isa => 'Bar'), it returns a class_type for Bar, but
51 doesn't register it. This means that later you can declare "subtype 'Bar', as
52 'Str', ..." and it'll work, and later instances of the 'Bar' type will use that
53 one. We should register the implicitly created ones so that trying to redefine
54 it after it's used throws an error.
55
56 === Attributes in roles need to be able to participate in role composition
57
58 Right now, this fails with no decent workaround:
59
60   package R1;
61   use Moose::Role;
62   has foo => (is => 'ro');
63
64   package R2;
65   use Moose::Role;
66   with 'R1';
67   requires 'foo';
68
69   package C;
70   use Moose;
71   with 'R2';
72
73 Role attributes really need to be able to participate in role-role combination.
74 This should also fix "with 'Role1', 'Role2'" being broken when Role1 implements
75 a method as an accessor and Role2 requires that method, but at least in that
76 case you can split it into two 'with' statements with minimal loss of
77 functionality.
78
79 === Method modifiers in roles should silently add 'requires' for them
80
81 This shouldn't be a functionality change, just a better error message (and
82 better introspectability). This shouldn't happen if the role already contains a
83 method by that name, so it'll depend on the previous fix going in (so "has foo
84 => (is => 'ro'); around foo => sub { }" doesn't produce a 'requires' entry).
85
86 === Add overloading support
87
88 or at least, don't break existing overloading support
89
90 This shouldn't treat the overloading stuff as actual methods, since that's just
91 an implementation detail, but we should provide an API for add_overload,
92 get_overload, get_overload_list, etc. In particular, this would allow
93 namespace::autoclean to not break things.
94
95 Also, MooseX::Role::WithOverloading should probably be cored.
96
97
98 == Todo for later
99
100 === Actual API for metaclass extensions
101
102 Right now, the only way to bundle multiple metaclass traits is via
103 Moose::Exporter. This is unhelpful if you want to apply the extension to a
104 metaclass object rather than a class you're actually writing. We should come up
105 with an API for doing this.
106
107 === MooseX::NonMoose in core
108
109 I think all of the actual issues are solved at this point. The only issue is
110 the (necessary) implementation weirdness - it sets up multiple inheritance
111 between the non-Moose class and Moose::Object, and it installs a custom
112 constructor method at 'extends' time (although perhaps this could be solved by
113 moving some of the logic back into Moose::Object::new?). Other than that, it
114 handles everything transparently as far as I can tell.
115
116 === Fix attribute and method metaclass compatibility
117
118 So i got this wrong when rewriting it last year - right now, metaclass compat
119 checks the default attribute and method metaclasses, which is wrong. This means
120 that if a parent class does "use MooseX::FollowPBP", then attributes declared
121 in a subclass will get PBP-style accessors, which is quite surprising.
122
123 On the other hand, sometimes metaclasses might need to be able to say "I'm
124 going to assume that all of my attributes at least inherit from this custom
125 class", so we might need to split it into "default specified by the user" and
126 "default specified by the metaclass" and only do compat checking on the second?
127 I'm not actually sure this is a valid use case though.
128
129 Something that probably should be taken into account though is attributes and
130 methods that extend existing attributes or methods from a superclass should
131 inherit the metaclass of the existing one. Also not sure if this is correct,
132 but something to think about.
133
134 === Rename a bunch of the public API methods
135
136 Right now the public API is kind of a mess - we have things like get_method vs
137 find_method_by_name (you almost always want to use the latter), there being no
138 has_method equivalent that checks superclasses, get_method_list being public
139 but only returning method names, while _get_local_methods is private (returning
140 method objects), and yet neither of those looks at superclasses, and basically
141 none of this naming follows any kind of consistent pattern.
142
143 What we really need is a consistent and easy to remember API where the method
144 that people would think to use first is the method that they actually mean.
145 Something like renaming find_method_by_name to find_method, and get_method to
146 find_local_method or something along those lines.
147
148 === Move load_class and related stuff out to an external module
149
150 Choices include Class::Load, Module::Runtime, or writing something ourselves.
151 Module::Runtime doesn't currently support is_class_loaded, and neither of those
152 two support load_first_existing_class, and we have is_class_loaded in XS at the
153 moment, because we call it enough internally (mostly by load_class) for it to
154 be noticeable.
155
156 === Move method modifiers out to an external module
157
158 Class::Method::Modifiers uses a different method for doing method modifiers,
159 which I'm not sure why we aren't using in Moose right now. Optionally using
160 Class::Method::Modifiers::Fast would be even better - it uses Data::Util to
161 implement XS method modifiers, which could help things a lot.
162
163 === Move type constraints out to an external module
164
165 There's nothing about our type constraint system that requires being tied to
166 Moose - it's conceptually an entirely separate system that Moose just happens
167 to use. Splitting it out into its own thing (that Moose could extend to add
168 things like role types) would make things conceptually a lot cleaner, and would
169 let people interested in just the type system have that.
170
171 === Merge Class::MOP and Moose
172
173 This is a long term goal, but would allow for a lot of things to be cleaned up.
174 There's a bunch of stuff that's duplicated, and other stuff that's not
175 implemented as well as it could be (Class::MOP::Method::Wrapped should be a
176 role, for instance).
177
178
179 == Things to contemplate
180
181 === Does applying metaroles really need to reinitialize the metaclass?
182
183 Seems like the logic that's actually necessary is already contained in
184 rebless_instance, and not reinitializing means that existing attributes and
185 methods won't be blown away when metaroles are applied.
186
187 === Do we want to core namespace::autoclean behavior somehow?
188
189 This would add Variable::Magic as a required XS dep (not a huge deal at the
190 moment, since Sub::Name is also a required XS dep, but it'd be nice for Moose
191 to be able to be pure perl again at some point in the future, and I'm not sure
192 what the relative chances of Sub::Name vs Variable::Magic making it into core
193 are). If we enabled it by default, this would also break things for people who
194 have introduced Moose into legacy-ish systems where roles are faked using
195 exporters (since those imported methods would be cleaned).
196
197 If we decide we want this, we may want to core it as an option first ("use
198 Moose -clean" or so), and move to making it the default later.
199
200 === Fix the error system
201
202 oh god it's terrible
203
204 More specifically, we really want exception objects.
205
206 === Should using -excludes with a role add 'requires' for excluded methods?
207
208 It seems to make sense, since otherwise you're violating the role's API
209 contract.
210
211
212 == Old todo (does anyone look at this?)
213
214 -------------------------------------------------------------------------------
215 BUGS
216 -------------------------------------------------------------------------------
217
218 -------------------------------------------------------------------------------
219 FEATURES
220 -------------------------------------------------------------------------------
221
222 - DDuncan's Str types
223
224 subtype 'Str'
225     => as 'Value'
226     => where { Encode::is_utf8( $_[0] ) or $_[0] !~ m/[^0x00-0x7F]/x }
227     => optimize_as { defined($_[0]) && !ref($_[0]) };
228
229 subtype 'Blob'
230     => as 'Value'
231     => where { !Encode::is_utf8( $_[0] ) }
232     => optimize_as { defined($_[0]) && !ref($_[0]) };
233
234 - type unions
235
236 Add support for doing it with Classes which do not have
237 a type constraint yet created
238
239 - type intersections
240
241 Mostly just for Roles
242
243 - inherited slot specs
244
245 'does' can be added to,.. but not changed
246 (need type unions for this)
247
248 - proxy attributes
249
250 a proxied attribute is an attribute
251 which looks like an attribute,
252 talks like an attribute, smells
253 like an attribute,.. but if you
254 look behind the curtain,.. its
255 over there.. in that other object
256
257 (... probably be a custom metaclass)
258
259 - local coerce
260
261 [13:16]         mst     stevan: slight problem with coerce
262 [13:16]         mst     I only get to declare it once
263 [13:17]         mst     so if I'm trying to declare it cast-style per-source-class rather than per-target-class
264 [13:17]         mst     I am extremely screwed
265 [13:17]         stevan  yes
266 [13:17]         stevan  they are not class specific
267 [13:18]         stevan  they are attached to the type constraint itself
268 [13:18]         *       stevan ponders anon-coercion-metaobjects
269 [13:18]         mst     yes, that's fine
270 [13:19]         mst     but when I declare a class
271 [13:19]         mst     I want to be able to say "this class coerces to X type via <this>"
272 [13:19]         stevan  yeah something like that
273 [13:19]         stevan  oh,.. hmm
274 [13:20]         stevan  sort of like inflate/deflate?
275 [13:20]         stevan  around the accessors?
276 [13:25]         *       bluefeet has quit (Remote host closed the connection)
277 [13:27]         mst     no
278 [13:27]         mst     nothing like that
279 [13:27]         mst     like a cast
280 [13:31]         mst     stevan: $obj->foo($bar); where 'foo' expects a 'Foo' object
281 [13:31]         mst     stevan: is effectively <Foo>$bar, right?
282 [13:32]         mst     stevan: I want to be able to say in package Bar
283 [13:32]         mst     stevan: coerce_to 'Foo' via { ... };
284 [13:32]         mst     etc.
285 [13:53]         stevan  hmm
286
287 -----------------------------------------------------------
288 -- Type Constraints refactor
289 -----------------------------------------------------------
290
291 - add support for locally scoped TC
292
293 This would borrow from MooseX::TypeLibrary to prefix the TC with the name
294 of the package. It would then be accesible from the outside as the fully
295 scoped name, but the local attributes would use it first. (this would need support
296 in the registry for this).
297
298 - look into sugar extensions
299
300 Use roles as sugar layer function providers (ala MooseX::AttributeHelpers). This
301 would allow custom metaclasses to provide roles to extend the sugar syntax with.
302
303 (NOTE: Talk to phaylon a bit more on this)
304
305 - allow a switch of some kind to optionally turn TC checking off at runtime
306
307 The type checks can get expensive and some people have suggested that allowing
308 the checks to be turned off would be helpful for deploying into performance
309 intensive systems. Perhaps this can actually be done as an option to make_immutable?
310
311 - misc. minor bits
312
313 * make the errors for TCs use ->message
314 * look into localizing the messages too
315 * make ANON TCs be lazy, so they can possibly be subsituted for the real thing later
316 * make ANON TCs more introspectable
317 * add this ...
318
319 #
320 #   Type Definition
321 #
322 subtype 'Username',
323    from 'Str',
324   where {     (/[a-z][a-z0-9]+/i or fail('Invalid character(s)'))
325           and (length($_) >= 5   or fail('Too short (less than 5 chars)'))
326         }
327 on_fail { MyException->throw(value => $_[0], message => $_[1]) };
328
329 # fail() will just return false unless the call is made via
330 $tc->check_or_fail($value);
331
332 * and then something like this:
333
334 subtype Foo => as Bar => where { ... } => scoped => -global;
335 subtype Foo => as Bar => where { ... } => scoped => -local;
336
337 # or
338
339 subtype Foo => as Bar => where { ... } => in __PACKAGE__ ;
340
341 # or (not sure if it would be possible)
342
343 my $Foo = subtype Bar => where { ... };
344
345 # ----------
346
347 [17:10]  <autarch> stevan: it should do it if I pass coerce => 1 as part of the attribute definition
348 [17:12]  <stevan> autarch: what I am not 100% sure of is how to tell it to deep coerce and when to not
349 [17:13]  <stevan> cause a basic coerce is from A to B
350 [17:13]  <autarch> hmm
351 [17:13]  <stevan> which is valid for collection types too
352 [17:13]  <stevan> deep coercion is what you are asking for
353 [17:13]  <autarch> yeah
354 [17:13]  <stevan> so perhaps we add deep_coerce => 1
355 [17:13]  <stevan> which will do it
356 [17:13]  <autarch> that's fine for me
357 [17:13]  <stevan> k
358
359 coerce_deeply => 1 # reads better
360
361 -------------------------------------------------------------------------------
362 INTERNALS
363 -------------------------------------------------------------------------------
364
365 - rationalize all the get_X methods for classes (and roles)
366
367 We have get_attribute, get_attributes_list, get_all_attributes,
368 etc. First, we need to make the method names consistent. If something
369 returns an attribute vs a name, that needs to be clear from the method
370 name. We also need to make sure that local vs. "entire inheritance
371 chain" is clear from the name.
372
373 This is mostly a CMOP change.
374
375 - Metaclass constructors
376
377 There's a _lot_ of different conventions in here. Some things to consider:
378
379 * new vs _new
380 * allowing new( 'name', %args ) vs ( name => 'name', %args )
381 * Method->wrap vs Method->new
382
383 - Moose::Meta::TypeConstraint::Parameter{izable,ized}
384
385 The relationship between these two classes is very odd. In particular,
386 this line in Parameterized is insane:
387
388     foreach my $type (Moose::Util::TypeConstraints::get_all_parameterizable_types()) {
389
390 Why does it need to loop through all parameterizable types? Shouldn't
391 it know which parameterizable type it "came from"?
392
393 - Moose::Util::TypeConstraints vs Moose::Meta::Type{Coercion,Constraint}
394
395 The Util module has _way_ too much functionality. It needs to be
396 refactored so it's a thin sugar layer on top of the meta API. As it
397 stands now, it does things like parse type names (and determine if
398 they're valid), manage the registry, and much more.
399
400 - Anything with a _(meta)?class method
401
402 Every method that returns a class name needs to become a rw attribute
403 that can be set via the constructor.
404
405 - The Moose::Error stuff
406
407 This is sort of half-implemented. We still use Carp directly, and the
408 internals can't decide how to throw an error (is it
409 Moose->throw_error, __PACKAGE__->throw_error, what?).
410
411 The internals need to be made consistent before we expose this to the
412 rest of the world.
413
414 -------------------------------------------------------------------------------
415 TO PONDER
416 -------------------------------------------------------------------------------
417
418 - Moose "strict" mode
419
420 use Moose 'strict'; This would allow us to have all sort of expensive tests
421 which can be turned off in prod.
422
423 - Moose::Philosophy.pod
424
425 To explain Moose from a very high level
426
427 - moosedoc
428
429 We certainly have enough meta-information to make pretty complete POD docs.
430
431
432