Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / i486-linux-gnu-thread-multi / Mouse / Meta / Attribute.pm
CommitLineData
3fea05b9 1package Mouse::Meta::Attribute;
2use Mouse::Util qw(:meta); # enables strict and warnings
3
4use Carp ();
5
6use Mouse::Meta::TypeConstraint;
7
8#use Mouse::Meta::Method::Accessor;
9use Mouse::Meta::Method::Delegation;
10
11sub _process_options{
12 my($class, $name, $args) = @_;
13
14 # XXX: for backward compatibility (with method modifiers)
15 if($class->can('canonicalize_args') != \&canonicalize_args){
16 %{$args} = $class->canonicalize_args($name, %{$args});
17 }
18
19 # taken from Class::MOP::Attribute::new
20
21 defined($name)
22 or $class->throw_error('You must provide a name for the attribute');
23
24 if(!exists $args->{init_arg}){
25 $args->{init_arg} = $name;
26 }
27
28 # 'required' requires eigher 'init_arg', 'builder', or 'default'
29 my $can_be_required = defined( $args->{init_arg} );
30
31 if(exists $args->{builder}){
32 # XXX:
33 # Moose refuses a CODE ref builder, but Mouse doesn't for backward compatibility
34 # This feature will be changed in a future. (gfx)
35 $class->throw_error('builder must be a defined scalar value which is a method name')
36 #if ref $args->{builder} || !defined $args->{builder};
37 if !defined $args->{builder};
38
39 $can_be_required++;
40 }
41 elsif(exists $args->{default}){
42 if(ref $args->{default} && ref($args->{default}) ne 'CODE'){
43 $class->throw_error("References are not allowed as default values, you must "
44 . "wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])");
45 }
46 $can_be_required++;
47 }
48
49 if( $args->{required} && !$can_be_required ) {
50 $class->throw_error("You cannot have a required attribute ($name) without a default, builder, or an init_arg");
51 }
52
53 # taken from Mouse::Meta::Attribute->new and _process_args->
54
55 if(exists $args->{is}){
56 my $is = $args->{is};
57
58 if($is eq 'ro'){
59 $args->{reader} ||= $name;
60 }
61 elsif($is eq 'rw'){
62 if(exists $args->{writer}){
63 $args->{reader} ||= $name;
64 }
65 else{
66 $args->{accessor} ||= $name;
67 }
68 }
69 elsif($is eq 'bare'){
70 # do nothing, but don't complain (later) about missing methods
71 }
72 else{
73 $is = 'undef' if !defined $is;
74 $class->throw_error("I do not understand this option (is => $is) on attribute ($name)");
75 }
76 }
77
78 my $tc;
79 if(exists $args->{isa}){
80 $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($args->{isa});
81 }
82 elsif(exists $args->{does}){
83 $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_does_type_constraint($args->{does});
84 }
85 $tc = $args->{type_constraint};
86
87 if($args->{coerce}){
88 defined($tc)
89 || $class->throw_error("You cannot have coercion without specifying a type constraint on attribute ($name)");
90
91 $args->{weak_ref}
92 && $class->throw_error("You cannot have a weak reference to a coerced value on attribute ($name)");
93 }
94
95 if ($args->{lazy_build}) {
96 exists($args->{default})
97 && $class->throw_error("You can not use lazy_build and default for the same attribute ($name)");
98
99 $args->{lazy} = 1;
100 $args->{builder} ||= "_build_${name}";
101 if ($name =~ /^_/) {
102 $args->{clearer} ||= "_clear${name}";
103 $args->{predicate} ||= "_has${name}";
104 }
105 else {
106 $args->{clearer} ||= "clear_${name}";
107 $args->{predicate} ||= "has_${name}";
108 }
109 }
110
111 if ($args->{auto_deref}) {
112 defined($tc)
113 || $class->throw_error("You cannot auto-dereference without specifying a type constraint on attribute ($name)");
114
115 ( $tc->is_a_type_of('ArrayRef') || $tc->is_a_type_of('HashRef') )
116 || $class->throw_error("You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)");
117 }
118
119 if (exists $args->{trigger}) {
120 ('CODE' eq ref $args->{trigger})
121 || $class->throw_error("Trigger must be a CODE ref on attribute ($name)");
122 }
123
124 if ($args->{lazy}) {
125 (exists $args->{default} || defined $args->{builder})
126 || $class->throw_error("You cannot have lazy attribute ($name) without specifying a default value for it");
127 }
128
129 return;
130}
131
132sub new {
133 my $class = shift;
134 my $name = shift;
135
136 my %args = (@_ == 1) ? %{ $_[0] } : @_;
137
138 $class->_process_options($name, \%args);
139
140 $args{name} = $name;
141
142 my $self = bless \%args, $class;
143
144 # extra attributes
145 if($class ne __PACKAGE__){
146 $class->meta->_initialize_object($self, \%args);
147 }
148
149# XXX: there is no fast way to check attribute validity
150# my @bad = ...;
151# if(@bad){
152# @bad = sort @bad;
153# Carp::cluck("Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad");
154# }
155
156 return $self;
157}
158
159sub has_read_method { $_[0]->has_reader || $_[0]->has_accessor }
160sub has_write_method { $_[0]->has_writer || $_[0]->has_accessor }
161
162sub _create_args { # DEPRECATED
163 $_[0]->{_create_args} = $_[1] if @_ > 1;
164 $_[0]->{_create_args}
165}
166
167sub interpolate_class{
168 my($class, $args) = @_;
169
170 if(my $metaclass = delete $args->{metaclass}){
171 $class = Mouse::Util::resolve_metaclass_alias( Attribute => $metaclass );
172 }
173
174 my @traits;
175 if(my $traits_ref = delete $args->{traits}){
176
177 for (my $i = 0; $i < @{$traits_ref}; $i++) {
178 my $trait = Mouse::Util::resolve_metaclass_alias(Attribute => $traits_ref->[$i], trait => 1);
179
180 next if $class->does($trait);
181
182 push @traits, $trait;
183
184 # are there options?
185 push @traits, $traits_ref->[++$i]
186 if ref($traits_ref->[$i+1]);
187 }
188
189 if (@traits) {
190 $class = Mouse::Meta::Class->create_anon_class(
191 superclasses => [ $class ],
192 roles => \@traits,
193 cache => 1,
194 )->name;
195 }
196 }
197
198 return( $class, @traits );
199}
200
201sub canonicalize_args{ # DEPRECATED
202 my ($self, $name, %args) = @_;
203
204 Carp::cluck("$self->canonicalize_args has been deprecated."
205 . "Use \$self->_process_options instead.")
206 if Mouse::Util::_MOUSE_VERBOSE;
207
208 return %args;
209}
210
211sub create { # DEPRECATED
212 my ($self, $class, $name, %args) = @_;
213
214 Carp::cluck("$self->create has been deprecated."
215 . "Use \$meta->add_attribute and \$attr->install_accessors instead.")
216 if Mouse::Util::_MOUSE_VERBOSE;
217
218 # noop
219 return $self;
220}
221
222sub _coerce_and_verify {
223 my($self, $value, $instance) = @_;
224
225 my $type_constraint = $self->{type_constraint};
226 return $value if !defined $type_constraint;
227
228 if ($self->should_coerce && $type_constraint->has_coercion) {
229 $value = $type_constraint->coerce($value);
230 }
231
232 $self->verify_against_type_constraint($value);
233
234 return $value;
235}
236
237sub verify_against_type_constraint {
238 my ($self, $value) = @_;
239
240 my $type_constraint = $self->{type_constraint};
241 return 1 if !$type_constraint;
242 return 1 if $type_constraint->check($value);
243
244 $self->verify_type_constraint_error($self->name, $value, $type_constraint);
245}
246
247sub verify_type_constraint_error {
248 my($self, $name, $value, $type) = @_;
249 $self->throw_error("Attribute ($name) does not pass the type constraint because: "
250 . $type->get_message($value));
251}
252
253sub coerce_constraint { # DEPRECATED
254 my $type = $_[0]->{type_constraint}
255 or return $_[1];
256
257 Carp::cluck("coerce_constraint() has been deprecated, which was an internal utility anyway");
258
259 return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $type, $_[1]);
260}
261
262sub clone_and_inherit_options{
263 my($self, %args) = @_;
264
265 my($attribute_class, @traits) = ref($self)->interpolate_class(\%args);
266
267 $args{traits} = \@traits if @traits;
268 # do not inherit the 'handles' attribute
269 foreach my $name(keys %{$self}){
270 if(!exists $args{$name} && $name ne 'handles'){
271 $args{$name} = $self->{$name};
272 }
273 }
274 return $attribute_class->new($self->name, %args);
275}
276
277sub clone_parent { # DEPRECATED
278 my $self = shift;
279 my $class = shift;
280 my $name = shift;
281 my %args = ($self->get_parent_args($class, $name), @_);
282
283 Carp::cluck("$self->clone_parent has been deprecated."
284 . "Use \$meta->add_attribute and \$attr->install_accessors instead.")
285 if Mouse::Util::_MOUSE_VERBOSE;
286
287 $self->clone_and_inherited_args($class, $name, %args);
288}
289
290sub get_parent_args { # DEPRECATED
291 my $self = shift;
292 my $class = shift;
293 my $name = shift;
294
295 for my $super ($class->linearized_isa) {
296 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
297 or next;
298 return %{ $super_attr->_create_args };
299 }
300
301 $self->throw_error("Could not find an attribute by the name of '$name' to inherit from");
302}
303
304
305sub get_read_method {
306 $_[0]->reader || $_[0]->accessor
307}
308sub get_write_method {
309 $_[0]->writer || $_[0]->accessor
310}
311
312sub get_read_method_ref{
313 my($self) = @_;
314
315 $self->{_read_method_ref} ||= do{
316 my $metaclass = $self->associated_class
317 or $self->throw_error('No asocciated class for ' . $self->name);
318
319 my $reader = $self->{reader} || $self->{accessor};
320 if($reader){
321 $metaclass->name->can($reader);
322 }
323 else{
324 $self->accessor_metaclass->_generate_reader($self, $metaclass);
325 }
326 };
327}
328
329sub get_write_method_ref{
330 my($self) = @_;
331
332 $self->{_write_method_ref} ||= do{
333 my $metaclass = $self->associated_class
334 or $self->throw_error('No asocciated class for ' . $self->name);
335
336 my $reader = $self->{writer} || $self->{accessor};
337 if($reader){
338 $metaclass->name->can($reader);
339 }
340 else{
341 $self->accessor_metaclass->_generate_writer($self, $metaclass);
342 }
343 };
344}
345
346sub _canonicalize_handles {
347 my($self, $handles) = @_;
348
349 if (ref($handles) eq 'HASH') {
350 return %$handles;
351 }
352 elsif (ref($handles) eq 'ARRAY') {
353 return map { $_ => $_ } @$handles;
354 }
355 elsif (ref($handles) eq 'Regexp') {
356 my $class_or_role = ($self->{isa} || $self->{does})
357 || $self->throw_error("Cannot delegate methods based on a Regexp without a type constraint (isa)");
358
359 my $meta = Mouse::Meta::Class->initialize("$class_or_role"); # "" for stringify
360 return map { $_ => $_ }
361 grep { !Mouse::Object->can($_) && $_ =~ $handles }
362 Mouse::Util::is_a_metarole($meta)
363 ? $meta->get_method_list
364 : $meta->get_all_method_names;
365 }
366 else {
367 $self->throw_error("Unable to canonicalize the 'handles' option with $handles");
368 }
369}
370
371sub associate_method{
372 my ($attribute, $method_name) = @_;
373 $attribute->{associated_methods}++;
374 return;
375}
376
377sub delegation_metaclass() { 'Mouse::Meta::Method::Delegation' }
378
379sub install_accessors{
380 my($attribute) = @_;
381
382 my $metaclass = $attribute->associated_class;
383 my $accessor_class = $attribute->accessor_metaclass;
384
385 foreach my $type(qw(accessor reader writer predicate clearer)){
386 if(exists $attribute->{$type}){
387 my $generator = '_generate_' . $type;
388 my $code = $accessor_class->$generator($attribute, $metaclass);
389 $metaclass->add_method($attribute->{$type} => $code);
390 $attribute->associate_method($attribute->{$type});
391 }
392 }
393
394 # install delegation
395 if(exists $attribute->{handles}){
396 my $delegation_class = $attribute->delegation_metaclass;
397 my %handles = $attribute->_canonicalize_handles($attribute->{handles});
398 my $reader = $attribute->get_read_method_ref;
399
400 while(my($handle_name, $method_to_call) = each %handles){
401 my $code = $delegation_class->_generate_delegation($attribute, $metaclass,
402 $reader, $handle_name, $method_to_call);
403
404 $metaclass->add_method($handle_name => $code);
405 $attribute->associate_method($handle_name);
406 }
407 }
408
409 if($attribute->can('create') != \&create){
410 # backword compatibility
411 $attribute->create($metaclass, $attribute->name, %{$attribute});
412 }
413
414 return;
415}
416
417sub throw_error{
418 my $self = shift;
419
420 my $metaclass = (ref $self && $self->associated_class) || 'Mouse::Meta::Class';
421 $metaclass->throw_error(@_, depth => 1);
422}
423
4241;
425__END__
426
427=head1 NAME
428
429Mouse::Meta::Attribute - The Mouse attribute metaclass
430
431=head1 VERSION
432
433This document describes Mouse version 0.43
434
435=head1 METHODS
436
437=head2 C<< new(%options) -> Mouse::Meta::Attribute >>
438
439Instantiates a new Mouse::Meta::Attribute. Does nothing else.
440
441It adds the following options to the constructor:
442
443=over 4
444
445=item C<< is => 'ro', 'rw', 'bare' >>
446
447This provides a shorthand for specifying the C<reader>, C<writer>, or
448C<accessor> names. If the attribute is read-only ('ro') then it will
449have a C<reader> method with the same attribute as the name.
450
451If it is read-write ('rw') then it will have an C<accessor> method
452with the same name. If you provide an explicit C<writer> for a
453read-write attribute, then you will have a C<reader> with the same
454name as the attribute, and a C<writer> with the name you provided.
455
456Use 'bare' when you are deliberately not installing any methods
457(accessor, reader, etc.) associated with this attribute; otherwise,
458Moose will issue a deprecation warning when this attribute is added to a
459metaclass.
460
461=item C<< isa => Type >>
462
463This option accepts a type. The type can be a string, which should be
464a type name. If the type name is unknown, it is assumed to be a class
465name.
466
467This option can also accept a L<Moose::Meta::TypeConstraint> object.
468
469If you I<also> provide a C<does> option, then your C<isa> option must
470be a class name, and that class must do the role specified with
471C<does>.
472
473=item C<< does => Role >>
474
475This is short-hand for saying that the attribute's type must be an
476object which does the named role.
477
478B<This option is not yet supported.>
479
480=item C<< coerce => Bool >>
481
482This option is only valid for objects with a type constraint
483(C<isa>). If this is true, then coercions will be applied whenever
484this attribute is set.
485
486You can make both this and the C<weak_ref> option true.
487
488=item C<< trigger => CodeRef >>
489
490This option accepts a subroutine reference, which will be called after
491the attribute is set.
492
493=item C<< required => Bool >>
494
495An attribute which is required must be provided to the constructor. An
496attribute which is required can also have a C<default> or C<builder>,
497which will satisfy its required-ness.
498
499A required attribute must have a C<default>, C<builder> or a
500non-C<undef> C<init_arg>
501
502=item C<< lazy => Bool >>
503
504A lazy attribute must have a C<default> or C<builder>. When an
505attribute is lazy, the default value will not be calculated until the
506attribute is read.
507
508=item C<< weak_ref => Bool >>
509
510If this is true, the attribute's value will be stored as a weak
511reference.
512
513=item C<< auto_deref => Bool >>
514
515If this is true, then the reader will dereference the value when it is
516called. The attribute must have a type constraint which defines the
517attribute as an array or hash reference.
518
519=item C<< lazy_build => Bool >>
520
521Setting this to true makes the attribute lazy and provides a number of
522default methods.
523
524 has 'size' => (
525 is => 'ro',
526 lazy_build => 1,
527 );
528
529is equivalent to this:
530
531 has 'size' => (
532 is => 'ro',
533 lazy => 1,
534 builder => '_build_size',
535 clearer => 'clear_size',
536 predicate => 'has_size',
537 );
538
539=back
540
541=head2 C<< associate_method(MethodName) >>
542
543Associates a method with the attribute. Typically, this is called internally
544when an attribute generates its accessors.
545
546Currently the argument I<MethodName> is ignored in Mouse.
547
548=head2 C<< verify_against_type_constraint(Item) -> TRUE | ERROR >>
549
550Checks that the given value passes this attribute's type constraint. Returns C<true>
551on success, otherwise C<confess>es.
552
553=head2 C<< clone_and_inherit_options(options) -> Mouse::Meta::Attribute >>
554
555Creates a new attribute in the owner class, inheriting options from parent classes.
556Accessors and helper methods are installed. Some error checking is done.
557
558=head2 C<< get_read_method_ref >>
559
560=head2 C<< get_write_method_ref >>
561
562Returns the subroutine reference of a method suitable for reading or
563writing the attribute's value in the associated class. These methods
564always return a subroutine reference, regardless of whether or not the
565attribute is read- or write-only.
566
567=head1 SEE ALSO
568
569L<Moose::Meta::Attribute>
570
571L<Class::MOP::Attribute>
572
573=cut
574