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